@charset "UTF-8";
:root {
  --primary:#ca9c5e;
  --secondary:#EE4266;
  --light:#F0F0F0;
  --dark: #0E0E0E;
}

@import url('https://fonts.googleapis.com/css2?family=Cabin&display=swap');

/* Szerokość scrollbarów */
::-webkit-scrollbar {
  width: 10px;
}

/* Kolor tła tracka */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Kolor thumba */
::-webkit-scrollbar-thumb {
  background: var(--primary);
}

*::selection {
  background-color: #ca9c5e;
  color: #0E0E0E;
}


html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.btn {
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.5s;
}


.btn-primary {
  color: #FFF;
}

.btn-primary:hover {
  color: #FFF;
}

.navbar-toggler {
  border: none !important;
}

nav {
  position: absolute !important;
  top:0;
  background-color: rgba(0, 0, 1, 0.3);
  z-index: 1000;
  height: 15vh;
}

.navbar-brand img{
  height: 80px;
}

.navbar-dark {
  font-size: 1.5rem;
}

.nav-link {
  padding-right: 20px !important;
  color: #fff !important;
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 768px) {
  .nav-link {
    margin-left: 0 !important;
    font-size: 1.3rem !important;
  }

  .navbar-dark {
    background-color: rgba(0, 0, 1, 0.8);
  }

  .navList {
    background-color: rgba(0, 0, 1, 0.8);
  }
}

.hero {
  height: 130vh;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/header.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  filter: brightness(0.5);
  z-index: -1;
}

.content{
  z-index: 1;
  color: #fff;
  text-align: center;
  position: relative;
  top: 40%;
  transform: translateY(-50%);
}

.content img{
  width: 13%;
  max-width: 50%;
  margin-bottom: 15px;
}

.content h1{
  font-size: 3rem;
  margin-bottom: 15px;
}

.content h2 {
  font-size: 1.8rem;
  color: var(--light) !important;
  font-weight: 500;
  margin-bottom: 20px;
}

.paralax {
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    height: 101vh;
  }

  .hero::after {
    height: 100%;
  }

  .content {
    top: 50%;
  }

  .content img {
    width: 25%;
  }

  .content h1 {
    font-size: 2.3rem;
  }

  .content h2 {
    font-size: 1.3rem;
  }

  .content a {
    font-size: 0.8rem;
  }

  .sekcja {
    width: 75% !important;
  }
}

@media (max-width: 500px) {
  .hero {
    height: 101vh;
  }

  .content {
    top: 50%;
  }

  .content img {
    width: 35%;
  }

  .content h1 {
    font-size: 2.1rem;
  }

  .content h2 {
    font-size: 1.2rem;
  }
}

.sekcja {
  width: 25%;
  font-weight: 500 !important;
  font-size: 2.5rem;
}

.card {
  border: 0;
  flex: 1 0 32%;
  margin: 0 1%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
}

.card-title {
  font-size: 1.9rem;
  line-height: normal;
  font-weight: 500;
}

.card-text {
  font-size: 1.3rem;
  padding: 0px 15px;
  color: #000001c1;
}

@media (max-width: 768px) {
  .card {
    flex-basis: 48%;
  }
}

@media (max-width: 480px) {
  .card {
    flex-basis: 100%;
  }
}

.about-text {
  position: absolute;
  width: 50%;
  left: 65%;
  transform: translate(-50%, 8%);
}

.about-text h2{
  font-size: 1.9rem;
}

.about-text p{
  font-size: 1.1rem;
  text-align: justify;
}

@media (max-width: 1000px) {
  .about-image {
    width: 100% !important;
  }

  .about-text {
    position: relative;
    width: 100%;
    left: 0%;
    transform: translate(0, 0);
  }
}

.contact {
  background-color: #F0F0F0;
}

.contact h2 {
  font-size: 1.7rem;
  font-weight: 500;
}

.contact-info p:first-child{
  font-size: 1.3rem;
  font-weight: 700;
}

.line {
  font-size: 1.3rem;
  color: #acacb4;
  border-bottom: 2px solid #acacb4;
}

.contact-info h3{
  font-size: 2rem;
  font-weight: 700;
}

.info i{
  font-size: 1.5rem;
  color: var(--primary);
}

.info p {
  font-size: 1.5rem;
}

input {
  color: var(--dark) !important;
  height: 55px;
  padding: 16px 18px !important;
  border: 0 !important;
}

textarea {
  border: 0 !important;
  padding: 16px 18px !important;
  color: var(--dark) !important;
}

@media (max-width: 768px) {
  input {
    width: 100% !important;
  }
}

.left {
  width: 50%;
  float: left;
}

.right {
  width: 50%;
  float: left;
}

.accordion-item {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  border-top: 1px solid #acacb4 !important;
}

.accordion-button {
  font-size: 1.4rem;
}

.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
}

.accordion-button:enabled {
  background-color: #fff;
  outline: 0!important;
  box-shadow: none;
}

.accordion-body {
  background-color: var(--light);
  color: #0e0e0ecc;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .left {
    width: 100%;
  }

  .right {
    width: 100%;
  }
}

.footer {
  clear: both;
}

.footerLink h5{
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
}

.footerLink a {
  font-size: 1.4rem;
}

.footerContact h5{
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
}

.footerContact a {
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .footerLink h5{
    font-size: 1.6rem;
  }
  
  .footerLink a {
    font-size: 1.2rem;
  }
  
  .footerContact h5{
    font-size: 1.6rem;
  }
  
  .footerContact a {
    font-size: 1.2rem;
  }
}

/*# sourceMappingURL=style.css.map */
