@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


* {
    margin: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol {
    margin: 0px;
    padding: 0px;
  }
  a,
  a:hover {
    text-decoration: none;
  }
  li {
    list-style: none;
  }
  img {
    width: 100%;
    height: auto;
  }
  :root {
    --main-font: 'Poppins', sans-serif;
    --sub-font: "Playfair Display", serif;
    --primary:#30503c;
    --secondery: #87c59d;
    --sub-1: #333333;
    --sub-2: #828282;
    --sub-3 : #BDBDBD ;
    --sub-4: #E0E0E0;
    --white: #ffffff;
    --black: #000000;
  }
  #main-wrapper {
    overflow: hidden;
    position: relative;
    max-width: 1900px;
    margin: 0 auto;
    width: 100%;
  }
  .primary-btn {
    background: var(--primary);
    color: #fff;
    border-radius: 40px;
    padding: 14px 30px;
    font-size: 18px;
    border: 1px solid var(--primary);
    transition: 0.3s ease-in-out;
    &:hover {
      background-color: #fff;
      color: var(--primary);
    }
  }
  .sec-btn {
    background: var(--secondery);
    color: #fff;
    border-radius: 40px;
    padding: 14px 30px;
    font-size: 18px;
    border: 1px solid var(--secondery);
    transition: 0.3s ease-in-out;
    &:hover {
      background-color: #fff;
      color: var(--secondery);
    }
  }
  .third-btn {
    background: transparent;
    color: #fff;
    border-radius: 40px;
    padding: 14px 30px;
    font-size: 18px;
    display: inline-block;
    border: 1px solid #fff;
    transition: 0.3s ease-in-out;
    &:hover {
      background-color: var(--secondery);
      color: var(--primary);
    }
  }
  header {
    position: absolute;
    top: 0px;
    padding: 60px 0px 30px;
    z-index: 999;
    width: 100%;
    left: 0px;
    right: 0px;
    .main-menu {
      width: 800px;

      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 10px;
      margin: 0px auto;
      background-color: #fff;
      border-radius: 50px;
      padding: 8px 20px;
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: center;
      li {
        a {
          font-size: 18px;
          color: #000;
          font-weight: 500;
          padding: 6px 20px;
          border-radius: 30px;
          transition: 0.3s all ease-in-out;
          display: block;
          &:hover {
            background-color: var(--primary);
            color: #fff;
          }
        }
        &.current-menu-item a {
            color: var(--primary);
            font-weight: 700;
            &:hover {
              color: #fff;
            }
        }
      }
    }
    &.shrink {
      top: 20px;
      z-index: 999;
      position: fixed;
      padding: 0px 0px 00px;
      .main-menu {
        backdrop-filter: blur(15px);
        background-color: #ffffff6f;
      }
    }
  }
  .shrink.header-area .main-menu {
    transition: 0.7s;
    animation: smoothScroll 1s forwards;
  }
  
  @keyframes smoothScroll {
    0% {
      transform: translateY(-40px);
    }
  
    100% {
      transform: translateY(0px);
    }
  }
  .banner {
    position: relative;
    .banner-bg {
      width: 100%;
      height: auto;
      position: relative;
    }
    .content {
      top: 50%;
      position: absolute;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 670px;
      h1 {
        font-size: 70px;
        font-weight: 400;
        color: #313131;
        font-family: var(--sub-font);
        line-height: 120%;
        text-align: center;
        margin-bottom: 18px;
        span {
          font-weight: 700;
          font-family: var(--sub-font);
          font-style: italic;
          color: var(--secondery);
        }
      }
      h2 {
        font-size: 25px;
        font-weight: 400;
        text-align: center;
        line-height: 140%;
        color: #3b3b3b;
      }
      .action {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        gap: 20px;
      }
    }
  }
  .comn-padding {
    padding: 80px 0px;
    position: relative;
  }
  .banner.inner-banner {
    .content {
      top: 60%;
      h1 {
        color: #fff;
        font-weight: 600;
        
      }
    }
   
  }
   .banner.inner-banner.white {
      .content {
        h1 {
          color: var(--primary);
        }
      }
    }
  .who-we-are.abt {
    &:before {
      content: "";
      position: absolute;
      top: 0px;
      right: 0px;
      width: 200px;
      height: 200px;
      background: url('../images/about-page-rigth.webp') no-repeat center;
      background-size: contain;
    }
    .content-area {
      padding: 0px;
      p {
        font-size: 19px;
      }
      &.end {
        p {
          span {
           position: relative;
           font-weight: 700;
           &:before {
            content: url('../images/background-text.svg');
            width: 80%;
            height: 90%;
            position: absolute;
            top: -5px;
            left: -10px;
            /* bottom: 0px;
            right: 0px; */
            z-index: -1;
           }
          }
        }

      }
    }
  }
  .why-love.abt {
    .content-area {
      padding: 0px;
      p {
        font-size: 19px;
        margin-bottom: 14px;
      }
    }
  }
  .redius-pic {
    padding: 0px 40px 0px 50px;
    position: relative;
    transition: 0.3s ease-in-out;
    .line {
      width: 350px;
      background-color: var(--primary);
      height: 3px;
      display: block;
      position: absolute;
      top: 23%;
      left: 92%;
      z-index: 2;
    }
    img {
      border-radius: 200px;
      height: 750px;
      transition: 0.3s ease-in-out;
      object-fit: cover;
    }
    &:hover {
      img {
        border-radius: 150px;
		  box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
      }
      
    }
    
  }
  .redius-pic.end {
      .line {
        left: -50%;
        top: 12%;
      }
  }
  .main-title {
    font-size: 65px;
    font-family: var(--sub-font);
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    span {
      font-family: var(--sub-font);
      color: var(--secondery);
      font-style: italic;
      font-weight: 700;
    }
  }
  .content-area {
    &.end {
      padding-right: 80px;
      padding-left: 20px;
    }
    &.start {
      padding-left: 105px;
      padding-right: 0px;
      .main-title {
        font-size: 55px;
      }
    }
    p {
      font-size: 21px;
      font-weight: 400;
      font-family: var(--main-font);
      line-height: 170%;
      color: var(--primary);
    }
  }
  .what-we-do {
    .container {
      background: #fafbf9;
      border-radius: 50px;
      padding: 60px 20px 60px;
      position: relative;
    }
    .slick-arrow {
      position: absolute;
      top: 47%;
      z-index: 99;
      background-color: var(--white);
      width: 50px;
      height: 50px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
      border: 1px solid var(--white);
      i {
        font-size: 24px;
        color: var(--primary);
        line-height: 50px;
      }
      &.custom-next-arrow {
        right: -25px;
      }
      &.custom-prev-arrow {
        left: -25px;
      }
    }
    .what-slider {
      .inner {
        padding: 12px;
        .item {
          box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
          border-radius: 38px;
          padding: 14px;
          display: block;
          min-height: 490px;
          transition: 0.4s ease-in-out;
          background-color: #fff;
          &:hover {
            box-shadow: rgba(0, 0, 0, 0.36) 0px 1px 6px;
            .pic {
              img {
                transform: scale(1.1);
              }
            }
            .split-cont {
              .icon {
                i {
                  transform: rotate(-40deg);
                }
              }
            }
          }
          .pic {
            border-radius: 30px;
            overflow: hidden;
			  transition: 0.2s ease-in-out;
			 &:hover {
			box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
			}
            img {
              height: 300px;
              width: 100%;
              object-fit: cover;
              transition: 0.4s ease-in-out;
            }
          }
          .name {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin: 14px 0px;
          }
          .split-cont {
            display: flex;
            align-items: start;
            gap: 10px;
            margin-bottom: 10px;
            p {
              width: 85%;
              font-size: 15px;
              font-weight: 300;
              color: #313131;
            }
            .icon {
              padding: 4px 8px;
              border-radius: 8px;
              background-color: #f46703;
              i {
                font-size: 18px;
                transition: 0.4s ease-in-out;
                color: #fff;
              }
            }
          }
        }
      }
      .slick-dots li {
          width: 10px;
          height: 10px;
          border-radius: 10px;
          background-color: #87c59d;
          &.slick-active {
            background-color: var(--primary);
          }
          button {
            width: 10px;
            height: 10px;
          }
          button:before {
          display: none;
        }
      }
    }
  }
  .home .what-we-do {
      & .what-slider {
          & .inner {
              & .item {
                  min-height: 430px;
                  & .pic {
                      img {
                          height: 220px;
                          width: 100%;
                          object-fit: cover;
                          transition: 0.4s ease-in-out;
						  
                      }
                  }
              }
          }
      }
  }
  .project {
    display: flex;
	  padding-bottom: 0px;
    .left {
      width: 60%;
      position: relative;
      z-index: 3;
      margin-top: 60px;
      padding: 40px 20px 50px 50px;
      background-color: var(--primary);
      border-bottom-right-radius: 30px;
      border-top-right-radius: 30px;
      .main-title {
        color: #fff;
      }
      .project-slider {
        width: 130%;
        .inner {
          padding: 5px;
          .item {
            background-color: #fff;
            padding: 10px;
            display: block;
            min-height: 240px;
            border-radius: 18px;
            .pic {
              img {
                height: 200px;
                object-fit: cover;
                border-radius: 20px;
				transition: 0.2s ease-in-out;
				&:hover {
					box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
				}
              }
            }
            .name {
              font-size: 18px;
              font-weight: 700;
              color: var(--primary);
              margin: 5px 0px 5px;
            }
            p {
              font-size: 14px;
              padding-bottom: 5px;
              color: #5a5a5a;
              b {
                color: var(--primary);
              }
            }
          }
        }
      }
      .arrow {
        display: flex;
        gap: 10px;
        align-items: center;
        .project-perv , .project-next {
          font-size: 20px;
          color: #fff;
          cursor: pointer;
        }
      }
      
    }
    .right {
      width: 50%;
      position: absolute;
      top: 80px;
      right: -20px;
      z-index: 1;
      border-radius: 20px;
      overflow: hidden;
      img {
        height: 550px;
        object-fit: cover;
      }
    }
  }
  .why-love {
    background: #fafbf9;
    .left {
      position: relative;
      .line {
        height: 80%;
        position: absolute;
        top: 30px;
        width: 3px;
        left: 28px;
        background-color: var(--primary);
      }
      .item {
        display: flex;
        gap: 10px;
        align-items: start;
        margin-bottom: 30px;
        justify-content: space-between;
        .cont {
          width: 85%;
          h5 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 3px;
          }
          p {
            font-size: 18px;
            color: #313131;
          }
          a {
            color: var(--white);
            line-height: 100%;
            padding: 0px 3px;
            background-color: var(--primary);
            i {
              line-height: 100%;
            }
          }
        }
        .number {
          background-color: var(--primary);
          outline: 5px solid #30503c92;
          width: 60px;
          position: relative;
          height: 60px;
          border-radius: 60px;
          p {
            font-size: 30px;
            line-height: 100%;
            font-family: var(--sub-font);
            position: absolute;
            top: 42%;
            color: #fff;
            left: 50%;
            transform: translate(-50%, -50%);
          }
        }
      }

    }
  }
  .contact {
    p {
      font-size: 18px;
      font-weight: 400;
      color: #313131;
      margin-bottom: 10px;
      b {
        font-size: 18px;
        color: var(--primary);
      }
    }
    h6 {
      font-size: 18px;
      font-weight: 700;
      color: var(--black);
      margin-top: 30px;
      margin-bottom: 6px;
    }
    ul {
      li {
        a {
          display: flex;
          gap: 10px;
          align-items: center;
          padding: 6px 10px 6px 0px;
          i {
            font-size: 22px;
            color: var(--primary);
          }
          span {
            color: var(--primary);
          }
        }
      }
    }
    .form-area {
      padding: 50px 50px 40px 50px;
      border-radius: 10px;
      background: #fff;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      .row>div {
        margin-bottom: 14px;
      }
      .sec-btn {
        padding: 10px 40px;
      }
      .comn-inp {
        padding: 12px 10px;
        border: 1px solid #3b3b3b;
        border-radius: 10px;
        width: 100%;
        font-size: 18px;
        color: #3b3b3b;
      }
      &.cnt {
        box-shadow: unset;
        padding: 0px;
        background-color: unset;
        .row {
          justify-content: center;
          .sec-btn {
            width: max-content;
            margin: 0px auto;
            display: block;
          }
        }
      }
    }
  }
  footer {
    padding: 60px 0px 20px;
    background: var(--primary);
    .left {
      padding-right: 200px;
    }
    h5 {
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
    }
    p {
      font-size: 18px;
      color: #fff;
      line-height: 150%;
    }
    hr {
      background-color: #fff;
      height: 2px;
      opacity: 0.8;
      margin-top: 40px;
    }
    .copy {
      font-size: 14px;
      text-align: center;
    }
    .link {
      display: flex;
      flex-direction: column;
      gap: 7px;
      li {
        a {
          font-size: 17px;
          color: #fff;
          transition: 0.3s ease-in-out;
          &:hover {
            color: var(--secondery);
          }
        }
      }
    }
    .extra {
      display: flex;
      gap: 10px;
      flex-direction: column;
      li {
        a {
          display: flex;
          gap: 10px;
          align-items: start;
          font-size: 18px;
          font-weight: 300;
          color: #fff;
			i {
				margin-top: 4px;
			}
        }
      }
    }
    .social {
      margin-top: 50px;
      display: flex;
      gap: 10px;
      align-items: center;
      li {
        a {
          color: var(--white);
          font-size: 28px;
          transition: 0.4s ease-in-out;
          &:hover {
            color: var(--secondery);
          }
        }
      }
    }
  }
  .blog-card {
    position: relative;
    margin: 0px 10px 24px;
    .blog-pic {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 20px;
    }
    .cont {
      display: inline-block;
      background-color: #fff;
      border-radius: 20px;
      padding: 14px;
      width: 90%;
      margin-top: -50px;
      .name {
        font-size: 18px;
        font-family: var(--main-font);
        color: #000000;
        margin-bottom: 12px;
        line-height: 150%;
        font-weight: 600;
      }
      .divider {
        width: 2px;
        height: 16px;
        background-color: var(--primary);
        display: inline-block;
      }
      .author , .date {
        font-size: 12px;
        color: #313131;
        font-weight: 400;
        display: block;
        margin: 0px;
      }
      p {
        font-size: 16px;
        font-weight: 400;
        color: #313131;
        margin: 10px 0px;
      }

    }
    &.lrg {
      .blog-pic {
        height: 400px;
        
      }
      .cont {
          margin-top: 10px;
          width: 100%;
          padding: 20px 0px 0px;
          .name {
            font-size: 32px;
            margin-bottom: 15px;
          }
          p {
            font-size: 17px;
            margin: 16px 0px;
          }
        }
    }
    &.split {
      display: flex;
      gap: 28px;
      margin-bottom: 34px;
      justify-content: space-between;
      .blog-pic {
        width: 140px;
        height: 140px;
        border-radius: 10px;
      }
      .cont {
        width: 65%;
        padding: 0px;
        margin-top: 0px;
        .name {
          font-size: 24px;
          margin-bottom: 14px;
        }
        p {
          margin-top: 14px;
          font-size: 17px;
        }
      }
    }
  }
.read-more {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}
.sec-btn.center {
  display: block;
  width: max-content;
}
.bg-gray {
  background: #fafafa;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.main-title.small {
  font-size: 50px;
}
.bg-sub {
  background-color: #fafbf9;
}
.content-left {
  padding: 0px 40px 0px 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  &.end {
    padding: 0px 60px 0px 40px;
  }
  p {
    color: #fff;
    margin-bottom: 14px;
    font-size: 20px;
  }
}
.side-redius-img {
  border-radius: 15px 0px 0px 15px;
  height: 480px;
  object-fit: cover;
  &.end {
    border-radius: 0px 15px 15px 0px;
  }
}
.comn-padding {
  p {
    font-size: 18px;
  }
}
.redu {
  background: #30503c;
  padding: 40px 20px;
  border-radius: 20px;
  margin-top: 40px;
  h4 {
    font-size: 18px;
    color: var(--white);
    font-weight: 300;
  }
}
.abs2 {
  position: relative;
  .left {
    width: 60%;
    top: 15%;
    position: absolute;
    padding: 35px 35px 35px 60px;
    background-color: var(--primary);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    p {
      color: #fff;
      font-size: 18px;
      line-height: 170%;
    }
  }
  .right {
   img {
    border-radius: 30px 0px 0px 30px;
    height: 350px;
    object-fit: cover;
   }
  }
  &.two {
    .left {
      right: 0px;
      top: 10%;
      border-top-right-radius: 0px;
      border-bottom-right-radius: 0px;
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;
    }
    .right {
      img {
        height: 500px;
        object-fit: cover;
        border-radius: 0px 30px 30px 0px;
      }
    }
  }
}
.portfolio-items {
  background: #fff;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  margin-bottom: 20px;
  padding: 10px;
  z-index: 2;
  position: relative;
  .pic {
	  transition: 0.2s ease-in-out;
	  &:hover {
		box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
		}
    img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 10px 10px 10px 10px;
	  transition: 0.2s ease-in-out;
	  &:hover {
		box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
		}
    }
  }
  .content {
    position: relative;
    z-index: 2;
    padding-bottom: 4px;
    .tag {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: start;
      padding: 0px 6px 16px;
      margin-top: -36px;
      span {
        background-color: var(--secondery);
        color: #fff;
        font-size: 14px;
        padding: 5px 10px;
        border-radius: 8px;

      }
    }
    .title {
      font-size: 22px;
      font-weight: 700;
      color: var(--primary);
      margin: 0px 0px 10px;
    }
    p {
      font-size: 16px;
      padding-bottom: 5px;
      color: rgb(90, 90, 90);
      b {
        color: var(--primary);
      }
    }
  }
}
  @keyframes slide{
    from{
      transform:translateX(0) ;
      
    }
    to{
      transform:translateX(-100%) ;
    
    }
  }
.client-logo {
    
  .logos{
    overflow:hidden;
    padding:30px 0 0px;
    background:white;
    white-space:nowrap;
    position:relative;
  }


  .logos:before,
  .logos:after{
    content:"";
    position:absolute;
    top:0;
    width:250px;
    height:100%;
    z-index:2;
  }
  .logos:before{
    left:0;
    background:linear-gradient(to left, rgba(255,255,255,0), white);
  }
  .logos:after{
    right:0;
    background:linear-gradient(to right, rgba(255,255,255,0), white);
  }


  .logos:hover .logos-slide{
    animation-play-state:paused;
    
    
  }
  .logos-slide{
    display:inline-block;
    animation: 35s slide infinite linear;
  }
  .logos-slide img{
        height: 140px;
        width: 160px;
        object-fit: contain;
        margin: 0 20px;
  }
}
.phil {
  .left {
    padding-right: 40px;
  }
  .right {
    background: #fafbf9;
    padding: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    gap: 30px;
    p {
        font-size: 19px;
        font-weight: 400;
        font-family: var(--main-font);
        line-height: 170%;
        margin-bottom: 12px;
        color: var(--primary);
        span {
          position: relative;
          font-weight: 700;
          z-index: 1;
          display: inline-block;
          &:before {
            content: '';
            width: 110%;
            height: 38px;
            background: url(../images/line-bg.svg) no-repeat;
            position: absolute;
            top: -2px;
            left: -22px;
            z-index: -1;
            background-size: cover;
            background-position: left;
          }
        }
    }
    .phil-right {
      width: 65%;
      margin: 0px auto -38px;
      display: block;
    }
  }
}


#single-blog {
  background-color: #fff;
  margin-top: 40px;
}
#single-blog  {


}
.single-post header {
    padding: 15px 0px 30px;
}
.page-template-template-portfolio {
  .what-we-do {
    & .what-slider {
        & .inner {
            .item {
                min-height: 525px;
            }
        }
    }
}

.comn-padding.pb-0 {
  position: relative;
    &:before {
        content: "";
        position: absolute;
        top: 0px;
        right: 0px;
        width: 200px;
        height: 200px;
        background: url(../images/about-page-left.webp) no-repeat center;
        background-size: contain;
    }
}
.comn-padding.bg-sub {
  position: relative;
    &:before {
        content: "";
        position: absolute;
        top: 0px;
        right: 0px;
        width: 155px;
        height: 200px;
        background: url(../images/about-page-def.webp) no-repeat center;
        background-size: contain;
    }
}

.comn-padding.bg-sub {
 p {
  span {
                position: relative;
                font-weight: 700;
                z-index: 1;
                display: inline-block;
                                &:before {
                    content: '';
                    width: 110%;
                    height: 38px;
                    background: url(../images/line-bg.svg) no-repeat;
                    position: absolute;
                    top: -4px;
                    left: -18px;
                    z-index: -1;
                    background-size: cover;
                    background-position: left;
                }
            }
 }
}


}
.instagram-media.instagram-media-rendered {
  margin: 0px auto !important;
}

/* #audio-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

#audio-toggle:hover {
  transform: scale(1.05);
} */






















  @media (min-width: 1399px) { 
    .phil-left {
      max-height: 588px;
    }

  }
  @media (max-width: 1399px) {
    .page-template-template-portfolio {
        & .what-we-do {
            & .what-slider {
                & .inner {
                    .item {
                        min-height: 545px;
                    }
                }
            }
        }
    }
  }

  @media (max-width: 1199px) { 
    .redius-pic {
      padding: 0px 20px 0px 20px;
      img {
        border-radius: 170px;
        height: 600px;
      }
      .line {
        width: 250px;
      }
    }
    .what-we-do {
      .what-slider {
        .inner {
          padding: 8px;
          .item {
            min-height: 440px;
            border-radius: 30px;
            .name {
              font-size: 20px;
            }
            .pic {
              border-radius: 20px;
              img {
                height: 250px;
              }
            }
            .split-cont {
              p {
                /* display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;  
                overflow: hidden; */
              }
            }
          }
        }
      }
    }
    .project {
        .left {
            width: 70%;
        }
    }
    .who-we-are.abt {
      & .content-area {
          p {
              font-size: 17px;
          }
      }
  }

.phil {
    & .right {
        .phil-right {
            width: 50%;
            margin: 0px auto -38px;
            display: block;
        }
    }
}
  .home .what-we-do {
      & .what-slider {
          & .inner {
              & .item {
                  min-height: 410px;
                  & .pic {
                      img {
                          height: 180px;
                          width: 100%;
                          object-fit: cover;
                          transition: 0.4s ease-in-out;
                      }
                  }
              }
          }
      }
  }





  }

  @media (max-width: 991px) { 
    header {
      padding: 20px 0px;
        .main-menu {
            width: 690px;
            padding: 8px 6px;
            gap: 5px;
            li {
              a {
                padding: 6px 13px;
              }
            }
        }
    }
    .banner {
      .content {
        width: 500px;
        h1 {
          font-size: 48px;
          margin-top: 0px;
        }
        h2 {
          font-size: 20px;
        }
        .action {
          gap: 10px;
        }
      }
    }
    .sec-btn , .primary-btn {
      padding: 12px 24px;
      font-size: 16px;
    }
    .comn-padding {
      padding: 40px 0px;
    }
    .main-title {
      font-size: 48px;
    }
    .content-area {
      &.end {
        padding-right: 0px;
        padding-left: 0px;
      }
      p {
        font-size: 16px;
      }
    }
    .redius-pic {
      img {
        border-radius: 170px;
        height: 450px;
      }
      .line {
        width: 200px;
        top: 24%;
      }
    }
    .what-we-do {
      background: #fafbf9;
        .container {
            border-radius: 20px;
            padding: 20px 0px;
        }
    }

.why-love {
  .redius-pic {
    img {
      height: 260px;
    }
  }
  .content-area {
      &.start {
          padding-left: 20px;
          padding-right: 20px;
      }
  }
}
footer {
    .left {
        padding-right: 0px;
    }
    p {
      font-size: 15px;
    }
    .link {
      li {
        a {
          font-size: 16px;
        }
      }
    }
    .extra {
      li {
        a {
          font-size: 15px;
        }
      }
    }
    hr {
      margin-top: 25px;
    }
}
.main-title {
  br {
    display: none;
  }
}
.contact {
  h6 {
    margin-top: 10px;
  }
  .form-area {
    padding: 30px 30px 10px 30px;
  }
}
.who-we-are.abt {
    &:before {
        width: 100px;
        height: 100px;
    }
    .redius-pic {
      .line {
        display: none;
      }
        img {
            height: 200px;
        }
    }
}
.content-left {
      padding: 40px 40px 40px 40px !important;
      position: static;
      transform: unset;
}
.side-redius-img {
  height: 350px;
  border-radius: 0px;
}
.main-title.small {
    font-size: 45px;
}
.phil {
    .left {
        padding-right: 0;
    }
}
.blog-card {
    &.split {
        .blog-pic {
            width: 200px;
        }
        .cont {
          background-color: transparent;
        }
    }
}
.what-we-do {
    .container {
        background: #fafbf9;
        border-radius: 50px;
        padding: 30px 6px 30px;
    }
}

.page-template-template-portfolio {


.comn-padding.pb-0 {
  position: relative;
    &:before {
        display: none;
    }
}
.comn-padding.bg-sub {
  position: relative;
    &:before {
        display: none;
    }
}




}










  }

  @media (max-width: 767px) { 
    header {
        padding: 8px 0px;
        .main-menu {
          flex-direction: column;
          border-radius: 0px;
          box-shadow: none;
          align-items: start;
          width: 100%;
          li {
            width: 100%;
            a {
              width: 100%;
              padding: 6px 12px 6px 0px;
              &:hover {
                color: var(--primary);
                background-color: transparent;
                border-radius: 0px  ;
              }
            }
          }
        }
        .primary-btn {
            border-radius: 8px;
            padding: 6px 20px;
            font-size: 24px;
        }
        &.shrink {
        top: 0;
        z-index: 999;
        position: fixed;
        padding: 10px 0px 10px;
        background: #fff;
    }
    }
    .redius-pic {
      .line {
        display: none;
      }
      img {
            border-radius: 120px;
            height: 380px;
            width: 45%;
            margin: 0px auto;
            display: block;
      }
    }
    .main-title {
      margin-bottom: 12px;
    }
    .project {
      .left {
        width: 78%;
        padding: 40px 20px 50px 32px;
      }
      .right {
        width: 80%;
      }
    }
    .why-love {
        & .redius-pic {
            img {
                height: 380px;
            }
        }
    }
    .content-area {
        &.start {
            .main-title {
                font-size: 46px;
                margin-bottom: 20px;
            }
        }
    }
    footer {
      padding-top: 40px;
      .social {
        margin-top: -28px;
      }
    }
    .banner {
      .banner-bg {
        height: 480px;
        object-fit: cover;
        object-position: center;
      }
      .content {
        width: 90%;
      }
      &.inner-banner {
        .banner-bg {
          height: 200px;
        }
      }
    }
    .comn-padding {
        padding: 25px 0px;
    }

.client-logo {
  .logos {
    padding-top: 0px;
  }
    .logos:after , .logos:before {
        background: unset;
    }
}
    .who-we-are.abt {
        & .redius-pic {
            img {
                height: 380px;
            }
        }
    }

.phil {
    & .right {
        p {
            font-size: 15px;
            line-height: 150%;
            span {
                line-height: 100%;
            }
        }
    }
}

#audio-toggle {
        font-size: 14px;
        gap: 8px;
        display: flex;
        align-items: center;
	        padding: 12px 16px;
    }



  }
  @media (max-width: 576px) {
    .redius-pic {
        img {
            width: 200px;
            border-radius: 100px;
            height: 320px;
        }
    }
    .project {
      .left {
        width: 88%;
        margin-top: 40px;
        padding: 30px 20px 40px 20px;
        .project-slider {
          width: 112%;
        }
      }
      .right {
        top: 40px;
          img {
              height: 494px;
              object-fit: cover;
          }
      }
    }
    .main-title {
      font-size: 34px;
		text-align: center !important;
    }
    .third-btn {
      padding: 10px 20px;
      font-size: 16px;
    }
    footer {
      h5 {
        margin-bottom: 14px;
		  text-align: center;
      }
      .copy {
        font-size: 12px;
      }
    }
    .content-area {
        &.start {
            .main-title {
                font-size: 34px;
                margin-bottom: 20px;
            }
        }
    }
    .why-love {
      .left {
        .line {
          left: 25px;
        }
        .item {
          margin-bottom: 20px;
          .number {
            width: 50px;
            height: 50px;
          }
          .cont {
            h5 {
              font-size: 20px;
				text-align: center;
            }
            p {
              font-size: 16px;
				text-align: center;
            }
          }
        }
      }
    }
    .banner {
      .banner-bg {
        height: 400px;
        object-fit: cover;
        object-position: center;
      }
      .content {
        width: 95%;
        top: 55%;
        h1 {
          font-size: 34px;
        }
        h2 {
          font-size: 15px;
        }
        .action {
          flex-direction: column;
          margin-top: 18px;
        }
        .sec-btn, .primary-btn {
          padding: 8px 16px;
          font-size: 15px;
          width: 210px;
          margin: 0px auto;
          text-align: center;
        }
      }
      &.inner-banner {
        .banner-bg {
          height: 150px;
        }
      }
    }
    .why-love {
        & .content-area {
            &.start {
                padding-left: 0;
                padding-right: 0;
                .line {
                  left: 23px;
                  height: 76%;
                }

            }
        }

    }
    .contact {
        .form-area {
            padding: 30px 10px 10px 10px;
          .row>div {
              margin-bottom: 5px;
          }
          .comn-inp {
            padding: 8px 10px; 
          }
        }
    }
.what-we-do {
    & .what-slider {
        .slick-dots li {
            width: 8px;
            height: 8px;
            margin: 0 2px;
        }
    }
}
.main-title.small {
    font-size: 30px;
}
    .content-left {
      padding: 25px 30px 25px 30px !important;
      p {
          color: #fff;
          margin-bottom: 14px;
          font-size: 18px;
      }
    }
    .side-redius-img {
        height: 230px;
    }
.bg-sub {
  p {
    font-size: 17px;
    br {
      display: none;
    }
  }
}
.blog-card {
  &.split {
    flex-direction: column;
    .blog-pic {
      width: 100%;
      height: 240px;
    }
    .cont {
      width: 100%;
    }
  }
}

    .page-template-template-portfolio {
        & .what-we-do {
            & .what-slider {
                & .inner {
                    .item {
                        min-height: 510px;
                    }
                }
            }
        }
    }
  .home .what-we-do {
      & .what-slider {
          & .inner {
              & .item {
                  min-height: 390px;
              }
          }
      }
  }
	  p {
		  text-align: center;
	  }
.project {
    & .left {
        & .project-slider {
            & .inner {
                & .item {
                    .name {
                        text-align: center;
                    }
                }
            }
        }
    }
}
.why-love {
    & .left {
        & .item {
            & .cont {
                a {
                    margin: 0px auto;
                    display: flex;
                    width: max-content;
                }
            }
        }
    }
}
    .contact {
        h6 {
          
            text-align: center;
        }
    }
.contact {
	h5 {
		text-align: center;
	}
    & ul {
        & li {
            a {
                display: flex;
                gap: 10px;
                align-items: center;
                padding: 6px 10px 6px 0px;
                justify-content: center;
				span {
					text-align: center;
				}
            }
        }
    }
}

footer {
    .link {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        align-items: center;
	}}


    footer {
        & .extra {
            & li {
                a {
                    justify-content: center;
                }
            }
        }
    }

	footer {
		.social {
			margin-top: 7px;
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: center;
        float: unset !important;
		}
	}

    .what-we-do {
        & .what-slider {
            & .inner {
                & .item {
                    .name {
                        text-align: center;
                    }
					.split-cont {
						flex-direction: column;
						p {
							width: 100%;
						}
						.icon {
							margin: 0px auto;
						}
					}
                }
            }
        }
    }
.portfolio-items {
    & .content {
        .title {
            text-align: center;
        }
    }
}	  
    #audio-toggle {
 
        margin: 0px auto;
    }	  
.blog-card {
    .cont { 
        width: 100%;
		.name {
			text-align: center
		}
		.d-flex {
			justify-content: center;
		}
		.read-more {
			text-align: center;
		}
	}
}	  
.blog-card {
    &.lrg {
        & .cont {
            .name {
                font-size: 20px;
                margin-bottom: 11px;
            }
        }
    }
}	  
.blog-card {
    &.split {
        & .cont {
            .name {
                font-size: 20px;
                margin-bottom: 14px;
            }
        }
    }
}	  
	  .single {
		   h2,h3,h4, h5, h6 {
		  text-align:center;
			   margin-bottom:10px;
			   font-weight: 500;
	  }	  
	  }
	  .page-template-template-contact {
		  h6 {
			  text-align: center !important;
		  }
		  .contact-links {
			  a {
				  justify-content: center;
				  font-size: 13px
			  }
		  }
	  }





  }


