/* Banner section start  */
.banner__wrapper {
  border-radius: 24px;
  padding: clamp(30px, 4vw, 60px) 0;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
.banner__container {
  max-width: 857px;
  padding: clamp(90px, 5vw, 140px) 0 clamp(50px, 5vw, 90px);
}
.banner__container h1 {
  color: var(--light);
  font-weight: 800;
}
.banner__container p {
  color: var(--light);
  font-size: clamp(18px, 2vw, 20px);
  margin: 6px 0 0;
  max-width: 630px;
  line-height: 1.6;
}
.banner__container .primary-btn {
  margin: clamp(16px, 2vw, 30px) 0 0;
}
.banner__wrapper .menu-primary-menu-container {
  margin: 0 auto;
  width: fit-content;
}
.banner__wrapper #primary-menu {
  background-color: #f8f8f8;
  width: fit-content;
  justify-content: center;
}
.banner__wrapper #primary-menu > li {
  display: none;
}
.banner__wrapper #primary-menu > li:first-child {
  display: block;
}
/* Banner section end  */

/* Selected Project section start  */
.selected-project__section .section-wrap {
  display: flex;
  max-width: unset;
  justify-content: space-between;
  align-items: end;
  width: 70%;
  gap: 30px;
}
.selected-project__section .section-wrap p {
  margin: 0;
}
.selected-project__section .section-wrap > div {
  max-width: 380px;
}
.selected-project__section .selected-project__wrapper {
  position: relative;
}
.selected-project__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}
.selected-project__item:nth-child(5n + 1),
.selected-project__item:nth-child(5n + 2) {
  grid-column: span 3;
}
.selected-project__item:nth-child(5n + 3),
.selected-project__item:nth-child(5n + 4),
.selected-project__item:nth-child(5n + 5) {
  grid-column: span 2;
}
.selected-project__item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.selected-project__item > a.featured-image::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #00000033;
}
.selected-project__item a.featured-image img {
  width: 100%;
  height: 465px;
  object-fit: cover;
}
.selected-project__item:hover .arrow-button img {
  transform: rotate(45deg);
}
.selected-project__item:nth-child(1) a.featured-image img,
.selected-project__item:nth-child(2) a.featured-image img {
  height: 517px;
}
.selected-project__item .arrow-button {
  position: absolute;
  top: 20px;
  right: 20px;
}
.single-project__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 30px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3.3px);
  -webkit-backdrop-filter: blur(3.3px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: end;
  gap: 15px;
  justify-content: space-between;
}
.single-project__content .entry-title a {
  color: var(--light);
}
.single-project__content ul {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
.single-project__content ul li {
  border: 0.5px solid #ffffff4d;
  font-size: clamp(12px, 1.4vw, 16px);
  color: var(--light);
  padding: clamp(4px, 1.4vw, 6px) clamp(9px, 1.4vw, 14px);
  border-radius: 50px;
  font-weight: 400;
}
.selected-project__item:nth-child(1) .single-project__content > div:last-child,
.selected-project__item:nth-child(2) .single-project__content > div:last-child {
  text-align: right;
}
.single-project__content span {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  color: #e3e3dc;
  font-family: var(--primary-font);
}
.single-project__content h3.price {
  font-size: clamp(22px, 1.8vw, 32px);
  color: var(--light);
  font-weight: 800;
}
.selected-project__item:nth-child(n + 3) .single-project__content {
  flex-direction: column;
  align-items: start;
}
.selected-project__item:nth-child(n + 3) .single-project__content span {
  font-size: clamp(12px, 1vw, 16px);
}
.selected-project__item:nth-child(n + 3) .single-project__content h3.price {
  font-size: clamp(20px, 1.2vw, 26px);
}
.selected-project__item:nth-child(n + 3) .entry-title {
  font-size: clamp(18px, 1.2vw, 22px);
}
.selected-project__section .matashree-btn {
  position: absolute;
  top: -95px;
  right: 0;
}
.banner__section #primary-menu {
  position: relative;
  z-index: 999;
  transition: all 0.3s ease;
}
.banner__section #primary-menu.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.banner__wrapper #primary-menu.sticky > li {
  display: block !important;
}
@media (max-width: 1600px) {
  .single-project__content {
    margin: 20px;
  }
  .selected-project__item a.featured-image img {
    height: 400px;
  }
  .selected-project__item:nth-child(1) a.featured-image img,
  .selected-project__item:nth-child(2) a.featured-image img {
    height: 450px;
  }
}
@media (max-width: 1200px) {
  .selected-project__item a.featured-image img {
    height: 350px;
  }
  .selected-project__item:nth-child(1) a.featured-image img,
  .selected-project__item:nth-child(2) a.featured-image img {
    height: 400px;
  }
  .single-project__content {
    flex-wrap: wrap;
  }
  .selected-project__item:nth-child(1)
    .single-project__content
    > div:last-child,
  .selected-project__item:nth-child(2)
    .single-project__content
    > div:last-child {
    text-align: left;
  }
}
@media (max-width: 1024px) {
  .selected-project__item:nth-child(5n + 3),
  .selected-project__item:nth-child(5n + 4),
  .selected-project__item:nth-child(5n + 5) {
    grid-column: span 3;
  }
  .selected-project__section .matashree-btn {
    position: unset;
    margin: 25px auto 0;
  }
  .selected-project__section .matashree-btn > a {
    justify-content: center;
  }
  .selected-project__section .section-wrap {
    flex-wrap: wrap;
    width: unset;
    gap: 8px;
  }
  .selected-project__section .section-wrap > div {
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .selected-project__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .selected-project__item {
    grid-column: unset !important;
  }
  .selected-project__item a.featured-image img {
    height: 350px !important;
  }
}
/* Selected Project section end  */

/* Our Services section start  */
.our-services__section {
  background-color: #eeeeee;
}
.our-services__wrapper {
  background-color: var(--light);
  padding: 30px 25px;
  border-radius: 20px;
  position: relative;
}
.our-service__container .arrow-button {
  background-color: #efefef;
}
.our-services__section .matashree-btn {
  position: absolute;
  top: -95px;
  right: 0;
}
.our-services__section .matashree-btn .btn {
  background: var(--light);
}
.our-services__section .matashree-btn .btn:hover {
  background: linear-gradient(180deg, #d91e25 0%, #9d1b1f 100%);
}
.our-services__list {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.our-services__list:not(:last-child) {
  margin-bottom: clamp(20px, 2vw, 35px);
  padding-bottom: clamp(20px, 2vw, 35px);
  border-bottom: 1px solid #b3b3b3;
}
.our-services__list > div {
  width: calc(50% - 15px);
}
.our-service__container {
  display: flex;
  align-items: start;
  gap: 15px;
  max-width: 690px;
}
.our-service__container span {
  font-size: clamp(22px, 4vw, 64px);
  color: var(--text-3);
  display: block;
  font-weight: 700;
  font-family: var(--primary-font);
  line-height: 1;
  margin-right: clamp(8px, 2vw, 35px);
}
.our-service__container p {
  font-weight: 400;
}
.our-service__container ul {
  display: flex;
  align-items: start;
  row-gap: 20px;
  flex-wrap: wrap;
  padding: 0;
  margin: clamp(18px, 3vw, 65px) 0 0;
  max-width: 400px;
}
.our-service__container ul li {
  width: 50%;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -1%;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  border-bottom: 1px dashed #dfdfdf;
  padding-bottom: 20px;
}
.our-service__container ul li::before {
  content: "";
  min-width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #e8464c;
}
.our-service__container ul li:nth-child(odd) {
  padding-right: 15px;
}
.our-service__container ul li:nth-child(even) {
  padding-left: 15px;
}
.our-service__container ul li:last-child,
.our-service__container ul li:nth-last-child(2) {
  border: none;
}
.our-services__list .featured-image {
  position: relative;
  max-width: 522px;
  margin: 0 0 0 auto;
}
.our-services__list .featured-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}
#modal-center iframe {
  width: 100%;
  height: 100%;
}
.service-video {
  width: 100%;
  height: 70%;
  max-width: 900px !important;
}
@media (max-width: 1400px) {
  .our-services__list .featured-image {
    max-width: 410px;
  }
}
@media (max-width: 1200px) {
  .our-services__list {
    flex-direction: column;
    row-gap: 20px;
  }
  .our-services__list > div {
    width: 100%;
  }
  .our-services__list .featured-image {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .our-services__section .matashree-btn {
    position: unset;
    margin: 25px auto 0;
  }
  .our-services__section .matashree-btn .btn {
    background: #eeeeee;
  }
  .our-services__section .matashree-btn .btn:hover {
    background: linear-gradient(180deg, #d91e25 0%, #9d1b1f 100%);
  }
}
@media (max-width: 567px) {
  .our-service__container ul {
    flex-direction: column;
    row-gap: 10px;
  }
  .our-service__container ul li {
    border: unset !important;
    padding: unset !important;
    width: 100%;
  }
  .our-service__container ul li:not(:last-child) {
    border-bottom: 1px dashed #dfdfdf !important;
    padding-bottom: 10px !important;
  }
  .our-service__container {
    gap: 8px;
  }
}
/* Our Services section end  */

/* About us section start  */
.about-company__section {
  position: relative;
}
.about-company__section::before {
  content: url(../img/about-bg-1.png);
  position: absolute;
  left: 0;
  top: 6%;
}
.about-company__section .wrapper {
  position: relative;
  z-index: 1;
}
.about-company__section .section-wrap {
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  row-gap: 0;
}
.about-company__section .section-wrap > div {
  max-width: 617px;
}
.about-company__section .section-wrap > div:nth-child(2) {
  text-align: right;
  max-width: 551px;
}
.about-company__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
  gap: 25px;
  position: relative;
}
.about-company__wrapper::after {
  content: url(../img/about-bg-2.png);
  position: absolute;
  bottom: -25%;
  right: 10%;
}
.about-company__container {
  position: relative;
  z-index: 1;
}
.about-company__container img {
  border-radius: 20px;
  height: 427px;
  width: 100%;
  object-fit: cover;
}
.about-company__container .entry-content {
  background-color: #fefcfa;
  border-radius: 20px;
  padding: 25px;
  margin: -100px 25px 0 25px;
  position: relative;
}
@media (max-width: 1200px) {
  .about-company__section .section-wrap {
    flex-direction: column;
    align-items: start;
  }
  .about-company__section .section-wrap > div:nth-child(2) {
    text-align: left;
  }
}
@media (max-width: 1024px) {
  .about-company__section::before,
  .about-company__wrapper::after {
    content: unset;
  }
}
/* About us section end  */

/* Counter section start  */
.counter__section {
  background: linear-gradient(0deg, #ededed 0%, #fefcfa 100%);
}
.counter__wrapper {
  display: flex;
  gap: 30px;
  row-gap: 25px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.counter__container {
  display: flex;
  align-items: center;
  gap: 18px;
}
.counter__container .icon {
  background: linear-gradient(180deg, #ffffff 0%, #f4e9ea 100%);
  box-shadow: 0px 0px 4px 0px #0000001a;
  width: 78px;
  height: 78px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter__container .icon img {
  height: 41px;
}
.counter__container h2 {
  font-size: clamp(26px, 4vw, 64px);
  display: block;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
@media (max-width: 989px) {
  .counter__container .icon {
    width: 60px;
    height: 60px;
  }
  .counter__container .icon img {
    height: 30px;
  }
}
/* Counter section end  */

/* Schedule Consultation section end  */
.schedule-consultation__section {
  background-color: #1e1e1e;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}
.schedule-consultation__section .section-wrap {
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 150px) 0;
}
.schedule-consultation__section .section-title {
  color: var(--light);
}
.schedule-consultation__section .section-wrap p {
  color: #bbbbbb;
}
.schedule-consultation__section .btn {
  margin: clamp(24px, 2vw, 34px) auto 0;
}
/* Schedule Consultation section end  */

/* Why Choose section end  */
.why-choose__slider .slick-list {
  overflow: visible;
}
.why-choose__controls {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
  flex-direction: row-reverse;
  margin: clamp(30px, 3vw, 45px) 0;
}
.why-choose-arrow {
  display: flex;
  gap: 10px;
  align-items: center;
}
.why-choose__controls .slick-arrow {
  position: unset;
  transform: unset;
}
.why-choose__controls .slick-dots {
  position: unset;
  width: fit-content;
  display: flex;
}
.why-choose__container .featured-image {
  background-color: #f1e7e7;
  padding: 20px;
  border-radius: 20px;
  margin: 0 0 20px;
}
.why-choose__container img {
  width: 100%;
  height: 331px;
  object-fit: cover;
  border-radius: 18px;
}
.why-choose__container .entry-title {
  margin-bottom: 4px;
}
.why-choose__container p {
  font-size: 16px;
}
.why-choose__wrapper {
  background: linear-gradient(360deg, #f2e7e7 0%, #fcfcfc 100%);
  border-radius: 24px;
}
.why-choose__wrapper > div {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 65px;
  row-gap: 30px;
}
.why-choose__content .icon {
  box-shadow: 0px 4px 4px 0px #0000001f;
  background: linear-gradient(180deg, #ffffff 0%, #f3f0ed 100%);
  border-radius: 12px;
  height: 58px;
  width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(14px, 2vw, 20px);
}
.why-choose__content .icon img {
  height: 35px;
}
@media (max-width: 989px) {
  .why-choose__content .icon {
    height: 48px;
    width: 48px;
  }
  .why-choose__content .icon img {
    height: 28px;
  }
  .why-choose__wrapper > div {
    gap: 40px;
    row-gap: 30px;
  }
  .why-choose__container img {
    height: 300px;
  }
}
/* Why Choose section end  */

/* Client Review section end  */
.client-review__wrapper {
  display: flex;
  gap: 45px;
  align-items: center;
  justify-content: space-between;
}
.client-review-right {
  width: 60%;
}
.client-review-right .slick-list {
  max-width: 732px;
}
.client-review-left {
  max-width: 463px;
}
.client-review-image > div {
  background: linear-gradient(180deg, #fcfcfc 0%, #f4e9ea 100%);
  border-radius: 20px;
  overflow: hidden;
  height: 515px;
}
.client-review-image > div img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.client-review-content {
  display: flex;
  flex-direction: column-reverse;
}
.client-review-content .slick-dots {
  position: unset;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: clamp(15px, 2vw, 40px);
}
.client-review-content .slick-dots li {
  width: fit-content;
  border-radius: 50%;
  padding: 6px;
  border: 1px dashed #cacaca;
}
.client-review-content .slick-dots li img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}
.client-review-content .slick-dots li.slick-active img {
  filter: unset;
}
.client-review__section .slick-slide {
  margin: 0;
}
.client-review__section .slick-list {
  margin: 0;
}
.client-review__section .slick-prev {
  left: -50px;
}
.client-review__section .slick-next {
  right: 30px;
}
.client-review__section .slick-disabled {
  display: none !important;
}
.client-review__section .entry-content {
  position: relative;
  display: flex;
  align-items: start;
  gap: 10px;
}
.client-review__section .entry-content > div {
  margin-top: 18px;
}
.client-review__section .entry-content::before {
  content: url(../img/review-bg.png);
}
.client-review__section .reviewer-name {
  margin-top: clamp(18px, 3vw, 45px);
}
.reviewer-name {
  position: relative;
  padding-left: 16px;
}
.reviewer-name::before {
  content: "";
  width: 2px;
  height: 29px;
  background-color: #cecece;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.reviewer-name h4 {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 500;
  color: var(--text-1);
  font-family: var(--secondary-font);
  margin: 0 0 2px;
}
.client-review-right p {
  font-size: clamp(18px, 2vw, 20px);
}
@media (max-width: 1400px) {
  .client-review-left {
    max-width: 350px;
  }
  .client-review-right {
    width: 67%;
  }
}
@media (max-width: 1200px) {
  .client-review-left {
    display: none;
  }
  .client-review-right {
    width: 85%;
    margin: 0 auto;
  }
  .client-review-right .slick-list {
    max-width: 100%;
  }
  .client-review__section .slick-prev {
    left: -40px;
  }
  .client-review__section .slick-next {
    right: -40px;
  }
}
@media (max-width: 989px) {
  .client-review__section .entry-content > div {
    margin: 0;
  }
  .client-review__section .entry-content::before {
    content: unset;
  }
}
@media (max-width: 767px) {
  .client-review-right {
    width: 100%;
  }
  .client-review__section .slick-arrow {
    display: none;
  }
}
/* Client Review section end  */

/* Latest Blog section start  */
.latest-blog__wrapper {
  position: relative;
}
.latest-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
  gap: 30px;
}
.latest-blog__container img {
  height: 276px;
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}
.latest-blog__container .category-date {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.latest-blog__container > div {
  padding-top: clamp(16px, 2vw, 22px);
}
.latest-blog__container span.category a {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-3);
  border-radius: 8px;
  padding: 8px 12px;
  background-color: #efefef;
  display: block;
  width: fit-content;
  line-height: 1;
  font-family: var(--primary-font);
}
.latest-blog__container .category-date p {
  font-size: 16px;
  color: var(--text-2);
  text-transform: uppercase;
}
.latest-blog__container .entry-content {
  margin-top: clamp(16px, 2vw, 22px);
  border-top: 1px solid #e3e3e3;
}
.latest-blog__container .entry-content p {
  font-size: 16px;
}
.latest-blog__wrapper .matashree-btn {
  position: absolute;
  top: -95px;
  right: 0;
}
@media (max-width: 989px) {
  .latest-blog__wrapper .matashree-btn {
    position: unset;
    margin: 35px auto 0;
  }
}
@media (max-width: 989px) {
  .latest-blog__grid {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  }
}
/* Latest Blog section end  */

/* Unit Converter section start  */
.unit-converter__section {
  background-color: #eeeeee;
}
.unit-converter__section .wrapper {
  position: relative;
}
.unit-converter__section .wrapper::before {
  content: url(../img/unit-bg.png);
  position: absolute;
  left: 0;
  bottom: 0;
}
.unit-converter-form {
  max-width: 822px;
  padding: clamp(45px, 5vw, 75px) 0;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 1;
}
.unit-converter-form .entry-title {
  margin: 0 0 clamp(20px, 2vw, 30px);
}
.unit-converter-form form {
  flex: 1;
}
.unit-converter-form > div {
  background-color: var(--light);
  border-radius: 20px;
  padding: clamp(25px, 3vw, 40px);
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: end;
}
.unit-converter-form form > div {
  margin: 12px 0 0;
}
.unit-converter-form .converter-result {
  height: 145px;
  width: 163px;
  border-radius: 20px;
  background: linear-gradient(180deg, #d91e25 0%, #9d1b1f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.unit-converter-form .converter-result p {
  color: var(--light);
  color: #e3e3e3;
  margin: 0;
}
.unit-converter-form .converter-result {
  color: var(--light);
  font-size: clamp(20px, 2vw, 22px);
}
@media (max-width: 989px) {
  .unit-converter-form .converter-result {
    height: 120px;
    width: 130px;
  }
}
@media (max-width: 767px) {
  .unit-converter__section .wrapper::before {
    content: unset;
  }
}
@media (max-width: 567px) {
  .unit-converter-form > div {
    flex-direction: column;
    align-items: unset;
  }
}
/* Unit Converter section end  */
