/* variables */
:root {
  --black: #000;
  --white: #fff;
  --red: rgb(0, 30, 80);
  --gray: #787878;
  --darkGray: #141414;
  --lightGray: #bcbcbc;
}
.black-block {
  height: 20px;
  width: 100%;
  background: var(--black);
}
.contact-content {
  padding-top: 150px;
  margin-bottom: 80px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.pros__card--icon svg {
  width: 42px;
  height: 42px;
}

.form-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 150px;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  padding: 16px 8px;
  color: black;
  background: #fff;
  -webkit-box-shadow: 5px 5px 11px 1px rgba(0,0,0,0.63); 
  box-shadow: 5px 5px 11px 1px rgba(0,0,0,0.63);
  display: none;
  z-index: 10;
}
.form-popup.active {
  display: flex;
}


/* variables end */
body {
  background-color: var(--black);
}

a {
  text-decoration: none;
}

p,
span,
h1,
h2,
h3,
h4,
h5,
a,
button {
  line-height: 1.5;
}

.m-auto {
  margin: auto;
}

.video__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.video__wrapper iframe {
  position: absolute;
  top: 100px;
  width: 100%;
  height: 100%;
}

/* Wrappers */
.section-wrapper {
  padding: 0 20px;
}

.container{
	max-width: 1230px;
}

@media screen and (max-width:1230px) {
.container {
  max-width: 100%;
}
}

/* Wrappers End */
/* Flex utlils */
.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

/* Flex utlils end */

.text-center {
  text-align: center;
}

/* font colors */
.text-black {
  color: #191919;
}

.text-white {
  color: var(--white);
}

.text-red {
  color: var(--red);
}

.text-gray {
  color: #787878;
}

.text-light-gray {
  color: var(--lightGray);
}

.text-dark-gray {
  color: var(--darkGray);
}

/* font colors */

/* backgrounds */
.bg-black {
  background-color: var(--black);
}

.bg-white {
  background-color: var(--white);
}

.bg-red {
  background-color: #000000;
}

.bg-gray {
  background-color: var(--gray);
}

.bg-dark-gray {
  background-color: var(--darkGray);
}

.bg-light-gray {
  background-color: var(--lightGray);
}

/* backgrounds */

/* typography */
.text-12 {
  font-size: 12px;
}

.text-14 {
  font-size: 14px;
}

.text-15 {
  font-size: 15px;
}

.text-16 {
  font-size: 18px;
}

.text-18 {
  font-size: 18px;
}

.text-30 {
  font-size: 30px;
}

.text-38 {
  font-size: 38px;
}

@media screen and (max-width: 760px) {
.text-38 {
  font-size: 28px;
}
.text-16 {
  font-size: 14px;
}
}

.text-76 {
  font-size: 76px;
}

@media screen and (max-width: 760px) {
.text-76 {
  font-size: 45px;
}
}

.line-height-24{
	line-height: 24px;
}
.text-uppercase{
	text-transform: uppercase;
}
.list {
  list-style: unset;
  padding-left:20px
}
.uppercase {
  text-transform: uppercase;
}

.font-DWA-bold {
  font-family: "AudiTypeExtended"; 
}

.font-DWA-Regular {
  font-family: "AudiTypeWide", sans-serif;
}

.font-DWA-Light {
  font-family: "AudiTypeExtended", sans-serif;
}

.weight-400 {
  font-weight: 400;
}

.weight-500 {
  font-weight: 500;
}

.weight-900 {
  font-weight: 900;
}

/* typography */

html {
  scroll-behavior: smooth;
}

/* [id]::before {
  content: "";
  display: block;
  height: 250px;
  margin-top: -250px;
  visibility: hidden;
} */

.show-more {
  width: 100%;
  height: 80px;
  background: var(--red);
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  font-family: 'Montserrat' Arial, Helvetica, sans-serif;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
/* Nav start */
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  z-index: 6;
}

.nav__burger {
  position: fixed;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

nav {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 6;
  top: 0;
  background: #fff;
  transition: background 0.4s ease-in;
}

nav.active {
  background: #fff;
}

.nav__logo img {
  height: 18px;
  /* margin-left: 20px; */
  z-index: 2;
  position: relative;
}

.nav__list {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  display: none;
  flex-direction: column;
  /* row-gap: 32px; */
  justify-content: center;
  align-items: center;
  background: #000;
  z-index: 0;
}

.nav__list.open {
  display: flex;
}

.nav__list li {
  margin-bottom: 32px;
}

.nav__link {
  color: #000;
  font-size: 15px;
  text-transform: uppercase;
  transition: color 0.4s ease-in;
  font-weight: 600;
}

.nav__link_icon::before {
  content: url(https://ggautorzeszow.pl/dwa//static/img/odkup.svg);
  display: inline-block;
  margin-right: 10px;
}

@media screen and (max-width: 860px) {
.nav__link {
		color: #ffffff;
	}
}

.nav__link:hover,
.nav__link.active {
  color: var(--red);
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: #ca5f00;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

/* Nav end */

/* Footer */
.footer__col {
  display: flex;
  margin-left: 8px;
  flex-direction: column;
  margin-bottom: 32px;
}

.section-wrapper-footer {
  width: 90%;
  margin: auto;
  padding: 24px 0;
}

footer {
  display: flex;
  flex-direction: column;
  /* row-gap: 32px; */
}

.footer__link {
  transition: color 0.4s ease-in;
}

.footer__link:hover {
  color: #fff;
}

/* Footer End */

/* Contact */

.form-input {
  padding: 12px 16px;
  font-size: 15px;
  color: #8c8c8c;
  border: none;
  //font-family: "Montserrat", Arial, Helvetica, sans-serif;
  border-radius: 6px;
}

.error {
  padding-left: 16px;
  color: red;
  height: 12px;
  padding-top: 3px;
}

.btn {
align-items: center;
justify-content: center;
border: 1px solid #B1CC19;
text-align: center;
cursor: pointer;
padding-block-start: 1em;
padding-inline-end: 2em;
padding-block-end: 1em;
padding-inline-start: 2em;
color: #fff;
background-color: #B1CC19;
min-width: 240px;
font-size: 16px;
border-radius: 8px;
}
.btn:hover {
background-color: #4c4c4c;
}

@media screen and (max-width: 900px) {
	.btn {
width: 100%;
font-size: 18px;
}

.btn2 {
  color: #fff;
  background: var(--red);
  padding: 16px 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  border: none;
  width: 300px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  line-height: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: auto;
}
}

.btn2 img{
	padding-right: 15px;
}

.btn2 span{
	line-height: 1.5;
	text-align: left;
	padding-left: 15px;
}

.form {
  display: flex;
  flex-direction: column;
}

.form__row {
  display: flex;
  flex-direction: column;
}

.form__column {
  display: flex;
  flex-direction: column;
}

/* Checkbox */
.checkbox {
  display: grid;
  grid-template-columns: -webkit-min-content auto;
  grid-template-columns: min-content auto;
  grid-gap: 16px;
  font-size: 14px;
  line-height: 18px;
  color: var(--gray);
}

.checkbox--disabled {
  color: var(--gray);
}

.checkbox__control {
  display: inline-grid;
  width: 1em;
  height: 1em;
  border-radius: 0.25em;
  border: 0.1em solid currentColor;
}

.checkbox__control svg {
  transition: transform 0.1s ease-in 25ms;
  transform: scale(0);
  transform-origin: bottom left;
}

.checkbox__input {
  display: grid;
  grid-template-areas: "checkbox";
}

.checkbox__input>* {
  grid-area: checkbox;
}

.checkbox__input input {
  opacity: 0;
  width: 1em;
  height: 1em;
}

.checkbox__input input:focus+.checkbox__control {
  box-shadow: 0 0 0 0.05em #fff, 0 0 0.15em 0.1em currentColor;
}

.checkbox__input input:checked+.checkbox__control svg {
  transform: scale(1);
}

.checkbox__input input:disabled+.checkbox__control {
  color: var(--gray);
}

/* End Checkbox */
/* End Contact */

/* Margins */
.mb-sm-8 {
  margin-bottom: 8px;
}

.mb-sm-16 {
  margin-bottom: 16px;
}

.mb-sm-24 {
  margin-bottom: 24px;
}

.mb-sm-32 {
  margin-bottom: 32px;
}

.mb-sm-48 {
  margin-bottom: 48px;
}

.mb-sm-64 {
  margin-bottom: 64px;
}

.mb-sm-80 {
  margin-bottom: 80px;
}

.mt-sm-8 {
  margin-top: 8px;
}

.mt-sm-16 {
  margin-top: 16px;
}

.mt-sm-24 {
  margin-top: 24px;
}

.mt-sm-32 {
  margin-top: 32px;
}

.mt-sm-48 {
  margin-top: 48px;
}

.mt-sm-64 {
  margin-top: 64px;
}

.mt-sm-80 {
  margin-top: 80px;
}

.ml-sm-8 {
  margin-left: 8px;
}

.ml-sm-16 {
  margin-left: 16px;
}

.ml-sm-24 {
  margin-left: 24px;
}

.ml-sm-32 {
  margin-left: 32px;
}

.ml-sm-48 {
  margin-left: 48px;
}

.ml-sm-64 {
  margin-left: 64px;
}

.ml-sm-80 {
  margin-left: 80px;
}

.mr-sm-8 {
  margin-right: 8px;
}

.mr-sm-16 {
  margin-right: 16px;
}

.mr-sm-24 {
  margin-right: 24px;
}

.mr-sm-32 {
  margin-right: 32px;
}

.mr-sm-48 {
  margin-right: 48px;
}

.mr-sm-64 {
  margin-right: 64px;
}

.mr-sm-80 {
  margin-right: 80px;
}

/* Margins */
/* Paddings */
.pb-sm-8 {
  padding-bottom: 8px;
}

.pb-sm-16 {
  padding-bottom: 16px;
}

.pb-sm-24 {
  padding-bottom: 24px;
}

.pb-sm-32 {
  padding-bottom: 32px;
}

.pb-sm-48 {
  padding-bottom: 48px;
}

.pb-sm-64 {
  padding-bottom: 64px;
}

.pb-sm-80 {
  padding-bottom: 80px;
}

.pt-sm-8 {
  padding-top: 8px;
}

.pt-sm-16 {
  padding-top: 16px;
}

.pt-sm-24 {
  padding-top: 24px;
}

.pt-sm-32 {
  padding-top: 32px;
}

.pt-sm-48 {
  padding-top: 48px;
}

.pt-sm-64 {
  padding-top: 64px;
}

.pt-sm-80 {
  padding-top: 80px;
}

.pl-sm-8 {
  padding-left: 8px;
}

.pl-sm-16 {
  padding-left: 16px;
}

.pl-sm-24 {
  padding-left: 24px;
}

.pl-sm-32 {
  padding-left: 32px;
}

.pl-sm-48 {
  padding-left: 48px;
}

.pl-sm-64 {
  padding-left: 64px;
}

.pl-sm-80 {
  padding-left: 80px;
}

.pr-sm-8 {
  padding-right: 8px;
}

.pr-sm-16 {
  padding-right: 16px;
}

.pr-sm-24 {
  padding-right: 24px;
}

.pr-sm-32 {
  padding-right: 32px;
}

.pr-sm-48 {
  padding-right: 48px;
}

.pr-sm-64 {
  padding-right: 64px;
}

.pr-sm-80 {
  padding-right: 80px;
}

/* Paddings end */
.logo-img {
  width: 200px;
}

@media screen and (min-width: 601px) {
  .logo-img {
    width: 300px;
  }

  .nav__logo img {
    height: 40px;
    margin-left: 20px;
    z-index: 2;
    position: relative;
  }

  footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
    column-gap: 32px;
  }

  .section-wrapper {
    padding: 0 30px;
  }

  .section-wrapper-footer {
    padding: 32px 0;
  }
}

@media screen and (min-width: 861px) {
  .video__wrapper iframe {
    top: 0;
  }

  /* navbar */
  .nav {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
  }

  .section-wrapper {
    padding: 0 40px;
  }

  .nav__burger {
    display: none;
  }

  .section-wrapper-footer {
    padding: 48px 0;
  }

  .nav__list {
    display: flex;
    flex-direction: row;
    /* column-gap: 32px; */
    justify-content: flex-end;
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
    background: unset;
    height: unset;
    width: unset;
  }

  .nav__list li {
    margin-bottom: unset;
  }

  .nav__list li:not(:first-of-type) {
    margin-left: 32px;
  }

  .nav__link {
    margin-bottom: unset;
  }

  /* end navbar */
  footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
  }

  /* Margins */
  .mb-md-8 {
    margin-bottom: 8px;
  }

  .mb-md-16 {
    margin-bottom: 16px;
  }

  .mb-md-24 {
    margin-bottom: 24px;
  }

  .mb-md-32 {
    margin-bottom: 32px;
  }

  .mb-md-48 {
    margin-bottom: 48px;
  }

  .mb-md-64 {
    margin-bottom: 64px;
  }

  .mb-md-80 {
    margin-bottom: 80px;
  }

  .mt-md-8 {
    margin-top: 8px;
  }

  .mt-md-16 {
    margin-top: 16px;
  }

  .mt-md-24 {
    margin-top: 24px;
  }

  .mt-md-32 {
    margin-top: 32px;
  }

  .mt-md-48 {
    margin-top: 48px;
  }

  .mt-md-64 {
    margin-top: 64px;
  }

  .mt-md-80 {
    margin-top: 80px;
  }

  .ml-md-8 {
    margin-left: 8px;
  }

  .ml-md-16 {
    margin-left: 16px;
  }

  .ml-md-24 {
    margin-left: 24px;
  }

  .ml-md-32 {
    margin-left: 32px;
  }

  .ml-md-48 {
    margin-left: 48px;
  }

  .ml-md-64 {
    margin-left: 64px;
  }

  .ml-md-80 {
    margin-left: 80px;
  }

  .mr-md-8 {
    margin-right: 8px;
  }

  .mr-md-16 {
    margin-right: 16px;
  }

  .mr-md-24 {
    margin-right: 24px;
  }

  .mr-md-32 {
    margin-right: 32px;
  }

  .mr-md-48 {
    margin-right: 48px;
  }

  .mr-md-64 {
    margin-right: 64px;
  }

  .mr-md-80 {
    margin-right: 80px;
  }

  /* Margins */
  /* Paddings */
  .pb-md-8 {
    padding-bottom: 8px;
  }

  .pb-md-16 {
    padding-bottom: 16px;
  }

  .pb-md-24 {
    padding-bottom: 24px;
  }

  .pb-md-32 {
    padding-bottom: 32px;
  }

  .pb-md-48 {
    padding-bottom: 48px;
  }

  .pb-md-64 {
    padding-bottom: 64px;
  }

  .pb-md-80 {
    padding-bottom: 80px;
  }

  .pt-md-8 {
    padding-top: 8px;
  }

  .pt-md-16 {
    padding-top: 16px;
  }

  .pt-md-24 {
    padding-top: 24px;
  }

  .pt-md-32 {
    padding-top: 32px;
  }

  .pt-md-48 {
    padding-top: 48px;
  }

  .pt-md-64 {
    padding-top: 64px;
  }

  .pt-md-80 {
    padding-top: 80px;
  }

  .pl-md-8 {
    padding-left: 8px;
  }

  .pl-md-16 {
    padding-left: 16px;
  }

  .pl-md-24 {
    padding-left: 24px;
  }

  .pl-md-32 {
    padding-left: 32px;
  }

  .pl-md-48 {
    padding-left: 48px;
  }

  .pl-md-64 {
    padding-left: 64px;
  }

  .pl-md-80 {
    padding-left: 80px;
  }

  .pr-md-8 {
    padding-right: 8px;
  }

  .pr-md-16 {
    padding-right: 16px;
  }

  .pr-md-24 {
    padding-right: 24px;
  }

  .pr-md-32 {
    padding-right: 32px;
  }

  .pr-md-48 {
    padding-right: 48px;
  }

  .pr-md-64 {
    padding-right: 64px;
  }

  .pr-md-80 {
    padding-right: 80px;
  }

  /* Paddings end */
}

@media screen and (min-width: 1080px) {
  .contact-content {
    padding-top: unset;
    margin-bottom: unset;
    display: block;
    justify-content: unset;
    align-items: unset;
  }
  .nav {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
  }

  footer {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .section-wrapper-footer {
    padding: 64px 0;
  }
}

@media screen and (min-width: 1280px) {
  .section-wrapper {
    padding: 0 80px;
  }

  .section-wrapper-footer {
    padding: 80px 0;
  }

  /* Margins */
  .mb-xl-8 {
    margin-bottom: 8px;
  }

  .mb-xl-16 {
    margin-bottom: 16px;
  }

  .mb-xl-24 {
    margin-bottom: 24px;
  }

  .mb-xl-32 {
    margin-bottom: 32px;
  }

  .mb-xl-48 {
    margin-bottom: 48px;
  }

  .mb-xl-64 {
    margin-bottom: 64px;
  }

  .mb-xl-80 {
    margin-bottom: 80px;
  }

  .mt-xl-8 {
    margin-top: 8px;
  }

  .mt-xl-16 {
    margin-top: 16px;
  }

  .mt-xl-24 {
    margin-top: 24px;
  }

  .mt-xl-32 {
    margin-top: 32px;
  }

  .mt-xl-48 {
    margin-top: 48px;
  }

  .mt-xl-64 {
    margin-top: 64px;
  }

  .mt-xl-80 {
    margin-top: 80px;
  }

  .ml-xl-8 {
    margin-left: 8px;
  }

  .ml-xl-16 {
    margin-left: 16px;
  }

  .ml-xl-24 {
    margin-left: 24px;
  }

  .ml-xl-32 {
    margin-left: 32px;
  }

  .ml-xl-48 {
    margin-left: 48px;
  }

  .ml-xl-64 {
    margin-left: 64px;
  }

  .ml-xl-80 {
    margin-left: 80px;
  }

  .mr-xl-8 {
    margin-right: 8px;
  }

  .mr-xl-16 {
    margin-right: 16px;
  }

  .mr-xl-24 {
    margin-right: 24px;
  }

  .mr-xl-32 {
    margin-right: 32px;
  }

  .mr-xl-48 {
    margin-right: 48px;
  }

  .mr-xl-64 {
    margin-right: 64px;
  }

  .mr-xl-80 {
    margin-right: 80px;
  }

  /* Margins */
  /* Paddings */
  .pb-xl-8 {
    padding-bottom: 8px;
  }

  .pb-xl-16 {
    padding-bottom: 16px;
  }

  .pb-xl-24 {
    padding-bottom: 24px;
  }

  .pb-xl-32 {
    padding-bottom: 32px;
  }

  .pb-xl-48 {
    padding-bottom: 48px;
  }

  .pb-xl-64 {
    padding-bottom: 64px;
  }

  .pb-xl-80 {
    padding-bottom: 80px;
  }

  .pt-xl-8 {
    padding-top: 8px;
  }

  .pt-xl-16 {
    padding-top: 16px;
  }

  .pt-xl-24 {
    padding-top: 24px;
  }

  .pt-xl-32 {
    padding-top: 32px;
  }

  .pt-xl-48 {
    padding-top: 48px;
  }

  .pt-xl-64 {
    padding-top: 64px;
  }

  .pt-xl-80 {
    padding-top: 80px;
  }

  .pl-xl-8 {
    padding-left: 8px;
  }

  .pl-xl-16 {
    padding-left: 16px;
  }

  .pl-xl-24 {
    padding-left: 24px;
  }

  .pl-xl-32 {
    padding-left: 32px;
  }

  .pl-xl-48 {
    padding-left: 48px;
  }

  .pl-xl-64 {
    padding-left: 64px;
  }

  .pl-xl-80 {
    padding-left: 80px;
  }

  .pr-xl-8 {
    padding-right: 8px;
  }

  .pr-xl-16 {
    padding-right: 16px;
  }

  .pr-xl-24 {
    padding-right: 24px;
  }

  .pr-xl-32 {
    padding-right: 32px;
  }

  .pr-xl-48 {
    padding-right: 48px;
  }

  .pr-xl-64 {
    padding-right: 64px;
  }

  .pr-xl-80 {
    padding-right: 80px;
  }

  /* Paddings end */
}