@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media only screen and (max-width: 75em) {
  html {
    font-size: 50%;
  }
}

body {
    font-family: Calibri, sans-serif;
    color: #585858;
    font-weight: 500;
    line-height: 1.6;
}
  
.container {
  width: 75%;
  margin: 0 auto;
}


.container-color {
  width: 100%;
  background-color: #eeeeee;
}


h1 {
  font-size: 42px;
  color: #353535;
  font-weight: 200;
}

.separate {
  margin-top: 70px;
}

.blue-separate {
  margin: 15px 0;
  width: 40px;
  height: 2px;
  background-color: #2575c6;
}

.white-separate {
  margin: 15px 0;
  width: 40px;
  height: 2px;
  background-color: #fff;
}

.separate-centeria {
  margin: 15px auto;
}

p {
  font-size: 14px;
  color: #575757;
}

.borderownia {
  background-color: #e3e3e3;
  width: 100%;
  height: 1px;
}


/* ---------------- ANIMATION ---------------- */

@keyframes opacityShow {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }

  80% {
    transform: translateX(1rem);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }

  80% {
    transform: translateX(-1rem);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-top-bar {
  animation: moveInBottom 1s ease-out;
}

.carousel-inner {
  animation: opacityShow .2s ease-in;
}


/* ---------------- NAVIGATION ---------------- */

.navigation_nav {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fff !important;
}

.navbar-nav a {
  padding: 0 !important;
  font-size: 18px;
}

.navbar-brand {
  display: none;
}

.navigation_list {
  width: 70%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr ;
  grid-gap: 0px;
  text-align: center;
}

#navbarNavAltMarkup .pl-nav {
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
}

.navigation_nav ul {
  list-style: none;
}

.navigation_nav .navigation_item {
  padding: 27px 0 27px 0;
  text-transform: uppercase;
}

.navigation_nav .navigation_list a {
  color: #242424 !important;
  
}

.navigation_nav .navigation_list a:hover,
.navigation_nav .navigation_list a:focus {
  color: #2575c6 !important;
  text-decoration: none;
  font-weight: 600;
}

/* ---------------- BUTTONS ---------------- */


.button-blue {
  display: block;
  margin: 0 auto;
  padding: 10px 60px;
  background-color: #2575c6;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #CCCCCC;
  transition: background-color 0.5s ease;
  cursor: pointer;
}

.button-blue:hover {
  background-color: #1e83e9;
}


.button-white {
  display: block;
  margin: 0 auto;
  padding: 10px 60px;
  background-color: #fff;
  color: #575757;
  font-size: 18px;
  text-decoration: none;
  border: 1px solid #CCCCCC;
  transition: background-color 0.5s ease;
}

.button-white:hover {
  background-color: #fbfbfb;
}

.button-white-click {
  cursor: pointer;
}


/* ---------------- TOP HEADER ---------------- */

header {
  width: 75%;
  margin: 0 auto;
}

.header-top-bar {
  display: flex;
  width: 100%;
}

.header-top-bar .header-logo {
  width: 15%;
}

.header-top-bar .header-logo img {
  width: 200px;
  margin: 20px 0;
}

.navigation_nav {
  width: 65%;
}

.button-visit {
  width: 20%;
}

.button-visit .button-text {
  margin: 20px 0;
  border: 1px solid #CCCCCC;
  text-align: center;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  color: #0f0f0f;
}

/* ---------------- SLIDER ---------------- */


#carouselExampleIndicators .carousel-title {
  font-size: 55px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 2px 2px 3px rgba(86, 86, 86, 1);
  /* padding-bottom: 230px; */

}

#carouselExampleIndicators .white-separate {
  margin: 10px auto;
}

#carouselExampleIndicators .carousel-subtitle {
  font-size: 20px;
  color: #eeeeee;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 230px;
  text-shadow: 1px 1px 0px rgba(86, 86, 86, 1);

}

/* ---------------- SECTION INTRO ---------------- */

.section-intro {
display: inline-flex;
margin: 80px 0;
}
.section-intro .section-intro-left, .section-intro .section-intro-right {
width: 50%;
}

.section-intro .section-intro-right {
margin-top: 20px;
}


/* ---------------- SECTION FEATURES ---------------- */

.section-features {
  display: inline-flex;
  margin-bottom: 120px;
}

.section-features .section-features-single {
  width: 33.3%;
  padding: 0 15px;
}

.section-features img {
  width: 140px;
  display: block;
  margin: 0 auto;
}

.section-features .features-single-text {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.section-features p {

  text-align: center;
}

/* ---------------- SECTION ABOUT ---------------- */

.section-about {
  display: inline-flex;
  height: 280px;
}

.section-about .section-about-left, .section-about .section-about-right {
  width: 50%;
}

.section-about .section-about-left img {
  margin-top: -35px;
  height: 350px;
}

.section-about .section-about-right {
  margin-top: 30px;
  padding: 0 20px;
}

.section-about .section-about-right .signature {
  font-family: 'Great Vibes', cursive;
  text-align: right;
  font-size: 20px;
  padding-right: 60px;
}

.section-about .section-about-right .button-white {
  padding: 7px 32px;
}



/* ---------------- SECTION ABOUT WORK ---------------- */

.section-about-work {
  text-align: center;
  margin: 680px 0 90px 0;
}

.section-about-work .description {
  color: #808080;
  font-weight: 200;
}

.section-about-work ul {
  list-style: none;
  text-align: left;
  font-size: 18px;
  line-height: 2;
  font-weight: 600;
  margin-top: 30px;
}

.section-about-work ul span {
  font-weight: 400;
  color: #808080;
}

.section-about-work ul li:before {
  content: '✓ ';
  color: #009914;
  font-weight: 800;
}

/* ---------------- SECTION OFFER ---------------- */

.section-offer {
  display: inline-flex;
  margin-bottom: 80px;
}

.section-offer .section-offer-left, .section-offer .section-offer-right {
  width: 50%;
}

.section-offer .section-offer-check {
  margin: 60px 0 40px 0;
  font-size: 30px;
  padding: 0 20px;
  text-align: center;
  font-weight: 200;
}



/* ---------------- SECTION CONTACT INFO ---------------- */

.section-contact-info {
  display: flex;
  padding: 40px;
  margin: 0 auto;
  width: 70%;
}

.section-contact-info p {
  font-size: 22px;
  text-transform: uppercase;
  margin-top: 10px;
}

.section-contact-info .button-white {
  font-size: 24px;
}

/* ---------------- SECTION CONTACT ---------------- */

.section-contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0px;
  margin: 40px 0;
}

.section-contact .section-contact-single {
  margin: 0 auto;
  text-align: center;
}

.section-contact .section-contact-single img {
  width: 50px;
}

.section-contact .section-contact-single p {
  font-size: 18px;
  line-height: 1.2;
}

.section-contact .section-contact-single:first-child p, .section-contact .section-contact-single:last-child p {
  padding-top: 10px;
}

/* ---------------- SECTION FOOTER ---------------- */

footer {
  background-color: #262626;
}

footer span {
  padding-left: 10px;
  padding-right: 10px;
}

footer, footer a, footer p {
  color: #eaeaea;
  font-size: 14px;
  font-weight: 200;
}

footer a:hover {
  color: #c5c5c5;
}

footer .footer-wrapper {
  width: 75%;
  display: flex;
  margin: 0 auto;
  padding: 15px 0;
}

footer .footer-wrapper .copyright {
  width: 20%;
  padding-top: 6px;
}

footer .footer-wrapper ul {
  margin-top: 6px;
}

/* ---------------- OFFER SUBPAGE ---------------- */

.container-bigger {
  width: 80%;
  margin: 50px auto 180px auto;
  height: 510px;
  
}

.offer-details {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr ;
  grid-gap: 10px;
  text-align: center;

}

.offer-details .offer-details-single {
  margin-top: -30px;
}

.offer-details .offer-details-single img {
  width: 100%;
}

.offer-details .offer-details-single p {
  font-size: 19px;
  font-weight: 800;
}

.offer-details div:nth-child(4) {
  margin-bottom: 40px;
}

/* ---------------- ABOUT SUBPAGE ---------------- */

.section-features-about {
  margin-top: 30px;
  margin-bottom: 40px;
 }
.section-features-about .section-features-single img {
  width: 75px;
  margin-top: 30px;
 }

 .gallery-images {
  padding: 35px 0;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr ;
  grid-gap: 30px;
  text-align: center;
 }

 .gallery-images img {
  width: 100%;
 }

 .section-about-in {
  display: flex;
  margin: 40px 0;
 }

 .section-about-in .section-about-in-left {
  width: 40%;
 }
 .section-about-in .section-about-in-left img {
  width: 100%;
 }
 .section-about-in .section-about-in-right {
  width: 60%;
  padding: 30px;
 }
 .section-about-in .section-about-in-right .signature {
  font-family: 'Great Vibes', cursive;
  text-align: right;
  font-size: 20px;
  padding-right: 60px;
 }


  /* ---------------- COOKIES ---------------- */

.section-law {
  margin-top: 50px;
}

.section-law p, .section-law ul {
  font-size: 16px;
}

.section-law h3 {
  font-size: 26px;
}

.section-law ul {
  margin-left: 20px;
}

.section-law p b {
  font-size: 18px;
}

.space-30 {
  margin-top: 30px;
}


 /* ---------------- MEDIA ---------------- */

 @media only screen and (max-width: 3000px) {
  .section-about-work {
    margin: 420px 0 90px 0;
  }
 }

 @media only screen and (max-width: 2300px) {
  .section-about-work {
    margin: 320px 0 90px 0;
  }
 }

 @media only screen and (max-width: 2000px) {
  .section-about-work {
    margin: 120px 0 90px 0;
  }
 }

 @media only screen and (max-width: 1800px) {
  .container-bigger {
    height: 420px;
  }
 }

@media only screen and (max-width: 1700px) {
  /* Sub */
  header {
    width: 85%;
  }
  .offer-details .offer-details-single p {
    font-size: 18px;
 }
  
}
@media only screen and (max-width: 1500px) {
  header {
    width: 90%;
  }
  #carouselExampleIndicators .carousel-subtitle {
    padding-bottom: 180px;
  }
  .container {
    width: 85%;
  }
  footer .footer-wrapper {
    width: 85%;
  }
  /* Sub */
  .container-bigger {
    height: 350px;
  }
  .offer-details .offer-details-single p {
    font-size: 17px;
 } 

}
@media only screen and (max-width: 1400px) {
  .header-top-bar .header-logo {
    width: 18%;
  }
  .header-top-bar .header-logo img {
    width: 150px;
    margin: 25px 0;
  }
  .navigation_nav {
    width: 57%;
  }
  
  .button-visit {
    width: 25%;
  }
  .navigation_list {
    width: 90%;
  }
  .button-visit .button-text {
    padding: 12px;
  }
  #carouselExampleIndicators .carousel-subtitle {
    padding-bottom: 120px;
    font-size: 18px;
  }
  #carouselExampleIndicators .carousel-title {
    font-size: 40px;
  }

  .container {
    width: 90%;
  }

  .section-intro .section-intro-left {
    width: 40%;
  }
  .section-intro .section-intro-right {
    width: 60%;
  }

  .section-intro .section-intro-left img {
    width: 85%;
    margin-top: 40px;
  }

  .section-contact-info {
    width: 90%;
  }

  footer .footer-wrapper .copyright {
    width: 30%;
  }

  .bottom-menu {
    width: 70%;
  }

}

@media only screen and (max-width: 1200px) {
  .section-about .section-about-left img {
    height: 300px;
    margin-top: -10px;
  }
  .section-about-work {
    margin: 70px 0 90px 0;
  }

  .section-offer .section-offer-right img {
    width: 100%;
  }

}
@media only screen and (max-width: 1080px) {
  header {
    width: 95%;
  }
  .header-top-bar .header-logo {
    width: 16%;
  }
  .navigation_nav {
    width: 57%;
  }
  
  .button-visit {
    width: 27%;
  }
  #carouselExampleIndicators .carousel-subtitle {
    padding-bottom: 90px;
    font-size: 17px;
  }
  #carouselExampleIndicators .carousel-title {
    font-size: 36px;
  }

  .section-about .section-about-right {
    padding-left: 30px;
  }

  /* Sub */
  .container-bigger {
    height: 310px;
  }

}

@media only screen and (max-width: 991px) {
  .header-top-bar .header-logo, .button-visit {
    display: none;
  }
  
  .navigation_nav {
    width: 100%;
  }

  .navbar-brand {
    display: block;
  }

  .navigation_nav {
    position: absolute;
    width: 100%;
    top: 0;
    background-color: #fff !important;
    z-index: 1;
    left: 0;
    padding: 0;
    border-bottom: 1px solid #CCCCCC;
  }

  #navbarNavAltMarkup .navbar-nav {
    border-top: 1px solid #cacaca;
    margin-top: 10px
  }

  #navbarNavAltMarkup .navbar-nav .navigation_item {
    text-align: center;
  }

  #navbarNavAltMarkup .navbar-nav .nav-item {
    background-color: #fbfbfb;
  }

  .navbar-brand {
    margin-left: 10%;
  }

  .navbar-toggler {
    margin-right: 10%;
  }

  .navbar-brand img {
    width: 110px;
    margin: 0 auto;
    padding: 10px 0 10px 0;
  }

  .navigation_list {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 0px;
    color: #444;
    text-align: right;
  }

  #navbarNavAltMarkup .pl-nav {
    display: grid;
    grid-template-columns: 100%;
  }

  .navbar-light .navbar-nav .nav-link {
    border-bottom: 1px solid #cacaca;
  }

  .navbar-light .navbar-nav .nav-link li {
    width: 79%;
    margin: 0 auto;
    border: none;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .slider {
    margin-top: 64px;
  }
  #carouselExampleIndicators .carousel-subtitle {
    padding-bottom: 40px;
    font-size: 16px;
  }
  #carouselExampleIndicators .carousel-title {
    font-size: 30px;
  }

  .section-intro {
    display: block;
  }

  .section-intro .section-intro-right, .section-intro .section-intro-left {
    width: 100%;
  }

  .section-intro .section-intro-left img {
    margin: 0 auto 40px auto;
    display: block;
    width: 100%;
  }

  .section-about {
    display: block;
    height: auto;
    padding: 50px 0;
  }

  .section-about .section-about-left, .section-about .section-about-right {
    width: 100%;
  }

  .section-about .section-about-left img {
    margin: 0 auto;
    display: block;
  }

  .section-offer {
    display: block;
  }

  .section-offer .section-offer-left, .section-offer .section-offer-right {
    width: 100%;
  }

  .section-offer .section-offer-check {
    margin: 30px 0 20px 0;
  }

  .section-about-work {
    margin: 60px 0 45px 0;
  }

  .section-offer-left .separate {
    margin-top: 30px;
  }

  .section-contact-info {
    width: 100%;
    display: block;
  }
  .section-contact-info p {
    text-align: center;
    margin-bottom: 25px;
  }
  footer .footer-wrapper {
    display: block;
  }

  footer .footer-wrapper .copyright {
    width: 100%;
  }

  footer, footer a, footer p {
    text-align: center;
  }

  .bottom-menu {
    display: block;
    width: 100%;
  }

  footer span:first-child {
    display: none;
  }

  /* Sub */

  .offer-details {
    grid-template-columns: 1fr 1fr;
  }

  .container-bigger {
    height: auto;
    padding-bottom: 30px;
  }

  .offer-details .offer-details-single {
    margin-top: -12px;
  }

  .offer-details div:nth-child(4) {
    margin-bottom: auto;
  }

  .offer-details .offer-details-single p {
    margin-top: 10px;
  }

  .container-bigger {
    margin-bottom: 50px;
  }
 }

@media (max-width: 800px) {
  .section-features {
    display: block;
  }

  .section-features .section-features-single {
    width: 100%;
  }
  .section-features p {
    width: 60%;
    margin: 0 auto;
    text-align: center;
  }

  .section-contact {
    grid-template-columns: 1fr;
  }

  .section-contact .section-contact-single {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .navbar-brand img {
    width: 90px;
  }
  .slider {
    margin-top: 57px;
  }

  .section-features p {
    width: 90%;
  }

  .section-about .section-about-left img {
    width: 100%;
    height: auto;
  }

  .section-contact-info {
    padding: 40px 0;
  }

  .section-contact-info .button-white {
    padding: 10px 20px;
  }

  .bottom-menu {
    display: none;
  }

  /* Sub */

  .offer-details {
    grid-template-columns: 1fr;
  }


}