:root {
  --font-size-55: 55px;
  --font-size-40: 40px;
  --font-size-36: 36px;
  --font-size-32: 32px;
  --font-size-17: 17px;
  --font-size-16: 16px;
  --font-size-15: 15px;
  --font-size-14: 14px;
  --color-primary: #ce967e;
  --color-primary-hover: #c37e60;
  --color-primary-alpha-10: rgba(206, 150, 126, 0.1);
  --color-primary-alpha-12: rgba(206, 150, 126, 0.12);
  --color-primary-alpha-15: rgba(206, 150, 126, 0.15);
  --color-primary-alpha-30: rgba(206, 150, 126, 0.3);
  --color-primary-alpha-80: rgba(206, 150, 126, 0.8);
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --color-white: #ffffff;
  --color-white-lite: #f2f4f5;
  --color-white-dark: #f9f9f9;
  --color-white-transparent: rgba(255, 255, 255, 0.7);
  --color-black: #191919;
  --color-gray: #6e6e6e;
  --color-gray-lite: #ebebeb;
  --color-gray-dark: #a6a6a6;
  --color-gray-dark-lite: rgba(205, 205, 205, 1);
  --border-color: #e8e7eb;
  --border-color-lite: #e5e5e5;
  --border-color-5: #d4d4d4;
}
@media screen and (max-width: 1366px) {
  :root {
    --font-size-55: 50px;
    --font-size-40: 35px;
    --font-size-36: 32px;
    --font-size-32: 30px;
  }
}
@media screen and (max-width: 1269px) {
  :root {
    --font-size-55: 40px;
    --font-size-40: 30px;
    --font-size-36: 28px;
    --font-size-32: 27px;
  }
}
@media screen and (max-width: 989px) {
  :root {
    --font-size-55: 30px;
    --font-size-40: 25px;
    --font-size-36: 24px;
    --font-size-32: 22px;
    --font-size-15: 15px;
  }
}
@media screen and (max-width: 575px) {
  :root {
    --font-size-55: 26px;
    --font-size-40: 22px;
    --font-size-36: 20px;
    --font-size-32: 19px;
  }
}
@media screen and (max-width: 479px) {
  :root {
    --font-size-55: 24px;
    --font-size-40: 20px;
    --font-size-36: 19px;
    --font-size-32: 18px;
  }
}

* {
  box-sizing: border-box;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

body {
  font-family: Jost, sans-serif;
  margin: 0;
}

a,
button,
input[type=submit] {
  transition: 0.4s;
  display: inline-block;
}

img {
  max-width: 100%;
}

.wrapper {
  width: 100%;
  max-width: 1500px;
  padding: 0 20px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: var(--font-size-40);
  font-weight: var(--font-semibold);
  color: var(--color-black);
  position: relative;
  margin-bottom: 20px;
}
.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  height: 2px;
  width: 80px;
  background-color: var(--color-primary);
}
.section-title p {
  font-size: var(--font-size-14);
  color: var(--color-black);
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #fff;
  opacity: 1;
  margin: 0 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.arrow {
  background-image: url(../images/product-arrow.svg);
  width: 45px;
  height: 45px;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 170px;
  z-index: 9;
  left: 0;
  transform: scale(-1);
}

.latest-button-next.arrow,
.featured-button-next.arrow {
  left: unset;
  right: 0;
  transform: scale(1);
}

.home-slider {
  width: 100%;
  height: 700px;
}
@media screen and (max-width: 1366px) {
  .home-slider {
    height: 500px;
  }
}
@media screen and (max-width: 1269px) {
  .home-slider {
    height: 450px;
  }
}
@media screen and (max-width: 989px) {
  .home-slider {
    height: 400px;
  }
}
@media screen and (max-width: 575px) {
  .home-slider {
    height: 350px;
  }
}
@media screen and (max-width: 479px) {
  .home-slider {
    height: 300px;
  }
}
.home-slider .swiper-slide {
  position: relative;
}
@media screen and (max-width: 989px) {
  .home-slider .swiper-slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), transparent);
  }
}
.home-slider .swiper-slide .slider-bg-image {
  height: 100%;
  background-size: cover;
  background-position: top right;
}
.home-slider .swiper-slide .slide-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
.home-slider .swiper-slide .slide-content .captions {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.home-slider .swiper-slide .slide-content .captions .caption-1 {
  max-width: 590px;
  font-size: var(--font-size-55);
  font-weight: var(--font-medium);
  line-height: 1.18;
}
.home-slider .swiper-slide .slide-content .captions .caption-2 {
  max-width: 400px;
  font-size: var(--font-size-17);
  line-height: 1.76;
  color: #666666;
  letter-spacing: 0.5px;
  margin-top: 30px;
}
@media screen and (max-width: 1366px) {
  .home-slider .swiper-slide .slide-content .captions .caption-2 {
    margin-top: 20px;
    line-height: 1.5;
  }
}
.home-slider .swiper-slide .slide-content .captions a {
  font-size: var(--font-size-14);
  font-weight: var(--font-medium);
  color: #222;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
}
.home-slider .swiper-slide .slide-content .captions a:hover {
  text-decoration: none;
  color: var(--color-primary);
}
.home-slider .swiper-pagination-bullets {
  bottom: 20px;
}
.home-slider .swiper-pagination-bullets span.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: #fff;
  opacity: 1;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  margin: 0 8px;
  border-color: transparent;
}
.home-slider .swiper-pagination-bullets span.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.collection-main {
  padding: 45px 0;
}
@media screen and (max-width: 989px) {
  .collection-main {
    padding: 40px 0;
  }
}
.collection-main .collection {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1366px) {
  .collection-main .collection .swiper-slide {
    margin-bottom: 50px;
  }
}
.collection-main .collection .swiper-slide a.collection-image img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
}
.collection-main .collection .swiper-slide a.collection-image img:hover {
  animation: horizontal 1s ease-in-out 1;
  transform: scale(1);
}
@keyframes horizontal {
  16.65% {
    transform: translateX(8px);
  }
  33.3% {
    transform: translateX(-6px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
.collection-main .collection .swiper-slide a.collection-label {
  font-size: var(--font-size-14);
  font-weight: var(--font-medium);
  color: var(--color-black);
  padding-top: 20px;
  display: inline-block;
}
.collection-main .collection .swiper-slide a.collection-label:hover {
  color: var(--color-primary);
}
.collection-main .collection .collection-pagination {
  bottom: 0;
}

.latest-main {
  padding: 45px 0;
}
@media screen and (max-width: 989px) {
  .latest-main {
    padding: 40px 0;
  }
}
.latest-main .latest {
  width: 100%;
  padding: 0 20px;
}
.latest-main .latest .product {
  text-align: center;
  color: var(--color-black);
}
.latest-main .latest .product:hover .product-bottom {
  margin-top: -43px;
}
.latest-main .latest .product:hover a.add-cart {
  height: auto !important;
  opacity: 1 !important;
}
.latest-main .latest .product:hover .product-title {
  color: var(--color-primary) !important;
}
.latest-main .latest .product .product-top .product-image {
  position: relative;
}
.latest-main .latest .product .product-top .product-image:hover .product-hover {
  opacity: 1;
}
.latest-main .latest .product .product-top .product-image .product-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.latest-main .latest .product .product-bottom {
  background-color: #fff;
  transition: 0.5s;
  padding: 15px 35px 55px;
  position: relative;
  z-index: 9;
}
.latest-main .latest .product .product-bottom .category {
  font-size: var(--font-size-14);
  letter-spacing: 0.5px;
  color: #666666;
}
.latest-main .latest .product .product-bottom .product-title {
  font-size: var(--font-size-16);
  color: var(--color-black);
  margin: 10px 0;
  letter-spacing: 0.5px;
}
.latest-main .latest .product .product-bottom .review {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.latest-main .latest .product .product-bottom .review li {
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-image: url(../images/star.png);
  background-size: contain;
}
.latest-main .latest .product .product-bottom .review li.active {
  background-image: url(../images/star-active.png);
}
.latest-main .latest .product .product-bottom h4.price {
  font-size: var(--font-size-17);
  font-weight: var(--font-semibold);
  margin-top: 15px;
}
.latest-main .latest .product .product-bottom a.add-cart {
  height: 0;
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  padding: 10px 30px;
  background-color: var(--color-primary);
  color: #fff;
  margin-top: 15px;
  transition: 0.4s;
}
@media screen and (max-width: 989px) {
  .latest-main .latest .product .product-bottom a.add-cart {
    position: static;
    opacity: 1;
    height: auto;
    transform: translateX(0);
  }
}

.three-columbn-main .three-columbn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.three-columbn-main .three-columbn .thress-left {
  width: calc(50% - 10px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .three-columbn-main .three-columbn .thress-left {
    width: 100%;
  }
}
.three-columbn-main .three-columbn .thress-left .three-item {
  height: 100%;
  overflow: hidden;
}
.three-columbn-main .three-columbn .thress-left .three-item:hover .three-image img,
.three-columbn-main .three-columbn .thress-left .three-item:hover .thress-image img {
  transform: scale(1.07);
}
.three-columbn-main .three-columbn .thress-left .three-item .thress-image {
  width: 100%;
  height: 100%;
}
.three-columbn-main .three-columbn .thress-left .three-item .thress-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 767px) {
  .three-columbn-main .three-columbn .thress-left .three-item .thress-image img {
    max-height: 350px;
  }
}
.three-columbn-main .three-columbn .thress-left .three-item .three-content {
  position: absolute;
  right: 40px;
  top: 40px;
}
@media screen and (max-width: 767px) {
  .three-columbn-main .three-columbn .thress-left .three-item .three-content {
    right: 20px;
  }
}
.three-columbn-main .three-columbn .thress-left .three-item .three-content h5 {
  font-size: var(--font-size-16);
  font-weight: var(--font-normal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .three-columbn-main .three-columbn .thress-left .three-item .three-content h5 {
    font-size: var(--font-size-14);
  }
}
.three-columbn-main .three-columbn .thress-left .three-item .three-content h3 {
  font-size: var(--font-size-36);
  line-height: 1.16;
  font-weight: var(--font-medium);
}
.three-columbn-main .three-columbn .thress-left .three-item .three-content a {
  font-size: var(--font-size-14);
  font-weight: var(--font-medium);
  color: #222;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}
.three-columbn-main .three-columbn .thress-left .three-item .three-content a:hover {
  text-decoration: none;
  color: var(--color-primary);
}
.three-columbn-main .three-columbn .three-right {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .three-columbn-main .three-columbn .three-right {
    width: 100%;
  }
}
.three-columbn-main .three-columbn .three-right .three-item {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.three-columbn-main .three-columbn .three-right .three-item:hover .three-image img,
.three-columbn-main .three-columbn .three-right .three-item:hover .thress-image img {
  transform: scale(1.07);
}
.three-columbn-main .three-columbn .three-right .three-item .thress-image {
  overflow: hidden;
  height: 100%;
  width: 100%;
  height: 100%;
}
.three-columbn-main .three-columbn .three-right .three-item .thress-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.three-columbn-main .three-columbn .three-right .three-item .three-content {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .three-columbn-main .three-columbn .three-right .three-item .three-content {
    right: 20px;
  }
}
.three-columbn-main .three-columbn .three-right .three-item .three-content h5 {
  font-size: var(--font-size-16);
  font-weight: var(--font-normal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .three-columbn-main .three-columbn .three-right .three-item .three-content h5 {
    font-size: var(--font-size-14);
  }
}
.three-columbn-main .three-columbn .three-right .three-item .three-content h3 {
  font-size: var(--font-size-32);
  line-height: 1.18;
  font-weight: var(--font-medium);
}
.three-columbn-main .three-columbn .three-right .three-item .three-content a {
  font-size: var(--font-size-14);
  font-weight: var(--font-medium);
  color: #222;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
}
.three-columbn-main .three-columbn .three-right .three-item .three-content a:hover {
  text-decoration: none;
  color: var(--color-primary);
}
.three-columbn-main .three-columbn .three-right .three-item:nth-child(2) .three-content {
  right: unset;
  left: 40px;
}
@media screen and (max-width: 767px) {
  .three-columbn-main .three-columbn .three-right .three-item:nth-child(2) .three-content {
    left: 20px;
  }
}

.featured-main {
  padding: 45px 0;
}
@media screen and (max-width: 989px) {
  .featured-main {
    padding: 40px 0;
  }
}
.featured-main .featured {
  width: 100%;
  padding: 0 20px;
}
.featured-main .featured .product {
  text-align: center;
  color: var(--color-black);
}
.featured-main .featured .product:hover .product-bottom {
  margin-top: -43px;
}
.featured-main .featured .product:hover a.add-cart {
  height: auto !important;
  opacity: 1 !important;
}
.featured-main .featured .product:hover .product-title {
  color: var(--color-primary) !important;
}
.featured-main .featured .product .product-top .product-image {
  position: relative;
}
.featured-main .featured .product .product-top .product-image:hover .product-hover {
  opacity: 1;
}
.featured-main .featured .product .product-top .product-image .product-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.featured-main .featured .product .product-bottom {
  background-color: #fff;
  transition: 0.5s;
  padding: 15px 35px 55px;
  position: relative;
  z-index: 9;
}
.featured-main .featured .product .product-bottom .product-title {
  font-size: var(--font-size-16);
  color: var(--color-black);
  margin: 10px 0;
  letter-spacing: 0.5px;
  display: inline-block;
}
.featured-main .featured .product .product-bottom .review {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.featured-main .featured .product .product-bottom .review li {
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-image: url(../images/star.png);
  background-size: contain;
}
.featured-main .featured .product .product-bottom .review li.active {
  background-image: url(../images/star-active.png);
}
.featured-main .featured .product .product-bottom h4.price {
  font-size: var(--font-size-17);
  font-weight: var(--font-semibold);
  margin-top: 15px;
}
.featured-main .featured .product .product-bottom a.add-cart {
  height: 0;
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  padding: 10px 30px;
  background-color: var(--color-primary);
  color: #fff;
  margin-top: 15px;
  transition: 0.4s;
}
@media screen and (max-width: 989px) {
  .featured-main .featured .product .product-bottom a.add-cart {
    position: static;
    opacity: 1;
    height: auto;
    transform: translateX(0);
  }
}

.two-columbn-main .two-columbn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.two-columbn-main .two-columbn .two-item {
  width: calc(50% - 10px);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .two-columbn-main .two-columbn .two-item {
    width: 100%;
  }
}
.two-columbn-main .two-columbn .two-item:hover .three-image img,
.two-columbn-main .two-columbn .two-item:hover .thress-image img {
  transform: scale(1.07);
}
.two-columbn-main .two-columbn .two-item .thress-image {
  width: 100%;
  height: 100%;
}
.two-columbn-main .two-columbn .two-item .thress-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.two-columbn-main .two-columbn .two-item .two-content {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .two-columbn-main .two-columbn .two-item .two-content {
    left: 20px;
  }
}
.two-columbn-main .two-columbn .two-item .two-content h5 {
  font-size: var(--font-size-16);
  font-weight: var(--font-normal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .two-columbn-main .two-columbn .two-item .two-content h5 {
    font-size: var(--font-size-14);
  }
}
.two-columbn-main .two-columbn .two-item .two-content h3 {
  font-size: var(--font-size-36);
  line-height: 1.16;
  font-weight: var(--font-medium);
}
.two-columbn-main .two-columbn .two-item .two-content a {
  font-size: var(--font-size-14);
  font-weight: var(--font-medium);
  color: #222;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
}
.two-columbn-main .two-columbn .two-item .two-content a:hover {
  text-decoration: none;
  color: var(--color-primary);
}
.Spotlight-main {
  margin: 40px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 700px;
}
@media screen and (max-width: 1366px) {
  .Spotlight-main {
    height: 500px;
  }
}
@media screen and (max-width: 1269px) {
  .Spotlight-main {
    height: 450px;
  }
}
@media screen and (max-width: 989px) {
  .Spotlight-main {
    height: 400px;
  }
}
@media screen and (max-width: 575px) {
  .Spotlight-main {
    height: 350px;
  }
}
@media screen and (max-width: 479px) {
  .Spotlight-main {
    height: 300px;
  }
}
.Spotlight-main .Spotlight-item {
  position: relative;
  width: 100%;
  height: 100%;
}
.Spotlight-main .Spotlight-item .Spotlight-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.Spotlight-main .Spotlight-item .Spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Spotlight-main .Spotlight-item .Spotlight-content {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translateY(-50%);
  width: 45%;
  padding: 20px 40px;
  z-index: 2;
  text-align: left;
}
@media screen and (max-width: 1366px) {
  .Spotlight-main .Spotlight-item .Spotlight-content {
    width: 50%;
    left: 50%;
  }
}
@media screen and (max-width: 767px) {
  .Spotlight-main .Spotlight-item .Spotlight-content {
    width: 60%;
    left: 40%;
    top: 40px;
    transform: translateY(0);
  }
}
@media screen and (max-width: 479px) {
  .Spotlight-main .Spotlight-item .Spotlight-content {
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.Spotlight-main .Spotlight-item .Spotlight-content h5 {
  font-size: var(--font-size-17);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--color-black);
}
.Spotlight-main .Spotlight-item .Spotlight-content h3 {
  font-size: var(--font-size-55);
  font-weight: var(--font-medium);
  line-height: 1.18;
  color: var(--color-black);
}
.Spotlight-main .Spotlight-item .Spotlight-content p {
  margin-top: 20px;
}
.Spotlight-main .Spotlight-item .Spotlight-content a {
  font-size: var(--font-size-14);
  font-weight: var(--font-medium);
  color: #222;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
}
.Spotlight-main .Spotlight-item .Spotlight-content a:hover {
  text-decoration: none;
  color: var(--color-primary);
}
@media screen and (max-width: 479px) {
  .Spotlight-main .Spotlight-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), transparent);
    z-index: 1;
  }
}

.testimonial-main {
  padding: 45px 0;
}
@media screen and (max-width: 989px) {
  .testimonial-main {
    padding: 40px 0;
  }
}
.testimonial-main .testimonial {
  width: 100%;
  padding: 0 20px;
  position: relative;
}
.testimonial-main .testimonial .testimonial-items {
  background-color: #fff;
  border: 1px solid var(--border-color-lite);
  background-color: #f6f6f6;
  padding: 40px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.testimonial-main .testimonial .testimonial-items .testimonial-content {
  text-align: left;
  margin-bottom: 30px;
}
.testimonial-main .testimonial .testimonial-items .testimonial-content h5 {
  font-size: var(--font-size-17);
  font-weight: var(--font-medium);
  color: var(--color-black);
  margin-bottom: 15px;
}
.testimonial-main .testimonial .testimonial-items .testimonial-content p {
  font-size: var(--font-size-14);
  line-height: 1.7;
  color: var(--color-gray);
  max-width: 700px;
  text-align: justify;
}
.testimonial-main .testimonial .testimonial-items .testimonial-user {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-main .testimonial .testimonial-items .testimonial-user .user-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-main .testimonial .testimonial-items .testimonial-user .user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-main .testimonial .testimonial-items .testimonial-user .user-info .user-name {
  font-size: var(--font-size-16);
  font-weight: var(--font-semibold);
  color: var(--color-black);
}
.testimonial-main .testimonial .testimonial-items .testimonial-user .user-info .user-designation {
  font-size: var(--font-size-14);
  color: var(--color-gray);
}
.testimonial-main .testimonial .testimonial-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.testimonial-main .testimonial .testimonial-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.3s;
}
.testimonial-main .testimonial .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
  transform: scale(1.2);
}

.highlight-banner {
  width: 100%;
  position: relative;
}
.highlight-banner .highlight-item {
  position: relative;
  width: 100%;
}
.highlight-banner .highlight-item .highlight-image {
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.highlight-banner .highlight-item .highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 190px;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.highlight-banner .highlight-item .highlight-image:hover img {
  transform: scale(1.07);
}
.highlight-banner .highlight-item .two-content,
.highlight-banner .highlight-item .two-content,
.highlight-banner .highlight-item .highlight-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 5%;
  max-width: 600px;
  text-align: left;
}
.highlight-banner .highlight-item .two-content h5,
.highlight-banner .highlight-item .two-content h5,
.highlight-banner .highlight-item .highlight-content h5 {
  font-size: var(--font-size-16);
  font-weight: var(--font-normal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .highlight-banner .highlight-item .two-content h5,
  .highlight-banner .highlight-item .two-content h5,
  .highlight-banner .highlight-item .highlight-content h5 {
    font-size: var(--font-size-14);
  }
}
.highlight-banner .highlight-item .two-content h3,
.highlight-banner .highlight-item .two-content h3,
.highlight-banner .highlight-item .highlight-content h3 {
  font-size: var(--font-size-40);
  line-height: 1.2;
  font-weight: var(--font-semibold);
  color: var(--color-black);
}
.highlight-banner .highlight-item .two-content a,
.highlight-banner .highlight-item .two-content a,
.highlight-banner .highlight-item .highlight-content a {
  font-size: var(--font-size-14);
  font-weight: var(--font-medium);
  color: #222;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
  margin-top: 20px;
  display: inline-block;
}
.highlight-banner .highlight-item .two-content a:hover,
.highlight-banner .highlight-item .two-content a:hover,
.highlight-banner .highlight-item .highlight-content a:hover {
  text-decoration: none;
  color: var(--color-primary);
}

.blog-main {
  padding: 45px 0;
}
@media screen and (max-width: 989px) {
  .blog-main {
    padding: 40px 0;
  }
}
.blog-main .blog-slider .swiper-slide {
  height: auto;
}
.blog-main .blog-slider .blog-item {
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-main .blog-slider .blog-item .blog-image {
  overflow: hidden;
}
.blog-main .blog-slider .blog-item .blog-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.blog-main .blog-slider .blog-item .blog-image:hover img {
  transform: scale(1.05);
}
.blog-main .blog-slider .blog-item .blog-content {
  padding: 20px 0;
}
.blog-main .blog-slider .blog-item .blog-content .blog-date {
  font-size: var(--font-size-14);
  color: var(--color-primary);
  margin-bottom: 10px;
  display: inline-block;
}
.blog-main .blog-slider .blog-item .blog-content .blog-title {
  font-size: var(--font-size-17);
  font-weight: var(--font-semibold);
  color: var(--color-black);
  margin-bottom: 10px;
}
.blog-main .blog-slider .blog-item .blog-content .blog-desc {
  font-size: var(--font-size-14);
  color: var(--color-black);
  margin-bottom: 15px;
  text-align: justify;
}
.blog-main .blog-slider .blog-item .blog-content .read-more {
  font-size: var(--font-size-14);
  font-weight: var(--font-medium);
  color: var(--color-black);
  text-decoration: underline;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.blog-main .blog-slider .blog-item .blog-content .read-more:hover {
  color: var(--color-primary);
  text-decoration: none;
}
.blog-main .blog-slider .blog-item:hover .blog-title {
  color: var(--color-primary);
}
.blog-main .blog-slider .blog-pagination {
  margin-top: 30px;
  text-align: center;
}
.blog-main .blog-slider .blog-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 0 6px;
}
.blog-main .blog-slider .blog-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.newsletter-main {
  width: 100%;
}
.newsletter-main .newsletter-bg {
  min-height: 255px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.newsletter-main .newsletter-bg .newsletter-content h2 {
  font-size: var(--font-size-36);
  font-weight: var(--font-semibold);
  color: var(--color-black);
  margin-bottom: 15px;
}
.newsletter-main .newsletter-bg .newsletter-content p {
  font-size: var(--font-size-14);
  color: var(--color-gray);
  margin-bottom: 25px;
  max-width: 600px;
  letter-spacing: 1px;
  text-transform: capitalize;
}
.newsletter-main .newsletter-bg .newsletter-content .newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.newsletter-main .newsletter-bg .newsletter-content .newsletter-form input[type=email] {
  padding: 12px 20px;
  font-size: var(--font-size-14);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  flex: 1 1 300px;
  max-width: 500px;
}
.newsletter-main .newsletter-bg .newsletter-content .newsletter-form input[type=submit] {
  padding: 12px 30px;
  font-size: var(--font-size-14);
  font-weight: var(--font-medium);
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-main .newsletter-bg .newsletter-content .newsletter-form input[type=submit]:hover {
  background-color: var(--color-primary-hover);
}

/*# sourceMappingURL=style.css.map */
