/* google fonts */
@import url("https://fonts.googleapis.com/css2?family=Staatliches&display=swap");
:root {
  --dark-blue: #0d3674;
  --white: #eefbfb;
  --blue: #007cc7;
  --sky-blue: #4da8da;
  --font-1: "Staatliches", cursive;
}

/* custom scrollbar */
::-webkit-scrollbar {
  width: 2px;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-1);
}
body {
  background-color: var(--dark-blue);
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
p {
  font-family: var(--font-1);
}
hr {
  margin: 1rem 0;
  border: 2px solid var(--white);
}
.navbar {
  position: absolute;
  z-index: 1;
  padding: 1rem 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.navbar li {
  font-family: var(--font-1);
  list-style: none;
  display: inline;
}

.navbar .left-part {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.navbar .left-part li {
  margin-right: 5rem;
}

.navbar .right-part {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.navbar .right-part li {
  margin-left: 1.4rem;
}
.navbar .right-parter li {
  margin-left: 3.4rem;
}
.navbar .logo img {
  width: 5rem;
  height: auto;
}
.navbar .left-part p {
  color: var(--white);
  font-size: 1.5rem;
}
.navbar a {
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.navbar a:hover {
  color: var(--sky-blue);
  text-shadow: 0px 0px 30px var(--sky-blue);
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.banner-container {
  position: relative;
  text-align: center;
}
.banner-text {
  width: 80%;
  text-shadow: 0px 0px 30px var(--blue);
  letter-spacing: 0.6rem;
  color: var(--white);
  font-size: 7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.connect-btn-logo {
  z-index: 1;
}
.connect-btn {
  position: relative;
  font-size: 2rem;
  color: var(--white);
  background-color: var(--blue);
  margin-top: 1rem;
  border: 0px;
  padding: 1rem 3rem;
  border-radius: 3px;
}
.connect-btn {
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.connect-btn:hover {
  box-shadow: 1px 1px 25px 10px rgba(255, 255, 255, 0.2);
}

.connect-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(13, 54, 116, 0.6),
    transparent
  );
  transition: all 650ms;
}

.connect-btn:hover:before {
  left: 100%;
}
.banner-text img:first-of-type {
  width: 6rem;
  height: auto;
  position: relative;
  left: 4rem;
  top: 2rem;
}

.banner-text img:nth-of-type(2) {
  width: 6rem;
  height: auto;
  position: relative;
  right: 4rem;
  top: 2rem;
}
.banner img {
  width: 100%;
  height: auto;
}

.white-container {
  text-align: center;
  position: relative;
  width: 100%;
  background-color: var(--white);
}
.white-container-2 {
  text-align: center;
  position: relative;
  width: 100%;
  background-color: var(--white);
  height: 500px;
}
.heading-text {
  font-size: 5rem;
}
.heading-text span {
  color: var(--blue);
}
.small-container {
  color: #252525;
  padding-top: 2rem;
  margin: 0 20%;
}
.small-container-2 {
  color: #252525;
  padding-top: 14rem;
  margin: 0 20%;
}
.text {
  font-size: 1.5rem;
}
.text-img {
  font-size: 1.5rem;
  width: 20vw;
}
.b-text {
  font-size: 2rem;
}

.text span,
.b-text span {
  color: var(--blue);
}
.two-images-container {
  margin-top: 5rem;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  position: relative;
}
.two-images-container img {
  width: 100%;
}
.two-images-container .img-1,
.two-images-container .img-2 {
  position: relative;
  transform: skewY(-4deg);
}

.two-images-container .img-1-text {
  font-size: 4rem;
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}
.two-images-container .img-2-text {
  font-size: 4rem;
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
}
.two-images-container .img-1-text span,
.two-images-container .img-2-text span {
  color: var(--blue);
}
.text-img-2 {
  font-size: 1.5rem;
  padding-left: 10vw;
  width: 29vw;
}
.p-img-2 {
  padding-left: 11.5vw;
}
.pop-img-1 {
  text-align: center;
  margin-top: -39.2rem;
  position: relative;
  width: 100%;
  z-index: 1;
}
.pop-img-1 img {
  width: 30%;
}
.image-container {
  transform: skewY(-4deg);
  position: relative;
  margin-top: -5rem;
}
.image-container img {
  width: 100%;
  height: auto;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.box {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
}
.boxes {
  color: var(--white);
  font-size: 4rem;
}
.car-float-img img {
  width: 20rem;
  position: absolute;
  right: 10rem;
  top: -2rem;
}

.man-float-img img {
  width: 15rem;
  position: absolute;
  left: 10rem;
  top: 13rem;
}
.gangster-float-img img {
  width: 13rem;
  position: absolute;
  right: 10rem;
  top: 27rem;
}
.bag-float-img img {
  width: 20rem;
  position: absolute;
  left: 10rem;
  top: 43rem;
}
/* Section 3 */
body {
  background-color: #151320;
}
.section-3 {
  width: 100vw;
  height: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
}

.about-title {
  font-size: 40px;
  font-weight: 6000;
  position: relative;
  text-align: center;
  color: var(--tekst-ciemniejszy);
}

.about-boxes {
  position: relative;
  margin: 20px 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  perspective: 1000px;
}

.about-box {
  width: 400px;
  height: 250px;
  perspective: 1000px;
  margin: 25px 30px;
}

.about-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 1s;
  transform-style: preserve-3d;
}

.about-box-front,
.about-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.about-box-front {
  background-color: rgb(0, 0, 0, 0.3);
  border-radius: 5px;
  border-left: 2px solid var(--niebieski);
  box-shadow: rgba(0, 0, 0, 0.55) 0px 5px 15px;
}

.about-box-back {
  border-radius: 5px;
  border-left: 2px solid var(--niebieski);
  box-shadow: rgba(0, 0, 0, 0.55) 0px 5px 15px;
  background-color: rgb(20, 20, 20, 1);
  color: var(--tekst-ciemniejszy);
  transform: rotateY(180deg);
}

.about-box-back .about-box-back-bg {
  width: 400px;
  height: 250px;
  position: absolute;
}

.about-avatar {
  width: 150px;
  height: 150px;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  margin-top: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 1) 0px 0px 30px;
}

.about-name {
  position: relative;
  color: var(--tekst-ciemniejszy);
  font-size: 26px;
  font-weight: 300;
  text-align: center;
  margin-top: 15px;
  text-shadow: rgba(0, 0, 0, 1) 0 5px 4px;
}

.about-back-text {
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  line-height: 250px;
  color: white;
}

.about-back-contact {
  color: white;
  font-weight: 300;
  font-size: 24px;
  font-family: "Open sans", sans-serif;
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: 20px;
  user-select: all;
  cursor: pointer;
}
.app,
body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.footer {
  background: var(--white);
  padding: 0;
  font-family: "Play", sans-serif;
  text-align: center;
}
.footer .row {
  width: 100%;
  margin: 1% 0%;
  padding: 0;
  color: var(--dark-blue);
  font-size: 1em;
}
.ar0cu {
  text-decoration: none;
}
.ar0cu:hover {
  color: rgb(13, 54, 116);
}
.ar0cu,
.Flack {
  letter-spacing: 0.05vw;
  padding-left: 0.3vw;
  padding-right: 0.3vw;
  color: rgba(255, 255, 255, 0.747);
  font-family: monospace;
}
.ar0cu:hover,
.Flack:hover {
  cursor: pointer;
}
.ar0cu:hover::before,
.Flack:hover::before {
  cursor: pointer;
  content: "";
}
.ar0cu:hover::after,
.Flack:hover::after {
  content: "";
}
/* animacje */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: 1s;
  animation-duration: 4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
body {
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1170px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
ul {
  list-style: none;
}
.footer {
  background-color: #0d3674;
  padding: 70px 0;
}
.footer-col {
  width: 25%;
  padding: 0 15px;
}
.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #4da8da;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}
