:root {
  --black: black;
  --white: white;
  --primary: rgba(0, 52, 121, .62);
  --grey: grey;
}

body {
  color: var(--black);
  font-family: Open Sans Upload, sans-serif;
  font-size: 18px;
  line-height: 29px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans Upload, sans-serif;
  font-size: 2.5vw;
  font-weight: 300;
  line-height: 125%;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 300;
  line-height: 125%;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 300;
  line-height: 125%;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 300;
  line-height: 125%;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 125%;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 300;
  line-height: 125%;
}

p {
  margin-bottom: 0;
  line-height: 150%;
  display: inline-block;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: all .35s;
  display: inline-block;
}

a:hover {
  color: #e4b424;
  letter-spacing: .05vw;
  border-bottom: 2px #e4b424;
  display: inline-block;
}

.content {
  width: 100vw;
  height: 100vh;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 44vh 0 0;
  display: block;
}

.style-name {
  color: #d4d4d4;
  text-transform: uppercase;
  border-top: 1px solid #d4d4d4;
  border-bottom: 0 #d4d4d4;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}

.p-small {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 150%;
}

.button {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 5px;
  transition: all .35s;
}

.button:hover {
  color: #fff;
  background-color: #c36f4b;
}

.button.button-invert {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: rgba(0, 0, 0, 0);
}

.button.button-invert:hover {
  color: #fff;
  background-color: #c36f4b;
  border-style: solid;
  border-color: #c36f4b;
}

.section {
  padding: 100px 7vw;
}

.section.kontakt {
  width: 100%;
  padding-bottom: 50px;
  position: absolute;
  bottom: 0;
}

.container {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
}

.row {
  flex-wrap: wrap;
  align-content: stretch;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.inner-div-example {
  border: 1px solid var(--primary);
  text-align: center;
  background-color: rgba(231, 133, 91, .25);
  padding-top: 15px;
  padding-bottom: 15px;
}

.col {
  flex: 1;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
  position: relative;
}

.col.col-9 {
  max-width: 75%;
  flex-basis: 75%;
}

.col.col-2 {
  max-width: 16.6667%;
  flex-basis: 16.67%;
}

.col.col-2.col-kontakt {
  height: auto;
  border-left: 2px solid var(--white);
  padding-bottom: 0;
}

.col.col-11 {
  max-width: 91.6667%;
  flex-basis: 91.67%;
}

.col.col-7 {
  max-width: 58.3333%;
  flex-basis: 58.33%;
}

.col.col-6 {
  max-width: 50%;
  flex-basis: 50%;
}

.col.col-6.col-socials {
  justify-content: flex-end;
  display: flex;
}

.col.col-5 {
  max-width: 41.6667%;
  flex-basis: 41.67%;
}

.col.col-3 {
  max-width: 25%;
  flex-basis: 25%;
}

.col.col-12 {
  max-width: 100%;
  flex-basis: 100%;
}

.col.col-8 {
  max-width: 66.6667%;
  flex-basis: 66.67%;
}

.col.col-4 {
  max-width: 33.3333%;
  flex-basis: 33.33%;
}

.col.col-1 {
  max-width: 8.33333%;
  flex-basis: 8.33%;
}

.col.col-10 {
  max-width: 83.3333%;
  flex-basis: 83.33%;
}

.p-large {
  font-size: 21px;
}

.body {
  background-color: var(--primary);
  color: var(--white);
  background-image: linear-gradient(rgba(0, 52, 121, .65), rgba(0, 52, 121, .65)), url('../images/background.jpeg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  font-family: Open Sans Upload, sans-serif;
  font-weight: 300;
  line-height: 150%;
}

.accordion-item {
  width: 100%;
  overflow: hidden;
}

.accordion-toggle {
  height: 80px;
  align-items: center;
  display: flex;
}

.text-block {
  width: 100%;
  white-space: normal;
  flex: none;
}

.accordion-content {
  background-color: rgba(0, 0, 0, 0);
  padding: 20px;
  display: block;
  position: static;
}

.navbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
}

.heading {
  font-size: 2.5vw;
}

.p-kontakt {
  letter-spacing: .05vw;
  margin-top: 3px;
  margin-bottom: 0;
  font-size: .9vw;
  line-height: 140%;
  display: block;
}

.heading-2 {
  font-size: 3vw;
}

.logo {
  width: 11vw;
}

.link-social {
  width: 3vw;
  height: 3vw;
  border: 2px solid var(--white);
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link-social:hover {
  background-image: linear-gradient(212deg, #830afc 10%, #fc01b2 30%, #ff0e4a 50%, #fe4a05 70%, #ffc503 90%);
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon-social {
  width: 1.3vw;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 15px;
  }

  h6 {
    font-size: 12px;
  }

  p {
    font-size: 15px;
  }

  .content {
    padding-top: 50vh;
  }

  .p-small {
    font-size: 12px;
  }

  .button {
    font-size: 15px;
  }

  .section {
    padding: 75px 35px;
  }

  .section.kontakt {
    padding-bottom: 35px;
  }

  .col.col-2.col-kontakt {
    max-width: 33.33%;
    flex-basis: 33.3%;
    padding-left: 10px;
  }

  .col.col-6.col-socials {
    max-width: 100%;
    flex-basis: 100%;
    justify-content: center;
    margin-top: 35px;
  }

  .p-large {
    font-size: 18px;
  }

  .body {
    font-size: 15px;
  }

  .p-kontakt {
    margin-top: 0;
    font-size: 2vw;
  }

  .heading-2 {
    font-size: 6.5vw;
  }

  .logo {
    width: 25vw;
  }

  .link-social {
    width: 35px;
    height: 35px;
  }

  .icon-social {
    width: 20px;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding: 25px 30px;
  }

  .row.kontakt {
    width: 35vw;
    flex-direction: column;
    align-items: stretch;
  }

  .col {
    padding-left: 0;
    padding-right: 0;
  }

  .col.col-9, .col.col-2 {
    max-width: 100%;
    flex-basis: 100%;
  }

  .col.col-2.col-kontakt {
    max-width: none;
    border-bottom: 1px solid var(--white);
    border-left-style: none;
    flex-basis: auto;
    padding-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .col.col-2.col-kontakt.last {
    border-bottom-style: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .col.col-11, .col.col-7, .col.col-6 {
    max-width: 100%;
    flex-basis: 100%;
  }

  .col.col-6.col-socials {
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    bottom: 35px;
    right: 35px;
  }

  .col.col-5, .col.col-3, .col.col-8, .col.col-4, .col.col-1, .col.col-10 {
    max-width: 100%;
    flex-basis: 100%;
  }

  .p-large {
    font-size: 15px;
    font-weight: 500;
  }

  .p-kontakt {
    font-size: 3.5vw;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 35px;
    line-height: 38px;
  }

  h2 {
    font-size: 30px;
    line-height: 33px;
  }

  h3 {
    font-size: 25px;
    line-height: 31px;
  }

  h4 {
    font-size: 21px;
    line-height: 26px;
  }

  h5 {
    font-size: 16px;
    line-height: 22px;
  }

  p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 25px;
  }

  a {
    font-size: 4vw;
  }

  .content {
    width: 100svw;
    padding-top: 30vh;
  }

  .p-small {
    font-size: 13px;
    line-height: 22px;
  }

  .button {
    font-size: 15px;
  }

  .section {
    padding-left: 25px;
    padding-right: 25px;
  }

  .section.kontakt {
    padding-bottom: 25px;
  }

  .row {
    flex-wrap: wrap;
  }

  .row.kontakt {
    width: 50vw;
  }

  .col {
    max-width: 100%;
    flex-basis: 100%;
  }

  .col.col-2.col-kontakt {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .col.col-6.col-socials {
    bottom: 25px;
    right: 25px;
  }

  .body {
    background-image: linear-gradient(to bottom, var(--primary), var(--primary)), url('../images/background.jpeg');
    background-size: auto, cover;
  }

  .p-kontakt {
    font-size: 4vw;
  }

  .heading-2 {
    letter-spacing: .1vw;
    line-height: 140%;
  }

  .logo {
    width: 30vw;
  }

  .link-social {
    border-width: 1px;
  }

  .link {
    font-size: 4vw;
  }
}


@font-face {
  font-family: 'Open Sans Upload';
  src: url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans Upload';
  src: url('../fonts/open-sans-v40-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans Upload';
  src: url('../fonts/open-sans-v40-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}