.header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background-color: rgb(16, 40, 74);
  background-attachment: scroll;
}
.header__logo {
  height: 50vh;
  width: 100%;
  background-image: url("../img/finance-7529921_640.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header-img {
  position: absolute;
  width: 45%;
  max-width: 250px;
  border: 0.2em solid #fff;
  border-radius: 1em;
  visibility: visible;
}
.header-imgTransparent {
  position: absolute;
  height: 30%;
  border: none;
  visibility: hidden;
  opacity: 0.85;
  background-color: rgb(16, 40, 74);
  padding: 1em 2em;
  border: 0.2em solid #fff;
  border-radius: 1em;
  transition: 0.8s;
}
.header-imgTransparent:hover {
  scale: 1.4;
  opacity: 0.95;
}

.burger-btn {
  position: fixed;
  top: 30px;
  right: 40px;
  padding: 10px;
  background: rgb(16, 40, 74);
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 1000;
  visibility: visible;
}
.burger-btn:focus {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}
.burger-btn:hover .burger-btn__bars, .burger-btn:hover .burger-btn__bars::after, .burger-btn:hover .burger-btn__bars::before {
  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: 100%;
}
.burger-btn__bars::before {
  top: 27px;
  width: 100%;
  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.7s cubic-bezier(0.075, 0.82, 0.165, 1);
  background-image: linear-gradient(0deg, rgb(16, 40, 74), rgb(16, 40, 74));
  z-index: 100;
}
.nav__left {
  position: absolute;
  left: 20px;
  top: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.nav__left-img {
  position: absolute;
  top: 10px;
  left: -10px;
  height: 120px;
}
.nav--active {
  transform: translateX(0);
}
.nav__item {
  position: relative;
  display: block;
  margin: 0.1em 0.2em;
  padding: 0.5em 1em;
  font-size: 2.6rem;
  text-transform: uppercase;
  color: #fff;
  transition: 0.3s;
  line-height: 2.8rem;
}
.nav__item::after {
  transition: 0.3s;
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
}
.nav__item:hover {
  color: rgb(16, 40, 74);
}
.nav__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: #fff;
  z-index: -1;
}
.nav__item:hover::after {
  height: 100%;
}

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

.active {
  color: #9a9b9f;
}

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

.white-block {
  position: absolute;
  height: 120px;
  width: 150%;
  z-index: 10;
  border-radius: 50%;
}
.white-block-top {
  top: -75px;
  rotate: 0deg;
  border: 0.5em solid #fff;
  background-color: rgb(16, 40, 74);
}
.white-block-bottom {
  bottom: -80px;
  rotate: 0deg;
  border: 0.5em solid rgb(16, 40, 74);
  background-color: #fff;
}
.white-block-map {
  bottom: -50px;
  rotate: 0deg;
  border: 0.5em solid rgb(16, 40, 74);
  border: 0.5em solid #fff;
  background-color: rgb(16, 40, 74);
}
.white-block-certificates-top {
  height: 150px;
  top: -80px;
  rotate: 0deg;
  background-color: #fff;
  border: 0.5em solid #9a9b9f;
}
.white-block-certificates-bottom {
  top: -50px;
  rotate: 0deg;
  background-color: rgb(16, 40, 74);
  border: 0.5em solid #fff;
}
.white-block-separator-bottom {
  bottom: -50px;
  rotate: 0deg;
  border: 0.5em solid rgb(16, 40, 74);
  background-color: #fff;
}
.white-block-map-top {
  top: -50px;
  rotate: 0deg;
  background-color: #fff;
  border: 0.5em solid rgb(16, 40, 74);
}

.services__box {
  display: flex;
  flex-direction: column;
}
.services__box-img {
  width: 100%;
  margin-bottom: 1em;
}
.services__box-img img {
  width: 100%;
}
.services__box-text {
  padding: 1em;
  margin-bottom: 0.5em;
}
.services__title {
  margin-bottom: 0.5em;
  font-size: 2.2rem;
}
.services__text {
  margin-bottom: 0.3em;
  font-size: 2rem;
}

.section-heading {
  position: relative;
  margin-bottom: 1em;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: rgb(16, 40, 74);
}

i {
  color: rgb(16, 40, 74);
}

.certificates {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  background-color: rgb(16, 40, 74);
  padding-top: 11em;
  padding-bottom: 3em;
}
.certificates__card {
  position: relative;
  height: 500px;
  color: #0a0a5c;
  text-align: center;
  perspective: 1000px;
  margin: 1em;
}
.certificates__card:hover .certificates__card-img {
  transform: rotateY(-180deg);
  opacity: 0;
}
.certificates__card:hover .certificates__card-info {
  transform: rotateY(0);
  opacity: 1;
}
.certificates__card-img {
  padding: 2em;
  height: 100%;
  border-radius: 12px;
  background-size: cover;
  transition: transform 1s, opacity 1s;
  color: rgb(16, 40, 74);
}
.certificates__card-img--first {
  background-image: linear-gradient(0deg, rgba(154, 155, 159, 0.8), rgba(255, 255, 255, 0.9)), url("../img/certificate-1243231_640.png");
}
.certificates__card-img--secound {
  background-image: linear-gradient(0deg, rgba(154, 155, 159, 0.8), rgba(255, 255, 255, 0.9)), url("../img/certificate-1243231_640.png");
}
.certificates__card-img-title {
  font-size: 4.8rem;
  font-family: "Dancing Script", cursive;
}
.certificates__card-img-text {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  font-weight: 700;
}
.certificates__card-img-info {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 1.8rem;
}
.certificates__card-info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(0deg, rgba(154, 155, 159, 0.8), rgba(255, 255, 255, 0.9));
  transform: rotateY(180deg);
  opacity: 0;
  transition: transform 1s;
  border-radius: 12px;
  background-size: cover;
}
.certificates__card-info-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  border-radius: 5px;
  opacity: 1;
}
.certificates__card-info-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2em;
  padding: 1em;
  width: 80%;
  border: none;
  background-color: #D3D3D3;
  font-weight: 700;
  font-size: 1.6rem;
}
.certificates__card-info-btn:hover {
  color: white;
}
.certificates__card-info-btn::before {
  background-color: #9a9b9f;
}

.separator {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  background-attachment: scroll;
}
.separator__img {
  height: 400px;
  width: 100%;
  background-image: url("../img/business-861325_640.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.aboutme {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  padding: 1em 1em;
}
.aboutme__title {
  font-size: 4.8rem;
  margin-bottom: 0.5em;
  font-family: "Dancing Script", cursive;
}
.aboutme__text {
  color: rgb(16, 40, 74);
  font-size: 2rem;
  padding: 1em 1em;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: left;
}

.timeline {
  position: relative;
  width: 90%;
  max-width: 1200px;
}
.timeline ul {
  display: flex;
  flex-direction: column;
  margin: 0 2 em;
  list-style: none;
  font-size: 2rem;
}
.timeline li {
  position: relative;
  margin-bottom: 0.5em;
  padding: 1em;
  width: 100%;
  background-color: rgb(16, 40, 74);
  color: #fff;
  border-radius: 1rem;
  text-align: left;
}
.timeline li::after {
  position: absolute;
  top: calc(50% - 10px);
  background-color: rgb(16, 40, 74);
  border-radius: 50px;
  width: 20px;
  height: 20px;
  content: "";
}
.timeline li:nth-child(even) {
  align-self: flex-start;
  transform: translateX(20px);
}
.timeline li:nth-child(even)::after {
  left: -30px;
}
.timeline li:nth-child(odd) {
  transform: translateX(20px);
}
.timeline li:nth-child(odd)::after {
  left: -30px;
}
.timeline::before {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  display: block;
  width: 2px;
  height: 100%;
  background-color: rgb(16, 40, 74);
  content: "";
}

.map {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background-color: rgb(16, 40, 74);
  background-attachment: scroll;
}

.map__img {
  width: 100%;
  height: 500px;
}

.contact {
  position: relative;
  color: #fff;
  background-color: rgb(16, 40, 74);
  overflow: hidden;
  padding: 1em;
  padding-bottom: 3em;
  min-height: 300px;
}
.contact__boxes {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact__box {
  display: flex;
  justify-content: left;
  flex-direction: row;
  font-size: 2rem;
  color: #fff;
  width: 100%;
}
.contact i, .contact__box-text {
  padding: 0.5em;
  color: #fff;
}

.footer {
  display: flex;
  flex-direction: column;
  color: #fff;
  background-color: rgb(16, 40, 74);
  border: none;
  padding: 0.3em;
}
.footer__bottom-text {
  margin: 1em auto;
  text-align: center;
}

.hide {
  display: none;
}

.cookie__box {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 200px;
  padding: 2em;
  font-size: 2rem;
  text-align: center;
  background-color: rgb(16, 40, 74);
  color: #fff;
  opacity: 0;
  transform: translateY(100%);
  animation: show-cookies 0.5s 0.5s forwards;
  z-index: 11;
}
.cookie__box-btn {
  margin-top: 1em;
  padding: 0.5em 1em;
  border-radius: 3px;
  background-color: #fff;
  color: rgb(16, 40, 74);
  transition: background-color 0.3s;
  cursor: pointer;
  border: none;
}
.cookie__box-btn:hover {
  background-color: #9a9b9f;
  color: #fff;
}

@keyframes show-cookies {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.privacy_policy {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
.privacy_policy__box {
  display: flex;
  justify-content: left;
  flex-direction: column;
  font-size: 2rem;
  width: 100%;
  text-align: left;
  padding: 1em 1em;
}
.privacy_policy__box a {
  color: rgb(16, 40, 74);
}
.privacy_policy__box-title {
  font-size: 2.2rem;
  font-weight: 700;
}
.privacy_policy__box ol {
  padding: 1em;
  font-size: 2rem;
}
.privacy_policy__box ol li {
  padding-left: 0.2em;
  color: rgb(16, 40, 74);
}
.privacy_policy__box ol li ol {
  font-size: 1.6rem;
  padding: 1em;
}
.privacy_policy__box ol li ol li {
  color: #000;
  padding: 0.2em;
}

.header_privacy_policy {
  height: 120px;
}

.price_list {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
.price_list-subtitle {
  background-color: #D3D3D3;
}
.price_list-star {
  padding: 1em;
}
.price_list-allstar {
  padding: 1em;
  margin-bottom: 3em;
}
.price_list__box-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0em;
  margin-top: 3em;
}
.price_list__box-3col-title {
  grid-column: 1/4;
  background-color: rgb(16, 40, 74);
  color: #fff;
  padding: 1em;
}
.price_list__box-3col-itemLeft {
  grid-column: 1;
  padding: 1em;
  border-left: 1px solid rgb(16, 40, 74);
  border-right: 1px solid rgb(16, 40, 74);
  border-bottom: 1px solid rgb(16, 40, 74);
}
.price_list__box-3col-itemCenter {
  grid-column: 2;
  padding: 1em;
  border-right: 1px solid rgb(16, 40, 74);
  border-bottom: 1px solid rgb(16, 40, 74);
}
.price_list__box-3col-itemRight {
  grid-column: 3;
  padding: 1em;
  border-right: 1px solid rgb(16, 40, 74);
  border-bottom: 1px solid rgb(16, 40, 74);
}
.price_list__box-3col-itemBottom {
  grid-column: 1/4;
  padding: 1em;
  border-left: 1px solid rgb(16, 40, 74);
  border-right: 1px solid rgb(16, 40, 74);
  border-bottom: 1px solid rgb(16, 40, 74);
}
.price_list__box-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0em;
  margin-top: 3em;
}
.price_list__box-2col-title {
  grid-column: 1/3;
  background-color: rgb(16, 40, 74);
  color: #fff;
  padding: 1em;
}
.price_list__box-2col-itemLeft {
  grid-column: 1;
  padding: 1em;
  border-left: 1px solid rgb(16, 40, 74);
  border-right: 1px solid rgb(16, 40, 74);
  border-bottom: 1px solid rgb(16, 40, 74);
}
.price_list__box-2col-itemRight {
  grid-column: 2;
  padding: 1em;
  border-right: 1px solid rgb(16, 40, 74);
  border-bottom: 1px solid rgb(16, 40, 74);
}
.price_list__box-2col-itemBottom {
  grid-column: 1/3;
  padding: 1em;
  border-left: 1px solid rgb(16, 40, 74);
  border-right: 1px solid rgb(16, 40, 74);
  border-bottom: 1px solid rgb(16, 40, 74);
}

*,
*::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.6rem;
  font-style: normal;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

hr {
  color: #fff;
}

h1 {
  text-align: center;
  font-size: 2.4rem;
  color: rgb(16, 40, 74);
  margin: 0.1em;
}

h2 {
  text-align: center;
  font-size: 3.2rem;
  color: rgb(16, 40, 74);
  margin: 1em;
}

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

@media (min-width: 576px) {
  .contact__boxes {
    flex-direction: row;
  }
  .contact__box-text {
    transition: 0.3s;
  }
  .contact__box-text:hover {
    font-size: 2.6rem;
  }
  .contact .cookie__box {
    height: 200px;
  }
  .timeline li {
    width: 50%;
  }
  .timeline li:nth-child(even) {
    align-self: flex-end;
    transform: translateX(20px);
  }
  .timeline li:nth-child(even)::after {
    left: -30px;
  }
  .timeline li:nth-child(odd) {
    transform: translateX(-20px);
  }
  .timeline li:nth-child(odd)::after {
    left: calc(100% + 10px);
  }
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .header__logo {
    background-image: url("../img/finance-7529921_1920.jpg");
  }
  .separator__img {
    background-image: url("../img/business-861325_1920.jpg");
    background-position-y: 55%;
  }
  .header__logo {
    height: 100vh;
  }
  .header-img {
    visibility: hidden;
  }
  .header-imgTransparent {
    visibility: visible;
  }
  .services__box {
    flex-direction: row;
    justify-content: space-between;
  }
  .services__box-text {
    width: 55%;
  }
  .services__box-text--right {
    text-align: right;
  }
  .services__box-img {
    width: 40%;
    padding: 0.5em;
  }
  .services__box-img img {
    border-radius: 1em;
  }
  .services__box-img--right {
    order: 1;
  }
}
@media (min-width: 640px) {
  .nav {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 100%;
    transform: translateX(0);
    transition: 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
    background-image: linear-gradient(0deg, rgb(16, 40, 74), rgb(16, 40, 74));
    z-index: 100;
  }
  .nav__left {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .nav__left-img {
    position: static;
    height: 120px;
  }
  .nav__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
  .nav__item {
    font-size: 1.4rem;
  }
  .nav__item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    z-index: -1;
  }
  .nav .wrapper_nav {
    display: flex;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
  }
  .burger-btn {
    visibility: hidden;
  }
  .white-block {
    position: absolute;
    height: 200px;
    width: 150%;
    z-index: 10;
  }
  .white-block-top {
    top: -40px;
    rotate: 0deg;
    border: 0.5em solid #fff;
    border-radius: 50%;
    background-color: rgb(16, 40, 74);
  }
  .white-block-bottom {
    bottom: -80px;
    rotate: 0deg;
    border: 0.5em solid rgb(16, 40, 74);
    border-radius: 50%;
    background-color: #fff;
  }
  .white-block-map {
    bottom: -150px;
    rotate: 0deg;
    border: 0.5em solid rgb(16, 40, 74);
    border-radius: 50%;
    border: 0.5em solid #fff;
    background-color: rgb(16, 40, 74);
  }
  .white-block-certificates-top {
    height: 220px;
    top: -80px;
    rotate: 0deg;
    border: 0.5em solid #9a9b9f;
    border-radius: 50%;
    background-color: #fff;
  }
  .white-block-certificates-bottom {
    top: -150px;
    rotate: 0deg;
    background-color: rgb(16, 40, 74);
    border: 0.5em solid #fff;
    border-radius: 50%;
  }
  .white-block-separator-bottom {
    bottom: -150px;
    rotate: 0deg;
    border: 0.5em solid rgb(16, 40, 74);
    background-color: #fff;
  }
  .white-block-map-top {
    top: -150px;
    rotate: 0deg;
    background-color: #fff;
    border: 0.5em solid rgb(16, 40, 74);
  }
}
@media (min-width: 768px) {
  .nav__item {
    font-size: 1.8rem;
  }
  .certificates__cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .certificates__card {
    width: 30%;
  }
}
@media (min-width: 992px) {
  .nav__item {
    font-size: 2.2rem;
  }
  .aboutme-img {
    padding: 10em 2em;
    background-image: url("../img/bieszczady-1001894_1920.jpg");
    background-position: 50% 50%;
  }
  .aboutme-img__title {
    font-size: 5.2em;
  }
  .aboutme-img hr {
    width: 65%;
    max-width: 900px;
  }
  h1 {
    font-size: 3.2rem;
  }
}/*# sourceMappingURL=main.css.map */