.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

.white-block {
  position: absolute;
  height: 20px;
  width: 60%;
  background-color: #fff;
}
.white-block-left {
  bottom: 0;
  left: -50px;
  transform: skew(45deg);
}
.white-block-right {
  top: 0;
  right: -50px;
  transform: skew(45deg);
}

.btn-special-animation {
  position: relative;
  transition: background-color 0.3s;
  overflow: hidden;
  z-index: 0;
}
.btn-special-animation::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.45s;
  z-index: -1;
}
.btn-special-animation:hover::before {
  transform: scaleX(0);
  transform-origin: right;
}

.section-heading {
  position: relative;
  margin-bottom: 2em;
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  color: #1755e7;
  letter-spacing: 2px;
  font-family: "Titillium Web", sans-serif;
}

.section-padding {
  padding: 6em 2em;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 3.5rem;
  }
  .section-padding {
    padding: 4em 2em;
  }
}
@media (min-width: 992px) {
  .section-heading {
    font-size: 4.5rem;
  }
  .section-padding {
    padding: 6em 2em;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
}

hr {
  color: #fff;
}

.burger-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1em;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 13;
}
.burger-btn:focus {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}
.burger-btn:hover .burger-btn__bars::before,
.burger-btn:hover .burger-btn__bars::after {
  width: 100%;
}
.burger-btn__box {
  position: relative;
  width: 40px;
  height: 30px;
}
.burger-btn__bars, .burger-btn__bars::after, .burger-btn__bars::before {
  position: absolute;
  right: 0;
  height: 3px;
  content: "";
  background-color: #fff;
  transition: width 0.3s;
}
.burger-btn__bars {
  width: 100%;
}
.burger-btn__bars::after {
  top: 13px;
  width: 60%;
}
.burger-btn__bars::before {
  top: 27px;
  width: 30%;
  transition-delay: 0.1s;
}

.nav {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  transform: translateX(100%);
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  background-image: linear-gradient(45deg, rgb(20, 105, 241), rgb(42, 10, 184));
  z-index: 12;
}
.nav--active {
  transform: translateX(0);
}
.nav__item {
  position: relative;
  display: block;
  margin: 0.5em 0;
  padding: 0.5em 2em;
  font-size: 2.4rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
}
.nav__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  transform: scaleY(0);
  background-color: #fff;
  transition: transform 0.3s;
  content: "";
}
.nav__item:hover::before {
  transform: scaleY(1);
}

@keyframes navItemsAnimation {
  from {
    transform: translateX(400%);
  }
  to {
    transform: translateX(0);
  }
}
.nav-items-animation {
  animation: navItemsAnimation 1s both;
}

.black-bars-color,
.black-bars-color::after,
.black-bars-color::before {
  background-color: rgb(0, 84, 4);
}

.header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
  height: 95vh;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(160deg, rgba(0, 0, 0, 0.471), rgba(0, 84, 4, 0.63)), url("../img/header_img_desktop.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-attachment: scroll;
}
.header__heading {
  font-family: "Titillium Web", sans-serif;
  font-size: 5.8rem;
}
.header__btn {
  margin-top: 2em;
  padding: 0.6em 1.2em;
  font-style: 1.4rem;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  color: #2e2e2e;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.header__btn::before {
  background-color: #eee;
}

.about-gts .questions {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.about-gts .h2-aboutgts {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
  text-align: center;
}
.about-gts .fa-circle-dot {
  font-size: 0.8em;
  color: rgb(0, 220, 59);
}
.about-gts .fa-check {
  font-size: 1em;
  color: rgb(0, 220, 59);
}
.about-gts .contact-anchor {
  text-decoration: none;
  color: rgb(0, 220, 59);
}

.howitworks {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
  background-color: black;
  color: #fff;
  overflow: hidden;
}
.howitworks .cont-one,
.howitworks .cont-two {
  margin: 0 auto;
  width: 80vw;
}
.howitworks__title {
  margin-bottom: 0.5em;
  font-size: 2.2rem;
  width: 80vw;
}
.howitworks__text {
  padding: 1em 0;
  font-size: 1.7rem;
}
.howitworks__some-space {
  padding: 1.5rem;
}

.alterteam__box {
  position: relative;
  margin: 2em;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 3px 3px 10px rgba(56, 53, 53, 0.2);
  transition: transform 0.3s;
}
.alterteam__box:hover {
  transform: scale(0.95);
}
.alterteam__box-img {
  position: absolute;
  top: 8%;
  left: 75%;
  transform: translate(-50%, -50%);
}
.alterteam__box-img img {
  width: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5%;
}
.alterteam__box-img .toobig-maciek {
  width: 110px;
}
.alterteam__box-img .toobig-kuba {
  width: 115px;
}
.alterteam__box-icon {
  margin-bottom: 1em;
  font-size: 3rem;
  color: #1755e7;
}
.alterteam__box-name {
  margin-bottom: 0.2em;
  font-size: 2rem;
  font-weight: bold;
}
.alterteam__box-hr {
  height: 2px;
  color: #1755e7;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
  margin-top: 1em;
}
.alterteam__box-role {
  margin-bottom: 0.7em;
  font-size: 1.3rem;
}
.alterteam__box-text {
  margin-bottom: 1em;
  font-size: 1.4rem;
  color: #2e2e2e;
}

.pjm {
  position: relative;
  display: flex;
  padding: 4em;
  background-color: black;
  overflow: hidden;
}
.pjm-text {
  font-size: 1.7rem;
  color: white;
  margin: 20px;
  text-align: center;
  margin-bottom: 40px;
}

.footer {
  color: #fff;
  background-color: #2e2e2e;
}
.footer .wrapper {
  padding: 6em 2em 2em;
}
.footer__box {
  font-size: 1.4rem;
  text-align: center;
}
.footer__box-title {
  margin-bottom: 1em;
  font-size: 2.4rem;
}
.footer__box-text {
  margin-bottom: 2em;
  font-size: 1.5rem;
}
.footer__box-social {
  padding: 0 0.3em;
  font-size: 3rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 2em;
}
.footer .fab, .footer .fa-home {
  color: purple;
  transition: color 1s;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5em;
}
.footer .fab:hover, .footer .fa-home:hover {
  color: gold;
}

.footer__bottom-text {
  margin: 1em;
  background-color: #2e2e2e;
  text-align: center;
}

@media (max-width: 767px) {
  .alterteam.section-padding {
    padding: 6em 0;
  }
}
@media (min-width: 576px) {
  .zamigajmito__box {
    flex-direction: row;
    justify-content: space-between;
  }
  .zamigajmito__box-text {
    width: 55%;
  }
  .zamigajmito__box-text--right {
    text-align: right;
  }
  .zamigajmito__box-img {
    width: 40%;
  }
  .zamigajmito__box-img--right {
    order: 1;
  }
  .zamigajmito__img {
    margin-bottom: 0;
    max-height: 300px;
  }
  .wtrymigam__cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .wtrymigam__card {
    margin: 1em;
    width: 75%;
  }
  .accordion {
    width: 600px;
  }
}
@media (max-width: 576px) {
  .header {
    height: 105vh;
  }
}
@media (min-width: 768px) {
  .white-block {
    height: 37px;
    width: 45%;
  }
  .header__heading {
    font-size: 4.6rem;
  }
  .header__text {
    font-size: 2.2rem;
  }
  .header__btn {
    font-size: 1.6rem;
    padding: 1em 2em;
  }
  .h2__header {
    font-size: 2.8rem;
  }
  .zamigajmito__ {
    font-size: 1.8rem;
  }
  .howitworks {
    padding: 30rem 2em;
  }
  .howitworks hr {
    margin: 0 auto;
    width: 70%;
  }
  .howitworks__text {
    font-size: 2.2rem;
  }
  .wtrymigam__cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .wtrymigam__card {
    margin: 1em;
    width: 50%;
  }
  .accordion {
    width: 700px;
  }
}
@media (min-width: 992px) {
  .white-block {
    height: 48px;
  }
  .burger-btn {
    top: 50px;
    right: 50px;
  }
  .header {
    background-image: linear-gradient(160deg, rgba(0, 0, 0, 0.471), rgba(0, 84, 4, 0.63)), url("../img/header_img_desktop.webp");
  }
  .header__heading {
    font-size: 8rem;
  }
  .nav__item {
    font-size: 2.8rem;
  }
  .zamigajmito__box {
    margin: 5em 0;
  }
  .zamigajmito__box-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 2.5em;
  }
  .zamigajmito__title {
    font-size: 3.6rem;
  }
  .zamigajmito__text {
    font-size: 2.2rem;
  }
  .howitworks {
    padding: 28rem 2em;
    background-color: black;
  }
  .howitworks__title {
    font-size: 4.2rem;
  }
  .howitworks hr {
    width: 60%;
    max-width: 900px;
  }
  .wtrymigam__cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .wtrymigam__card {
    margin: 1em;
    width: 55%;
  }
  .accordion {
    width: 820px;
  }
}
@media (min-width: 1100px) {
  .wtrymigam__card {
    width: 45%;
  }
}/*# sourceMappingURL=main.css.map */
.flag-language {
    position: fixed;
    top: 37px;
    right: 100px;
    z-index: 1;
}
.flag-language img {
    height: 26px;
}
@media (min-width: 992px) {
	.flag-language {
		top: 68px;
		right: 130px;
	}
}