html {
  font-family: "Outfit", sans-serif;
  scroll-behavior: smooth;
}
body {
  position: relative;
  background-color: #FAFAFA;
  margin: 0;
  overflow-x: hidden;
}
body.unscrollable {
  overflow-y: hidden;
}
.container {
  width: 1600px;
  max-width: 100%;
}
p {
  line-height: 160%;
}
button {
  background-color: #FAFAFA;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2E7554 ;
  margin: 0;
  padding: 14px 24px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.wpcf7 input {
  width: 100%;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #161616;
  padding: 10px 20px;
  background-color: #FAFAFA;
  border: 1px solid #FAFAFA;
  border-radius: 10px;
  margin: 0 0 10px 0;
}
.wpcf7 input:focus {
  outline: none;
  /* border: 1px solid #2E7554 ; */
}
.wpcf7 textarea {
  width: 100%;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #161616;
  padding: 10px 20px;
  background-color: #FAFAFA;
  border: 1px solid #FAFAFA;
  border-radius: 10px;
}
.wpcf7 textarea:focus {
  outline: none;
  /* border: 1px solid #2E7554 ; */
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  color: #777A82;
}
.wpcf7 button {
  display: flex;
  align-items: center;
  background: transparent;
  margin: 20px 0 0 0;
  padding: 18px 48px;
  border: 0;
  font-size: 20px;
  font-weight: 600;
  color: #FAFAFA;
  cursor: pointer;
}
.wpcf7 button svg {
  display: inline-block; 
  margin: 2px 0 0 6px;
}
.wpcf7 p {
  margin: 0 0 20px 0;
}
.wpcf7 label {
  display: block;
  font-size: 13px;
  color: #C8CCD0;
  margin: 0;
}

#modal-wrapper {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
}
#modal-wrapper.active {
  display: flex;
}
#modal-mask {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  background-color: rgba(8,9,10,0.6)
}
#modal-mask.active {
  display: block;
}
#modal-wrapper h1.title {
  text-align: center;
  font-size: 52px;
  font-weight: 400;
  color: #2E7554;
  margin: 0 0 40px 0;

}
#modal-wrapper p.subtitle {
  text-align: center;
  max-width: 820px;
  width: 100%;
  color: #2E7554;
  margin: 0 auto 40px;
}
#modal-wrapper .modal-holder {
  max-width: 820px;
  width: 100%;
  padding: 40px 80px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #F5F5F5;
  position: relative;
  z-index: 5;
}
#modal-wrapper #close-modal {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
#modal-wrapper #close-modal svg {
  transition: 0.1s linear all;
}
#modal-wrapper #close-modal:hover svg {
  fill: #343434;
}
#modal-wrapper .form-wrapper {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}
#modal-wrapper .wpcf7 label {
  color: #2C313E;
}
#modal-wrapper .wpcf7 input {
  color: #393F4D;
  background-color: #FBFBFB;
  border: 1px solid #ABABAB;
}
#modal-wrapper .wpcf7 input:focus {
  border: 1px solid #2B2B2B;
}
#modal-wrapper .wpcf7 textarea {
  color: #393F4D;
  background-color: #FBFBFB;
  border: 1px solid #ABABAB;
}
#modal-wrapper .wpcf7 textarea:focus {
  border: 1px solid #2B2B2B;
}
#modal-wrapper .wpcf7 input::placeholder,
#modal-wrapper .wpcf7 textarea::placeholder {
  color: #414141;
}
#modal-wrapper .wpcf7 button {
  display: inline-flex;
  background-color: #2E7554;
  color: #FAFAFA;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  padding: 18px 48px;
  margin: 0;
  transition: 0.1s linear all;
}
#modal-wrapper .wpcf7 button:hover {
  background-color: #db9e2e;
}
#modal-wrapper .wpcf7 button svg {
  margin: 2px 0 0 6px;
  transition: 0.1s linear all;
}
#modal-wrapper .wpcf7 button:hover svg {
  fill: #FAFAFA;
}

/* ---- float in animation ---- */
.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(-100px);
  transition: opacity 0.6s, filter 0.6s, transform 0.6s;
}
.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: opacity 0.6s, filter 0.6s, transform 0.6s;
}
@media (prefers-reduced-motion: no-preference) {
  /* .hidden {
    transition: none;
  } */
}



@media only screen and (max-width: 1440px) {
  section#portfolio .project-box-holder:hover .project-content a {
    bottom: -19px;
  }
}

@media only screen and (max-width: 1280px) {
  section#portfolio .project-box-holder:hover .project-content a {
    bottom: -32px;
  }
}

@media only screen and (max-width: 992px) {
  section#section-one h1.title {
    margin: 0;
  }
  section#section-one .content-image {
    display: none;
  }
  section#konsultacije .availability-box {
    position: static;
    justify-content: space-between;
    transform: none;
    min-width: unset;
    padding: 20px;
  }
  section#portfolio .project-content {
    padding: 0 20px;
  }
  section#portfolio .project-content h3 {
    margin: 0;
  }
  section#portfolio .project-box-holder:hover .project-content a {
    bottom: -38px;
  }
}
@media only screen and (max-width: 768px) {
  section#section-one.offset {
    padding: 90px 0;
  }
  section#section-two {
    padding: 60px 0;
  }
  section#section-two h2.title {
    font-size: 40px;
    margin: 0 0 20px 0;
  }
  section#section-two .row .col-md-6 .process-box-holder:first-of-type  {
    margin: 0 0 30px 0;
  }
  section#section-two .row .col-md-6 .process-box-holder:last-of-type  {
    margin: 30px 0 0 0;
  }

  section#konsultacije {
    padding: 60px 0;
  }
  section#konsultacije h2.title {
    font-size: 40px;
    margin: 0 0 20px 0;
  }
  section#portfolio p.subtitle {
    max-height: unset;
    height: auto;
    margin: 0 0 40px 0;
  }
  section#konsultacije p.our-team {
    max-width: unset;
    margin: 0 0 40px 0;
  }
  section#portfolio {
    padding: 60px 0;
  }
  section#portfolio h2 {
    height: auto;
    max-height: unset;
    font-size: 40px;
    margin: 0 0 20px 0;
  }
  section#portfolio .part-two h3 {
    font-size: 40px;
    margin: 0 0 20px 0;
  }
  section#portfolio .project-box-holder {
    margin: 0 0 40px 0;
  }
  section#portfolio .pricing-column-holder {
    margin: 0 auto 40px;
  }
  section#portfolio .col-md-4:last-of-type .pricing-column-holder {
    margin: 0 auto;
  }
  section#portfolio .project-box-holder:after {
    display: none;
  }
  section#portfolio .project-content h3 {
    margin: 0 0 10px 0;
  }
  section#portfolio .project-content a {
    opacity: 1 !important;
    bottom: -34px !important;
  }
  section#portfolio .part-two {
    margin: 0;
  }
  section#portfolio .part-two p.subtitle {
    max-height: unset;
    margin: 0 0 40px 0;
  }
  #o-nama{
    padding: 60px 0;
  }
  #o-namah2.title {
    font-size: 40px;
    margin: 0 0 20px 0;
  }
  #o-nama.testimonial-holder {
    display: block;
    height: auto;
    padding: 20px;
    margin: 0 0 40px 0;
  }
  #o-nama.testimonial-holder p.quote {
    min-height: unset;
  }
  section#o-nama {
    margin: 40px 0 0 0;
  }
  section#section-one h1.title {
    font-size: 40px;
  }
  section#section-one p.subtitle {
    margin: 20px 0 0 0;
    font-size: 24px;
  }
  section#section-one a.primary-button {
    margin: 30px 0 0 0;
  }
}
