*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  font-weight: 300;
}

:root {
  --primary-color: #886da3;
  --secondary-color: #a987cb;
  --text-color: #3d3d3d;
  --primary-font: "Rubik", sans-serif;
  --secondary-font: "Cormorant Garamond", serif;
}

h1,
h2,
h3 {
  color: var(--text-color);
}

html a {
  text-decoration: none;
}
html h1 {
  font-size: 2.5rem;
}
html h2 {
  font-size: 2.5rem;
  font-weight: 400;
}
html h3 {
  font-size: 1.5rem;
  font-weight: 300;
}
html p {
  line-height: 1.8rem;
}

ol {
  text-align: justify;
}

.img-fluid {
  width: 100%;
}

h2 {
  margin: 1.5rem 0;
}

p {
  text-align: justify;
}

.navbar {
  background-color: #fff;
}
.navbar .navbar-icon {
  color: var(--text-color);
}
.navbar .navbar-toggler {
  border: none;
  box-shadow: none;
}
.navbar .logo {
  width: 12rem;
}

.navbar-nav .nav-item {
  font-weight: 400;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--primary-color);
}

.navbar-text a,
.navbar-text a:focus,
.navbar-text a:hover {
  color: var(--text-color);
}

.header .arrow-down {
  display: flex;
  justify-content: center;
  position: relative;
}
.header .arrow-down svg {
  width: 2rem;
  fill: var(--primary-color);
}
.header .header-bg {
  background-image: url(../img/notariusz-home.webp);
  background-size: cover;
  background-position: center;
  background-color: #000;
}
.header .header-bg-color {
  background-color: rgba(72, 72, 72, 0.8);
}
.header .header-text {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}
.header .header-text h1 {
  font-family: var(--secondary-font);
  font-size: 5rem;
  color: #fff;
}
.header .header-text h2 {
  line-height: 5rem;
  font-weight: 300;
  color: #fff;
}
.header .header-text .line {
  width: 7rem;
  min-height: 0.1rem;
  background-color: var(--primary-color);
}

.subheader {
  min-height: 30rem !important;
}
.subheader .header-bg {
  background-image: url(../img/notariusz-subheader.jpg) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #000;
}

a.btn-arrow {
  display: flex;
  justify-content: center;
  background-color: var(--primary-color);
  width: 5rem;
  height: 5rem;
  position: absolute;
  right: 0.7rem;
  bottom: -3rem;
}

.btn-more {
  transition: ease all 0.35s;
  padding: 1rem 1.8rem;
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.1rem;
}
.btn-more img {
  width: 0.7rem;
  margin-left: 1rem;
}

.btn-more:hover {
  background-color: var(--secondary-color);
}
.btn-more:hover img {
  margin-left: 1.2rem;
}

.title-line {
  width: 100%;
  height: 0.1rem;
  background-color: var(--primary-color);
}

.title-text {
  margin: 2rem 0;
}

.services-section .service-icon {
  fill: var(--primary-color);
  height: 4rem;
}
.services-section p {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6rem;
}
.services-section .services-icon {
  margin-top: 3px;
  width: 2.8rem;
}

.contact-section {
  position: relative;
  text-align: center;
  margin: 5rem 0 1rem 0;
}
.contact-section .contact-title,
.contact-section .contact-subtitle {
  text-align: center;
}
.contact-section .contact-items {
  margin: 2.5rem 0 5rem;
}
.contact-section .contact-item {
  text-align: center;
  margin: 1rem 0;
}
.contact-section .contact-item .contact-link {
  display: block;
  color: var(--text-color);
  font-size: 1.3rem;
}
.contact-section .contact-item .contact-icon {
  height: 4rem;
  margin-right: 1.5rem;
}
.contact-section .adress {
  display: flex;
  justify-content: center;
  text-align: left;
}
.contact-section .btn-more {
  position: absolute;
  bottom: -2.8rem;
  transform: translateX(-50%);
}

footer {
  background-color: #212121;
  min-height: 1rem;
  color: #868686;
  text-align: center;
  padding: 4rem 0;
}

.f-intro {
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .header .section-header {
    display: flex;
  }
  .header-box {
    position: absolute;
  }
  .header-img {
    padding-left: 14rem;
  }
}
@media (max-width: 576px) {
  .navbar .logo {
    width: 10rem;
  }
  html h2 {
    font-size: 1.8rem;
  }
  .services-section,
  .about-section {
    text-align: center;
  }
  .services-section .title-text {
    margin: 2rem 0 0;
  }
}
@media (max-width: 992px) {
  .services-section .service-icon {
    margin: 2rem;
    height: 6rem;
  }
  .services-section h3 {
    text-align: center;
  }
}/*# sourceMappingURL=main.css.map */