main { display: flex; justify-content: center; } #wpp-icon { width: 50px; position: fixed; top: 88%; z-index: 9999; right: 25; } .banner:hover { transform: scale(1.52); } .banners-container { overflow-x: hidden; display: flex; flex-wrap: wrap; flex-direction: row; align-items: center; gap: 0.5rem; justify-content: center; max-width: 1600px; } .banner { display: flex; flex-direction: column; align-items: center; width: 150px; height: 175px; background: var(--color-backg-sec); transform: scale(1.5); margin: 64px 48px 80px; color: var(--color-white); border-radius: 15px; } .team-container { display: flex; flex-wrap: wrap; text-align: center; justify-content: center; margin: 10px 0 60px; padding-top: 50px; } .team:hover .banner-img { opacity: 10%; } .team:hover .team-see-more { display: flex; text-decoration: underline; } .team-see-more { display: none; position: absolute; top: 50%; border: 0; background: none; cursor: pointer; transition: 0.3s; } .team-dialog { display: none; position: fixed; z-index: 1; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.45); text-align: center; } .team-dialog-content { display: flex; gap: 30px; background-color: #090909; margin: 5% auto; padding: 25px 50px; width: 80%; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); border-radius: 30px; } .wpp-redirect-a { font-size: 1.75rem; font-weight: bold; color: var(--color-primary); } .wpp-redirect-a:hover { color: green; } .wpp-redirect-i { margin-right: 10px; } .team-dialog-content img { width: 350px; } .team-dialog-content .text { margin-bottom: 30px; font-size: 1.5rem; } .dialog-close { transition: 1s; color: var(--color-white); font-size: 1.5rem; } .dialog-close:hover { cursor: pointer; color: var(--color-tertiary); } .largest-banner { margin: 80px 270px 0px; min-width: 1200px; height: auto; /*36% da width*/ } .largest-banner-mobile { display: none; margin: 30px 270px 0px; height: auto; min-width: 100%; } .banner-img { width: 100%; height: 100%; border-radius: 15px; transition: 0.3s; } .largest-img { width: 100%; height: auto; border-radius: 15px; } /* CARROSSEL */ .carousel-container { min-width: 100%; height: auto; position: relative; } .carousel-slides { display: flex; min-width: 100%; height: auto; } .carousel-slide { flex: 0 0 auto; width: 100%; height: auto; transition: transform 0.5s; } .carousel-img { width: 100%; height: auto; } .carousel-button { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: rgba(0, 0, 0, 0.5); color: white; border: none; cursor: pointer; } .carousel-button:hover { cursor: pointer; filter: opacity(50%); } #prevButton, #nextButton { width: 65px; height: 65px; border-radius: 300px; } #prevButton { margin-left: 10px; left: 0; } #nextButton { margin-right: 10px; right: 0; } iframe { margin-top: 50px; width: 100%; height: 450px; border: 0; } .brands { display: flex; animation: move 70s linear infinite; height: 100px; gap: 60px; margin: 70px 0 70px; } .who-we-are { display: flex; flex-direction: column; width: 80vw; text-align: center; gap: 30px; /* margin-bottom: 60px; */ } .title-section { text-align: center; font-size: 3.5rem; color: var(--color-primary); } .who-we-are-img { border-radius: 10px; } hr { border: 0; height: 2px; background-color: var(--color-primary); } .team-warning { color: var(--color-white); } .team-warning .text { text-align: center; font-style: italic; } @keyframes move { 0% { transform: translateX(30%); } 100% { transform: translateX(-400%); } } .brands-img { width: 100%; max-width: 233px; object-fit: contain; } #last-largest-banner { margin-bottom: 80px; } @media only screen and (max-width: 1270px) { .team-dialog-content { align-items: center; width: 40vw; flex-direction: column; } } @media only screen and (max-width: 1200px) { .largest-banner { margin: 80px 0px 0px; min-width: 105%; } .largest-img { border-radius: 0; } } @media only screen and (max-width: 800px) { .largest-banner-mobile { display: flex; } .largest-banner { display: none; } .banner { width: 112.5px; height: 131.25px; margin: 50px 85px 50px; } .team-dialog-content img { width: 250px; } .team-dialog-content .text, .wpp-redirect-a { font-size: 1.2rem; } } @media only screen and (max-width: 570px) { .carousel-button { background: rgba(0, 0, 0, 0); top: 85%; } #prevButton, #nextButton { width: 35px; height: 35px; border-radius: 300px; font-size: 0.5rem; } #prevButton { margin-left: 0px; } #nextButton { margin-right: 0px; } .brands { gap: 30px; animation: move 50s linear infinite; } .team-dialog-content img { width: 175px; } .team-dialog-content .text, .wpp-redirect-a { font-size: 0.9rem; } .team-dialog-content { width: 50vw; } .title-section { font-size: 2rem; color: var(--color-primary); } .team-warning { margin: 0px 20px 0px; } }