:root {
  --e-global-color-primary: #EAA638;
  --e-global-color-secondary: #0B3665;
  --e-global-color-text: #7A8986;
}

.rt-pagination {
  text-align: center;
  margin-top: 30px;
}

.rt-pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  background-color: #f0f0f0;
  border-radius: 50%;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.rt-pagination .page-numbers span {
  position: relative;
  top: -2px;
}

.rt-pagination .page-numbers:hover {
  background-color: var(--e-global-color-secondary);
  color: #fff;
}

.rt-pagination .page-numbers.current {
  background-color: var(--e-global-color-secondary);
  color: #fff;
  font-weight: bold;
  pointer-events: none;
}

.rt-pagination .page-numbers.prev,
.rt-pagination .page-numbers.next {
  font-size: 18px;
  font-weight: bold;
}

.rt-portfolio-item .rt-portfolio-image-link img {
  display: block;
  transition: transform 0.5s ease;
}

.rt-portfolio-item:hover .rt-portfolio-image-link img {
  transform: scale(1.05);
}

.rt-portfolio-wrap-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

body.easy-eel-has-widget-rt--portfolio-list-default {
  overflow-x: visible;
}

.rt-portfolio-item {
  display: flex;
  width: 100%;
  background: #F6F4F0;
  overflow: hidden;
  position: sticky;
  top: 70px;
}

.rt-portfolio-image-link {
  flex: 0 0 33%;
  display: block;
  max-width: 0 0 33%;
  overflow: hidden;
}

.rt-portfolio-title {
  color: var(--e-global-color-secondary);
}
.rt-portfolio-title a {
  color: currentColor;
}

.rt-content-wrap .rt-portfolio-readmore {
  color: var(--e-global-color-secondary);
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.rt-content-wrap .rt-portfolio-readmore::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--e-global-color-secondary);
  transition: all 0.3s ease;
}
.rt-content-wrap .rt-portfolio-readmore i,
.rt-content-wrap .rt-portfolio-readmore svg {
  transition: all 0.3s ease;
  left: 5px;
  position: relative;
  width: 20px;
  height: 20px;
}
.rt-content-wrap .rt-portfolio-readmore:hover {
  color: var(--e-global-color-primary);
  text-decoration: none;
}
.rt-content-wrap .rt-portfolio-readmore:hover::before {
  bottom: -8px;
}
.rt-content-wrap .rt-portfolio-readmore:hover svg {
  color: currentColor;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2px;
}
.rt-content-wrap .rt-portfolio-readmore:hover svg path {
  fill: currentColor;
  stroke: currentColor;
}
.rt-content-wrap .rt-portfolio-readmore:hover i {
  color: currentColor;
}

.rt-portfolio-item .rt-portfolio-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  height: 324px;
}

.rt-portfolio-content {
  flex: 1 1 67%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rt-portfolio-excerpt {
  margin-bottom: 25px;
}

.rt-portfolio-readmore:hover {
  color: #fff;
  text-decoration: underline;
}

.rt-content-wrap {
  padding: 48px;
}

.rt-portfolio-location {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  align-items: center;
}
.rt-portfolio-location i {
  top: 0;
  position: relative;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .rt-portfolio-item {
    display: inline-grid;
  }
  .rt-content-wrap {
    padding: 30px 30px 45px;
  }
}/*# sourceMappingURL=portfolio-list.css.map */