@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 500;
}


/***** Font Files *****/

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: 'queensila';
  src: url(../fonts/queensila.ttf);
  font-weight: 400;
  font-style: normal
}
/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize !important;
  border: unset;
  text-transform: uppercase;
  font-family: 'Poppins';
}

.theme-btn:hover {
  background-color: #000;
  color: #fff;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'queensila';
  font-size: 93px;
  line-height: 100px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 11px;
}

h2 {
  font-family: 'queensila';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'queensila';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'queensila';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'queensila';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'queensila';
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 30px 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
}

/*.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
}
*/
.menuSec ul li:last-child a {
  padding-right: 23px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #000;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*banner css start */




.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  width: 100%;
}
.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}
.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}
.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}
.carousel-control.right {
  right: 0px;
}
.carousel-control.left {
  left: 0px;
}
.carousel-indicators {}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}
.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgb(0 0 0 / 0%);
}
.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}
.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}
/*banner css end*/

.blog_sec {
  padding: 5% 0;
}
/*slick slider in tabs css start*/


/* Style the tab */




.tab_sec .tab {
  overflow: hidden;
  border: 0;
  background-color: #ffffff;
}
/* Style the buttons that are used to open the tab content */
.tab_sec .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}
/* Change background color of buttons on hover */
.tab_sec .tab button:hover {
  background-color: #ddd;
}
/* Create an active/current tablink class */
.tab_sec .tab button.active {
  background-color: #ccc;
}
/* Style the tab content */

.tab_sec .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0;
}
.tabcontent.active {
  display: block;
}
/*slick slider in tabs css start*/

.nav-item {padding: 10px;}



.main-search input {
    border: 1px solid #fff;
    background: unset;
    width: 100%;
    padding: 10px 45px 10px 20px;
    border-radius: 30px;
    color: #fff;
}

.main-search button {
    border: unset;
    background: unset;
    color: #ffffffbd;
    position: absolute;
    right: 10px;
    font-size: 18px;
    top: 9px;
}

.main-search {
    position: relative;
    width: 270px;
}

.chead-cart-user ul li {
    border: 1px solid #ffffffbd;
    padding: unset;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
}
.chead-cart-user ul li a {
    font-size: 17px;
    padding: unset;
}

.chead-cart-user ul {display: flex;gap: 8px;justify-content: end;}

.right-side-header {
    display: flex;
    justify-content: space-between;
    margin-left: 30px;
}

.chead-cart-user ul li:last-child a {
    padding-right: unset;
}

.menuSec .row {
    align-items: center;
}

.main-search input::placeholder {
    color: #ffffffb8;
    font-size: 14px;
}


/*Banner Css STart*/
img.banner-img {
    width: 100%;
}
.container {
    max-width: 1450px;
}
.banner_text p {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    width: 90%;
    margin-bottom: 28px;
}

.banner_text a.theme-btn {
    background: #fff;
    color: #000;
    border: unset;
}
.banner-revi ul {
    display: flex;
}

.banner-revi ul li i {
    font-size: 17px;
    color: #ffc107;
}

.banner-revi ul {
    margin-bottom: 0px;
    margin: 10px 0px;
}

.banner-revi p {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 500;
}

.banner-revi {
    margin-top: 75px;
}

.carousel-caption {
    align-items: flex-end;
}

.banner-women img {
    width: 100%;
}
.banner-women {
    margin-left: -70px;
}
.banner-product-txt p {
    font-family: 'queensila';
    font-size: 24px;
    display: flex;
    dis]: ;
    dis]: revert;
    dis]: initial;
    dis]: inherit;
    justify-content: space-between;
    color: #000;
    margin-bottom: 0px;
}

.banner-product-txt p span {
    font-family: 'Poppins';
    font-size: 15px;
    color: #000;
}


.banner-product a {
    background: #b36c7a;
    color: #fff;
    padding: 7px 11px;
    border-radius: 40px;
    position: absolute;
    top: 17px;
    right: 18px;
    font-size: 14px;
}

.banner-product {
    position: relative;
}

.banner-product img {
    width: 100%;
}

.banner-product {
    background: #fff;
    padding: 10px 11px 28px;
}

.banner-product-txt {
    margin-top: 24px;
}
/*banner Css End*/


/*Section Category Start*/

.heading-category h2 {
    font-size: 60px;
    color: #000;
    margin-bottom: 13px;
}

.category-main-sec {
    padding: 90px 0px;
}
.category-img img {
    width: 100%;
}

.category-img h3 {
    font-weight: unset;
    text-align: center;
    font-size: 30px;
    margin-top: 20px;
}

.heading-category {
    border-bottom: 1px solid #00000045;
    margin-bottom: 40px;
}
.categoryslid .slick-active {
    opacity: 1;
}
.categoryslid .slick-prev {
    left: unset;
    border: 1px solid #00000063;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    top: -80px;
    right: 66px;
}
.categoryslid .slick-prev:before {
    content: '';
    background-image: url(../images/slide-left-arrow.png);
    font-family: unset;
    width: 32px;
    height: 19px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 7px;
    top: 12px;
}
.categoryslid .slick-next {
    left: unset;
    border: 1px solid #00000063;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    top: -80px;
    right: 10px;
}
.categoryslid .slick-next:before {
    content: '';
    background-image: url(../images/slide-left-arrow.png);
    font-family: unset;
    width: 32px;
    height: 19px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 7px;
    top: 12px;
    transform: rotate(180deg);
}
.categoryslid .slick-next:hover {
    background: #b36c7a6e;
    border-color: #b36c7a6e;
}
.categoryslid .slick-prev:hover {
    background: #b36c7a6e;
    border-color: #b36c7a6e;
}
.categoryslid .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 1;
}
/*Section Category End*/


/*Section About Us Start*/


.beauty-slider{
padding:100px 0;
overflow:hidden;
}

.slider-wrap{position:relative;width: 100%;height: 510px;margin:auto;}


.about-slide{position:absolute;top: 10px;width:380px;height: 430px;transition:all .8s ease;}

.about-slide img{width:100%;height:100%;object-fit:cover;border-radius: 0px;display:block;}


.left{left: 50px;transform: rotate(-10deg) scale(1);z-index:1;opacity:.85;}

.center{left:410px;transform: rotate(0deg) scale(1.2);z-index:3;border: 6px solid #fff;}

.right{left: 760px;transform:rotate(10deg) scale(.92);z-index:1;opacity:.85;}

.hidden{
left:1200px;
opacity:0;
}
.about-main-txt p {
    font-size: 14px;
    font-family: 'Poppins';
    color: #7c7c7c;
    font-weight: 400;
    text-align: center;
    width: 85%;
    margin: 0 auto;
}

.about-main-txt h2 {
    font-size: 60px;
    margin-bottom: 10px;
    text-align: center;
    color: #000;
}

.about-main-sec .row {
    justify-content: center;
}

.about-slide.right {
    margin-top: 20px;
}
.about-slide.left {
    margin-top: 20px;
}
.about-main-txt {
    margin-bottom: 90px;
}
.abt-btm-txt h5 {
    font-size: 30px;
    color: #000;
    margin-bottom: unset;
}

.abt-btm-txt {
    display: flex;
    align-items: center;
    gap: 20px;
}
.about-main-sec {
    padding-bottom: 100px;
}
/*Section About Us End*/


/*Section Product Start*/

.product-img img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.text-product h2 {
    font-size: 30px;
    margin-bottom: 0px;
    line-height: 45px;
    margin-top: 14px;
    color: #000;
}

.text-product p {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
}

.text-product {
    text-align: center;
    padding: 0px 19px;
}

.text-product ul li {
    font-family: 'Poppins';
    font-size: 20px;
    color: #000;
    font-weight: 500;
    color: #000000c2;
}

.text-product ul li i {
    font-size: 12px;
    color: #ffc107;
}

.text-product ul li span {
    font-size: 12px;
    color: #000000c2;
}

.text-product ul {
    display: flex;
    justify-content: space-between;
}


.product-btn a.theme-btn {
    background: #B76E79;
}

.product-btn {
    border-top: 2px solid #00000036;
    padding: 30px 0px 0px;
}

.product-main-box {
    border: 1px solid #00000047;
    padding-bottom: 25px;
}

.productslid .slick-active {
    opacity: 1;
}
.productslid .slick-prev {
    left: unset;
    border: 1px solid #00000063;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    top: -80px;
    right: 66px;
}
.productslid .slick-prev:before {
    content: '';
    background-image: url(../images/slide-left-arrow.png);
    font-family: unset;
    width: 32px;
    height: 19px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 7px;
    top: 12px;
}
.productslid .slick-next {
    left: unset;
    border: 1px solid #00000063;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    top: -80px;
    right: 10px;
}
.productslid .slick-next:before {
    content: '';
    background-image: url(../images/slide-left-arrow.png);
    font-family: unset;
    width: 32px;
    height: 19px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 7px;
    top: 12px;
    transform: rotate(180deg);
}
.productslid .slick-next:hover {
    background: #b36c7a6e;
    border-color: #b36c7a6e;
}
.productslid .slick-prev:hover {
    background: #b36c7a6e;
    border-color: #b36c7a6e;
}
.productslid .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 1;
}
.product-main-sec {
    padding-bottom: 100px;
}
/*Section Product End*/


/*Sectiion Glow Start*/

.text-glow h2 {
    font-size: 82px;
    text-align: center;
    margin-bottom: 11px;
    color: #fff;
}

.text-glow p {
    font-size: 14px;
    font-family: 'Poppins';
    text-align: center;
    color: #fff;
}

.text-glow a.theme-btn {
    background: #fff;
    color: #000;
}

.glow-main-sec .row {
    align-items: center;
}

.glow-left-img {
    margin-left: -100px;
    margin-top: -30px;
}

.glow-main-sec {position: relative;}

.glow-main-sec::before {
    position: absolute;
    content: '';
    background: #B76E79;
    width: 100%;
    height: 320px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 120px;
    z-index: -1;
}

.glow-right-img {
    margin-right: -110px;
}
.glow-btn {
    text-align: center;
    margin: 30px 0px;
}
/*Section Glow End*/

/*Section Featured Start*/

.featured-btn a.theme-btn {
    background: #B76E79;
    color: #fff;
    margin-bottom: unset;
}
.featured-btn {
    text-align: end;
}

.heading-row-main .row {
    align-items: center;
}

.heading-row-main .heading-category {
    border-bottom: unset;
    margin-bottom: 0px;
}

.heading-row-main {
    border-bottom: 1px solid #0000005e;
    margin-bottom: 40px;
}
.featured-main-sec .product-main-box {
    margin-bottom: 30px;
}
.featured-main-sec {
    padding: 50px 0px 90px;
}

/*Section Featured End*/


/*Section Customer Start*/

.left-img-customer {
    display: flex;
    align-items: end;
    gap: 17px;
    margin-top: 54px;
}

.left-img-customer p {
    font-family: 'queensila';
    font-size: 30px;
    color: #000;
    margin-bottom: 0px;
}

.customer-main-txt p {
    font-family: 'Poppins';
    font-size: 15px;
    font-style: italic;
    text-align: center;
    font-weight: 400;
    margin-top: 13px;
}

.customer-main-txt ul li img {
    border-radius: 40px;
    width: 46px;
    height: 46px;
    object-fit: cover;
}

.customer-main-txt ul li {
    font-family: 'queensila';
    font-size: 30px;
    color: #000;
}

.customer-main-txt ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

.customer-main-txt i {
    color: #B76E79;
    font-size: 57px;
    margin: 0 auto;
    text-align: center;
    display: block;
}

.left-img-customer img {
    width: 214px;
    height: 224px;
    object-fit: cover;
}

.customer-heading h2 {
    color: #000;
    font-size: 60px;
    text-align: center;
}

.customer-heading {
    margin-bottom: 50px;
}
.customerslid .slick-active {
    opacity: 1;
}
.customerslid .slick-prev {
    left: unset;
    border: 1px solid #00000063;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    top: 0px;
    left: -364px;
}
.customerslid .slick-prev:before {
    content: '';
    background-image: url(../images/slide-left-arrow.png);
    font-family: unset;
    width: 32px;
    height: 19px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 7px;
    top: 12px;
}
.customerslid .slick-next {
    left: unset;
    border: 1px solid #00000063;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    top: 0px;
    right: -360px;
}
.customerslid .slick-next:before {
    content: '';
    background-image: url(../images/slide-left-arrow.png);
    font-family: unset;
    width: 32px;
    height: 19px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 7px;
    top: 12px;
    transform: rotate(180deg);
}
.customerslid .slick-next:hover {
    background: #b36c7a6e;
    border-color: #b36c7a6e;
}
.customerslid .slick-prev:hover {
    background: #b36c7a6e;
    border-color: #b36c7a6e;
}
.customerslid .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 1;
}
.customer-main-sec {
    padding-bottom: 90px;
}
/*Section Customer End*/


/*Footer Start*/
footer {
    background: #B76E79;
    padding-top: 90px;
}

.ft-links h3 {
    font-weight: unset;
    color: #fff;
    margin-bottom: 15px;
    font-size: 30px;
}

.ft-pg-links h3 {
    font-weight: unset;
    color: #fff;
    margin-bottom: 15px;
    font-size: 30px;
}

.ft-pg-links ul li a {
    font-family: 'Poppins';
    font-size: 14px;
    color: #fff;
}

.ft-links ul li {
    font-family: 'Poppins';
    font-size: 13px;
    color: #fff;
    margin-bottom: 12px;
}

.ft-links ul li a {
    color: #fff;
}

.ft-pg-links ul li {
    margin-bottom: 10px;
}

.main-fields-ft input {
    width: 100%;
    background: unset;
    border: unset;
    border-bottom: 1px solid #fff;
    color: #fff;
}

.main-fields-ft button {
    border: unset;
    transform: rotate(180deg);
    position: absolute;
    right: 6px;
    top: 0;
    background: unset;
}

.main-fields-ft input::placeholder {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.main-fields-ft {
    position: relative;
}


footer .row {
    justify-content: space-between;
}
.ft-newsletter h2 {
    font-weight: unset;
    color: #fff;
    margin-bottom: 9px;
    font-size: 30px;
}

.main-fields-ft button img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7468%) hue-rotate(183deg) brightness(96%) contrast(102%);
}
.ft-cards {
    text-align: end;
}

.ft-btm-row p {
    font-family: 'Poppins';
    font-size: 14px;
    color: #fff;
    margin-bottom: 0px;
    font-weight: 400;
}

.ft-btm-row {
    border-top: 1px solid #fff;
    padding: 19px 0px;
    margin-top: 40px;
}

.ft-btm-heading h2 {
    font-size: 150px;
    color: #fff;
    line-height: 78px;
}

.ft-btm-heading {
    padding-top: 67px;
}

/*Footer End*/