.ws-slider {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.ws-slider .slides {
  display: flex;
}
.ws-slider .slides .slide {
  width: 100%;
  min-width: calc((100% / 3));
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: grab;
  padding-left: 25px;
  padding-right: 25px;
}
.ws-slider .slides .slide:last-child {
  min-width: calc(100% / 3);
}
.ws-slider .slides .slide video {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
/* ====================== photo-slider =========================== */
.photo-slider-wrapper {
  position: relative;
  margin-bottom: 60px;
}
.photo-slider-wrapper .photo-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 4) - 40px);
  overflow-x: auto;
  gap: 40px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  margin: 0;
}
.photo-slider-wrapper .photo-slider::-webkit-scrollbar {
  display: none;
}
.photo-slider-wrapper .photo-slider.no-transition {
  scroll-behavior: auto;
}
.photo-slider-wrapper .photo-slider.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.photo-slider-wrapper .photo-slider.dragging .photo-slide {
  cursor: grab;
  user-select: none;
}
.photo-slider-wrapper .photo-slider :where(.photo-slide, .photo-img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.photo-slider-wrapper .photo-slider .photo-slide {
  height: 125px;
  list-style: none;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  border: 1px solid #e9e9e9;
  align-items: center;
  padding: 0;
}
.photo-slider-wrapper .photo-slider .photo-slide:hover {
  border: 1px solid var(--yellow);
}
.photo-slider-wrapper .photo-slider .photo-slide .photo-img {
  height: 110px;
}
.photo-slider-wrapper .photo-slider .photo-slide .photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* ==================== recent =========================== */
.recent {
  background: var(--dark-blue);
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.recent .container .projects {
  padding-top: 60px;
}
.recent .container .projects h2 {
  color: var(--white);
  margin: 0 auto;
  width: fit-content;
}
.recent .container .projects h2::after {
  margin: 0 auto;
  margin-top: 5px;
}
.recent .container .projects p {
  text-align: center;
  color: var(--white);
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 40px;
}
.recent .container .projects .projects-images {
  overflow: hidden;
  height: 300px;
  position: relative;
  overflow-x: scroll;
}
.recent .container .projects .projects-images .items {
  display: grid;
  position: absolute;
  grid-template-columns: repeat(6, 1fr);
  height: 100%;
  left: 0;
  top: 0;
}
.recent .container .projects .projects-images .items .item {
  height: 265px;
  position: relative;
}
.recent .container .projects .projects-images .items .item img {
  object-fit: cover;
  height: 100%;
  width: 400px;
}
.recent .container .projects .projects-images .items .item .short-info {
  position: absolute;
  background: var(--dark-blue);
  left: 5%;
  top: 5%;
  bottom: 5%;
  align-items: center;
  flex-direction: column;
  width: 100%;
  opacity: 0;
  display: flex;
  transition: 0.4s;
  transform: translateX(-100px);
  z-index: -1;
}
.recent .container .projects .projects-images .items .item:hover .short-info {
  right: 5%;
  opacity: 0.9;
  width: auto;
  outline: 2px solid var(--yellow);
  z-index: 9;
  transform: translateX(0);
}
.recent .container .projects .projects-images .items .item .short-info .info p:first-child {
  margin: 0 auto;
  color: var(--white);
  font-family: sans-serif;
  font-size: 18px;
  display: block;
  text-align: center;
  transition: all 0.8s cubic-bezier(0.74, 0, 0.31, 1.01);
  margin-bottom: 40px;
  opacity: 0;
}
.recent .container .projects .projects-images .items .item .short-info .info p:last-child {
  margin: 0;
  color: var(--yellow);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.8s cubic-bezier(0.74, 0, 0.31, 1.01);
  margin-top: 40px;
  opacity: 0;
}
.recent .container .projects .projects-images .items .item:hover .short-info .info p:first-child {
  transform: translateY(20px);
  opacity: 1;
}
.recent .container .projects .projects-images .items .item:hover .short-info .info p:last-child {
  transform: translateY(-20px);
  opacity: 1;
}
.recent .container .projects .projects-images .items .item .short-info .info {
  margin: auto;
}
.recent .container .projects .projects-images::-webkit-scrollbar-track {
  margin: 300px;
}
.recent .container .projects .projects-images::-webkit-scrollbar {
  background-color: var(--dark-blue);
  height: 8px;
}
.recent .container .projects .projects-images::-webkit-scrollbar-thumb {
  background-color: var(--yellow);
  border-radius: 10px;
}
.recent .container .projects .projects-images::-webkit-scrollbar-thumb:hover {
  background-color: var(--yellow);
}
.recent .container .shipment {
  max-width: 1520px;
  margin: 0 auto;
}
.recent .container .shipment h2 {
  color: var(--white);
  margin: 65px auto 0;
  width: fit-content;
}
.recent .container .shipment h2::after {
  margin: 0 auto;
  margin-top: 5px;
}
.recent .container .shipment p {
  color: var(--white);
  font-size: 16px;
  text-align: center;
  line-height: 1.8em;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 40px;  
}
div.prices .container{
    margin-bottom: 60px;
  }
  div.prices .container .headline{
    max-width: 50%;
    margin-bottom: 40px;
  }
  div.prices .container .headline h2{
    margin-bottom: 40px;  
  }
  div.prices .container .headline p{
    text-align: right;
    font-size: 16px;
  }
  div.prices .container .content .items{
    display: flex;
    gap: 80px;
  }
  div.prices .container .content .items .concrete{
    width: 100%;    
  }
  div.prices .container .content .items .concrete h3{
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 400;
    width: fit-content;
  }
  div.prices .container .content .items .concrete h3::after{
    content: '';
    display: flex;
    background: var(--yellow);
    margin-top: 5px;
    width: 30%;
    height: 2px;
  }
  div.prices .container .content .items .concrete .item{
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    gap: 10px;
  }
  div.prices .container .content .items .concrete .item .info{
    display: flex;
    align-items: center;
    gap: 10px;
  }
  div.prices .container .content .items .concrete .item .info img{
    width: 40px;
  }
  div.prices .container .content .items .concrete .item .info p{
    font-weight: 600;
    color: var(--dark-blue);
  }
  div.prices .container .content .items .concrete .item .info span{
    font-weight: 400;
    color: #6b6b6b;
  }
  div.prices .container .content .items .concrete .item .action{
    display: flex;
    align-items: center;
    gap: 10px;
  }
  div.prices .container .content .items .concrete .item .action button{
    display: flex;
    height: 100%;
    width: 100%;
    min-width: 60px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--light-blue-btn);
    border-radius: 4px;
    cursor: pointer;
    transition: .2s;
    img {
      width: 20px;
      height: 20px;

    }
  }
  div.prices .container .content .items .concrete .item .action button:hover{
    background: #0074ad;
    transform: scale(1.03);
    box-shadow:0 0 12px rgba(167, 167, 167, 0.493);
  }
  div.prices .container .content .items .concrete .item .action a{
    display: flex;
    height: 100%;
    width: 100%;
    min-width: 60px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--yellow);
    border-radius: 4px;
    cursor: pointer;
    transition: .2s;
  }
  div.prices .container .content .items .concrete .item .action a:hover{
    background: #eb9310;
    transform: scale(1.03);
    box-shadow:0 0 12px rgba(167, 167, 167, 0.493) ;
  }

  /* div.prices .container .content .items .down-line.concrete .item .action{
    align-items: baseline;
  } */
  div.prices .container .content .items .down-line.concrete .item .item-price .prices-numbers{
    padding: 20px;
    padding-top: 4px;
    display: flex;
  }
  div.prices .container .content .items .down-line.concrete .item .item-price .prices-numbers .container{
    display: flex;
    margin-bottom: 0;
  }
  div.prices .container .content .items .down-line.concrete .item .item-price .prices-numbers .container::before{
    border-right: 2px dashed var(--dark-blue);
    height: 100%;
    content: '';
    display: flex;
  }
  div.prices .container .content .items .down-line.concrete .item .item-price .prices-numbers .container .content-price{
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  div.prices .container .content .items .down-line.concrete .item .item-price .prices-numbers .container .content-price p span{
    color: var(--yellow);
    font-weight: 500;
  }

.blog {
  margin-bottom: 60px;
}
.blog .head {
  display: flex;
}
.blog .head h2 {
  max-width: 200px;
  width: 100%;
  text-align-last: left;
}
.blog .head h2::after {
  margin: 5px 0 0;
}
.blog .head p {
  font-size: 16px;
  max-width: 555px;
  width: 100%;
  line-height: 1.8em;
  text-align: justify;
}
.blog .head a {
  margin-right: 0;
  margin-left: auto;
  display: flex;
  height: 100%;
  align-items: center;
  padding: 8px 22px;
  text-decoration: none;
  color: var(--dark-blue);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 4px;
  transition: 0.2s ease;
}
.blog .head a:hover {
  color: var(--white);
  background: var(--dark-blue);
}
.blog .posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.blog .posts .item {
  overflow: hidden;
  border-radius: 5px;
}
.blog .posts .item a:hover img {
  transform: scale(1.1);
  width: 100%;
}
.blog .posts .item a img {
  width: 100%;
  height: 240px;
  display: flex;
  object-fit: cover;
  transition: 0.4s;
}
.blog .posts .item .content {
  border: 1px solid #e8e8e8;
  padding: 20px 30px;
  background: var(--white);
  z-index: 9;
  position: relative;
}
.blog .posts .item .content .meta {
  display: flex;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}
.blog .posts .item .content .meta div{
  display: flex;
  align-items: center;
}
.blog .posts .item .content .meta div p {
  color: #9a9a9a;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.blog .posts .item .content .meta div img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.blog .posts .item .content .meta div i {
  display: flex;
  align-items: center;
}
.blog .posts .item .content a:last-child {
  font-size: 16px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 0;
}
.blog .posts .item .content a {
  font-family: 'Oswald', sans-serif;
  text-decoration: none;
  font-size: 20px;
  color: var(--dark-blue);
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
  transition: 0.2s;
}
.blog .posts .item .content a:hover {
  color: var(--yellow);
}
.blog .posts .item .content p {
  font-size: 14px;
  line-height: 1.57em;
  letter-spacing: 0.1px;
  word-wrap: break-word;
}
@media screen and (max-width: 1600px) {
  .recent .container .shipment p {
    max-width: 90%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .recent .container .projects .projects-images::-webkit-scrollbar-track {
    background-color: transparent;
    margin: 120px;
  }
}
@media screen and (max-width: 1080px) {
  .blog.wrapper {
    max-width: 80%;
  }
  .blog .head {
    flex-direction: column;
  }
  .blog .head h2 {
    max-width: 150px;
    margin-bottom: 30px;
  }
  .blog .head p {
    max-width: 100%;
    text-align: justify;
    margin-bottom: 20px;
  }
  .blog .head a {
    margin-left: 0;
    margin-right: auto;
  }
  .blog .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1180px) {
  .photo-slider-wrapper {
    max-width: 900px;
  }
  .photo-slider-wrapper .photo-slider {
    grid-auto-columns: calc((100% / 3) - 30px);
    gap: 30px;
  }
  div.prices .container .content .items{
    flex-direction: column;
  }
  div.prices .container .headline{
    max-width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .ws-slider .slides .slide {
    min-width: calc((100% / 2));
  }
  div.prices .container {
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 60px;
  }
  div.prices .container .content .items .down-line.concrete .item .item-price .prices-numbers .container{
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .photo-slider-wrapper .photo-slider {
    grid-auto-columns: calc((100% / 2) - 30px);
    gap: 20px;
  }
  .photo-slider-wrapper .photo-slider .photo-slide {
    height: 110px;
  }
  .photo-slider-wrapper .photo-slider .photo-slide .photo-img {
    height: 90px;
  }
  /* ==================== recent ===================== */
  .recent {
    padding-bottom: 60px;
  }
  .recent .container .projects {
    padding-top: 60px;
  }
  .recent .container .projects p {
    margin-top: 20px;
  }
  .recent .container .projects .projects-images {
    height: 260px;
  }
  .recent .container .projects .projects-images::-webkit-scrollbar-track {
    margin: 50px;
  }
  .recent .container .projects .projects-images .items .item {
    height: 220px;
  }
  .recent .container .projects .projects-images .items .item img {
    width: 330px;
  }
}
@media screen and (max-width: 540px) {
 .blog .posts {
  grid-template-columns: 1fr;
  }
 .blog .posts .item a img{
  height: auto;
  }
  .ws-slider .slides .slide {
    min-width: 100%;
}
.ws-slider .slides .slide:last-child {
    min-width: 100%;
}
.recent .container .projects .projects-images .items .item .short-info .info a {
  font-size: 16px;
}
  div.prices .container .content .items .down-line.concrete .item .action{
    flex-direction: column;
    gap: 10px;
  }
  div.prices .container .content .items .down-line.concrete .item .action button{
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .recent .container .projects .projects-images::-webkit-scrollbar-track {
    margin: 30px;
  }
  div.prices .container .content .items .concrete .item{
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }
  div.prices .container .content .items .down-line.concrete .item .action{
    flex-direction: row;
  }
  div.prices .container .content .items .down-line.concrete .item .action button{
    margin-right: 0;
    width: auto;
  }
}
@media screen and (max-width: 360px) {
  .photo-slider-wrapper .photo-slider .photo-slide {
    height: 100px;
  }
  .photo-slider-wrapper .photo-slider .photo-slide .photo-img {
    height: 80px;
  }
}