/* Font Link */
@import url('https://fonts.googleapis.com/css2?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');

/* Root Var */
:root {

  /* Root Theme Color */
  --theme-color: #e22b8b;
  --theme-color-second: #fff;
  --theme-color-third: #000;

  /* Root Font */
  --heading-font: "MADE_Mirage";
  --paragraph-font: "Poppins", sans-serif;
  --span-font: "Bacalisties";

  /* Root Shadow Css */
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: #1e1e1e !important;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--paragraph-font);
}

/* Font Face */
@font-face {
  font-family: "MADE_Mirage";
  src: url(../fonts/MADE\ Mirage\ Regular\ PERSONAL\ USE.otf);
}

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

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  font-family: var(--heading-font);
  color: inherit;
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 21px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 72px;
  text-transform: uppercase;
}

h2 {
  font-size: 54px;
  text-transform: uppercase;
}

h3 {}

h4 {}

h5 {}

h6 {}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

/* Back To Top */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.m-backtotop {
  -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;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #e22b8b !important;
  border-radius: 25px;
  text-align: center;
  border: 2px solid #e22b8b;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -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;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Padding Top And Bottom */
.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}

/* Form Css */

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* Site Button */
.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
  flex-wrap: wrap;
  gap: 8px;
}

a.comon-btn {
  background: var(--theme-color-third);
  color: #fff;
  display: inline-block;
  font-size: 15px;
  padding: 13px 0;
  border-radius: 0px;
  font-weight: 500;
  width: 195px;
  text-align: center;
  text-transform: uppercase;

}

a.comon-btn:hover {
  background: #121212;
  color: var(--theme-color-second);
}

a.comon-btn2 {
  background: var(--theme-color);
  color: #fff;
  display: inline-block;
  font-size: 15px;
  padding: 13px 0;
  border-radius: 0px;
  font-weight: 500;
  width: 195px;
  text-transform: uppercase;
  text-align: center;
}

a.comon-btn2:hover {
  background: #121212;
  color: var(--theme-color-second);
}

/* Sticky Top */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

/* Small Header */

.small {
  display: none;
}

.header_menu {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
}

a.navbar-brand img {
  width: 80px;
}

.header_menu li a {
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 14px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 280px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}

/* ************** */
.banner_sec h1 {
  line-height: 1;
  margin-bottom: 4px;
}

.banner_sec h3 span {
  font-size: 66px;
  font-family: var(--span-font);
  color: var(--theme-color);
  margin-left: 75px;
  margin-bottom: -31px;
  display: block;
}

.banner_sec {
  padding: 170px 0 150px;
}

/* ************ */
.home_sec1 .service_item {
  position: relative;
}

.home_sec1 .service_item img {
  position: relative;
}

.home_sec1 .service_item a.comon-btn2 {
  background: var(--theme-color-second);
  color: var(--theme-color-third);
  display: block;
  font-size: 15px;
  padding: 13px 0;
  border-radius: 0px;
  font-weight: 500;
  width: 195px;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 70px;
  margin: 0 auto !important;
  z-index: 111;
  text-align: center;
  display: none;
}

.home_sec1 .service_item .service_item_text {
  background: var(--theme-color-third);
  color: #bc975c;
  padding: 36px 0px 15px;
  /* position: absolute; */
  width: 90%;
  text-align: center;
  /* position: absolute; */
  /* left: 0; */
  /* right: 0; */
  margin: 0 auto;
  /* bottom: -57px; */
  text-transform: uppercase;
  margin-top: -30px;
  position: relative;
}

.home_sec1 .service_item .service_item_text h4 {
  font-size: 22px;
}

/* ************ */
.home_sec2 h3 span {
  font-size: 41px;
  font-family: var(--span-font);
  color: var(--theme-color);
  margin-left: 85px;
  margin-top: -23px;
  display: block;
}

.home_sec2 {
  padding: 100px 0;
}

.home_sec2 .content {
  background: var(--theme-color-second);
  box-shadow: rgba(100, 100, 111, 0.29) 2px 2px 10px 0px;
  padding: 24px 24px 25px;
}

.home_sec2 .content h5 {
  font-size: 19px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.home_sec2 .content p {
  margin-bottom: 0;
  font-size: 15px;
}

.home_sec2 .content img {
  width: 54px;
  margin-bottom: 14px;
}

.home_sec2 .btom_content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    gap: 22px;
}

/* ************ */
.review_sec .content {
  background-color: #f3f3f3;
  border-radius: 30px;
  padding: 30px 29px 20px;
}

.review_sec .right_content {
  text-align: end;
}

.review_sec .btom_content .right_content h6 {
  font-size: 20px;
  margin-bottom: 7px;
}

.review_sec .btom_content .right_content img {
  width: 80px;
  margin-left: auto;
}

.review_sec .btom_content .left_content img {
  position: relative;
  bottom: -36px;
  width: 70px;
  right: -20px;
}

.review_sec .btom_content {
  display: flex;
  justify-content: space-between;
  padding-top: 3px;
}

.review_sec .btom_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ********* */
.blog_sec h4 {
  font-size: 19px;
  line-height: 1.5;
  font-family: var(--paragraph-font);
}

.blog_sec .content p {
  font-size: 15px;
}

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

.blog_sec .content .btom_content_btn a {
  color: var(--theme-color);
  text-decoration: underline;
}

.blog_sec .content {
  background: #fce9f3;
  border-radius: 20px;
  padding-bottom: 16px;
  text-align: center;
  padding: 10px 10px 20px;
}

.blog_sec .content .btom_content_btn span i {
  color: var(--theme-color);
}

/* Contact Us */
.contact_sec {
  color: #000 !important;
}

.contact_sec input {
  width: 100%;
  padding: 16px 16px;
  border-radius: 50px;
  background: #c4c0c2d4;
  border: 1px solid #c4c0c2;
  outline: none;
  color: #000000e0;
}

.contact_sec textarea {
  width: 100%;
  padding: 16px 16px;
  border-radius: 20px;
  background: #c4c0c2d4;
  border: 1px solid #c4c0c2;
  outline: none;
}

.contact_sec input::placeholder {
  opacity: 0.7;
  color: #000;
}

.contact_sec textarea::placeholder {
  opacity: 0.7;
  color: #000;
}

.contact_sec button {
  width: 100%;
  padding: 14px 12px;
  border-radius: 50px;
  background: #000;
  cursor: pointer;
  border: none;
  outline: none;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact_sec .contact_info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #fff;
}

.contact_sec .contact_info ul li a {
  color: #fff;
}

.contact_sec .contact_info ul li i {
  font-size: 24px;
}

.contact_sec .bg-blur {
  padding: 30px 20px;
  background: #fff0;
  backdrop-filter: blur(6px);
  border: 1px solid #bdbdcc;
  border-radius: 20px;
}

/* *********************** */
.footer {
  background: url(../image/ft_bg.jpg) no-repeat center / cover;
  padding: 80px 0 25px;
  color: #000;
}

/* 
.footer .ft-subscribe {
  font-size: 34px;
  margin-bottom: 10px !important;
}

.footer form {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  border-radius: 00px;
}

.footer form input, .footer form button {
  background: transparent;
  border: none;
  font-size: 18px;
  color: #fff;
}

.footer form button {
  padding: 0 !important;
  background: #fff;
  border: none;
  font-size: 21px;
  color: #000;
  width: 50px;
  height: 45px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.footer .social {
  display: flex;
  gap: 13px;

}

.footer .social li a {
  color: #000;
}

.footer .heading h4 {
  font-family: var(--paragraph-font);
  font-size: 20px;
  margin-bottom: 20px !important;
}

.footer .heading .ft-list li a {
  color: #000;
  font-size: 15px;
}

.footer .heading .ft-list li {
  margin-bottom: 9px;
}

.footer .vontent-head p {
  font-size: 15px;
}

/* 
.footer .dummoy_info {
  padding: 20px 0;
}

.footer .dummoy_info .content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer .dummoy_info .content p {
  margin-bottom: 0;
  line-height: 1.4;
}

.footer .dummoy_info .content img {
  width: 40px;
} */

.footer .heading .ft-list li span {
  color: var(--theme-color-third);
  font-weight: 600;
}

.footer .logo-img img {
  width: 354px;
  margin-bottom: 24px;
}

.footer .ft_logo_content h4 {
  font-size: 28px;
  margin-bottom: 10px !important;
  font-family: var(--heading-font);
}

.footer .social_icon a i {
  color: #000;
  width: 45px;
  height: 45px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 61px;
  font-size: 21px;
}

.footer .social_icon ul {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
}

.footer .menu_bar .menu_items li a {
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
}

.footer .menu_items ul {
  display: flex;
  gap: 40px;
  margin-bottom: 0;
}

.footer .menu_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 65px;
  margin-bottom: -9px;
}

/* ** Inner banner ** */
.inner-banner {
  padding: 345px 0 55px;
}

.inner-banner {
  padding: 145px 0 35px;
  color: var(--theme-color-third);
  background: #e9e9e9 !important;
}

.inner-banner h1 {
  font-size: 55px;
  text-transform: uppercase;
}


/* inner-blog */

.blog-section h4 {
  font-size: 28px;
}

.blog-section h4 a {
  color: #828282;
}

.blog-section .sidebar-option {
  padding-left: 6px;
}

.sidebar-option .so-categories {
  margin-bottom: 40px;
}

.sidebar-option .so-categories .title {
  font-size: 20px;
  color: #056839;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sidebar-option .so-categories ul li a {
  font-size: 14px;
  color: #5e5e5e;
  line-height: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: bold;
}

.sidebar-option .so-categories ul li a span {
  font-size: 12px;
  float: right;
}

.sidebar-option .so-latest .title {
  font-size: 20px;
  color: var(--theme-blue);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 23px;
}

.sidebar-option .so-latest .latest-item {
  overflow: hidden;
  margin-bottom: 30px;
}

.sidebar-option .so-latest .latest-item .li-pic {
  float: left;
  margin-right: 20px;
}

.sidebar-option .so-latest .latest-item .li-text {
  overflow: hidden;
}

.sidebar-option .so-latest .latest-item .li-text h6 a {
  font-size: 16px;
  color: var(--theme-blue);
  line-height: 20px;
  margin-bottom: 0;
}

.sidebar-option .so-latest .latest-item .li-text h6 {
  margin-bottom: 4px;
}

.sidebar-option .so-latest .latest-item .li-text .li-time {
  display: inline-block;
  font-size: 14px;
  color: #888888;
}

.class-item .class-item-text span {
  font-size: 16px;
}

.sidebar-option .so-latest .latest-item .li-pic img {
  width: 105px;
}

.sidebar-option .so-latest .latest-item {
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.blog-section h1 {
  font-size: 48px;
  text-transform: capitalize;
}

/* ------- map-sec ------- */
.map {
  line-height: 0;
}

/* --------- contact-info ------------*/
.contact_page .contact_shadoW {
  box-shadow: 1px 2px 15px 2px #9b9b9b91;
}

.contact_page .contact_details {
  background-color: #fff;
  padding: 30px;
  padding-top: 50px;
}

.contact_page .contact_details h3 {
  margin-bottom: 30px;
  font-size: 40px;
}

.contact_page .contact_details h4 {
  margin-bottom: 30px;
  font-size: 23px;
}

.contact_page .contact_details h5 {
  margin-bottom: 2px;
  margin-top: 20px;
}

.contact_page .contact_details h5 i {
  margin-right: 5px;
  color: var(--theme-color);
}

.contact_page .contact_details p a,
.contact_page .contact_details p,
.contact_page .contact_details li {
  color: #747474;
}

.contact_page .contact_details li {
  list-style: none;
  line-height: 27px;
}

.contact_page .contact_form {
  background-color: #e22b8b21;
  padding: 50px 25px;
  height: 100%;
}

.contact_page .contact_form h2 {
  text-align: center;
  margin-bottom: 35px;
  text-transform: capitalize;
  font-size: 38px;
}

.contact_page .contact_form input,
.contact_page .contact_form textarea {
  padding: 16px 18px;
  width: 100%;
  border-radius: 5px;
  border: none;
  outline: none;
}

.contact_page .contact_form button.comon-btn {
  background: var(--theme-color);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 14px 0px;
  border-radius: 50px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  border: none;
  transition: all .5s;
}

.contact_page .contact_details h5 {
  font-size: 20px;
}

.contact_page .contact_form button.comon-btn:hover {
  background: #000;
  color: #fff;
}

/* ****** aftercare_sec1 ****** */
.aftercare_sec1 ul li {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 20px;
}

.aftercare_sec1 ul li i {
  font-size: 12px;
  color: var(--theme-color);
}

/* ********* */
.eyelashes_sec h4 {
  font-size: 19px;
  line-height: 1.5;
  font-family: var(--paragraph-font);
}

.eyelashes_sec .content p {
  font-size: 15px;
  margin-bottom: 12px;
}

.eyelashes_sec .content .btom_content_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 0;
}

.eyelashes_sec .content {
  background: #fce9f3;
  border-radius: 20px;
  padding-bottom: 16px;
  text-align: center;
  padding: 10px 10px 20px;
}

.eyelashes_sec .content .btom_content_btn span i {
  color: var(--theme-color);
}

.eyelashes_sec .content .btom_content_btn ul li {
  margin-bottom: 6px;
  color: #000;
  font-size: 17px;
}

.eyelashes_sec .content .btom_content_btn ul li span {
  color: var(--theme-color);
  font-weight: 600
}


.center {
   display: flex;
   justify-content: center;
   margin-top: 40px;
}

a.page-numbers {
   color: #000000;
   padding: 10px 10px;
   text-decoration: none;
   transition: background-color 0.5s;
   border: 1px solid #ddd;
   border-radius: 5px;
   margin: 0px 5px;
   padding: 10px 15px;
   font-size: 18px;
}

a.page-numbers:hover {
   background-color: #d6d4d4;
}

span.page-numbers.current {
   background-color: var(--theme-color);
   color: #fff;
   padding: 10px 15px;
   text-decoration: none;
   transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
   font-size: 18px;
   z-index: 3;
   border-radius: 5px;
}


/* Pagination Wrapper */
#blog-pagination ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* All Buttons */
#blog-pagination ul .page-numbers{
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

/* Active Page */
#blog-pagination ul .page-numbers.current{
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Hover Effect */
#blog-pagination ul .page-numbers:hover{
    background: #000;
    color: #fff;
    border-color: #000;
}


.footer hr {
    border-color: black !important;
}


a.no-underline,
a.no-underline:hover,
a.no-underline:focus,
a.no-underline:active {
    text-decoration: none !important;
    border-bottom: none !important;
}

