/* Globalne style strony */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: #f5f7fb;
  color: #071126;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.page {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.top {
  width: 100%;
  margin: 0;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid rgba(7, 17, 38, 0.08);
}

.top strong {
  font-size: 16px;
  font-weight: 800;
  color: #071126;
}

.top a {
  color: #071126;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.top a:hover {
  color: #285be8;
}

img,
video,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font-family: "Poppins", Arial, sans-serif;
}

#kontakt {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 40px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .top {
    padding: 14px 18px;
  }

  #kontakt {
    width: calc(100% - 24px);
    margin: 28px auto;
    padding: 26px 18px;
  }
}