/*!*****************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/scss/sections/architect-materials.scss ***!
  \*****************************************************************************************************************************************************************/

/*** LTR websites ***/

.architectMaterials {
  padding: 40px 0;
  color: #fff;
  text-align: center;
  background-color: #000000;
}

.architectMaterials .wrapper {
  display: flex;
  flex-direction: column;
}

.architectMaterials_title {
  margin-bottom: 40px;
}

.architectMaterials_all {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -10px;
  margin-left: -10px;
}

.architectMaterials_all > * {
  margin-bottom: 20px;
  flex-basis: calc(100% / 2 - 20px);
  margin: 10px;
  flex-grow: 0;
}

.architectMaterials_single {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 16px;
  transition: 0.3s;
  cursor: pointer;
}

.architectMaterials_single:hover {
  background: #191919;
}

.architectMaterials_single-active {
  background: #191919;
}

.architectMaterials_single-img {
  max-width: 100%;
}

.architectMaterials_single-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  text-align: center;
  width: 100%;
}

.architectMaterials_popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 0 20px;
}

.architectMaterials_popup-wrapper {
  padding: 20px;
  max-width: 1000px;
  border-radius: 20px;
  border: 1px solid #666;
  background: #101010;
  position: relative;
}

.architectMaterials_popup-wrapper-show {
  animation: show 0.5s forwards;
}

.architectMaterials_popup-wrapper-hide {
  animation: hide 0.5s forwards;
}

.architectMaterials_popup-content {
  display: flex;
  flex-direction: column;
}

.architectMaterials_popup-video {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
}

.architectMaterials_popup-video video {
  width: 100%;
  object-fit: cover;
}

.architectMaterials_popup-title {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 5px;
}

.architectMaterials_popup-description {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.architectMaterials_popup-link {
  font-family: "Anton", sans-serif;
  background: linear-gradient(90deg, #78b52e 0%, #528f07 100%);
  border-radius: 100px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 15px;
  height: 40px;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  min-width: 160px;
  padding: 8px 40px;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0px 6px 6px 0px rgba(120, 181, 46, 0.15);
  margin: 0 auto;
}

.architectMaterials_popup-link:hover {
  padding: 4px 36px;
}

.architectMaterials_popup-link:hover {
  border: 4px solid #fff;
  box-shadow: 0px 6px 6px 0px rgba(120, 181, 46, 0.35);
}

.architectMaterials_popup-close {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
}

.architectMaterials_popup-close::after,
.architectMaterials_popup-close::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}

.architectMaterials_popup-close::before {
  transform: rotate(45deg);
}

.architectMaterials_popup-close::after {
  transform: rotate(-45deg);
}

@keyframes show {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes hide {
  from {
    opacity: 1;
    transform: translateY(0px);
  }

  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}