@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
body {
  font-family: ttrg-bd;
}

.home-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .home-banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .home-banner {
    height: 50vh;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner {
    height: 70vh;
  }
}
.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 44.71%, rgba(0, 0, 0, 0.85) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 68.75%, rgba(0, 0, 0, 0.85) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}
@media only screen and (max-width: 540px) {
  .home-banner::before {
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) 44.71%, rgba(0, 0, 0, 0.85) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 40.75%, rgba(0, 0, 0, 0.85) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  }
}
.home-banner .video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .home-banner .container {
    padding: 0;
  }
}
.home-banner .bg-wrapper {
  position: absolute;
  z-index: 1;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .home-banner .bg-wrapper {
    bottom: 40%;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper {
    bottom: 25%;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper .banner-btn {
    display: flex;
    justify-content: center;
  }
}
.home-banner .bg-wrapper a {
  position: absolute;
  z-index: 1;
  margin: 40px 0;
  background: white;
  color: black;
  border: 1px solid white;
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper a {
    margin: 30px 0 0px 0;
  }
}
.home-banner .bg-wrapper h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 45px;
  text-align: left;
  margin-bottom: 18px;
  max-width: 50%;
}
@media only screen and (max-width: 991px) {
  .home-banner .bg-wrapper h1 {
    max-width: 70%;
    line-height: 1.2;
    font-size: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper h1 {
    max-width: 100%;
    font-size: 25px;
    line-height: 1.1;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 8px;
  }
}
.home-banner .bg-wrapper p {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--white);
  max-width: 50%;
}
@media only screen and (max-width: 991px) {
  .home-banner .bg-wrapper p {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.8784313725);
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    color: rgba(255, 255, 255, 0.8588235294);
  }
}

.homeSwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0 6px;
  transition: background 0.3s ease;
}
@media only screen and (max-width: 540px) {
  .homeSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.homeSwiper .swiper-pagination-bullet-active {
  background: #ffffff !important;
}
.homeSwiper .swiper-pagination-horizontal {
  top: 90%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1700px) {
  .homeSwiper .swiper-pagination-horizontal {
    top: 90%;
  }
}
@media only screen and (min-width: 1300px) {
  .homeSwiper .swiper-pagination-horizontal {
    top: 92%;
  }
}
@media only screen and (max-width: 540px) {
  .homeSwiper .swiper-pagination-horizontal {
    top: 94%;
  }
}

.home-secA {
  padding: 50px 0;
  position: relative;
}
.home-secA::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(153, 153, 153, 0.21) 100%);
  z-index: -1;
  top: 0;
  left: 0;
}
.home-secA .flex-box {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
@media only screen and (max-width: 540px) {
  .home-secA .flex-box {
    display: block;
  }
}
.home-secA .flex-box .flex-box-item:nth-child(1) {
  width: 50%;
  padding: 0 20px 0 0px;
}
@media only screen and (max-width: 540px) {
  .home-secA .flex-box .flex-box-item:nth-child(1) {
    width: 100%;
    padding: 0;
    text-align: center;
    margin: 0 0 50px 0;
  }
}
.home-secA .flex-box .flex-box-item:nth-child(1) h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 45px;
  color: var(--primary);
  margin: 0 0 10px 0;
}
@media only screen and (max-width: 540px) {
  .home-secA .flex-box .flex-box-item:nth-child(1) h2 {
    line-height: 1.2;
    text-align: center;
    margin: 0 0 20px 0;
  }
}
.home-secA .flex-box .flex-box-item:nth-child(1) h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 45px;
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 991px) {
  .home-secA .flex-box .flex-box-item:nth-child(1) h3 {
    max-width: 100%;
    line-height: 1.1;
    font-size: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .flex-box .flex-box-item:nth-child(1) h3 {
    font-size: 21px;
    line-height: 1.2;
    text-align: center;
  }
}
.home-secA .flex-box .flex-box-item:nth-child(1) p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 40px 0;
}
@media only screen and (max-width: 991px) {
  .home-secA .flex-box .flex-box-item:nth-child(1) p {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .flex-box .flex-box-item:nth-child(1) p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 30px 0;
  }
}
.home-secA .flex-box .flex-box-item:nth-child(1) .counter-flex {
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  .home-secA .flex-box .flex-box-item:nth-child(1) .counter-flex {
    align-items: unset;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .flex-box .flex-box-item:nth-child(1) .counter-flex {
    align-items: unset;
    justify-content: space-around;
    gap: 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .flex-box .flex-box-item:nth-child(1) .counter-flex .counter-item h5 {
    margin-bottom: 4px;
  }
}
.home-secA .flex-box .flex-box-item:nth-child(1) .counter-flex .counter-item p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
}
@media only screen and (max-width: 991px) {
  .home-secA .flex-box .flex-box-item:nth-child(1) .counter-flex .counter-item p {
    font-size: 10px;
    line-height: 1.3;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .flex-box .flex-box-item:nth-child(1) .counter-flex .counter-item p {
    font-size: 10px;
    line-height: 1.3;
  }
}
.home-secA .flex-box .flex-box-item:nth-child(1) .btn {
  background-color: var(--primary);
  color: #fff;
  font-family: "Poppins";
  font-weight: 500;
}
.home-secA .flex-box .flex-box-item:nth-child(1) .btn:hover {
  background-color: var(--black);
  border: 1px solid var(--black);
  color: var(--primary);
  font-weight: 500;
}
.home-secA .flex-box .flex-box-item:nth-child(2) {
  width: 45%;
  padding: 0 20px;
}
@media only screen and (max-width: 991px) {
  .home-secA .flex-box .flex-box-item:nth-child(2) {
    padding: 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .flex-box .flex-box-item:nth-child(2) {
    width: 100%;
    padding: 0;
  }
}
.home-secA .flex-box .flex-box-item:nth-child(2) .grid-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  line-height: 0;
}
@media only screen and (max-width: 540px) {
  .home-secA .flex-box .flex-box-item:nth-child(2) .grid-box {
    gap: 5px;
  }
}
.home-secA .flex-box .flex-box-item:nth-child(2) .grid-box .grid-box-item {
  border-radius: 9px;
  overflow: hidden;
}
.home-secA .flex-box .flex-box-item:nth-child(2) .grid-box .grid-box-item img {
  width: 100%;
}

.home-secB {
  padding: 50px 0;
}
.home-secB .heading {
  text-align: center;
  position: relative;
}
.home-secB .heading h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 45px;
  font-family: ttrg-bd;
}
@media only screen and (max-width: 991px) {
  .home-secB .heading h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .heading h2 {
    font-size: 34px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 5px;
  }
}
.home-secB .heading p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .home-secB .heading p {
    font-size: 12px;
    line-height: 1.5;
  }
}
.home-secB .heading .swiper-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media only screen and (max-width: 540px) {
  .home-secB .heading .swiper-nav {
    display: none;
  }
}
.home-secB .whatWeDo-slider {
  padding: 50px 0;
}
@media only screen and (max-width: 991px) {
  .home-secB .whatWeDo-slider {
    padding: 40px 0 10px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .whatWeDo-slider {
    padding: 30px 0;
  }
}
.home-secB .whatWeDo-slider .figure {
  height: 300px;
}
.home-secB .whatWeDo-slider .figinfo h5 {
  font-size: 24px;
  line-height: 22px;
}
.home-secB .whatWeDo-slider .figinfo p {
  font-size: 12px;
  padding: 0 20px;
}

.home-secC {
  padding: 80px 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 540px) {
  .home-secC {
    padding: 50px 0;
  }
}
.home-secC::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: -250px;
  background-color: rgba(75, 75, 75, 0.4392156863);
  border-radius: 0%;
  transform: rotate(43deg);
}
@media only screen and (max-width: 991px) {
  .home-secC::before {
    width: 70%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC::before {
    width: 130%;
    top: 30px;
  }
}
.home-secC .heading {
  text-align: center;
  position: relative;
}
.home-secC .heading h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 45px;
  font-family: ttrg-bd;
  color: #fff;
}
@media only screen and (max-width: 540px) {
  .home-secC .heading h2 {
    font-size: 34px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 5px;
  }
}
.home-secC .project-swiper-slider {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 540px) {
  .home-secC .project-swiper-slider {
    margin-bottom: 0px;
    margin-top: 30px;
  }
}
.home-secC .project-swiper-slider .projectSec-slider .swiper-wrapper .swiper-slide {
  opacity: 0.56;
}
.home-secC .project-swiper-slider .projectSec-slider .swiper-wrapper .swiper-slide-active {
  opacity: 1;
}
.home-secC .project-swiper-slider .swiper-nav {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 540px) {
  .home-secC .project-swiper-slider .swiper-nav {
    display: none;
  }
}
.home-secC .project-swiper-slider .swiper-nav svg path {
  fill: var(--white);
}
.home-secC .project-swiper-slider .swiper-nav .swiper-prev, .home-secC .project-swiper-slider .swiper-nav .swiper-next.gray-border {
  border-color: var(--white);
}
.home-secC .project-swiper-slider .swiper-nav .swiper-prev:hover, .home-secC .project-swiper-slider .swiper-nav .swiper-next.gray-border:hover {
  border: 1px solid var(--primary);
}
.home-secC .project-swiper-slider .news-col .figure {
  height: 428px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
@media only screen and (max-width: 540px) {
  .home-secC .project-swiper-slider .news-col .figure {
    height: 360px;
  }
}
.home-secC .project-swiper-slider .news-col .figinfo {
  max-width: 60%;
  top: 70%;
}
@media only screen and (max-width: 1024px) {
  .home-secC .project-swiper-slider .news-col .figinfo {
    max-width: 80%;
  }
}
@media only screen and (max-width: 991px) {
  .home-secC .project-swiper-slider .news-col .figinfo {
    max-width: 80%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .project-swiper-slider .news-col .figinfo {
    max-width: 90%;
  }
}
.home-secC .project-swiper-slider .news-col .figinfo h5 {
  font-family: "ttrg-bd";
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 12px;
}
@media only screen and (max-width: 991px) {
  .home-secC .project-swiper-slider .news-col .figinfo h5 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .project-swiper-slider .news-col .figinfo h5 {
    font-size: 24px;
  }
}
.home-secC .project-swiper-slider .news-col .figinfo p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .home-secC .project-swiper-slider .news-col .figinfo p {
    color: rgba(255, 255, 255, 0.8196078431);
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .project-swiper-slider .news-col .figinfo p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8196078431);
  }
}
.home-secC .project-swiper-slider .news-col .figinfo .btn {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

.home-secD {
  padding: 50px 0;
  background: #EDEDED;
}
.home-secD .heading h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 45px;
  text-align: center;
  font-family: ttrg-bd;
}
@media only screen and (max-width: 540px) {
  .home-secD .heading h2 {
    font-size: 34px;
    line-height: 1.2;
    text-align: center;
  }
}
.home-secD .grid-box {
  padding: 50px 0;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .home-secD .grid-box {
    padding: 40px 0 20px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .grid-box {
    grid-template-columns: repeat(1, 1fr);
    padding: 30px 0 0px 0;
  }
}
.home-secD .grid-box .grid-box-item {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2392156863);
  position: relative;
}
.home-secD .grid-box .grid-box-item:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figure::before {
  animation: shine 0.4s linear;
}
.home-secD .grid-box .grid-box-item:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figure img {
  transform: scale(1.04);
  width: 100%;
}
.home-secD .grid-box .grid-box-item .figure {
  height: 100%;
  width: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
  position: relative;
}
.home-secD .grid-box .grid-box-item .figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}
.home-secD .grid-box .grid-box-item .figure::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.home-secD .grid-box .grid-box-item .figure:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.home-secD .grid-box .grid-box-item .figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.2;
  transition: 0.5s ease;
  position: relative;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-secD .grid-box .grid-box-item .figinfo {
  position: absolute;
  color: white;
  text-align: center;
  width: 100%;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.home-secD .grid-box .grid-box-item .figinfo h5 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 10px;
  margin: auto;
  max-width: 80%;
}
@media only screen and (max-width: 1024px) {
  .home-secD .grid-box .grid-box-item .figinfo h5 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secD .grid-box .grid-box-item .figinfo h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .grid-box .grid-box-item .figinfo h5 {
    font-size: 24px;
  }
}
.home-secD .grid-box .grid-box-item .figinfo p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: var(--white);
  text-align: center;
}

.home-secE {
  padding: 50px 0 100px 0px;
}
@media only screen and (max-width: 1024px) {
  .home-secE {
    padding: 50px 0 60px 0px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secE {
    padding: 50px 0 70px 0px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE {
    padding: 50px 0;
  }
}
.home-secE .heading h2 {
  ffont-weight: 700;
  font-size: 48px;
  line-height: 45px;
  text-align: center;
  font-family: ttrg-bd;
}
@media only screen and (max-width: 540px) {
  .home-secE .heading h2 {
    font-size: 34px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 5px;
  }
}
.home-secE .heading p {
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .home-secE .heading p {
    font-size: 12px;
    line-height: 1.2;
  }
}
.home-secE .box-flex {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .home-secE .box-flex {
    display: block;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .box-flex {
    display: block;
    padding: 40px 0;
  }
}
.home-secE .box-flex .news-col {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.home-secE .box-flex .news-col .figure {
  height: 450px;
}
@media only screen and (max-width: 991px) {
  .home-secE .box-flex .news-col .figure {
    height: 360px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .box-flex .news-col .figure {
    height: 360px;
  }
}
.home-secE .box-flex .box-flex-item:first-child {
  width: 53%;
}
@media only screen and (max-width: 991px) {
  .home-secE .box-flex .box-flex-item:first-child {
    width: 100%;
    margin: 0 0 30px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .box-flex .box-flex-item:first-child {
    width: 100%;
    margin-bottom: 30px;
  }
}
.home-secE .box-flex .box-flex-item:first-child figure {
  height: 450px;
}
.home-secE .box-flex .box-flex-item:first-child .figinfo {
  width: 90%;
  text-align: left;
  top: 70%;
}
.home-secE .box-flex .box-flex-item:first-child .figinfo h5 {
  line-height: 1.2;
  font-family: Poppins;
  font-weight: 600;
  font-size: 32px;
}
@media only screen and (max-width: 540px) {
  .home-secE .box-flex .box-flex-item:first-child .figinfo h5 {
    font-size: 22px;
    line-height: 1.1;
    text-align: center;
  }
}
.home-secE .box-flex .box-flex-item:first-child .figinfo p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}
@media only screen and (max-width: 540px) {
  .home-secE .box-flex .box-flex-item:first-child .figinfo p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9215686275);
    line-height: 1.2;
    text-align: center;
  }
}
.home-secE .box-flex .box-flex-item:last-child {
  width: 43%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media only screen and (max-width: 1024px) {
  .home-secE .box-flex .box-flex-item:last-child {
    gap: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secE .box-flex .box-flex-item:last-child {
    width: 100%;
    flex-direction: row;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .box-flex .box-flex-item:last-child {
    width: 100%;
    flex-direction: column;
  }
}
.home-secE .box-flex .box-flex-item:last-child .flex-box {
  padding: 15px;
  background: #EAEAEA;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 540px) {
  .home-secE .box-flex .box-flex-item:last-child .flex-box {
    display: block;
  }
}
.home-secE .box-flex .box-flex-item:last-child .flex-box .left {
  width: 190px;
  height: 175px;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .home-secE .box-flex .box-flex-item:last-child .flex-box .left {
    width: 45%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .box-flex .box-flex-item:last-child .flex-box .left {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
.home-secE .box-flex .box-flex-item:last-child .flex-box .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-secE .box-flex .box-flex-item:last-child .flex-box .right {
  width: 300px;
}
@media only screen and (max-width: 1024px) {
  .home-secE .box-flex .box-flex-item:last-child .flex-box .right {
    width: 45%;
  }
}
@media only screen and (max-width: 991px) {
  .home-secE .box-flex .box-flex-item:last-child .flex-box .right {
    width: 45%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .box-flex .box-flex-item:last-child .flex-box .right {
    width: 100%;
    text-align: center;
  }
}
.home-secE .box-flex .box-flex-item:last-child .flex-box .right h5 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 20px;
  line-height: 16px;
  margin-bottom: 10px;
}
.home-secE .box-flex .box-flex-item:last-child .flex-box .right p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 10px;
}
.home-secE .box-flex .box-flex-item:last-child .flex-box .right a {
  font-family: Poppins;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #D4943C;
  margin-bottom: 10px;
}
.home-secE .btn {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 164px;
  margin: auto;
  font-weight: 600;
  font-family: "Poppins";
}
.home-secE .btn:hover {
  background: var(--black);
  font-weight: 600;
  color: var(--primary);
  border-color: var(--black);
}/*# sourceMappingURL=home.css.map */