@import url('https://fonts.googleapis.com/css2?family=Marcellus&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');
@font-face {
  font-family: 'jaguar';
  src: url('../fonts/jaguar.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
body {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
}
body::-webkit-scrollbar {
  width: 0.5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #561b2f;
  --secondary-color:#d1aa67;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p {
  font-size: 15px;
  color: #000;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  text-decoration: none;
}
button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}
section {
  padding: 100px 0 100px;
}
.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
  justify-content: space-between;
}
.large_heading {
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 700;
}
.heading {
  font-size: clamp(1.4rem, 2.8vw, 3rem);
  font-weight: 600;
}
.sub_heading {
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  font-weight: 500;
}

.small_heading {
  font-size: clamp(1rem, 1.5vw, 1.6rem);
  font-weight: 500;
}
.title {
  font-size: 16px;
}
.fontWeight300 {
  font-weight: 300;
}
.fontWeight400 {
  font-weight: 400;
}
.fontWeight500 {
  font-weight: 500;
}
.fontWeight600 {
  font-weight: 600;
}
.fontWeight700 {
  font-weight: 700;
}
.fontWeight800 {
  font-weight: 800;
}
.fontWeight900 {
  font-weight: 900;
}
.stricky-fixed .topHeader{
  display: none;
}
.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 100%;
  background: #fff;
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  padding: 0px 0;
}
.stricky-fixed .mainMenu{
  display: none;
}
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
.fontHeading{
  font-family: "Marcellus", serif;
}
.text_secondary{
  color: var(--secondary-color);
}
.text_primary{
  color: var(--primary-color);
}
.bgPrimary{
  background: var(--primary-color);
}
.bgSecondary{
  background: var(--secondary-color);
}
.containerFull{
  max-width: 1680px;
  margin: 0 auto;
}
.centerLogo{
  width: 10vw;
}
.centerLogo img{
  max-width: 100%;
}
.header{
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.leftMenu ul{
  display: flex;
  gap: 2vw;
}
.leftMenu ul li a{
  display: inline-block;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  &:hover{
    color: var(--primary-color);
  }
}
.btnTheme{
  display: inline-block;
  padding: 12px 40px;
  background: var(--primary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border:1px solid var(--primary-color);
  border-color: transparent;
  text-transform: uppercase;
  &:hover{
    background: #000;
  }
}
.heroSection{
  position: relative;
  height: 100vh;
  z-index: 1;
}
.heroSection::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background:#eee8ea;
  z-index: -1;
}
.heroSection:before{
  content: '';
  width: 450px;
  height: 300px;
  position: absolute;
  top: 0;
  left: 30%;
  background: url(../images/palm-leave.png) no-repeat;
  z-index: -1;
  opacity: .5;
  backdrop-filter: blur(10px);
}
.leftBannerImg{
  height: calc(100vh - 130px);
  border: 1px solid var(--primary-color);
  padding: 8px;
  border-radius: 350px 350px 0 0;
  -webkit-border-radius: 350px 350px 0 0;
  -moz-border-radius: 350px 350px 0 0;
  -ms-border-radius: 350px 350px 0 0;
  -o-border-radius: 350px 350px 0 0;
}
.leftBannerImg img{
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 350px 350px 0 0;
  -webkit-border-radius: 350px 350px 0 0;
  -moz-border-radius: 350px 350px 0 0;
  -ms-border-radius: 350px 350px 0 0;
  -o-border-radius: 350px 350px 0 0;
}
.rightBanner{
  padding-left: 0rem;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  transform: translateX(-100px);
  -webkit-transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  -o-transform: translateX(-100px);
  transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
}
.carousel-item.active .rightBanner{
  filter: blur(0);
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -webkit-filter: blur(0);
}
.rightBanner ul{
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.rightBanner ul li{
 padding:5px 10px;
 padding-left: 30px;
 font-size: 16px;
 position: relative;
 z-index: 1;
 width: calc(100% / 2 - 1rem);
 font-weight: 600;
}
ul.starList li:before{
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../images/icons/star.svg) no-repeat;
  background-size: cover;
  animation: rotate 5s linear infinite;
  -webkit-animation: rotate 5s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rightBanner ul li span{
  color: var(--primary-color);
}
.tagHeading{
  display: inline-block;
  padding: 5px 15px;
  border:1px solid var(--primary-color);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}
.textLight{
  color: #444;
}
.star1{
  position: absolute;
  top: -12vh;
  left: 40px;
  width: 70px;
}
.star1 img, .star2 img, .star3 img{
  max-width: 100%;
  opacity: .1;
  /* animation: scale 5s linear infinite;
  -webkit-animation: scale 5s linear infinite; */
}
.star2{
  position: absolute;
  top:-7vh;
  right: 60px;
  width: 50px;
}
.star3{
  position: absolute;
  bottom: -10vh;
  right: 60px;
  width: 40px;
}
@keyframes scale {
  0% {
    transform: scale(.1) rotate(0deg);
    -webkit-transform: scale(.1) rotate(0deg);
    -moz-transform: scale(.1) rotate(0deg);
    -ms-transform: scale(.1) rotate(0deg);
    -o-transform: scale(.1) rotate(0deg);
}
  50% {
    transform: scale(1) rotate(180deg);
    -webkit-transform: scale(1) rotate(180deg);
    -moz-transform: scale(1) rotate(180deg);
    -ms-transform: scale(1) rotate(180deg);
    -o-transform: scale(1) rotate(180deg);
}
  100% {
    transform: scale(.1) rotate(360deg);
    -webkit-transform: scale(.1) rotate(360deg);
    -moz-transform: scale(.1) rotate(360deg);
    -ms-transform: scale(.1) rotate(360deg);
    -o-transform: scale(.1) rotate(360deg);
}
}
.carousel-indicators [data-bs-target]{
  width: 30px;
  height: 30px;
  background: none;
  opacity: 1;
  text-indent: inherit;
  position: relative;
  background: transparent;
  border:2px solid #e0e0e0;
  color: #000;
  border-radius: 50%;
  font-size: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: 0 5px;
  font-weight: 600;
}
.carousel-indicators [data-bs-target].active{
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.ribon{
  background:#000;
  padding: 10px 0;
}
.ribon p{
  color: #fff;
}
.ribon p span{
  position: relative;
  z-index: 1;
  text-align: right;
}
/* .ribon p span:before{
  width: 100px;
  content: '';
  position: absolute;
  right: 0;
  animation: text 5s infinite linear;
  -webkit-animation: text 5s infinite linear;
}
@keyframes text {
  0% {
    content: 'beauty ';
  }
  50% {
    content: 'confidence';
  }
  100% {
    content: 'sophistication';
  }
} */
 .bgGrey{
  background: #f1f1f1;
 }
 .leftAboutImg img{
  max-width: 100%;
 }
 .icon{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: var(--primary-color);
  padding: 10px;
 }
 .icon img{
  max-width: 100%;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.inlineItem .text{
  width: calc(100% - 80px);
}
.sectionBg{
  position: relative;
  z-index: 1;
}
.sectionBg::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: calc(100% - 90px);
  background: #f1f1f1;
  z-index: -1;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.inlineItem{
  margin-top: 5%;
}
.rightAbout{
  padding-right: 5rem;
}
.secondImg{
  position: absolute;
  left: -15%;
  width: 300px;
  bottom: 10%;
  animation: moving 3s linear infinite;
  -webkit-animation: moving 3s linear infinite;
}
@keyframes moving {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}
  50% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}
  
}
.secondImg img{
  max-width: 100%;
}
.inlineCrafting{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.craftingSection{
  background: url(../images/bg/elegant-designer-jewelry.jpg) no-repeat;
  background-size: cover;
  background-position: right;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.craftingSection::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.7);
  z-index: -1;
}
.leftImg{
  width: 40%;
}
.leftImg img{
  max-width: 100%;
}
.rightCrafting{
  width: 60%;
  padding:0 4vw;
}
.rightCrafting2{
  width: 60%;
  padding:0 5vw;
}
.rightCrafting .tagHeading{
  border-color: #fff;
  color: #fff;
}
.itemCrafting{
  padding: 20px;
  background: rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
}
.iconCraft{
  width: 40px;
  margin-bottom: 15px;
}
.iconCraft img{
  max-width: 100%;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.rightCrafting .btnTheme{
  background: #fff;
  color: #000;
  border-color:#fff;
  &:hover{
    background:transparent;
    color: #fff;
  }
}
.leftWhy ul{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.leftWhy ul li{
  position: relative;
  padding-left: 30px;
  margin-bottom: .3rem;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  z-index: 1;
  width: calc(100% / 2 - 1rem);
}
.leftWhy ul li::before{
  top: 4px;
}
.rightWhy img{
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 350px 350px 0px 0px;
  -webkit-border-radius: 350px 350px 0px 0px;
  -moz-border-radius: 350px 350px 0px 0px;
  -ms-border-radius: 350px 350px 0px 0px;
  -o-border-radius: 350px 350px 0px 0px;
}
.borderBox{
  position: absolute;
  width: calc(100% - 4rem);
  height: 60%;
  border-left:1px solid #fff;
  border-right:1px solid #fff;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.borderBox:after{
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 1px;
  background:#fff;
  z-index: -1;
}
.borderBox:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 1px;
  background:#fff;
  z-index: -1;
}
.borderBox2{
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  text-align: center;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.borderBox2 a{
  display: block;
  color: #000;
  font-size: 25px;
  line-height: 30px;
}
.borderBox2:hover{
  background: rgba(0,0,0,.7);
}
.borderBox2:hover a{
  color: #fff;
}
.leftTop{
  position: relative;
  z-index: 1;
}
.leftTop:before{
  content: '';
  width: 450px;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/palm-leave.png) no-repeat;
  z-index: -1;
  opacity: .5;
  backdrop-filter: blur(10px);
}
.wrapperImg{
  position: relative;
  z-index: 1;
}
.wrapperImg img{
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.wrapperContent{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.3);
  z-index: 9;
  overflow: hidden;
}
.listWrapper ul{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
}
.listWrapper ul li{
  padding: clamp(3.125rem, 2.2917rem + 1.7361vw, 4.375rem) clamp(1.25rem, -0.1816rem + 2.2346vw, 2.5rem);
  overflow: hidden;
  border-right: 1px solid #666;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
  -moz-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
  -ms-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
  -o-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
}
.fullHeight{
  height: 100%;
  
}
.translateY{
 display: flex;
 align-items: center;
 text-align: center;
 flex-direction: column;
 justify-content: flex-end;
 transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
 -webkit-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
 -moz-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
 -ms-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
 -o-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
 transform: translateY(50%);
 -webkit-transform: translateY(50%);
 -moz-transform: translateY(50%);
 -ms-transform: translateY(50%);
 -o-transform: translateY(50%);
}
.listWrapper ul li:hover .translateY{
  transform: translate(0);
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
}
.reverseWraper{
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: start;
}
.leftService{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.leftService .img1, .leftService .img2{
  width: 48%;
}
.leftService .img1 img, .leftService .img2 img{
  width: 100%;
  height: 60vh;
  object-fit: cover;
  border-radius: 165px;
  -webkit-border-radius: 165px;
  -moz-border-radius: 165px;
  -ms-border-radius: 165px;
  -o-border-radius: 165px;
}
.leftService .img2{
  margin-top: 100px;
}
.leftService:after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 10%);
  width: 45%;
  height:82%;
  border:1px solid var(--primary-color);
  z-index: -1;
  border-radius: 165px;
  -webkit-transform: translate(-50%, 10%);
  -moz-transform: translate(-50%, 10%);
  -ms-transform: translate(-50%, 10%);
  -o-transform: translate(-50%, 10%);
}
.leaveBottomRight{
  position: relative;
  z-index: 1;
}
.leaveBottomRight:before{
  content: '';
  width: 486px;
  height: 680px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../images/coconut-leaf-img-2-scaled.jpg) no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: .5;
  backdrop-filter: blur(10px);
}
.bgGrey{
  background: #f1f1f1;
}
.footer{
  padding: 100px 0;
  background: #000;
}
.footerLogo{
  width: 17vw;
}
.footerLogo img{
  max-width: 100%;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.itemFooter p{
  color: #e0e0e0;
}
.footerItem ul li{
  position: relative;
  z-index: 1;
}
.footerItem ul li a{
  display: block;
  padding: 7px 10px;
  color: #eee;
  font-size: 20px;
  letter-spacing: 1px;
}
.footerItem ul li:hover a{
  color: #bba3ab;
  padding-left: 20px;
}
.footerItem ul li:after{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background: #bba3ab;
  z-index: -1;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.footerItem ul li:hover:after{
  opacity: 1;
}
.leftTop2{
  position: relative;
  z-index: 1;
}
.leftTop2:before{
  content: '';
  width: 450px;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/palm-leave.png) no-repeat;
  z-index: -1;
  opacity: .2;
  backdrop-filter: blur(10px);
}
.newsletter .form-control{
  height: 50px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.newsletter .btnTheme:hover{
  background: #fff;
  color: #000;
}
.socialIcons ul{
  display: flex;
  margin-top: 15px;
  gap: 10px;
}
.socialIcons ul  li a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border:1px solid #999;
  color: #ccc;
  font-size: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 16px;
}
.socialIcons ul  li a:hover{
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.copyRight{
  background: #fff;
  padding: 15px 0;
}
.copyRight p a{
  color: var(--primary-color);
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: #fff;
  background-color: var(--primary-color);
  z-index: 999;
  width: 50px;
  text-align: center;
  height: 50px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
.itemStep{
  padding: 15px;
}
.innerStep{
  padding:35px 25px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.bg1{
  background: #bcd9fe;
}
.bg2{
  background: #d6e8ce;
}
.bg3{
  background: #fff3ed;
}
.bg4{
  background: #eed2eb;
}
.bg5{
  background: #edeed2;
}
.innerStep img{
  max-width: 110px;
  margin: 0 auto;
}
.bg1 .headingColor, .bg1 span{
  color:#2462B3;
}
.bg2 .headingColor, .bg2 span{
  color:#3f8b89;
}
.bg3 .headingColor, .bg3 span{
  color:#e1a582;
}
.bg4 .headingColor, .bg4 span{
  color:#a06d96;
}
.bg5 .headingColor, .bg5 span{
  color:#7a7e00;
}
.innerStep p.text{
  font-size: 14px;
}
.innerStep span{
  width: 60%;
  display: inline-block;
  padding: 10px 10px;
  background: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-weight: 600;
}
.slick-next:before,
.slick-prev:before {
  display: none;
}

.slick-next,
.slick-prev {
  background-color: #fff !important;
  color: #000 !important;
  font-size: 18px !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50%;
  z-index: 9;
  -webkit-border-radius: 50%px;
  -moz-border-radius: 50%px;
  -ms-border-radius: 50%px;
  -o-border-radius: 50%px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.slick-next:hover,
.slick-prev:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
}
.slick-next{
  right: -10px !important;
}
.slick-prev{
  left: -10px !important;
}
.itemblog{
  padding: 0 10px;
}
.innerBlog{
 position: relative; 
}
.imgBlog img{
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.homeBlogDes{
  padding: 20px 0;
}
.btnLink{
  display: inline-block;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
}
.btnLink i{
  font-size: 13px;
}
.dateTag{
  width: 80px;
  height: 90px;
  position: absolute;
  top: -1px;
  left: 20px;
  padding: 10px 10px 5px;
  background: #fff;
  text-align: center;
  clip-path: polygon(100% 0, 100% 100%, 50% 78%, 0 100%, 0 0);
  box-shadow: 0 0.5rem 1rem rgba(253, 4, 4, 0.15) !important;

}
.dateTag p{
  line-height: 28px;
}