.portfolio__header {
    height: 200px;
    background-color: #000;
    padding: 10px 0;
}
.portfolio__header .header__nav{
  position: relative;
  padding-top: 0px;
}
.portfolio__header .header__nav .logo__img {
    max-width: 110px;
    height: 110px;
}
.portfolio-section {
  margin: auto;
  padding: 4rem 0;
  background-color: #000;
  color: #fff;
}
.portfoliosec{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
}

.portfolio-left {
  flex: 1;
}

.portfolio-left h1 {
  font-size: 48px;
  display: flex;
  align-items: center;
 /* font-family: 'BogartMedium', sans-serif;
  font-weight: 500;*/
}

.red-line {
  width: 3px;
  height: 50px;
  background: #fff;
  margin-right: 12px;
  display: inline-block;
}

.review {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.stars {
  width: 120px;
  height: auto;
  margin-right: 10px;
}

.reviews-count {
  font-size: 14px;
  color: #333;
}

.portfolio-right {
  flex: 2;
  font-size: 16px;
  line-height: 1.8;
}

.quote-btn {
  width: 100%;
  display: inline-block;
  border: 1.3px solid #fff;
  text-transform: uppercase;
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 3px;
  transition: .2s all ease;
  max-width: fit-content;
  background-color: #fff;
  color: #000;
  transition: .4s all ease;
}
.quote-btn:hover{
  background-color: #000;
  color: #fff;
}

.quote-btn .free-label {
  display: block;
  font-size: 12px;
  margin-bottom: 3px;
}

.quote-btn .arrow {
  margin-left: 8px;
  font-size: 16px;
}
.portfolio-grid-section{
  padding: 4rem 0;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.portfolio-card {
  background: #f0f0e8;
  border-radius: 15px;
  padding: 35px 20px;
  position: relative;
  transition: transform 0.3s ease;
  overflow: hidden;
  min-height: 250px;
  cursor: pointer;
}

.portfolio-card a{
  font-family: 'Montserrat', sans-serif;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}
.portfolio-card img{
  transition: .5s all ease;
}
.portfolio-card:hover img{
  transform: scale(1.1);
}
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.portfolio-tags span {
  background-color: #fff;
  color: #444;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  white-space: nowrap;
}

.portfolio-content {
  text-align: center;
}

.portfolio-content img {
  max-width: 230px;
  margin-bottom: 10px;
}

.portfolio-content p {
  font-size: 14px;
  color: #222;
  font-weight: bold;
  text-align: left;
}

.hover-arrow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: #e44;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-card:hover .hover-arrow {
  bottom: 1px;
  opacity: 1;
}

.bgpink{
  background-color: #fdebdd;
}
.bglgreen{
  background-color: #d7ffdb;
}
.portfolio__header .slide {
    DISPLAY: NONE;
}
.section__subheading{
  font-weight: 400;
} 
.section__subheading1, .section__subheading2, strong{
  font-family: 'ttinterfaceMedium';
  font-weight: 500;
}