* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;

}

.navbar {
    background: #131313;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    background-size: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.logo_mt {
    margin-right: 5px;
    color: #131313;
    background-color: #fff;
    padding: 1px 3px;
    border-radius: 2px;
}

.logo_model {
    color: #fff;
}

.fa-gem {
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #f77062;
    color: #fff;
}

.button:hover {
    background: #4837ff;
    transition: all 0.3s ease;
}

.navbar__links:hover {
    color: #f77062;
    transition: all 0.3s ease;
}

.navbar__toggle .hamburger{
    display: none;
}

@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
        background: #131313;
    }

    .navbar__menu.active {
        background: #131313;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar_toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar_btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: auto;
    }

    .navbar__toggle .hamburger {
        color: #fff;
        display: block;
        cursor: pointer;
        justify-content: center;
        align-items: center;
        font-size: xx-large;
    }

}

/* Hero section */

.main {
    background-color: #141414;
}

.main__container {
    background-color: #141414;
    z-index: 1;
    padding-bottom: 20%;
    background-image: url(images/pic1.png);
    background-repeat: no-repeat;
    background-size: cover;

}

.main__content {
    margin: 0px 25px;
}


.main__content h3 {
    background-color: transparent;
    padding-top: 4rem;

}

.main__content h1 {

    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5vw;
    margin: 0 18vw;
    text-shadow: 0 0 0.2em rgb(44, 44, 44), 0 0 0.2em rgb(44, 44, 44),
        0 0 0.2em rgb(44, 44, 44)
}

@media screen and (max-width: 960px) {
  .main__content h1 {
    font-size: 7vw;
    margin: 0 5vw;
  }
}

.main__content h2 {

    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5vw;
    margin: 0 18vw;

    text-shadow: 0 0 0.2em rgb(44, 44, 44), 0 0 0.2em rgb(44, 44, 44),
        0 0 0.2em rgb(44, 44, 44)
}

.main__btn {
    font-size: 2rem;
    background-image: linear-gradient(to top, #f15847 0%, #f77062 100%);
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem auto;

}

.main__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #4837ff;
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn:hover {
    color: #fff;
}

.main__btn:hover:after {
    width: 100%;
}


/* Oferta section */


.oferta {
    background-color: #141414;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}



.oferta h1 {
    background-color: #ff8177;
    background-image: linear-gradient(90deg, #f77062 0%, #fc9b91 50%, #f77062 100%);
    background-size: 100%;
    margin-bottom: 2rem;
    margin-top: 5rem;
    font-size: 3rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.oferta__modele {
    display: flex;
    justify-content: center;
    flex-wrap: wrap-reverse;
}

.oferta__text {

    padding: 0 20px;
    max-width: 800px;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-content: center;



}

.oferta__text h2 {
    color: #fff;
  	text-align: center;

}

.oferta__text p {
    padding-top: 1rem;
    color: #fff;
    text-align: justify;
}

.oferta__image{
    padding: 0;
    display: flex;
    justify-content: center;
    align-content: center;
  	

}

.oferta__image img {
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 250px;
  	object-fit: contain;
    
}
.oferta__standard {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}





/* Cennik section */

.cennik {
    background-color: #141414;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}



.cennik h1 {
    background-color: #ff8177;
    background-image: linear-gradient(90deg, #f77062 0%, #fc9b91 50%, #f77062 100%);
    background-size: 100%;
    margin-bottom: 2rem;
    margin-top: 5rem;
    font-size: 3rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.cennik__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap-reverse;
}

.cennik__text {

    padding: 0 20px;
    max-width: 800px;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-content: center;
}

.cennik__text h2 {
    color: #fff;

}

.cennik__text p {
    padding-top: 1rem;
    color: #fff;
    text-align: justify;
}



/* Kontakt section */

.kontakt {
    background-color: #141414;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}



.kontakt h1 {
    background-color: #ff8177;
    background-image: linear-gradient(90deg, #f77062 0%, #fc9b91 50%, #f77062 100%);
    background-size: 100%;
    margin-bottom: 1rem;
    margin-top: 5rem;
    font-size: 3rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.kontakt__container h2{
    color: #fff;
    text-align: center;
    margin: 0px 0 20px 0 !important; 
}

.form-row{
  display: flex;
  justify-content: center;
  flex-direction: column;
}


.col input{
    margin: 5px 30px;
    justify-content: center;
    width: 90vw;
    height: 40px;
    max-width: 700px;
}

.form-group textarea{
    margin: 5px 30px;
    justify-content: center;
    width: 90vw;
    height: 300px;
    max-width: 700px;
}


.second__btn{
    
      font-size: 1.5rem;
      background-image: linear-gradient(to top, #f15847 0%, #f77062 100%);
      padding: 10px 25px;
      border: none;
      border-radius: 6px;
      color: #fff;
      cursor: pointer;
      position: relative;
      outline: none;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 5px auto 20px auto;
}



.footer{
    background: #131313;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
@media screen and (max-width: 600px) {
  .footer{
    flex-direction: column;
  }
}

.footer h3{
    margin: 10px;
    color:#fff;
  
}

.footer2{
    margin: 0px;
    background: #131313;
}

.footer2 p{
    font-size: 12px;
    padding: 10px;
    color:#fff;
}