@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: 'Lato', sans-serif;
}

.header {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 100;
}

.header__logo {
  text-transform: uppercase;
  margin-left: 30px;
  font-size: 27px;
  font-family: 'Segoe UI';
  font-weight: 700;
  color: #fff;
}

.header__nav {
  margin-right: 30px;
}

.header__nav .header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav .header__list li {
  margin: 0 15px;
  font-size: 15px;
  padding: 6px 15px;
  text-decoration: none;
  list-style-type: none;
  font-family: 'Segoe UI';
  font-size: 17px;
  color: #fff;
  cursor: pointer;
}

.header__nav .header__list li:first-child {
  color: #ca2f2f;
  text-align: center;
  position: relative;
}

.header__nav .header__list li:first-child::before {
  content: '';
  display: block;
  width: auto;
  height: auto;
  background-color: #fff;
  border-radius: 50px;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.header__toggle {
  display: none;
  z-index: 999;
  cursor: pointer;
}

.header__toggle .fa-bars {
  color: #fff;
  font-size: 24px;
  margin-right: 20px;
}

.intro {
  background-image: url("../img/intro.png");
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 500px;
}

.intro__container {
  width: 60%;
  height: auto;
  color: #fff;
  margin-left: 120px;
  margin-top: 80px;
}

.intro__container h1 {
  font-family: 'Segoe UI';
  font-weight: 700;
  word-spacing: 10px;
  font-size: 37px;
}

.intro__container p {
  word-spacing: 5px;
  font-size: 20px;
}

.intro__phone {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 450px;
  margin-right: 100px;
  /* Tutaj można przesunąć "main__phone.png" bardziej do środka */
}

@media (max-width: 768px) {
  .header {
    margin-top: 15px;
  }
  .header__nav {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    display: none;
    margin-top: 50px;
    background-color: #fff;
    -webkit-animation-name: list;
            animation-name: list;
    -webkit-animation-duration: .4s;
            animation-duration: .4s;
  }
  .header__nav .header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__nav .header__list li {
    margin: 0;
    padding: 0;
    font-size: 18px;
    color: #000;
    line-height: 2;
  }
  .header__nav .header__list li:first-child {
    text-align: left;
    position: static;
  }
  .header__nav .header__list li:first-child::before {
    background: none;
    position: static;
  }
  .header__toggle {
    display: block;
  }
  .list-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .intro__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
    text-align: center;
    margin-top: 15px;
    position: relative;
    width: 100%;
  }
  .intro__container h1 {
    font-size: 27px;
  }
  .intro__container p {
    position: relative;
    bottom: 20px;
    font-size: 19px;
  }
  .intro__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    margin-top: 0px;
    top: 340px;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .header {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    z-index: 100;
  }
  .header__logo {
    text-transform: uppercase;
    margin-left: 30px;
    font-size: 38px;
    font-family: 'Segoe UI';
    font-weight: 700;
    color: #fff;
  }
  .header__nav {
    margin-right: 30px;
    margin-top: 20px;
  }
  .header__nav .header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__nav .header__list li {
    margin: 0 27px;
    font-size: 15px;
    padding: 8px 15px;
    text-decoration: none;
    list-style-type: none;
    font-family: 'Segoe UI';
    font-size: 17px;
    color: #fff;
    cursor: pointer;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  .intro__container {
    margin-left: 320px;
  }
  .intro__container h1 {
    font-size: 58px;
  }
  .intro__container p {
    font-size: 28px;
  }
  .intro__phone {
    margin-right: 300px;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

/* MENU */
@-webkit-keyframes list {
  0% {
    -webkit-transform: translateX(-500px);
            transform: translateX(-500px);
  }
}
@keyframes list {
  0% {
    -webkit-transform: translateX(-500px);
            transform: translateX(-500px);
  }
}
/*# sourceMappingURL=style.css.map */