@import url("https://fonts.googleapis.com/css2?family=Barlow: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&family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/***** General CSS *****/

body {
  word-break: break-word;
  font-family: "Montserrat", sans-serif;
  color: #838393;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
  position: relative;
  background-color: #060629;
}

/***** Headings *****/

@font-face {
  font-family: "Ananda";
  src: url("../fonts/Ananada.ttf");
}

.shd {
  /* background: linear-gradient(90deg, #ff9ad5, #c084fc, #ff9ad5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  text-shadow:
    0 0 5px rgba(255, 150, 255, 0.6),
    0 0 10px rgba(200, 100, 255, 0.5),
    0 0 20px rgba(255, 150, 255, 0.4);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  font-family: "Ananda";
}

h1 {
  font-size: 103px;
  line-height: 130px;
}

h2 {
  font-size: 50px;
  line-height: 60px;
}

h3 {
  font-size: 24px;
  line-height: 29px;
}

h4 {
  font-size: 21px;
  line-height: 26px;
}

h5 {
  font-size: 20px;
  line-height: 25px;
}

h6 {
  font-size: 18px;
  line-height: 22px;
}

p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  opacity: 50%;
}

/***** Gradient Text *****/

/***** Utilities *****/

.padd {
  padding: 100px 0;
  position: relative;
}

.paddTop {
  padding-top: 100px;
}

.paddBottom {
  padding-bottom: 100px;
}

.margTop {
  margin-top: 100px;
}

.margBottom {
  margin-bottom: 100px;
}

.bt {
  display: inline-block;
}

.pbtn {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  border: 1px solid transparent;
}

.pbtn span {
  padding: 16px 22px;
  background: linear-gradient(90deg, #f43473 0%, #e549ac 50%, #c90ec6 100%);
  border-radius: 45px;
}

.pbtn span.arrow {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  padding: 0px;
  transition: 0.2s;
}

.pbtn:hover {
  transform: translate(5px, 0px);
}

.maxWidth {
  max-width: 1500px;
}

/* general btn css start  */

a {
  text-decoration: none;
  color: #fff;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #fff;
}

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;
}

::-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: 20px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 0px auto;
}

.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;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.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: #d01dbf;
  text-decoration: underline;
}

.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:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.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 [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: flex;
  align-items: center;
  background: transparent;
}

.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*/
.banner-bg {
  position: relative;
  height: 750px;
}

img.banner-bg-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}

.banner_text {
  position: relative;
  z-index: 12;
}

.banner_text h1 {
  color: #fff;
  text-shadow: -3px 1px 9px #00000069;
  margin-bottom: 30px;
}

/* .banner-bg:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0px auto;
  background: linear-gradient(90deg, #f43473 0%, #e549ac 50%, #c90ec6 100%);
  content: "";
  z-index: 1;
  opacity: 50%;
} */

.bt.whiteBtn .pbtn span {
  background: transparent;
  border: 1px solid #fff;
}

.bt.whiteBtn .pbtn span.arrow {
  background: #fff;
}

.bt.whiteBtn .pbtn span.arrow img {
  filter: brightness(0);
}

/* about start  */

section.aboutsec {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-image: url("../images/about-bg.png");
}

.heading {
  margin-bottom: 50px;
  position: relative;
}

.ab-video-wp {
  width: 80%;
  margin: 0px auto;
  display: table;
}

img.ab1-img {
  height: 420px;
  width: 100%;
  object-fit: cover;
  object-position: 100% 34%;
  border-radius: 7px;
  position: relative;
  z-index: 1;
}

.ab-poster-img {
  padding: 24px;
  position: relative;
}

.ab-poster-img a {
  width: 80px;
  height: 80px;
  background: linear-gradient(90deg, #f43473 0%, #e549ac 50%, #c90ec6 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  font-size: 24px;
  transition: 0.2s;
  position: absolute;
  top: 40%;
  right: 0;
  left: 0;
  margin: 0px auto;
  z-index: 1;
}

.ab-poster-img:before {
  position: absolute;
  content: "";
  width: 94%;
  height: 88%;
  right: 0;
  background: linear-gradient(90deg, #f43473 0%, #e549ac 50%, #c90ec6 100%);
  bottom: 0;
  border-radius: 8px;
}

.ab-poster-img:after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f33374, #c60bcc);
  width: 94%;
  height: 88%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.ab-poster-img a:hover {
  transform: scale(1.1);
}

.sep {
  position: absolute;
  top: -40px;
  right: 0;
  margin: 0px auto;
  left: 0;
  text-align: center;
}

.sep span {
  color: #fff;
  font-size: 0;
  width: 1px;
  height: 70px;
  background: #ffffffb0;
  display: inline-block;
}

/* about end  */

/* feautes start  */

.icons-bx {
  position: relative;
  text-align: center;
  padding: 20px 10px;
}

.i-c-img {
  width: 50px;
  height: 50px;
  margin: 0px auto 10px;
}

.i-c-img img {
  width: auto;
  height: 100%;
  object-fit: fill;
  display: table;
  margin: 0px auto;
}

.icons-bx h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
}

span.icon-broder {
  background: linear-gradient(90deg, #f33374, #c60bcc);
  height: 1px;
  width: 90%;
  display: block;
  margin: 0px auto 21px;
}

.icons-bx h2:first-of-type {
  letter-spacing: 3px;
}

section.featurs .maxWidth {
  max-width: 1500px;
}

section.featurs {
  padding: 60px 0;
}
/* feautes end  */

/* services start  */

.ban-right-items {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-right: 12px;
}

.ban-right-items button {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  border: 0px;
  background: transparent;
  transition: 0.2s;
  border: 1px solid #ffffff52;
}

section.ss-sec {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-image: url("../images/service-bg.png");
}

.sstop {
  margin-bottom: 20px;
}

.ban-right-items button img {
  width: 16px;
  object-fit: contain;
  transition: 0.2s;
}

.ban-right-items button:hover {
  background: linear-gradient(90deg, #f43473 0%, #e549ac 50%, #c90ec6 100%);
  border: transparent;
}

.sstop h2.shd {
  margin-left: 20px;
  margin-bottom: 0;
}

.ssSlider .slick-slide {
  opacity: 1;
  margin: 0px 10px;
}

.ss-card {
  position: relative;
  background: #02010e;
  transition: 0.2s;
  border-radius: 14px;
}

img.ss-card-img {
  height: 310px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: inline-block;
  transition: 0.2s;
}

.ss-card-txt {
  text-align: center;
  padding: 40px 17px 40px;
}

.ss-card-txt h3.shd {
  transition: 0.3s;
  padding-bottom: 16px;
}

.ss-card-txt p {
  transition: 0.3s;
  color: #ffffff;
  opacity: 50%;
}

.ss-card-txt .pbtn img {
  width: auto;
}

.ss-card-txt .pbtn span {
  border: 1px solid transparent;
  transition: 0.2s;
}

.ss-card:hover {
  background: linear-gradient(90deg, #f43473 0%, #e549ac 50%, #c90ec6 100%);
}

.ss-card:hover h3.shd {
  color: #fff;
  text-shadow: -3px 1px 9px #000000cc;
}

.ss-card:hover p {
  opacity: 1;
}

ss-card:hover .pbtn span {
  border: 1px solid #fff;
}

.ss-card:hover .pbtn span {
  border: 1px solid #fff;
}

.ss-card:hover .pbtn span.arrow {
  background: #fff;
}

.ss-card:hover .pbtn span.arrow img {
  filter: brightness(0);
}

/* services end  */

/* chose section start  */

.chose-item {
  margin-bottom: 12px;
}

.chose-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.chose-text h2.shd {
  padding-bottom: 10px;
}

.chose-text h2.shd ~ p {
  width: 99%;
}

.chose-imgs {
  padding-left: 10px;
}

.chose-vid {
  position: relative;
}

img.chose-img1 {
  height: 550px;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.videobtn {
  width: 150px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: #060629;
  border-radius: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0px 6px 0px 0px;
}

.videobtn a {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f43473 0%, #e549ac 50%, #c90ec6 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 37px;
  border-radius: 6px;
  transition: 0.2s;
}

.videobtn a:hover {
  transform: scale(1.1);
}

/* chose section end  */

/* galery strat  */

section.gal-sec {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-image: url("../images/service-bg.png");
}

.galry-big-img {
  position: relative;
}

img.gal-big-img {
  height: 640px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.2s;
}

.galery-sm {
  position: relative;
}

img.galery-saml-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s;
}

/* =============== */

.galery-sm a {
  display: block;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.galery-sm a:before {
  position: absolute;
  content: "";
  width: 90%;
  height: 86%;
  background: #eb2c84;
  border-radius: 10px;
  opacity: 0;
  left: 0;
  right: 0;
  margin: 0px auto;
  top: 20px;
  transition: 0.3s;
  transform: translate(0px, 110px);
}

.galery-sm a:hover:before {
  opacity: 68%;
  transform: translate(0px, 0px);
}

.galery-sm a:after {
  content: "\f002";
  font-family: "FontAwesome";
  color: #fff;
  position: absolute;
  top: 46%;
  left: 0;
  right: 0;
  margin: 0px auto;
  display: table;
  font-size: 0;
  transition: 0.4s;
}

.galery-sm a:hover:after {
  font-size: 34px;
}

/* big hover  */

.galry-big-img a {
  display: block;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.galry-big-img a:before {
  position: absolute;
  content: "";
  width: 90%;
  height: 94%;
  background: #eb2c84;
  border-radius: 10px;
  opacity: 0;
  left: 0;
  right: 0;
  margin: 0px auto;
  top: 20px;
  transition: 0.3s;
  transform: translate(0px, 110px);
}

.galry-big-img a:hover:before {
  opacity: 68%;
  transform: translate(0px, 0px);
}

.galry-big-img a:after {
  content: "\f002";
  font-family: "FontAwesome";
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0px auto;
  display: table;
  font-size: 0;
  transition: 0.4s;
}

.galry-big-img a:hover:after {
  font-size: 34px;
}

/* galery end  */

/* testimonial */

.rating i {
  font-size: 20px;
  background: linear-gradient(90deg, #f43473 0%, #e549ac 50%, #c90ec6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.testi_main p {
  margin: 10px 0px 20px;
  font-style: italic;
  color: #fff;
  opacity: 60%;
}

.avatar img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client_info h3 {
  font-size: 14px;
  line-height: 14px;
  margin: 0px;
  font-family: "Montserrat";
}

.client_info h4 {
  color: #e7298b;
  font-size: 14px;
  margin: 0px;
  font-family: "Montserrat";
  font-weight: 500;
}

.client_info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testi_main {
  border-radius: 10px;
  padding: 50px 40px 40px;
  background: #04041d;
}

img.quotemark {
  width: auto;
}

.test_slider .slick-slide {
  opacity: 1;
}

.test_slider .slick-track {
  margin: 30px 0;
}

.test_slider .slick-center .testi_main {
  background: linear-gradient(90deg, #f43473 0%, #e549ac 50%, #c90ec6 100%);
}

.test_slider .slick-center img.quotemark {
  filter: brightness(0) saturate(100%) invert(38%) sepia(4%) saturate(6%)
    hue-rotate(353deg) brightness(97%) contrast(92%);
}

.test_slider .slick-center .client_info h3,
.test_slider .slick-center .client_info h4 {
  color: #ffffff;
  opacity: 1;
}

.test_slider .slick-center .testi_main p {
  opacity: 1;
}

.test_slider .testi_main:hover {
  background: linear-gradient(90deg, #f43473 0%, #e549ac 50%, #c90ec6 100%);
}

.test_slider .testi_main:hover img.quotemark {
  filter: brightness(0) saturate(100%) invert(38%) sepia(4%) saturate(6%)
    hue-rotate(353deg) brightness(97%) contrast(92%);
}

.test_slider .testi_main:hover .rating i,
.test_slider .testi_main:hover .client_info h3,
.test_slider .testi_main:hover .client_info h4 {
  color: #ffffff;
}

.test_slider .testi_main:hover p {
  opacity: 1;
}

.testi_main .client_info h3,
.testi_main .client_info h4,
.testi_main:hover p {
  transition: all 0.3s ease-in;
}

.testimonial_sliderbtns button:hover {
  background: linear-gradient(90deg, #f43473 0%, #e549ac 50%, #c90ec6 100%);
  border: transparent;
}

.testimonial_sliderbtns button:hover img {
  filter: brightness(0) saturate(100%) invert(98%) sepia(98%) saturate(9%)
    hue-rotate(167deg) brightness(104%) contrast(104%);
}

.test-slider-slick-next img {
  transform: rotate(180deg);
}
.testimonial_sliderbtns button img {
  width: auto;
  height: 10px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(52%) sepia(1%) saturate(2036%)
    hue-rotate(317deg) brightness(97%) contrast(68%);
}

.testimonial_sliderbtns button {
  height: 50px;
  width: 50px;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial_sliderbtns {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  margin-right: 23px;
}

.testimonial_heading {
  margin-left: 30px;
}

.rat-qutoe {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 17px;
}

.test_slider .slick-center .rating i {
  -webkit-text-fill-color: #fff;
}

.testi_main:hover .rating i {
  -webkit-text-fill-color: #fff;
}

.test_slider .testi_main:hover img.quotemark {
  filter: unset;
}

.test_slider .slick-center .testi_main img.quotemark {
  filter: unset;
}
section.testimonial {
  padding-top: 40px;
}

/* testimonial */

/* Contact Start  */

button.pbtn {
  background: transparent;
  border: 0px;
  padding: 0;
  transition: 0.2s;
}

.contat-frm {
  width: 85%;
  margin: 0px auto;
}

.cnt-frm {
  position: relative;
}

.cnt-frm input,
.cnt-frm select,
.cnt-frm textarea {
  width: 100%;
  padding: 14px 24px;
  background: #1f1f4180;
  border-radius: 45px;
  border: 1px solid #3d3d59;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}

.cnt-frm input::placeholder {
  color: #fff;
}

.cnt-frm textarea::placeholder {
  position: absolute;
  bottom: 20px;
  color: #fff;
}

.cnt-frm textarea {
  border-radius: 20px;
  resize: unset;
  height: 190px;
}

.cnt-frm img.down-arrow-img {
  position: absolute;
  right: 20px;
  top: 23px;
  cursor: pointer;
}

.cnt-frm select {
  cursor: pointer;
}

.cnt-frm select option {
  font-size: 13px;
  font-weight: 500;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  display: none;
}

/* Contact end  */

/* ========================= News Latter  Start  ===================== */

section.newsLater {
  background: #04041e;
  padding: 60px 0 50px;
  border-bottom: 1px solid #ffffff5c;
}

section.newsLater .row {
  align-items: center;
}

section.newsLater h3 {
  font-size: 38px;
  line-height: 44px;
  color: #fff;
}

/* ========================= News Latter  End ===================== */

/* FOOTER CSS START  */

footer {
  background: #04041e;
  position: relative;
  overflow: hidden;
}

.footerSec .row {
  position: relative;
  padding: 60px 0px 40px;
}

.footer-btm p {
  opacity: 1;
}

.news-letter ul li a {
  gap: 20px;
  line-height: 25px;
  margin: 30px 0;
  opacity: 1;
  justify-content: flex-start;
  align-items: center;
}

.news-letter ul li a:hover {
  transform: translate(3px, 0px);
}

footer ul li a:hover {
  opacity: 1;
  color: #fff !important;
  text-decoration: underline;
}

.footer-header-title {
  margin-bottom: 20px;
  text-transform: capitalize;
  font-size: 24px;
  line-height: 30px;
}

.mailbox {
  align-items: center;
  gap: 32px;
}

.mailImg img {
  width: 63px;
}

.new-from-wp input {
  background: #fff;
  border: 0px;
  width: 100%;
  color: #000;
  text-transform: uppercase;
  border-radius: 45px;
  padding: 14px 30px;
  font-weight: 500;
}

.new-from-wp input::placeholder {
  font-size: 14px;
  color: #000;
  opacity: 50%;
  font-weight: 600;
}

.footerSec .moveRightTxt {
  position: relative;
}

.footerSec .news-letter.moveRightTxt {
  left: 60px;
}

ul.social {
  gap: 10px;
  margin: 0px;
}

ul.social li a i {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 45px;
  border: 1px solid #eeeeee70;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #eeeeee70;
  transition: 0.3s;
}

ul.social li a i:hover {
  color: #fff;
  background: linear-gradient(90deg, #f43473 0%, #e549ac 50%, #c90ec6 100%);
  border: 0px;
}

.footerSec .news-letter.moveRightTxt ul li a span {
  line-height: 20px;
  font-size: 13px;
}

.news-letter ul li:first-child a {
  margin-top: 0px;
}

.mailbox h2.shd {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 7px;
}

.mailbox p {
  opacity: 1;
}

.new-from-wp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.new-from-wp .bt {
  flex-shrink: 0;
}

.new-from-wp .bt button span {
  font-weight: 600;
  padding: 18px 30px;
}

.new-from-wp input::placeholder {
  color: #000;
  text-transform: uppercase;
}

.footer-about p {
  opacity: 1;
  margin: 19px 0px 18px;
  line-height: 28px;
}

.news-letter ul li:last-child a {
  margin-bottom: 0px;
}

.foot-useful-link li a {
  line-height: 30px;
}

.foot-products li {
  margin-bottom: 18px;
}

.foot-quick-links li {
  margin-bottom: 20px;
}

.foot-quick-links {
  left: 60px;
}

.footer-btm {
  border-top: 1px solid #ffffff5c;
  text-align: center;
}

/* FOOTER CSS END  */

.banner_text p {
  opacity: 1;
}
