@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #020202;
  color: #fff;
  overflow-x: hidden;
}

.home {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0 150px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 150px 0 150px;
  transition: padding 0.2s ease-in, height 0.2s ease-in;
}

nav.sticky {
  height: 80px;
  padding: 0 150px;
}

.logo__svg {
  height: 45px;
}

.nav__list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.home a {
  margin: 0 20px;
  padding: 8px 0;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: color 0.2s ease-in;
  color: #fff;
  background: none;
  text-decoration: none;
}

.home a:hover {
  color: #11a2ff;
}

.home a:last-child:hover {
  color: #fff;
}

.home a:last-child {
  background: linear-gradient(90deg, #074cff 0%, #11a2ff 100%);
  padding: 10px 20px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 5px;
}

.home .logo a {
  margin: 0;
  padding: 0;
  background: none;
}

/* ==================== HOME CONTENT ==================== */
.content__home__box {
  width: 100%;
  min-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 110px;
  flex-wrap: wrap;
}

.home__content {
  width: 60%;
  padding-right: 20px;
}

.home__content h1 {
  font-family: "League Spartan", sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 85px;
  line-height: 100%;
}

.home__content h2 {
  font-family: "League Spartan", sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 38px;
  margin: 15px 0;
}

.home__content h3 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 25px;
  font-size: 24px;
}

.home__assets {
  width: 40%;
  position: relative;
}

.home__assets img {
  width: 100%;
  height: auto;
  background-size: cover;
  margin-top: 170px;
  transform: scale(1.15);
}

.text__gradient {
  background: linear-gradient(90deg, #074cff 0%, #11a2ff 100%);
  background-clip: text;
  color: transparent;
  padding: 20px 0;
}

.btn__accident {
  font-family: "League Spartan", sans-serif;
  width: 400px;
  padding: 18px 0 11px 0;
  text-align: center;
  margin-top: 35px;
  background: linear-gradient(90deg, rgba(7, 76, 255, 1) 0%, #11a2ff 100%);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}

/* ==================== IKONY SPOŁECZNOŚCIOWE ==================== */
.social__media__icons{
    font-size: 35px;
    color: #fff;
    margin-top: 50px;
}

.social__media__icons a{
    width: 35px;
    height: 35px;
    float: left;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.social__media__icons a:last-child{
    width: 32px;
    height: 32px;
    font-size: 15px;
    border: none;
    outline: none;
    margin: 2px 10px 0 10px;
    padding: 0;
    border: 3px solid #fff;
    border-radius: 50%;
    background: none;
}

.social__media__icons a:first-child{
    margin-left: 0;
}

.social__media__icons a:hover{
  color: #fff;
}

/* ==================== NAGŁÓWKI SEKCJI ==================== */
.how__it__works h1,
.our__history h1,
.process h1,
.container h1,
.realizacje h1,
.mail-php h1 {
  font-family: "League Spartan", sans-serif;
  color: #fff;
  font-size: 4.5rem;
  line-height: 100%;
  text-align: center;
}

/* ==================== ANIMACJA GSAP ==================== */
.gsap-animation-fade-up {
  transform: translateY(50px);
}

/* ====================== MAIL CARD ====================== */
.mail-php{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.btn-mail-come-back{
  border: none;
  outline: none;
  font-size: 30px;
  padding: 20px 40px;
  background-color: #00a3ff;
  color: #020202;
  border-radius: 15px;
}

/* ==================== MEDIA QUERIES ==================== */
@media (max-width: 1730px) {
    .home{
        padding: 0 125px;
    }

    nav{
        padding: 20px 125px 0 125px;
    }

    nav.sticky{
      height: 80px;
      padding: 0 125px;
    }

    .home__content h1{
      font-size: 78px;
    }

    .home__content h2{
      font-size: 36px;
    }

    .btn__accident{
      width: 320px;
      font-size: 30px;
    }
}

@media (max-width: 1570px){
    .home__content h1{
      font-size: 72px;
    }

    .home__content h2{
      font-size: 32px;
    }

    .btn__accident{
      width: 320px;
      font-size: 26px;
    }

    .home__content h3 {
        color: #fff;
        font-weight: 400;
        margin-bottom: 25px;
        font-size: 21px;
    }
}

@media (max-width: 1440px) {
    .home{
        padding: 0 100px;
    }

    nav{
        padding: 20px 100px 0 100px;
    }

    nav.sticky{
      height: 80px;
      padding: 0 100px;
    }

    .home__content h1{
      font-size: 70px;
    }

    .home__content h2{
      font-size: 32px;
    }

    .btn__accident{
      width: 320px;
      font-size: 28px;
    }

    .how__it__works h1,
    .our__history h1,
    .process h1,
    .container h1,
    .realizacje h1,
    .mail-php h1 {
        font-size: 4rem;
    }
}

@media (max-width: 1390px){
    .home a{
        font-size: 14px;
    }

    .home__assets {
        width: 35%;
    }

    .home__content h1{
      font-size: 65px;
    }

    .home__content h2{
      font-size: 27px;
    }

    .btn__accident{
      width: 320px;
      font-size: 23px;
    }

    .home__content h3 {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .social__media__icons{
        font-size: 35px;
        color: #fff;
        margin-top: 35px;
    }

    .social__media__icons a{
        font-size: 35px;
    }
}

@media (max-width: 1305px){
    .home__content h1{
        font-size: 60px;
    }

    .home__content h2{
        font-size: 23px;
    }

    .btn__accident{
        width: 320px;
        font-size: 19px;
        margin-top: 25px;
    }

    .home__content h3 {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .home{
        padding: 0 60px;
    }

    nav{
        padding: 20px 60px 0 60px;
    }

    nav.sticky{
      height: 80px;
      padding: 0 60px;
    }
}

@media (max-width: 1150px){
    nav{
        height: 90px;
    }

    nav.sticky {
      height: 60px;
      padding: 0 50px;
    }

    .home a{
        font-size: 13px;
    }

    .logo__svg {
        height: 35px;
    }

    .home__content h1{
        font-size: 54px;
    }

    .home__content h2{
        font-size: 21px;
    }

    .btn__accident{
        width: 320px;
        font-size: 19px;
        margin-top: 22px;
    }

    .home__content h3 {
        margin-bottom: 20px;
        font-size: 15px;
    }   

    .social__media__icons{
        font-size: 25px;
        color: #fff;
        margin-top: 25px;
    }

    .social__media__icons a{
        font-size: 25px;
        width: 25px;
        height: 25px;
        float: left;
        margin: 0 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .social__media__icons a:last-child{
        width: 22px;
        height: 22px;
        font-size: 10px;
        border: none;
        outline: none;
        margin: 2px 10px 0 10px;
        padding: 0;
        border: 2px solid #fff;
        border-radius: 50%;
        background: none;
    }

    .social__media__icons a:first-child{
        margin-left: 0;
    }

    .social__media__icons a:hover{
      color: #fff;
    }

    .how__it__works h1,
    .our__history h1,
    .process h1,
    .container h1,
    .realizacje h1,
    .mail-php h1 {
        font-size: 3rem;
    }
}

/* Tablety */
@media (max-width: 1024px) {
  .home {
    height: 160%;
    padding: 30px 50px;
  }

  nav {
    height: 60px;
    
  }

  .home__content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .home__assets {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home__assets img{
    width: 50%;
    margin: 0;
  }

  .home__content h1 {
    font-size: 56px;
  }

  .home__content h2 {
    font-size: 28px;
  }

  .btn__accident {
    width: 280px;
    font-size: 24px;
  }
}

/* Telefony komórkowe */
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }

  nav.sticky{
    padding: 15px 20px;
  }


  .nav__list {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 10px;
    display: none;
  }

  .home {
    height: 100vh;
    padding: 0 20px;
  }

  .home__assets{
    width: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .content__home__box{
    margin-top: 20px;
    flex-direction: column;
  }

  .home__content{
    width: 100%;
    height: 35vh;
    padding: 0;
  }

  .home__content h1 {
    font-size: 42px;
    line-height: 1;
  }

  .home__content h2 {
    font-size: 18px;
  }

  .home__content h3 {
    font-size: 14px;
  }

  .btn__accident {
    width: 100%;
    font-size: 16px;
    margin-top: 0;
    padding: 15px 70px;
  }

  .home__assets {
    width: 100%;
    margin-top: 30px;
  }

  .home__assets img{
    width: 95%;
    margin: 50px 0;
  }

  .social__media__icons{
    margin-top: 25px;
  }

  .btn-mail-come-back{
    border: none;
    outline: none;
    font-size: 20px;
    margin: 10px;
    padding: 15px 30px;
    background-color: #00a3ff;
    color: #020202;
    border-radius: 15px;
  }

  .how__it__works h1,
  .our__history h1,
  .process h1,
  .container h1,
  .realizacje h1,
  .mail-php h1 {
    font-size: 2rem;
    width: 100%;
  }
}

@media (max-width: 375px) {
  .home__assets img{
    width: 95%;
    margin: 0;
  }
    
  .home__content h1 {
    font-size: 34px;
    line-height: 1;
  }

  .home__content h2 {
    font-size: 16px;
  }

  .home__content h3 {
    font-size: 12px;
  }

  .btn__accident {
    width: 100%;
    font-size: 14px;
    margin-top: 0;
    padding: 10px 50px;
  }

}

