*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} 
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
:root {
  --black: #0e0e0e;
  --white: #ffffff;
  --greige-light: #EFEDE7;
  --greige: #D8D1C3;
  --greige-dark: #B9B3AC;

  --brand-dark: #0e2431;
  --brand-accent: #1C75D1;

  --text-main: #111;
  --text-muted: #555;

  --h1: clamp(3rem, 4.5vw, 4.2rem);
  --h2: clamp(2.3rem, 3.7vw, 3.5rem);
  --h3: clamp(1.8rem, 2.7vw, 2.4rem);
  --body: 1.8rem;
  --small: 1.4rem;

  --radius: 12px;
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
p   { font-size: var(--body); line-height: 1.7; }
a   { text-decoration: none; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--white);
  font-size: var(--body);
  line-height: 1.7;
}
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}
:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: 
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.15s ease;
}

.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-primary:hover {
  background-color: var(--white);
  color: var(--black);
}
.btn-outline {
  background-color: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover {
  background-color: var(--black);
  color: var(--white);
}
.btn-dark {
  background-color: #1b1b1b;
  color: var(--white);
  border-color: #1b1b1b;
}
.btn-dark:hover {
  background-color: var(--white);
  color: #1b1b1b;
}

.btn-card-wrapper {
    margin-top: auto;
}
.btn-wrapper {
  margin-top: 2rem;
}

.logo a {
  font-size: 3vmax;
  font-weight: 600;
  color: var(--brand-dark);
}
.logo a:hover {
  color: var(--brand-accent);
  cursor: pointer;
}
.logo-img {
  margin-right: 12px;
  height: 3.5rem;
  float: left;
}
section {
  padding: 4rem 0;
}
.navbar-info {
  top: 0;
  padding: 0.5rem;
  background:  #000;
  box-shadow: 0 2px 15px -5px hsla(0, 0%, 20%, 0.1);
  color: hsl(355, 71%, 99%);

}
.navbar-info-container {
  max-width: 110rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.5vmin;
}
.navbar-info .icon {
  width: 1rem;
  height: 2.5rem;
  display: inline-flex;
  place-items: center;
  margin: 0.15rem;
}
@media screen and (min-width: 960px) {
  .navbar-info {
    margin-bottom: 0rem;
  }
  .navbar-hide-pc {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .navbar-hide-sec {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .navbar-hide {
    display: none;
  }
.navbar-info-container {
  font-size: 3.5vmin;
}
}
nav{
  position: sticky;
  top: 0;
  display: flex;
  height: 80px;
  width: 100%;
  background: #fff;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: none;
  z-index: 1000;
}
nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
nav ul li{
  margin: 0 5px;
}
nav ul li a{
  color: var(--brand-dark);
  font-size: 2.5vmin;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
nav ul li a.active,
nav ul li a:hover{
  color: var(--white);
  background: #000;
}
nav .menu-btn i{
  color: var(--brand-dark);
  font-size: 22px;
  cursor: pointer;
  display: none;
}
input[type="checkbox"]{
  display: none;
}

.first-section {
  position: relative;
  background-image: url("./img/hero.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.first-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: background 0.3s ease;
}

.hero {
  position: relative;
  z-index: 1; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 70vh;
  padding-left: 75px;
  width: 60vw;
}
.hero span {
  font-size: clamp(1.8rem, 3vw, 3rem);
}
@media (max-width: 768px) {
  .first-section::before {
     background: rgba(255, 255, 255, 0.45);
    } 
  .hero {
    width: 100%;
    padding-left: 2px;
    padding-right: 5px;
   }
}

.about-first {
  padding: 0 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-first p {

max-width: 65ch;

}

.last-section {
  background-color: var(--white);
  display: flex;
  padding: 40px 75px;
}

.getInTouch {
  background-color: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  min-width: 60%;
}

.getInTouch .quote {
  font-size: 4vmin;
}

.appointment div input, .appointment div textarea {
  padding: 5px;
  margin-bottom: 10px;
  background-color: #e5eefb;
  width: 100%;
  border: none;
  border-radius: 2px;
  max-width: 100%;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.appointment div button {
  padding: 5px 15px;
  min-width: max-content;
  background-color: #3255A5;
  border: #3255A5 solid 1px;
  color: var(--white);
  border: none;
  font-size: 2vmin;
}

.appointment div button:hover {
  background-color: var(--white);
  color: #3255A5;
  border: #3255A5 solid 1px;
}

.appointment .mapsFields, .getInTouch {
  width: 50vw;
}
.mapsForm {
  padding: 5px;
  border-radius: 10px;
  background-color: var(--white);
  width: 50vw;
  max-height: 90%;
}
.mapsFields {
  max-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40%;
}

.sec-section {
  background-color: var(--greige);
  padding: 5px 1px;
}
.about:nth-child(1) {
  min-height: 65vh;
}
.about:nth-child(2) {
  padding: 0 75px;
  min-height: 35vh;
}
.abts {
  flex-basis: 100%;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  box-shadow: 2px 0px 4px 3px rgb(0 0 0 / 20%);
  padding: 20px;
  height: inherit;
  border-radius: 20px 20px 0 0;
}
.about-sec {
  display: flex;
  column-gap: 20px;
}
.abts:nth-child(1) {
  background-color: var(--greige-light);
  color: var(--black);
}
.abts:nth-child(2) {
  background-color: var(--greige-light);
  color: var(--black);
}
.abts:nth-child(3) {
  background-color: var(--greige-light);
  color: var(--black);
}
.abts span {
  font-size: 4vmax;
  font-weight: bold;
  color: var(--black);
}
.services {
  background-color: var(--white);
  padding: 75px 15px 15px 15px;
}
.services h2 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 15px;
}
.all-service {
  margin: 15px 60px 25px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .all-service {
    margin: 10px 8px 20px;
    font-size: 1.6rem;
  }
}
.items {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 0 75px;
}
.item {
  padding: 20px;
  background-color: var(--greige);
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(146, 161, 176, 0.3);
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item .btn {
  margin-top: auto; 
}
.item h3 {
  margin-top: 15px;
}
.item p {
  margin: 15px 0;
}
.box {
    position: relative;
    color: #f1f1f1;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.23,1.83,0.42,1.19);
}
.box:hover {
    transform: scale(1.05);
}
.box p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    letter-spacing: 3px;
}
.circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 3px solid #f1f1f1;
    overflow: hidden;
    animation:
        1s linear infinite alternate boxMagic,
        4s linear infinite spinning;
}
.circle-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: 4s linear infinite reverse spinning;
}
.circle,
.circle-inner {
    width:  100px;
    height:  100px;
}
.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes boxMagic {
    from {
        box-shadow: 
        0 0 0 #feac5e,
        0 0 0 #c779d0,
        0 0 0 #4bc0c8,
        0 0 0 #42db75;
    }
    to {
        box-shadow: 
        0 -10px 0 #feac5e,
        -10px 0 0 #c779d0,
        0 10px 0 #4bc0c8,
        10px 0 0 #42db75;
    }
}
@keyframes spinning {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@media (max-width: 1000px){
  nav{
    padding: 0 40px 0 50px;
  }
}
@media (max-width: 920px) {
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
nav ul{
 overflow-y: auto;
 overflow-x: hidden;
 position: fixed; top: 110px; left: -100%; background: #fff; min-height: 100svh;
 width: 100%; text-align: center; display: block; transition: all 0.3s ease;
}
  #click:checked ~ ul{
    left: 0;
}
nav ul li{
    width: 100%;
    margin: 15px 0;
}
nav ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
#click:checked ~ ul li a{
    margin-left: 0px;
}
nav ul li a.active,
nav ul li a:hover{
    background: none;
    color: var(--brand-accent);
}
.first-section {
    padding-top: 100px;
    padding-bottom: 40px;
}
.hero {
    padding-left: 40px;
    width: 100vw;
}
.hero span {
    font-size: 20px;
  }
.hero p {

    width: 50vw;
}
.about-sec {
    display: block;
    padding: 0 40px 20px 40px;
}
.abts {
    height: max-content;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}
.about-first {
    padding: 0 40px;
}
.about-first p {
    width: 75vw;
    justify-content : flex-end; 
}
.about:nth-child(1) {
    min-height: max-content;
    margin-bottom: 40px;
}
.about:nth-child(2) {
    padding: 0 40px;
}
.abts:nth-child(2) {
    margin-top: 15px!important;
    margin-bottom: 15px!important;
}
.abts {
    border-radius: 20px;
}
.services {
    padding: 75px 40px 15px 40px;
}
.items {
    display: block;
    margin: 0px;
}
.item:nth-child(2) {
    margin: 15px 0;
}
.last-section {
    flex-direction: column;
}
.mapsForm {
    min-width: 75vw;
}
.mapsFields {
    margin-bottom: 30px;
}
.appointment .getInTouch, .mapsFields {
    width: 100%;
}
.mapsFields {
    min-height: max-content;
    align-self: center;
    margin-top: 30px;
}
.getInTouch {
    min-height: max-content;
}
.last-section {
    padding: 0 40px 60px 40px;
  }
}
.faq-section {
  background-color: var(--greige);
  padding: 5px 1px;
}
.faq-section h2 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 25px;
}
@media (max-width: 920px) {
   .faq-section {
       padding: 2px 2px;
    }
}
.f-a-q { 
  margin: 4rem auto;
  padding: 0;
  display: grid;
  max-width: 95%;    
}
.accordion__wrapper {
    background-color: var(--white);
    box-shadow: hsla(0, 0%, 20%, 0.3);
    border-radius: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}
.accordion {
    border-bottom: 0.1rem solid #e5eefb;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}
.accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
} 
.accordion__icon {
    background-color: var(--black);
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white);
    flex-shrink: 0;
}
.accordion__question{
    font-size: 1.8rem;
    font-weight: 500;
    color: hsl(0, 0%, 25%);
}
.accordion__answer{
    padding: 1.5rem 0;
    font-size: 1.3rem;
}
.accordion__content{
    overflow: hidden;
    height: 0;
    transition: 0.4s ease-in-out;
}
@media screen and (min-width: 580px) {
    .accordion__wrapper {
        padding: 2rem 3rem;
    }
}
.accordion:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

footer {
      background: linear-gradient(180deg, #000 0%, #000 100%);
      color: var(--white);
      padding: 70px 0 20px;
      position: relative;
      overflow: hidden;
}
.footer-section {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
}
.footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
}
.footer-col span {
      font-size: 1.5rem;

      margin-bottom: 0.5px;
      position: relative;
}
.footer-col p, .footer-col li {
      margin-bottom: 5px;
      color: rgba(255, 255, 255, 0.8);
}
.footer-col ul {
      list-style: none;
      margin-bottom: 10px;
      line-height: 1.4;
 }
.footer-col ul li a {
      color: rgba(255, 255, 255, 0.8);
      transition: all 0.3s ease;
      font-size: 1.3rem;
}
.footer-col ul li a:hover {
      color: var(--white);
      padding-left: 5px;
}
.address span {
  margin: 0;
  color: var(--white);
  display: block;
  transition: color 0.3s ease;
  font-size: 1.3rem;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: #FFFFFF;
    color: var(--black);
    transform: translateY(-5px);
}
.social-link .icon {
  margin-right: 0.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  color: inherit;
}
.social-link .icon {
  margin-right: 0.5rem;
}
.icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  place-items: center;
  margin: 0.15rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
}
.blog-section {
  background-color: var(--greige);
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about-blog {
  flex: 1;
}
.about-blog h1 {
  margin-bottom: 20px;
}
.about-blog p {
  color: var(--black);
  line-height: 1.8;
  max-width: 900px;
  text-align: justify;
  text-justify: inter-word;
}

.about-img {
  flex: 1;
  display: flex;
  justify-content: center;
}
.about-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  object-fit: cover;
}
@media (max-width: 920px) {
  .blog-section {
    flex-direction: column;
    text-align: center;
  }
.about-blog p {
    max-width: 100%;
    }
.about-img img {
    max-width: 90%;
    }
}
.info-section {
    background-color: var(--white);
    padding: 20px 10px;
}
.info-first {
    padding: 0 60px;
    text-align: justify;
    line-height: 1.7;
    word-spacing: 0.03em;
}
.info-first h2 {
    margin-bottom: 20px;
}
.info-sec {
    display: flex;
    gap: 20px;
    padding: 0 60px;
    margin-top: 30px;
}
.oneinfo {
    flex: 1;
    font-size: 1.6rem;
    box-shadow: 2px 0px 6px rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    background-color: var(--greige-light);
    color: var(--black);
}
.oneinfo span {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.oneinfo p {
    word-spacing: 0.03em;
    text-align: justify;
    text-justify: inter-word;
}
@media (max-width: 768px) {
.info-first {
    padding: 0 20px;
    text-align: left;
}
.info-first p {
    line-height: 1.8;
}
.info-sec {
    display: block;
    padding: 0 20px;
    margin-top: 20px;
}
.oneinfo {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1rem;
    padding: 20px;
    border-radius: 15px;
}
.oneinfo span {
    font-size: 1.4rem;
}
.oneinfo p {
    word-spacing: 0.02em;
    }
}
@media only screen and (min-width: 768px) {
  .ftcontact {
    float: left;
    display: flex;
    flex-direction: COLUMN;
    justify-content: space-around;
    margin: 0; 
    text-align: center;
    vertical-align: middle;
    width: 100%;
    }
}
@media only screen and (max-width: 768px) {
  .ftcontact {
    display: flex;
    flex-direction: COLUMN;
    justify-content: space-around;
    margin: 0; 
    text-align: center;
    width: 100%;
    }
}
.ftcontact ul {
    font-size: 1.5rem;
    list-style: none;
    color: #808080;
}
@media only screen and (max-width: 768px) {
  .colonnacontatti {
    width: 100%; padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    }
}
 @media only screen and (min-width: 768px) {
  .colonnacontatti { width: 30%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 0px;                               
   }
}
@media only screen and (max-width: 768px) {
  .orizcontatti {
    display: flex;
    flex-direction:column;
    justify-content: center;
    }
}
@media only screen and (min-width: 768px) {
  .orizcontatti {
    display: flex;
    justify-content: space-around; 
    }
}
.maps-section {
  padding: 1rem;
  display: grid;
  margin: 2rem auto;
  max-width: 84rem;
}
.google-maps {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 100px 80px;
}
.photos {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(#fff2, transparent);
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.photos img {
  width: 90%;
  height: 90%;
  object-fit: cover;
}
.grid-area {
  display: grid;
  grid-template-columns: repeat(8, 100px);
  grid-template-rows: repeat(7, 100px);
  gap: 20px;
}
.pic-one {
  grid-area: 1 / 1 / 3 / 3;
}

.pic-two {
  grid-area: 1 / 3 / 4 / 5;
}

.pic-three {
  grid-area: 1 / 5 / 3 / 7;
}

.pic-four {
  grid-area: 1 / 7 / 3 / 9;
}

.pic-six {
  grid-area: 4 / 3 / 6 / 5;
}

.pic-five {
  grid-area: 3 / 1 / 5 / 3;
}

.pic-seven {
  grid-area: 3 / 5 / 5 / 7;
}

.pic-eight {
  grid-area: 3 / 7 / 6 / 9;
}

.pic-nine {
  grid-area: 5 / 1 / 8 / 3;
}

.pic-ten {
  grid-area: 6 / 3 / 8 / 5;
}

.pic-eleven {
  grid-area: 5 / 5 / 8 / 7;
}

.pic-twelve {
  grid-area: 6 / 7 / 8 / 9;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 0 10px;
  z-index: 999999;
  animation: openLightbox 0.6s ease-in-out 1 normal;
}

@keyframes openLightbox {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.img-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(46, 46, 46, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #fff;
  z-index: 30;

 width: min(90vw, 600px);
  max-height: 90vh;
}

.img-container p {
  text-align: center;
  font-size: clamp(0.9rem, 4vw, 1.25rem);
  font-weight: 500;
  padding: 15px 20px;
  color: #fff;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.img-container img {
  width: 100%;
  height: auto;
  max-height: 75vh;


  border-radius: 0 0 12px 12px;
  object-fit: contain;

  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.slide {
  position: absolute;
  top: 50%;
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background: rgba(46, 46, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  color: #fff;
  font-size: 2rem;
  padding: 20px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 40;
}

.slide:hover {
  background: rgba(15, 14, 28, 0.9);
}

.prev {
  left: 14%;
}

.next {
  right: 14%;
}
@media (max-width: 975px) {
  .gallery {
    padding: 60px 70px 80px;
  }
  .grid-area {
    display: grid;
    grid-template-columns: repeat(6, 100px);
    grid-template-rows: repeat(9, 100px);
    gap: 20px;
    margin: 40px 30px 60px;
  }
  .pic-four {
    grid-area: 8 / 1 / 10 / 3;
  }

  .pic-eight {
    grid-area: 8 / 3 / 10 / 5;
  }

  .pic-twelve {
    grid-area: 8 / 5 / 10 / 7;
  }
}

@media (max-width: 750px) {
  .grid-area {
    grid-template-columns: repeat(6, 90px);
    grid-template-rows: repeat(9, 90px);
  }

  .gallery {
    padding: 60px 50px 80px;
  }

  .slide {
    font-size: 2rem;
    padding: 14px;
  }

  .prev {
    left: 5%;
  }

  .next {
    right: 5%;
  }
}

@media (max-width: 670px) {
  .grid-area {
    grid-template-columns: repeat(4, 110px);
    grid-template-rows: repeat(14, 110px);
  }

  .pic-three {
    grid-area: 11 / 3 / 13 / 5;
  }

  .pic-four {
    grid-area: 8 / 1 / 10 / 3;
  }

  .pic-seven {
    grid-area: 13 / 3 / 15 / 5;
  }

  .pic-eight {
    grid-area: 8 / 3 / 11 / 5;
  }

  .pic-eleven {
    grid-area: 12 / 1 / 15 / 3;
  }

  .pic-twelve {
    grid-area: 10 / 1 / 12 / 3;
  }
}

@media (max-width: 530px) {
  

  .grid-area {
    grid-template-columns: repeat(4, 90px);
    grid-template-rows: repeat(14, 90px);
  }
}

@media (max-width: 460px) {
 
  .grid-area {
    grid-template-columns: repeat(4, 70px);
    grid-template-rows: repeat(14, 70px);
  }

  .gallery {
    padding: 60px 40px 80px;
  }
  .img-container p {
    padding: 10px;
  }
  
  .slide {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .img-container {
    width: 95vw;
  }

  .slide {
    padding: 10px;
    font-size: 1.5rem;
  }

  .prev {
    left: 2%;
  }

  .next {
    right: 2%;
  }
}
.close-lightbox {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 5rem;
  color: #fff;
  cursor: pointer;
  z-index: 50;
}

.close-lightbox:hover {
  opacity: 0.7;
}


