@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

:root {
    --color: #f87257;
    --font-gray: #333;
    --font-white: #fff;
    --font-size: 24px;
    --font-black: #000;
    --secondary-color: #07d4df;
    --primary-color: #f2f0e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family:'Poppins', sans-serif;
    height: 100vh;
    background-color: black;
    scroll-behavior: smooth;
}

section {
    width: 100vw;
    height: 100vh;
    padding-left: 15vw;
}


::-webkit-scrollbar {
    width: 10px;
}
  
::-webkit-scrollbar-track {
    background-color: transparent;
    padding: 5px 5px;
}
   
::-webkit-scrollbar-thumb {
    background: #555; 
}
  
::-webkit-scrollbar-thumb:hover {
    background: #888; 
}


/* BANNER START */

/* BACKGROUND SWITCH START */

.diw{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .3s linear;
    /* animation: showing 10s linear; */
    filter: brightness(60%);
}

.a {
    background-image: url(zdj/1.jpg);
    
}
.b {
   background-image: url(zdj/2a.jpg);
   display: none;
}
.c {
   background-image: url(zdj/2b.jpg);
   display: none;
}
.d {
   background-image: url(zdj/3.jpg);
   display: none;
}

@keyframes showing {
    0% {
        opacity: 0.1;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0.1;
    }
}

/* BACKGROUND SWITCH END */

.banner {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.banner nav {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner nav ul {
    display: flex;
    justify-content: space-evenly;
}

.banner nav li {
    height: 45px;
    margin: 0 50px;
    list-style-type: none;
    color: var(--font-white);
    font-size: 18px;
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    position: relative;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 20px;
    text-shadow: 1px 1px 5px black;
}

.banner nav span {
    font-size: 12px;
    color: var(--font-white);
    font-weight: normal;
    text-shadow: 1px 1px 5px black;
}

.banner nav i {
    -webkit-text-stroke: 2px var(--color);
    color: transparent;
    font-size: 30px;
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    text-shadow: none;
}

.banner h1 {
    color: var(--font-white);
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 5px black;
}

.banner h6 {
    color: var(--font-white);
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    font-weight: lighter;
    text-shadow: 1px 1px 5px black;
}

.banner button {
    background-color: transparent;
    border: 5px solid var(--color);
    padding: 15px 30px;
    color: var(--font-white);
    letter-spacing: 2px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 40px;
    cursor: pointer;
    transition: all .1s linear;
    font-size: calc(var(--font-size)-10px);
    text-shadow: 1px 1px 5px black;
}

.banner button:hover {
    transform: scale(1.1);
}

.banner button:active {
    transform: scale(1)
}

.banner button a {
    text-decoration: none;
    color: inherit;
}

.banner .switchers {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    display: flex;
}

.banner .switchers input {
  appearance: none;
  margin: 0;
  font: inherit;
  color: var(--color);
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid var(--color);
  border-radius: 50%;
  position: relative;
  background-color: transparent;
  margin: 2px 0;
  width: 20px;
  height: 20px; 
  cursor: pointer;
}

.banner .switchers input::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: none;
    transition: .2s transform ease-in-out;
    box-shadow: inset 1em 1em var(--color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

  }
  
  .banner .switchers input:checked::before {
    display:block;
    transition: .2s transform ease-in-out;
  }
  
  

/* BANNER END */

/* NAV START */

@keyframes boxsh {
    0% {
        box-shadow: none;
        transform: scale(1);
    }
    50% {
        box-shadow: 0px 0px 20px rgba(0,0,0,0.6);
        transform: scale(1.1);
    }
    100% {
        box-shadow: none;
        transform: scale(1);
    }
}
.menu {
    position: fixed;
    top: 5px;
    left: 5px;
    cursor: pointer;
    display: grid;
    place-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    z-index: 10000;
    display: none;
}
.main-nav-all {
    display: none;
}

.main-nav-all.active {
    width: 100vw;
    height: 70vh;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.6);
}

.main-nav-all.active ol li {
    font-size: 14px;
    border: none;
    text-transform: capitalize;
    line-height: 200%;
}


.main-nav-all i {
    position: fixed;
    top: 5px;
    left: 5px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    font-size: 25px;
    background-color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    z-index: 10000;
    display: none;
}

.main-nav-all i.active {
    display: flex;
}


.main-nav-all ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 50%;
    height: 80%;
}

.main-nav-all li {
    list-style-type: none;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    transition: all .2s ease-in-out;
    border-bottom: 2px solid #333;
    display: block;
    width: 100%;
}

.main-nav-all a {
    color: var(--font-gray);
    text-decoration: none;
    font-weight: bold;
}

.main-nav-all .logo {
    background-color: var(--color);
    height: 15%;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    text-align: center;
}

/* phone nav */

.main-nav ol li {
    font-size: 14px;
    border: none;
    text-transform: capitalize;
    line-height: 200%;
}


.main-nav ol li::after {
    display: none;
}

.main-nav {
    width: 15vw;
    height: 100vh;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    z-index: 100;
    position: fixed;
    top: 0;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.6);
}

.main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 50%;
    height: 80%;
}

.main-nav li {
    list-style-type: none;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    transition: all .2s ease-in-out;
}

.main-nav li::after {
    content: '';
    width: 0%;
    height: 7%;
    background-color: #333;
    z-index: 100;
    position: absolute;
    bottom: -.3rem;
    left: 25%;
    transition: all .2s ease-in-out;
}

.main-nav li:first-child:after {
    height: 3%;
}

.main-nav li:hover::after {
    width: 50%;
    transition: all .2s ease-in-out;
}

.main-nav a {
    color: var(--font-gray);
    text-decoration: none;
    font-weight: bold;
}

.main-nav .logo {
    background-color: var(--color);
    height: 15%;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    text-align: center;
    font-weight: bolder;
}

/* NAV END */

/* AD START */
.ad {
    width: 100%;
    min-height: fit-content;
    padding: 2% 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--primary-color);
}

.ad .title {
    width: 30%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    flex-wrap: wrap;
    background-image: url('zdj/tło1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: right;
    padding-right: 50px;
    z-index: 10;
    border: 4px solid var(--color);
}

.ad h2 {
    color: var(--font-gray);
    text-transform: uppercase;
    font-size: 45px;
    z-index: 10;
    font-weight: lighter;
}

.ad h4 {
    color: #555;
    font-size: 14px;
    margin-bottom: 200px;
    margin-top: 0;
    z-index: 10;
}

.ad span {
    font-weight: bolder;
    font-size: 70px;
}
.ad img {
    width: 90%;
    height: 75%;
    position: absolute;
    left: 0;
    bottom: -20px;
    z-index: 10;
    filter: drop-shadow(0px 0px 20px rgba(0,0,0,0.6));
    transform: rotatey(180deg);
}

.ad .caption {
    width: 30%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--primary-color);
    text-align: center;
}
/* AD END */

/* INFO START */
.info {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.info .background {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-image: url(/zdj/info-tlo.jpg); */
    background-image: url(zdj/info-tlo.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size:cover;
    filter: brightness(20%) grayscale(60%);
    z-index: -1;
}

.info h1 {
    font-size: 60px;
    font-weight: bolder;
    text-shadow: 1px 1px 5px #000;
    color: var(--font-white);
    text-transform: uppercase;
    margin-bottom: 30px;
    
}

.info i {
    color: var(--color);
    font-size: 50px;
    text-shadow: 1px 1px 5px var(--color);
    margin-top: 50px;
}

table {
    color: #fff;
    width: fit-content;
    height: fit-content;
    padding: 10px;
    border-collapse: collapse;
    border: 1px solid #fff;
}

th {
    font-size: 1.5rem;
}

td, th {
    border: 1px solid #fff;
    padding: 15px 20px;
    text-align: center;
}

.text {
    width: 79%;
    height: fit-content;
    padding:2rem 0rem;
    color: var(--font-white);
    text-align: center;
    line-height: 200%;
}
/* INFO END */

/* GALERY START */
.galery {
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
}

.galery .caption {
    width: 70%;
    height: fit-content;
    background-color: var(--primary-color);
    display: flex;
    align-self: center;
    flex-direction: column;
}

.galery h1 {
    color: var(--font-gray);
    font-size: 40px;
    text-transform: uppercase;
    margin-top: 30px;
}


.galery .photos {
    height: 70vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.panel{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height:80vh;
    border-radius: 50px;
    color:white;
    cursor: pointer;
    flex: 0.5;
    margin:10px;
    position: relative;
    transition: flex 0.7s ease-in;
}
.panel.active{
    flex:5;
    background-size: contain;
}

@media(max-width: 480px){
    .container{
        width:100vw;
    }

    .panel:nth-of-type(4),.panel:nth-of-type(5){
        display:none;
    }
}
/* GALERY END */

/* CONTACT START */

.contact {
    height: min-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0 4rem 15vw;
    background-color: var(--primary-color);
    text-align: center;
    
}

.contact h1 {
    text-transform: capitalize;
    font-size: 4rem;
    margin: 2rem;
    position: relative;
}

.contact h1::after {
    content: '';
    width: 50%;
    height: 5%;
    background-color: #000;
    z-index: 100;
    position: absolute;
    bottom: -.3rem;
    left: 25%;
}

.contact h4 {
    width: 50%;
    font-weight: 460;
}

.contact .info {
    width: 80%;
    display: flex;
    flex-direction: row;
    height: fit-content;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1rem;
}
.contact .info .contact-info-item {
    width: 25%;
    height: fit-content;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #555;
    border-radius: 10px;
    transition: all .2s ease-in-out;
}

.contact .info .contact-info-item:hover {
    transform: scale(1.01);
    transition: all .2s ease-in-out;
    box-shadow: 0 0 5px rgba(0,0,0,0.6);
}

.contact .info .contact-info-item i{
    display: block;
    color: #333;
    font-size: 2rem;
    text-shadow: none;
}


.contact .info .contact-info-item h4 {
    font-size: 1.5rem;
    margin: 1rem;
}

.contact .info .contact-info-item p {
    font-size: 1.1rem;
    font-weight: bolder;
    margin-bottom: 2rem;
}

.contact .info .contact-info-item a {
    text-decoration: none;
}

details {
    font-size: 24px;
    font-weight: bolder;
    cursor: pointer;
    width: 80%;
}

details li {
    font-weight: normal;
    font-size: 12px;
    text-align: justify;
    text-transform: capitalize;
}

.contact h5 {
    font-size: 24px;
    margin-top: 2%;
}

.contact h5 a {
    text-decoration: none;
}
/* CONTACT END */

/* FOOTER START */
.footer {
    height: 10vh;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    padding: 0 50px;
}
/* FOOTER END */




/* Telefon */

@media (max-width: 480px) {

    section {
        padding: 0;
    }

    ::-webkit-scrollbar {
        display: none;
    }
    .banner nav {
        max-width: 100vw;
        height: fit-content;
    }

    .banner nav ul {
        flex-direction: row;  
        flex-wrap: wrap;
    }

    .banner nav li {
        font-size: 8px;
        min-width:fit-content;
        margin: 0 10px;
    }

    .banner nav span {
        font-size: 8px;
    }

    .banner nav i {
        font-size: 20px;

    }

    .banner h1 {
        font-size: 30px;
    }

    .banner h6 {
        font-size: 20px;
    }

    .banner button {
        padding: 15px 20px;
        font-size: 15px;
        border-width: 2px;
    }

    .banner .switchers {
        display: none;
    }

    .menu {
        display: grid;
    }
    .main-nav {
        display: none;
    }
    .main-nav ul {
        margin: auto;
        width: 100%;
    }
    .main-nav li {
        font-size: 10px;
    }
    .main-nav button {
        display: none;
    }

    .ad {
        justify-content: space-evenly;
    }

    .ad .title {
        width: 40%;
        padding: 0;
    }

    .ad .title::before {
        width: 100%;
    }

    .ad h2 {
        font-size: 25px;
    }
    .ad h4 {
        font-size: 10px;
    }
    
    .ad img  {
        height: 30%;
        bottom: 20px;
    }

    .ad .title-caption {
        height: 250px;
    }

    .ad .caption {
        width: 40%;
    }

    .ad .caption h2 {
        font-size: 12px;
        font-weight: bolder;
    }
    .ad .caption p {
        font-size: 8px;
    }

    .info {
        justify-content: space-evenly;
        height: fit-content;
    }

    .info h1, .info i {
        font-size: 24px;  
    }

    table {
        padding: 20px;
        margin-bottom: 20px;
    }

    th,td {
        font-size: .5rem;
        padding: 5px 2px;
    }

    .text {
        font-size: 8px;
        width: 100%;
        padding: 1rem 0;
        line-height: 14px;
    }

    .galery h1 {
        font-size: 20px;
    }

    .contact {
        padding: 0;
    }

    .contact .info {
        flex-direction: column;
    }

    .contact .info .contact-info-item {
        width: 70%;
        padding: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact .info .contact-info-item h4 {
        margin: 1rem auto;
        width: fit-content;
    }

    .footer p{
        font-size: 14px;
        padding: 0;
        text-align: center;
    }
}


/* Tablet */

@media (min-width:481px) and (max-width: 760px) {

    section {
        padding: 0;
    }
    .banner nav {
        height: fit-content;
    }

    .banner nav ul {
        flex-wrap: wrap;
        height: fit-content;
    }

    .banner nav li {
        font-size: 12px;
        width: 40%;
        margin: 0 10px;
        min-height: fit-content;
        height: auto;
    }

    .banner nav span {
        font-size: 10px;
    }

    .banner nav i {
        font-size: 20px;

    }

    .banner h1 {
        font-size: 30px;
    }

    .banner h6 {
        font-size: 20px;
    }

    .banner button {
        padding: 15px 20px;
        font-size: 15px;
        border-width: 2px;
    }

    .banner .switchers {
        display: none;
    }

    .menu {
        display: grid;
    }
    .main-nav {
        display: none;
    }
    .main-nav ul {
        margin:0;
        width: 65%;
    }
    .main-nav li {
        font-size: 12px;
    }
    .main-nav button {
        padding:0;
        font-size: 12px;
        width: 30%;
    }

    .ad {
        justify-content: space-evenly;
    }

    .ad .title {
        width: 40%;
        padding: 0;
    }

    .ad .title::before {
        width: 100%;
    }

    .ad h2 {
        font-size: 25px;
    }
    .ad h4 {
        font-size: 10px;
    }
    
    .ad img  {
        height: 30%;
        bottom: 20px;
    }

    .ad .title-caption {
        height: 250px;
    }

    .ad .caption {
        width: 40%;
    }

    .ad .caption h2 {
        font-size: 16px;
        font-weight: bolder;
    }
    .ad .caption p {
        font-size: 12px;
    }

    .info {
        justify-content: space-evenly;
        height: fit-content;
    }

    .info h1, .info i {
        font-size: 35px;  
    }

    table {
        padding: 20px;
        margin-bottom: 20px;
    }

    th,td {
        font-size: .8rem;
        padding: 10px 2px;
    }

    .text {
        font-size: 12px;
        width: 100%;
        padding: 1rem 0;
    }
    .galery {
        height: fit-content;
    }
    .panel {
        height:40vh;
    }

    .galery h1 {
        font-size: 35px;
    }

    .galery .caption, .galery nav, .galery ul {
        width: 100vw;
        text-align: center;
    }
   
    .galery ul {
        align-items: center;
        justify-content: center;
    }

    .galery li {
        font-size: 14px;
        text-align: center;
        padding: 5px 10px;
    }
    
    .contact {
        padding: 0;
    }
    .contact .info {
        flex-direction: column;
    }

    .contact .info .contact-info-item {
        width: 70%;
        padding: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact .info .contact-info-item h4 {
        margin: 1rem auto;
        width: fit-content;
    }

    .footer p{
        font-size: 14px;
        padding: 0;
        text-align: center;
    }
}

/* Laptop */

@media (min-width:761px) and (max-width: 1023px) {
    section {
        padding-left: 15vw;
    }

    .banner nav {
        height: 10%;
    }
    .banner nav ul {
        flex-direction: row;  
        flex-wrap: wrap;
    }
    .menu {
        display: none;
    }

    .banner nav li {
        font-size: 18px;
        min-width:fit-content;
        margin: 0 80px;
    }

    .banner nav span {
        font-size: 10px;
    }

    .banner nav i {
        font-size: 30px;

    }

    .banner h1 {
        font-size: 40px;
    }

    .banner h6 {
        font-size: 30px;
    }

    .banner button {
        padding: 20px 25px;
        font-size: 18px;
        border-width: 3px;
    }


    .main-nav {
        display: flex;
        width: 15vw;
    }
    .main-nav ul {
        margin:0;
        width: 65%;
    }
    .main-nav li {
        font-size: 22px;
    }
    .main-nav button {
        padding:0;
        font-size: 15px;
        width: 30%;
    }

    .main-nav .logo {
        font-size: 12px;
    }

    .ad {
        justify-content: space-evenly;
    }

    .ad .title {
        width: 40%;
        padding: 0;
    }

    .ad .title::before {
        width: 100%;
    }

    .ad h2 {
        font-size: 45px;
    }
    .ad h4 {
        font-size: 12px;
    }
    
    .ad img  {
        height: 40%;
        bottom: 20px;
    }

    .ad .title-caption {
        height: 250px;
    }

    .ad .caption {
        width: 40%;
    }

    .ad .caption h2 {
        font-size: 22px;
        font-weight: bolder;
    }
    .ad .caption p {
        font-size: 14px;
    }

    .info {
        justify-content: space-evenly;
        height: fit-content;
    }

    .info h1, .info i {
        font-size: 35px;  
    }

    table {
        padding: 20px;
        margin-bottom: 20px;
    }

    th,td {
        font-size: .8rem;
        padding: 10px 2px;
    }

    .text {
        font-size: 14px;
        width: 100%;
        padding: 1rem 1rem;
    }

    .galery h1 {
        font-size: 35px;
    }
    .galery {
        height: fit-content;
    }
    .panel {
        height:40vh;
    }

   
    .contact {
        padding: 0;
        padding-left: 15vw;
    }

    .contact .info {
        flex-direction: column;
    }

    .contact .info .contact-info-item {
        width: 70%;
        padding: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact .info .contact-info-item h4 {
        margin: 1rem auto;
        width: fit-content;
    }

    .footer p{
        font-size: 14px;
        padding: 0;
        text-align: center;
    }
}

/* Desktop */

@media (min-width:1024px) and ( max-width: 1400px) {
    section {
        padding-left: 15vw;
    }
    .banner nav {
        height: 10%;
    }

    .banner nav li {
        font-size: 18px;
        width: 48%;
        margin: 0 80px;
    }

    .banner nav span {
        font-size: 10px;
    }

    .banner nav i {
        font-size: 30px;

    }

    .banner h1 {
        font-size: 40px;
    }

    .banner h6 {
        font-size: 30px;
    }

    .banner button {
        padding: 20px 25px;
        font-size: 18px;
        border-width: 3px;
    }

    .menu {
        display: none;
    }
    .main-nav {
        display: flex;
        width: 15vw;
    }
    .main-nav ul {
        margin:0;
        width: 65%;
    }
    .main-nav li {
        font-size: 24px;
    }
    .main-nav button {
        padding:0;
        font-size: 18px;
        width: 30%;
    }

    .main-nav .logo {
        font-size: 14px;
    }

    .ad {
        justify-content: space-evenly;
    }

    .ad .title {
        width: 40%;
        padding: 0;
    }

    .ad .title::before {
        width: 100%;
    }

    .ad h2 {
        font-size: 45px;
    }
    .ad h4 {
        font-size: 12px;
    }
    
    .ad img  {
        height: 50%;
        bottom: 20px;
    }

    .ad .title-caption {
        height: 250px;
    }

    .ad .caption {
        width: 40%;
    }

    .ad .caption h2 {
        font-size: 22px;
        font-weight: bolder;
    }
    .ad .caption p {
        font-size: 14px;
    }



    .info {
        justify-content: space-evenly;
        height: fit-content;
    }

    .info h1, .info i {
        font-size: 45px;  
    }

    table {
        padding: 20px;
        margin-bottom: 20px;
    }

    th,td {
        font-size: 1rem;
        padding: 10px 2px;
    }

    .text {
        font-size: 14px;
        width: 100%;
        padding: 1rem 3rem;
    }

    .galery h1 {
        font-size: 45px;
    }
     .galery {
        height: fit-content;
    }
    .panel {
        height:50vh;
    }
    .contact {
        padding: 0;
        padding-left: 15vw;
    }

    .contact .info .contact-info-item {
        width: 30%;
        padding: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact .info .contact-info-item h4 {
        margin: 1rem auto;
        width: fit-content;
    }

    .footer p{
        font-size: 16px;
        padding: 0;
        text-align: center;
    }
}