@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #ece9e6;
  background: -webkit-linear-gradient(to right, #ffffff, #ece9e6);
  background: linear-gradient(to right, #ffffff, #ece9e6);
  color: #333;
  overflow-x: hidden;
}

a {
  color: #88cddd;
  text-decoration: none;
}

a:hover {
  color: #517b85;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  cursor: default;
}

.main {
  position: relative;
  min-height: 100vh;
}

.section-h2 {
  text-transform: uppercase;
  font-size: 28px;
  text-align: center;
  padding: 25px;
}

::-moz-selection {
  color: white;
  background: rgb(136, 205, 221);
}

::selection {
  color: white;
  background: rgb(136, 205, 221);
}

.container {
  max-width: 100vw;
  margin: 0 auto;
}

.nav {
  position: fixed;
  background-color: transparent;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.3 ease-in-out;
  z-index: 1;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

.menu-big {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.menu-aside {
  display: none;
  background-color: #222;
  position: fixed;
  justify-content: center;
  top: 10%;
  left: 0;
  width: 100vw;
  background-color: transparent;
}

.menu-small {
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-small li {
  padding: 10px;
  list-style-type: none;
}

.menu-hamburger {
  display: none;
  transition: 0.6s;
}

.nav a, .nav span {
  text-decoration: none;
  color: #333;
  padding: 7px 15px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px;
  text-transform: uppercase;
  font-size: 18px;
}

.menu-our-work-container,  .nav span {
  cursor: pointer;
}

.menu-our-work-container:hover,  .nav span:hover {
color: rgb(136, 205, 221);
transition: 0.3s;
} 

.menu-our-work {
  background-color: white;
  list-style-type: none;
  position: absolute;
  margin-top: 10px;
  display: none;
}

.menu-our-work-container:hover > .menu-our-work, .nav span:hover > .menu-our-work {
  display: block;
  } 

.menu-our-work-item {
  padding: 10px 0;
}

.nav.active {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav.active a {
  color: #222;
}

.nav.active .fas {
  color: #222;
}

.nav a.current,
.nav a:hover {
  color: rgb(136, 205, 221);
  transition: 0.3s;
}

.nav.active .container {
  padding: 10px 0;
}

.fa-facebook {
  font-size: 28px;
}

.logo_img {
  height: 60px;
  margin-left: 20px;
  margin-right: 20px;
}

.hero {
  background-image: url("https://dicotone.pl/assets/images/cover_background.jpg");
  height: 65vh;
  width: 100vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero .background {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  margin: 0 auto;
  font-size: 70px;
}

.hero-h2 {
  margin: 0 auto;
  font-size: 70px;
}

.hero-span {
  display: block;
  font-size: 26px;
  font-weight: normal;
}

.hero p {
  font-size: 22px;
  letter-spacing: 1px;
}

.btn {
  border: none;
  background-color: #5f5249;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  padding: 15px;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 4px;
  width: 20vw;
}

.btn:hover {
  background-color: #4d433c;
  color: #fff;
}

.contact__header {
  text-align: center;
  color: rgb(136, 205, 221);
  font-weight: bold;
  font-size: 28px;
  padding: 20px;
  margin: 20px 0;
  background-color: #eee;
}

.contact__wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.contactLogo {
  width: 200px;
}

.form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  align-items: center;
  justify-content: center;
}

.contactDetails {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 20px;
}

.contactDetails p {
  padding: 5px;
}

.contactEmail,
.contactPhone {
  text-decoration: none;
  color: black;
}

.contactEmail:hover,
.contactPhone:hover {
  text-decoration: none;
  color: #517b84;
}

/* ABOUT US SECTION */

.about-us-section {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.about-us {
  display: flex;
  justify-content: space-around;
  margin-left: 50px;
  margin-right: 50px;
}

.about-us-h3 {
  font-size: 20px;
  padding: 15px auto 0;
}

.about-us-p {
  text-align: center;
}

.about-us-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 10px 40px 10px;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  transition: 0.6s;
  width: 25vw;
  min-width: 250px;
}

.about-us .fas {
  font-size: 36px;
  padding: 10px;
  color: rgb(136, 205, 221);
  transition: 0.6s;
}

.about-us-container:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  cursor: default;
}

.about-us-container:hover .fas {
  color: #517b84;
}

/* OUR WORK SECTION */

.our-work-section {
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.our-work {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.our-work-container {
  width: 250px;
  height: 250px;
  margin: 10px;
  overflow: hidden;
  display: block;
  transition: 0.1s;
}

.our-work-container.hide{
  display: none;
}

.our-work-photo {
  width: 250px;
  height: 250px;
  transform: scale(1);
  transition: 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.our-work-photo:hover {
  transform: scale(1.2);
  cursor: default;
}

.our-work-btn {
  background-color: transparent;
  border: none;
  font-size: 20px;
  padding: 20px;
  cursor: pointer;
  color: #000;
  border-radius: 4px;
}

.filter-button {
  background-color: #5f5249;;
  border: none;
  font-size: 16px;
  padding:15px;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  transition: 0.3s;
  margin-bottom: 10px;
  border-radius: 4px;
}

.filter-button:hover {
  background-color: rgb(77, 67, 60);
}

.filter-button.active {
  background-color: rgb(77, 67, 60);
}

.our-work-site-section {
  padding-bottom: 50px;
}

/* REFERENCES */
.references-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.references-container img{
  width: 200px;
  transition: 0.3s;
}

/* SLIDER */

.slider {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #fff;
  padding-left: 10%;
  padding-right: 10%;
}

.slider-track {
  flex-direction: row;
  overflow: hidden;
}

.slide {
  padding: 15px;
  justify-content: space-around;
  width: auto;
  text-align: center;
}

.slide img {
  height: 45px;
}

.js-marquee {
  display: flex;
  flex-wrap: wrap;
}

/* BLOG */
.blog-article {
  padding: 50px 100px;
  object-fit: contain;
}

.blog-article-inside {
  display: flex;
  align-items: center;
}

.blog-article:nth-child(odd) {
  box-shadow: 0 2px 10px rgb(0 0 0 / 30%);
}

.blog-article-text {
  margin-left: 20px;
}

/* SINGLE ARTICLE */
.blog-article-container {
  padding-bottom: 10vh;
  margin-left: 15vw;
  margin-right: 15vw;
  background-color: #fff;
  box-shadow: 0px 0px 100px -67px rgba(66, 68, 90, 1);
}

.blog-article-single {
  display: flex;
  flex-direction: column;
}

.blog-article-single img {
  align-self: center;
}

.blog-article-photo {
  max-width: 40vw;
  margin-bottom: 40px;
}

.blog-single-text {
  margin-left: 8vw;
  margin-right: 8vw;
  margin-bottom: 20px;
  font-size: 18px;
}
.section-subtitle {
  font-size: 22px;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 0;
  margin-left: 8vw;
  margin-right: 8vw;
  margin-bottom: 0;
}

.section-subtitle {
  font-size: 22px;
  padding-top: 0;
  margin-left: 8vw;
  margin-right: 8vw;
  padding-bottom: 30px;
}

.blog-li {
  list-style-position: inside;
  padding-bottom: 10px;
  line-height: 1.2;
}

/* FOOTER */

.footer {
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-container {
  display: flex;
  width: 70%;
  padding-bottom: 25px;
  align-items: center;
  justify-content: center;
}

.contacts {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.contact-group {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-group-up {
  text-align: center;
  padding: 20px;
}

.footer-contact {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  color: #fff;
  background-color: #011419;
  justify-content: space-around;
  padding-bottom: 25px;
}

.footer-bottom {
  margin: 0;
  padding: 0;
  background-color: #000604;
}

.footer-bottom-text {
  text-align: center;
  color: #fff;
  font-size: 14px;
  margin: 0;
  padding: 20px;
}

.footer-bottom-text a {
  text-decoration: none;
  color: rgb(136, 205, 221);
}

.footer-bottom-text a:hover {
  text-decoration: none;
  color: #517b84;
}

.contact-container {
  display: flex;
}

.clients-logos {
  margin-top: 40px;
  background-color: #fff;
  width: 100vw;
  padding: 10px;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.client-logo {
  height: 50px;
}

/* STATUTE */

.statute {
  margin: 25px;
  padding: 25px;
}

.statute h1,
.statute h2 {
  text-align: center;
  margin-bottom: 20px;
}

.statute h2 {
  margin-top: 25px;
}

.statute-p + ul li {
  list-style-type: none;
}

/* CONTACT SITE */
.contact-header {
  margin: 20px;
  text-align: center;
}

.contact-conatiner {
  display: flex;
  padding: 20px;
  gap: 50px;
  margin: 0 100px 50px 100px;
}

.form-container {
  width: 50vw;
  padding: 20px;
}

.info-header {
  padding: 0 20px 20px 20px;
  text-align: center;
}

.info-container {
  background-color:#000604;
  color: #efefef;
  width: 50vw;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.info-img {
  width: 70%;
  margin-left: 50px;
}

.info-container p{
  padding: 5px;
}

.info-img-container {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.info-p {
  margin: 10px;
}

.form-label {
  font-size: 18px;
}

.form-input {
  background-color: #efefef;
  border: 0;
  margin: 10px;;
  font-size: 18px;
}

.contact-form {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 50vw;
  border-radius: 4px;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #555;
}

.form-group input, .form-group textarea {
  width: 95%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.form-group textarea {
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background-color: #5f5249;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #4d433c;
}

.success-container {
  text-align: center;
  min-height: 30vh;
}

.success-header {
font-size: 24px;
font-weight: normal;
padding: 10vh;
}

/* MEDIA QUERIES */

@media (max-width: 1200px) {
  .about-us {
    display: flex;
    flex-wrap: wrap;
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (max-width: 900px) {
  .contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contact-conatiner {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 850px) {
  .menu-big {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* flex-wrap: wrap; */
    align-items: center;
    display: none;
    transition: 0.3s;
  }

  .menu-big li {
    padding: 10px;
  }
  .nav a {
    font-size: 14px;
  }

  div.container {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero h2 {
    font-size: 48px;
  }

  .hero p {
    font-size: 16px;
  }
  .filter-buttons {
    margin: 10px;
  }

  .filter-button {
    font-size: 14px;
    padding: 10px;
  }


  .contact-conatiner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }


.contact-form {
  width: 70vw;
}


.info-container {
  width: 70vw;
}
}

.burger {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 24px;
  transition: 0.3s;
  font-weight: 300;
  color: #333;
}

.fa-bars,
.fa-xmark {
  display: none;
}

.show {
  display: block;
}

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

.visible a {
  margin: 0;
  padding: 0;
}


.dark-section {
  color: #fff;
}

/* cookie popup */

#cookiePopup {
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 15px;
  background-color: rgba(1, 20, 25, 0.6);
  backdrop-filter: blur(6px);
  text-align: center;
}
#cookiePopup p {
  color: white;
}

#cookiePopup button {
  background-color: rgb(1, 20, 25, 0.7);
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  padding: 15px;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}
#cookiePopup button:hover {
  background-color: rgb(1, 20, 25);
}

.aside {
  background-color: #ffffff;
  width: 100vw;
  height: 15vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* SLIDER */

.aside {
display: none;
}