@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

:root {
  --bg-color: #b2530c;
  --secondary-bg-color: #ffffff;
  --text-color: #fff;
  --main-color: #f78732;
  --terciary-color: #0ef;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow: hidden;
}

section {
  min-height: 100vh;
  padding: 10rem 9% 2rem;
}

a {
  text-decoration: none;
}

/* 
 .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
   padding: 2rem 9%; 
  background-color: var(--bg-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}   */


.header.sticky {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 2.5rem;
  color: var(--text-color);
  font-weight: 600;
  cursor: default;
}

.logo:hover {
  color: var(--main-color);
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15%;
}

.navbar a {
  font-size: 1.7rem;
  color: var(--text-color);
  margin-left: 4rem;
}

.navbar a:hover,
.navbar a.active {
  color: var(--main-color);
}

#menu-icon {
  font-size: 3.6rem;
  color: var(--text-color);
  display: none;
}

.home {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-img img {
  width: 35vw;
  animation: floatImage 4s ease-in-out infinite;
  margin-left: 20px;
}

/* @keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2.4rem);
    }

    100% {
        transform: translateY(0);
    }
} */

.home-content h3 {
  font-size: 3.1rem;
  font-weight: 700;
}

.home-content h3:nth-of-type(2) {
  margin-bottom: 2rem;
}

span {
  color: var(--main-color);
}

.home-content h1 {
  font-size: 5.6rem;
  font-weight: 700;
  font-weight: 1.3;
}

.home-content p {
  font-size: 1.6rem;
}

.social-media a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: transparent;
  border: 0.1rem solid var(--main-color);
  border-radius: 50%;
  font-size: 1.9rem;
  color: var(--main-color);
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.5s ease;
}

.social-media a:hover {
  background-color: var(--main-color);
  color: var(--secondary-bg-color);
  box-shadow: 0 0 1rem var(--terciary-color);
}

.custom-btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  background-color: var(--main-color);
  border-radius: 4rem;
  box-shadow: 0 0 1rem var(--main-color);
  font-size: 1.6rem;
  color: var(--bg-color);
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.5s ease;
}

.custom-btn-contact {
  display: inline-block;
  padding: 1rem 2.8rem;
  background-color: var(--main-color);
  border-radius: 4rem;
  box-shadow: 0 0 1rem var(--main-color);
  font-size: 1.6rem;
  color: var(--bg-color);
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.5s ease;
}

.custom-btn:hover {
  box-shadow: none;
}

.custom-btn-contact:hover {
  box-shadow: none;
}

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: var(--secondary-bg-color);
}

.about-img img {
  width: 70vh;
  border-radius: 2rem;
}

.heading {
  text-align: center;
  font-size: 4.5rem;
}

.about-content h2 {
  text-align: left;
  line-height: 1.2;
}

.about-content h3 {
  font-size: 2.6rem;
}

.about-content p {
  font-size: 1.6rem;
  margin: 2rem 0 3rem;
}

.services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: auto;
  margin-bottom: 5rem;
  background-color: var(--bg-color);
}

.services .services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}

.services-row .services-column {
  flex: 1 1 40rem;
}

.services-column .title {
  font-size: 2.5rem;
  margin: 0 0 1.5rem 2rem;
}

.services-column .services-box {
  border-left: 0.2rem solid var(--text-color);
}

.services-box .services-content {
  position: relative;
  padding-left: 2rem;
}

.services-box .services-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1.1rem;
  width: 2rem;
  height: 2rem;
  background: var(--text-color);
  border-radius: 50%;
}

.services-content .content {
  position: relative;
  padding: 1.5rem;
  border: 0.2rem solid var(--text-color);
  border-radius: 0.6rem;
  margin-bottom: 2rem;
}

.services-content .content .year {
  font-size: 1.5rem;
  color: var(--text-color);
  padding-bottom: 0.5rem;
}

.services-content .content .year i {
  padding-right: 0.5rem;
}

.services-content .content h3 {
  font-size: 1.7rem;
  color: var(--text-color);
  font-weight: 500;
}

.services-content .content p {
  font-size: 1.9rem;
  padding-top: 0.5rem;
  font-weight: 400;
}

.item {
  max-width: 100%;
  width: 100%;
  max-height: 120rem;
  height: 45rem;
  display: flex;
  aspect-ratio: 16 / 9;
  box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
  border-radius: 0.5rem;
  background-size: cover;
}

.botoes-controle {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.botoes-controle button {
  background: #ccc;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 12px;
  width: 12px;
}

.botoes-controle button.ativo {
  background: var(--text-color);
  cursor: default;
}

.activities h2 {
  margin-bottom: 8rem;
}

.activities-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.activities-container .activities-box {
  position: relative;
  border-radius: 2rem;
  box-shadow: 0 0 1rem var(--bg-color);
  overflow: hidden;
}

.activities-box img {
  width: 100%;
  transition: 0.5s ease;
}

.activities-box:hover img {
  transform: scale(1.1);
}

.activities-box .activities-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), var(--bg-color));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 4rem;
  transform: translateY(100%);
  transition: 0.5s ease;
}

.activities-box:hover .activities-layer {
  transform: translateY(0);
}

.activities-layer h4 {
  color: var(--text-color);
  font-size: 3rem;
  font-weight: 700;
}

.activities-layer p {
  color: var(--text-color);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0.3rem 0 1rem;
}

.activities-layer a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  background: var(--text-color);
  border-radius: 50%;
}

.activities-layer a i {
  font-size: 2rem;
  color: var(--secondary-bg-color);
}

.programation h2 {
  margin-bottom: 5rem;
}

.programation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  height: 100%;
  padding-bottom: 2%;
}

.programation-container .programation-box {
  flex: 1 1 30rem;
  background-color: var(--secondary-bg-color);
  padding: 3rem 2rem 4rem;
  border-radius: 2rem;
  text-align: center;
  border: 0.2rem solid var(--bg-color);
  height: 100%;
  transition: 0.5s ease;
}

.programation-container .programation-box:hover {
  border-color: var(--main-color);
  transform: scale(1.02);
}

.programation-box i {
  font-size: 7rem;
  color: var(--main-color);
  margin-bottom: 2.5%;
}

.programation-box h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.programation-box h3 {
  font-size: 1.5rem;
}

.programation-box p {
  font-size: 1.6rem;
  margin: 1rem 0 3rem;
}

.contact h2 {
  margin-bottom: 3rem;
}

.contact form {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
  margin-bottom: 3rem;
}

.contact form .input-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact form .input-box input,
.contact form textarea {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.6rem;
  color: var(--text-color);
  background-color: var(--secondary-bg-color);
  border-radius: 0.8rem;
  margin: 0.7rem 0;
}

.contact form .input-box input {
  width: 49%;
}

.contact form textarea {
  resize: none;
}

.contact form .btn {
  margin-top: 2rem;
  cursor: pointer;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 9%;
  background: var(--secondary-bg-color);
}

.footer-text p {
  font-size: 1.6rem;
}

.footer-iconTop a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem;
  background-color: var(--main-color);
  border-radius: 0.8rem;
  transition: 0.5s ease;
}

.footer-iconTop a:hover {
  box-shadow: 0 0 1rem var(--main-color);
}

.footer-iconTop a i {
  font-size: 2.4rem;
  color: var(--secondary-bg-color);
}

/* BREAKPOINTS */
@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }
}

@media (max-width: 991px) {
  /* .header {
        padding: 2rem 3%;
    } */

  .navbar {
    margin-right: 3%;
  }

  section {
    padding: 10rem 3% 2rem;
  }

  /* .activities {
        padding-bottom: 7rem;
    } */

  .contact {
    min-width: auto;
  }

  .footer {
    padding: 2rem 3%;
  }
}

@media (max-width: 912px) {
  #menu-icon {
    display: block;
    cursor: pointer;
    font-size: 5rem;
  }

  section {
    min-height: 0;
  }

  .logo {
    font-size: 4rem;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 3%;
    background: var(--bg-color);
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    display: none;
  }

  .navbar.active {
    display: block;
  }

  .navbar a {
    display: block;
    font-size: 2.6rem;
    margin: 3rem 0;
  }

  .home {
    flex-direction: column;
  }

  .home-content h3 {
    font-size: 3rem;
  }

  .home-content h1 {
    font-size: 5rem;
  }

  .home-content p {
    font-size: 2rem;
  }

  .about-content h3 {
    font-size: 3rem;
  }

  .about-content h2 {
    font-size: 4rem;
  }

  .about-content p {
    font-size: 2rem;
  }

  .social-media a {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }

  .home-img img {
    width: 55vw;
    margin-top: 4rem;
  }

  .custom-btn {
    width: 15rem;
    height: 4.7rem;
    font-size: 1.5rem;
    display: inline-block;
    align-items: center;
    padding: 1rem 2.8rem;
    font-weight: 1000;
    transition: 0.5s ease;
  }

  .about {
    flex-direction: column-reverse;
  }

  .about img {
    width: 55vw;
    margin-top: 4rem;
  }

  .programation h2 {
    margin-bottom: 3rem;
  }
}

@media (max-width: 820px) {
  #menu-icon {
    display: block;
    cursor: pointer;
  }

  .logo {
    font-size: 3rem;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 3%;
    background: var(--bg-color);
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    display: none;
  }

  .navbar.active {
    display: block;
  }

  .navbar a {
    display: block;
    font-size: 2rem;
    margin: 3rem 0;
  }

  .home {
    flex-direction: column;
  }

  .home-content h3 {
    font-size: 2rem;
  }

  .home-content h1 {
    font-size: 4rem;
  }

  .home-content p {
    font-size: 1.5rem;
  }

  .home-img img {
    width: 45vw;
    margin-top: 4rem;
  }

  .about {
    flex-direction: column-reverse;
  }

  .about-content h2 {
    font-size: 4rem;
  }

  .about-content h3 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1.5rem;
  }

  .about img {
    width: 70vw;
    margin-top: 4rem;
  }

  .activities h2 {
    font-size: 4rem;
  }

  .programation h2 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }

  .programation-box h1 {
    font-size: 3rem;
  }

  .programation-box h3 {
    font-size: 2rem;
  }

  .custom-btn {
    width: 15rem;
    height: 4.7rem;
    font-size: 1.5rem;
    display: inline-block;
    align-items: center;
    padding: 1rem 2.8rem;
    font-weight: 1000;
    transition: 0.5s ease;
  }

  .contact h2 {
    font-size: 4rem;
  }

  .contact form .input-box input {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #menu-icon {
    display: block;
    cursor: pointer;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 3%;
    background: var(--bg-color);
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    display: none;
  }

  .navbar.active {
    display: block;
  }

  .navbar a {
    display: block;
    font-size: 2rem;
    margin: 3rem 0;
  }

  .home {
    flex-direction: column;
  }

  .home-content h3 {
    font-size: 2.6rem;
  }

  .home-content h1 {
    font-size: 5rem;
  }

  .home-img img {
    width: 70vw;
    margin-top: 4rem;
  }

  .about {
    flex-direction: column-reverse;
  }

  .about img {
    width: 70vw;
    margin-top: 4rem;
  }

  .activities h2 {
    margin-bottom: 3rem;
  }

  .activities-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .programation h1 {
    font-size: 3rem;
  }

  .programation h3 {
    font-size: 2rem;
  }

  .programation h2 {
    margin-bottom: 3rem;
  }

  .footer {
    flex-direction: column-reverse;
  }

  .footer p {
    text-align: center;
    margin-top: 2rem;
  }
}

@media (max-width: 617px) {
  .activities-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  html {
    font-size: 50%;
  }

  .home-content p {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 2rem;
  }

  .activities p {
    font-size: 2rem;
  }

  .programation-box p {
    font-size: 2rem;
  }

  .programation-box h1 {
    font-size: 2.4rem;
  }

  .programation-box h3 {
    font-size: 2rem;
  }

  .contact form .input-box input {
    width: 100%;
  }

  .custom-btn#contact {
    width: 30rem;
    height: 4.5rem;
    font-size: 1.5rem;
    display: inline-block;
    align-items: center;
    padding: 1rem 2.8rem;
    font-weight: 1000;
    transition: 0.5s ease;
  }

  .footer {
    flex-direction: column-reverse;
  }

  .footer p {
    text-align: center;
    margin-top: 2rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .logo {
    font-size: 3rem;
  }

  .home-img img {
    width: 90vw;
  }

  .programation h2 {
    font-size: 4rem;
  }

  .programation-box h1 {
    font-size: 2.5rem;
  }

  .programation-box h3 {
    font-size: 1.9rem;
  }

  .custom-btn {
    width: 15rem;
    height: 4.5rem;
    font-size: 1.5rem;
    display: inline-block;
    align-items: center;
    padding: 1rem 2.8rem;
    font-weight: 1000;
    transition: 0.5s ease;
  }

  .contact form .input-box input {
    width: 100%;
  }

  .contact h2 {
    font-size: 4rem;
  }

  .footer {
    flex-direction: column-reverse;
  }

  .footer p {
    text-align: center;
    margin-top: 2rem;
  }
}

@media (max-width: 365px) {
  .home-img img {
    width: 80vw;
  }

  .logo {
    font-size: 2.5rem;
  }

  .navbar a {
    display: block;
    font-size: 1.9rem;
    margin: 3rem 0;
  }

  .home-content h3 {
    font-size: 2rem;
  }

  .home-content h1 {
    font-size: 4rem;
  }

  .home-content p {
    font-size: 1.5rem;
  }

  .about-img img {
    width: 90vw;
  }

  .about-content h3 {
    font-size: 2rem;
  }

  .about-content h2 {
    font-size: 3rem;
  }

  .about-content p {
    font-size: 1.5rem;
  }

  .activities h2 {
    font-size: 3rem;
  }

  .activities-container {
    grid-template-columns: (2, 1fr);
  }

  .programation h2 {
    font-size: 3rem;
  }

  .programation-box h1 {
    font-size: 2.4rem;
  }

  .programation-box h3 {
    font-size: 1.8rem;
  }

  .contact h2 {
    font-size: 3rem;
  }

  .custom-btn {
    width: 20rem;
    height: 4.7rem;
    font-size: 1.5rem;
    display: inline-block;
    align-items: center;
    padding: 1rem 2.8rem;
    font-weight: 1000;
    transition: 0.5s ease;
  }

  .about a {
    width: 15rem;
    height: 4.7rem;
    font-size: 1.5rem;
    display: inline-block;
    align-items: center;
    padding: 1rem 2.8rem;
    font-weight: 1000;
    transition: 0.5s ease;
  }

  .footer {
    flex-direction: column-reverse;
  }

  .footer p {
    text-align: center;
    margin-top: 2rem;
  }
}

@media (max-width: 1400px) {
  .project-heading {
    text-align: center;
  }

  .item {
    max-width: 100%;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: cover;
  }
}

@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }

  .item {
    max-width: 100%;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
    align-items: center;
  }
}

@media (max-width: 991px) {
  .item {
    max-width: 100%;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
    align-items: center;
  }
}

@media (max-width: 820px) {
  .item {
    max-width: 100%;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .item {
    max-width: 100%;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
    align-items: center;
  }
}

@media (max-width: 540px) {
  html {
    font-size: 50%;
  }

  .item {
    max-width: 100%;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
    align-items: center;
  }
}

@media (max-width: 462px) {
  .item {
    max-width: 100%;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
    align-items: center;
  }
}

@media (max-width: 365px) {
  .item {
    max-width: 100%;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
    align-items: center;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 3) {
  .item {
    max-width: 100%;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
    align-items: center;
    flex-direction: column;
  }
}

@media only screen and (min-width: 430px) {
  .item {
    max-width: 100%;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
    align-items: center;
    flex-direction: column
  }
}

@media only screen and (min-height: 932px) {
  .item {
    max-width: 100%;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
    align-items: center;
    flex-direction: column
  }
}

@media only screen and (min-width: 430px) and (orientation: landscape) {
  .item {
    max-width: 100%;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
    flex-direction: column
  }
}

@media only screen and (min-width: 932px) and (orientation: portrait) {
  .item {
    max-width: 100rem;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
    align-items: center;
    flex-direction: column
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 3),
  only screen and (min--moz-device-pixel-ratio: 3),
  only screen and (-o-min-device-pixel-ratio: 3/1),
  only screen and (min-device-pixel-ratio: 3) {
  .item {
    max-width: 100rem;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
    align-items: center;
    flex-direction: column
  }
}

@media screen and (max-width: 430px) {
  .item {
    max-width: 100rem;
    width: 100%;
    max-height: 100rem;
    height: 45rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
  }
}

@media only screen and (device-width: 430px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) {
  .item {
    max-width: 100rem;
    width: 100%;
    max-height: 100rem;
    height: 95rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
    background-size: fill;
    flex-direction: column
  }
}
