@font-face {
  font-family: "custom400";
  src: url("../assets/fonts/Poppins-Regular.woff2") format("woff2"), url("../assets/fonts/Poppins-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "custom600";
  src: url("../assets/fonts/Poppins-SemiBold.woff2") format("woff2"), url("../assets/fonts/Poppins-SemiBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "custom700";
  src: url("../assets/fonts/Poppins-Bold.woff2") format("woff2"), url("../assets/fonts/Poppins-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "custom800";
  src: url("../assets/fonts/Poppins-ExtraBold.woff2") format("woff2"), url("../assets/fonts/Poppins-ExtraBold.woff") format("woff");
  font-display: swap;
}
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  color-scheme: only light;
  height: 100%;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  overflow-x: hidden;
  font-family: "custom400";
}

a {
  text-decoration: none;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.body-bg__shadow, .body-bg__img {
  position: fixed;
  height: 100vh;
  width: 100%;
}
.body-bg__img {
  background-image: url("../img/header-img.webp");
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.body-bg__shadow {
  background-color: #0e1d3c;
  opacity: 0.6;
}

.spacer {
  position: fixed;
  height: 6rem;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 15;
}
.spacer .burger-btn {
  padding: 0 2rem;
  height: 80%;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.spacer .burger-btn__box {
  position: relative;
  top: 0.3rem;
  width: 3rem;
  height: 3rem;
}
.spacer .burger-btn__bars, .spacer .burger-btn__bars::after, .spacer .burger-btn__bars::before {
  position: absolute;
  right: 0;
  height: 0.3rem;
  content: "";
  background-color: #0e1d3c;
  transition: width 0.3s, background-color 0.3s;
}
.spacer .burger-btn__bars {
  width: 100%;
}
.spacer .burger-btn__bars::after {
  top: 1rem;
  width: 60%;
}
.spacer .burger-btn__bars::before {
  top: 2rem;
  width: 30%;
}

.burger-btn--active .burger-btn__bars,
.burger-btn--active .burger-btn__bars::after,
.burger-btn--active .burger-btn__bars::before {
  width: 100%;
  background-color: #fff;
}

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

.logo-white__bg {
  z-index: 10;
  position: fixed;
  top: 0;
  height: 6rem;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 0px 8px 1px #0e1d3c;
}
.logo-white__bg a {
  width: 78.94px;
  height: 48px;
  padding: 0 0 0 1rem;
}
.logo-white__bg a img {
  width: 78.94px;
  height: 48px;
}

.logo-button {
  position: fixed;
  height: 6rem;
  width: 9rem;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 100;
}

.social-media {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-media .icon {
  height: 3rem;
  width: 3rem;
  margin: 1rem;
}

.logo-white__link {
  position: fixed;
  top: 0;
  left: 0;
  height: 6rem;
  width: 9rem;
  max-width: 9rem;
  cursor: pointer;
  z-index: 11;
}
.logo-white__link a {
  height: 6rem;
  width: 9rem;
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  height: 100lvh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #0e1d3c;
  color: #fff;
  font-family: "custom600";
  transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transform: translateX(100%);
  z-index: 12;
}
.nav-mobile__ulList {
  list-style: none;
  text-transform: uppercase;
  font-size: 2rem;
}
.nav-mobile__ulList li {
  padding: 3rem 0;
  text-align: right;
  position: relative;
}
.nav-mobile__ulList li ::after {
  position: absolute;
  content: "";
  background-color: #f5a101;
  height: 2rem;
  width: 0.3rem;
  right: -1.5rem;
  bottom: 2.5rem;
}
.nav-mobile__ulList li ::before {
  position: absolute;
  content: "";
  background-color: #f5a101;
  height: 0.3rem;
  width: 6rem;
  right: -1.5rem;
  bottom: 2.5rem;
}
.nav-mobile__ulList li a {
  padding: 3rem 0;
  text-decoration: none;
  color: #fff;
}

.nav-mobile--active {
  transform: translateX(0);
}

header {
  padding: 16rem 0 10rem 0;
  width: 100%;
  max-width: 60rem;
  color: #fff;
  display: flex;
  align-items: center;
}
header .header-text {
  margin-left: 2rem;
  margin-right: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
header .header-text h1 {
  font-size: 3rem;
  font-family: "custom800";
  letter-spacing: 1px;
}
header .header-text p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  font-family: "custom400";
}
header .header-text .btn button {
  width: 15rem;
  height: 5rem;
  background-color: #f5a101;
  color: #0e1d3c;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  animation: changeScale 4s infinite both;
  font-family: "custom400";
}
header .header-text .yellow-line-one {
  position: absolute;
  background-color: #f5a101;
  height: 2rem;
  width: 0.3rem;
  left: -1rem;
  top: 0;
}
header .header-text .yellow-line-two {
  position: absolute;
  background-color: #f5a101;
  height: 0.3rem;
  width: 2rem;
  left: -1rem;
  top: 0;
}
header .header-text .yellow-line-three {
  position: absolute;
  background-color: #f5a101;
  height: 0.3rem;
  width: 2rem;
  right: -1rem;
  bottom: 0rem;
}
header .header-text .yellow-line-four {
  position: absolute;
  background-color: #f5a101;
  height: 2rem;
  width: 0.3rem;
  right: -1rem;
  bottom: 0rem;
}

main {
  background-color: #fff;
  border-radius: 15px;
}

.contact {
  padding: 5rem 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.contact .boss-icon {
  position: absolute;
  top: 30%;
  right: -20%;
  opacity: 0.07;
  pointer-events: none;
}
.contact .wrapper {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact .wrapper .text {
  position: relative;
  max-width: 40rem;
}
.contact .wrapper .text h2 {
  font-size: 2.7rem;
  font-family: "custom800";
  margin: 3rem 0;
  color: #0e1d3c;
  position: relative;
}
.contact .wrapper .text h2 ::after {
  position: absolute;
  content: "";
  background-color: #f5a101;
  height: 2rem;
  width: 0.5rem;
  left: -1rem;
  top: 0;
}
.contact .wrapper .text h2 ::before {
  position: absolute;
  content: "";
  background-color: #f5a101;
  height: 0.5rem;
  width: 2rem;
  left: -1rem;
  top: 0;
}
.contact .wrapper .text h2 span {
  color: #f5a101;
}
.contact .wrapper .text p,
.contact .wrapper .text a {
  font-size: 2.2rem;
  padding-bottom: 5rem;
  margin-bottom: 5rem;
  color: #0e1d3c;
}
.contact .wrapper .text a {
  text-decoration: underline;
}
.contact .wrapper .text .social-media-bottom {
  display: flex;
  justify-content: space-between;
}
.contact .wrapper .text .social-media-bottom .icon {
  width: 8rem;
  height: 8rem;
}

.contact-us {
  padding: 5rem 1rem;
  width: 100%;
  overflow: hidden;
}
.contact-us .wrapper {
  background-color: #0e1d3c;
  width: 100%;
  max-width: 60rem;
  padding: 5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  position: relative;
}
.contact-us .wrapper .contact-form {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
  padding-top: 0;
  align-self: center;
  color: #fff;
}
.contact-us .wrapper .contact-form p {
  font-size: 1.3rem;
}
.contact-us .wrapper .contact-form h3 {
  display: block;
  font-size: 2.8rem;
  font-family: "custom700";
  margin-bottom: 2.5rem;
}
.contact-us .wrapper .contact-form h3 span {
  display: inline-block;
  color: #f5a101;
}
.contact-us .wrapper .contact-form .contact-box {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact-us .wrapper .contact-form .contact-box input,
.contact-us .wrapper .contact-form .contact-box textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 0.5rem;
}
.contact-us .wrapper .contact-form .contact-box textarea {
  resize: vertical;
}
.contact-us .wrapper .contact-form button {
  margin: 5rem 0 0 0;
  color: #0e1d3c;
  background-color: #f5a101;
  border-radius: 3px;
  width: 16rem;
  height: 5rem;
  font-size: 1.33rem;
  text-align: center;
  padding: 1.5rem 3rem;
  font-family: "custom600";
  align-self: flex-end;
}
.contact-us .wrapper .msg-status {
  display: none;
  width: 30rem;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 10rem;
  padding: 6rem;
  border-radius: 0.8rem;
  font-size: 2.4rem;
  font-family: "custom400";
  opacity: 0.8;
}
.contact-us .wrapper .succes {
  display: flex;
  background-color: #55ff00;
}
.contact-us .wrapper .error {
  display: flex;
  background-color: tomato;
}

.footer {
  font-size: 1.7rem;
  color: #fff;
  padding: 5rem 0 0;
  width: 100%;
}
.footer .wrapper {
  padding: 0 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.footer .wrapper .item {
  position: relative;
  display: flex;
  flex-direction: column;
}
.footer .wrapper .item ::after {
  position: absolute;
  content: "";
  background-color: #f5a101;
  height: 2rem;
  width: 0.2rem;
  left: -1rem;
  top: 1.8rem;
}
.footer .wrapper .item ::before {
  position: absolute;
  content: "";
  background-color: #f5a101;
  height: 0.2rem;
  width: 2rem;
  left: -1rem;
  top: 1.8rem;
}
.footer .wrapper .item h2 {
  font-size: 2.4rem;
  margin: 2rem 0;
  font-family: "custom800";
}
.footer .wrapper .item hr {
  margin-bottom: 2rem;
  width: 50%;
  border: 1px solid #f5a101;
}
.footer .wrapper .item a,
.footer .wrapper .item p {
  margin-bottom: 2rem;
  color: #fff;
}
.footer .brand {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  font-size: 1.1rem;
  background-color: #0e1d3c;
}
.footer .brand a {
  text-decoration: underline;
  color: #fff;
}

.desktop-d-none {
  display: none;
}

@keyframes pushin {
  40% {
    background: none;
    box-shadow: none;
  }
  45% {
    background-color: rgba(245, 161, 1, 0.1);
    box-shadow: inset 0 0 4px 5px #0e1d3c;
  }
  50% {
    background: none;
    box-shadow: none;
  }
}
@keyframes changeScale {
  40% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
}
@media (min-width: 600px) {
  main {
    max-width: 1200px;
    margin: 0 5rem;
    padding: 5rem 5rem 0 5rem;
  }
  header .header-text {
    margin: 0 5rem;
  }
  header .header-text h1 {
    font-size: 5rem;
  }
  header .header-text p {
    font-size: 2rem;
  }
  header .header-text .yellow-line-one {
    position: absolute;
    background-color: #f5a101;
    height: 2rem;
    width: 0.3rem;
    left: -1rem;
    top: 0.7rem;
  }
  header .header-text .yellow-line-two {
    position: absolute;
    background-color: #f5a101;
    height: 0.3rem;
    width: 2rem;
    left: -1rem;
    top: 0.7rem;
  }
  header .header-text .yellow-line-three {
    position: absolute;
    background-color: #f5a101;
    height: 0.3rem;
    width: 2rem;
    right: -1rem;
    bottom: 0.7rem;
  }
  header .header-text .yellow-line-four {
    position: absolute;
    background-color: #f5a101;
    height: 2rem;
    width: 0.3rem;
    right: -1rem;
    bottom: 0.7rem;
  }
  .contact-us .wrapper {
    padding: 5rem;
    margin: 0;
  }
}
@media (min-width: 800px) {
  .footer {
    margin: 10rem 0 0 0;
  }
  .footer .wrapper {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    flex-flow: wrap;
    gap: 3rem;
  }
  .footer .wrapper .item hr {
    margin-bottom: 2rem;
    width: 100%;
  }
  .footer .wrapper .item a:hover {
    color: #f5a101;
  }
}
@media (min-width: 1200px) {
  .nav-desktop {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    height: 6rem;
    width: 100%;
    transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    z-index: 10;
  }
  .nav-desktop__ulList {
    height: 100%;
    width: 50%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    list-style: none;
    text-transform: uppercase;
    font-size: 1.6rem;
  }
  .nav-desktop__ulList li {
    display: flex;
    align-items: center;
  }
  .nav-desktop__ulList li a {
    padding: 1.5rem;
    text-decoration: none;
    color: #0e1d3c;
    transition: transform 0.15s ease-in-out, letter-spacing 0.15s;
  }
  .nav-desktop__ulList li .icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav-desktop__ulList li .icon img {
    width: 3rem;
    height: 3rem;
  }
  .nav-desktop__ulList li a:hover {
    transform: scale(1.1);
    letter-spacing: 1px;
  }
  .mobile-d-none {
    display: none;
  }
  .social-media {
    display: none;
  }
  header {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
  }
  header .header-text {
    max-width: 60rem;
    margin: 0 5rem;
  }
  header .header-text p {
    font-size: 1.6rem;
  }
  header .header-text .btn button:hover {
    background-color: #fff;
  }
  .contact .wrapper .text {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: none;
  }
  .contact .wrapper .text .item {
    margin: 0;
    padding: 0;
    width: 40rem;
    max-width: none;
  }
  .contact .wrapper .text .item .social-media-bottom .icon img {
    transition: transform 0.3s;
  }
  .contact .wrapper .text .item .social-media-bottom .icon img:hover {
    transform: scale(1.1);
  }
  .contact-us .wrapper .contact-form .button:hover {
    background-color: #fff;
  }
}
@media (min-width: 1300px) {
  main {
    max-width: 1200px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=kontakt.css.map */