@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&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 {
  --theme-color: #000000;
  --theme-color-second: #a020f0;
  --theme-color-third: #000;
  --heading-font: 'head-font';
  --paragraph-font: "Poppins", sans-serif;
  --span-font: 'spanist';
  --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: 17px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Poppins", sans-serif;
  /* color: var(--theme-color) !important; */
}

@font-face {
  font-family: 'head-font';
  src: url(../fonts/Branch.otf);
}

@font-face {
  font-family: 'spanist';
  src: url(../fonts/AdindaMelia.otf);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  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: 129px;
  margin: 0;
}

h2 {
  font-size: 60px;
}

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

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

/* navbar----------- */


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

* {
  box-sizing: border-box;
}

.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: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  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;
  z-index: 999;
}

.m-backtotop>div.text {
  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: 0px;
  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;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

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


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}

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

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

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

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

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 12rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

button.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 12rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

button.comon-btn:hover {
  background: #00008b;
  color: #fff;
}

a.comon-btn:hover {
  background: #00008b;
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

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

.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-second);
  }

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

#main_header {
  background-color: #000;
}

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: 200px;
  border-radius: 0px;
}

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

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


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

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



.banner_sec .heading {
  position: relative;
}

.banner_sec .heading .span-font {
  font-size: 220px;
  position: absolute;
  top: -60px;
  left: -80px;
}

.banner_sec .heading p {
  margin-bottom: 0;
}

.banner_sec .heading h2 {
  font-size: 121px;
}

.banner_sec {
  padding: 150px 0;
}

.about_sec .heading {
  position: relative;
}

.about_sec .heading h2.span-3 {
  position: absolute;
  top: -100px;
  left: -115px;
  text-transform: uppercase;
}

.about_sec .heading h2.span-4 {
  font-family: "Oswald", sans-serif;
  text-shadow: 2px 2px 2px #fff;
  color: #732091;
  font-size: 85px;
  text-transform: capitalize;
  text-transform: uppercase;
}

.our_potrait_sec h2 {
  text-transform: uppercase;

}

.our_potrait_sec .content h4 {
  font-size: 25px;
}

.our_potrait_sec .content p {
  font-size: 14px;
  line-height: normal;
  margin-bottom: 0;
}

.our_potrait_sec .content {
  width: 95%;
  padding: 5px 16px 18px;
}

.our_potrait_sec .top-box {
  text-align: end;
  border-right: 5px solid #00008b;
}

.our_potrait_sec .top-box-2 {
  text-align: start;
  border-left: 5px solid #00008b;
}

.home_sec_2 h2 {
  color: #fff;

}

.home_sec_2 h2 span {
  color: var(--theme-color-second);
}

.comon_home_sec_1 .van-box {
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
  transition: 0.6s;
}

.comon_home_sec_1 .van-box:hover {
  background-color: var(--theme-color-second);
  color: #ffffff;
  border: 1px solid #fff;
  transition: 0.6s;
}

.comon_home_sec_1 .van-box p {
  margin-bottom: 0;
}

.comon_home_sec_1 .van-box h4 {
  font-family: var(--paragraph-font);
}

.provocative .owl-nav img {
  width: 55px;
}

.provocative button.owl-prev {
  position: absolute;
  top: 50%;
  left: -30px;
}


.provocative button.owl-next {
  position: absolute;
  top: 50%;
  right: -30px;
}

.comon_home_sec_1 {
  position: relative;
}

.comon_home_sec_1::after {
  content: '';
  display: block;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  height: 280px;
  /* z-index: 1; */
  width: 100%;
}

.home_sec_5 .product-ig-box {
  position: relative;
  padding: 25px;
  color: #fff;
  background-color: #00008b;
  position: relative;
  text-align: center;
  margin-top: 35px;
}

.home_sec_5 .product-ig-box img {
  position: relative;
  margin-top: -80px;
  margin-bottom: 15px;
}

.home_sec_5 .product-ig-box p {
  font-size: 18px;
  margin: 0;
}

.testimonials-sec .testimonial-box {
  background-color: #00008b;
  color: #fff;
}

.testimonials-sec .testimonial-box .img-box {
  width: 70px;
  margin-bottom: 25px;
}

.testimonials-sec .testimonial-box .content {
  overflow-y: scroll;
  height: 180px;
  margin-bottom: 40px;
}

.testimonial-box .author-name ul {
  display: flex;
  gap: 2px;
  margin: 0;
  color: orange;
}


.testimonials-sec .owl-nav img {
  width: 55px;
}

.testimonials-sec button.owl-prev {
  position: absolute;
  top: 40%;
  left: -30px;
}


.testimonials-sec button.owl-next {
  position: absolute;
  top: 40%;
  right: -30px;
}


.faq-sec .accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .125);
  margin-bottom: 18px;
  border: 0px solid #d0d0d0 !important;
  font-family: var(--paragraph-font);
  background: #02008C;
  background: linear-gradient(270deg, rgba(2, 0, 140, 1) 0%, rgba(160, 32, 240, 1) 100%);
  border-radius: 50px;
  color: #fff;
}

.faq-sec .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #c1d2f7;
  border: 0;
  border-radius: 0;
  overflow-anchor: 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, border-radius .15s ease;
  border-radius: 60px !important;
  border: none;
  box-shadow: none;
  font-family: var(--paragraph-font);
  font-weight: 500;
}

.faq-sec .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("../image/down.png");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.faq-sec .accordion-button:not(.collapsed) {

  background-color: #e7f1ff;
  background: #02008C;
  background: linear-gradient(270deg, rgba(2, 0, 140, 1) 0%, rgba(160, 32, 240, 1) 100%);
  color: #fff;
}

.contact_sec h2 {

  font-size: 60px;
}

.contact_sec h3 {
  color: var(--theme-color-second);
  font-size: 60px;
  margin-bottom: -30px !important;
}

.contact_sec input, .contact_sec textarea {
  border: none;
  border-bottom: 2px solid #000;
  padding: 10px;
}

.contact_sec button {
  width: 100%;
  background-color: #00008b;
  color: #fff;
  border-radius: 60px;
  padding: 15px;
  border: none;
  text-transform: uppercase;
}

.contact_sec textarea {
  height: 125px;
}

.our-blog .blog-box {
  background: #02008C;
  background: linear-gradient(270deg, rgba(2, 0, 140, 1) 0%, rgba(160, 32, 240, 1) 100%);
  height: 100%;
  padding: 10px;
  text-align: center;
  color: #fff;
  border-radius: 16px;
}

.footer {
  padding: 80px 0;
  color: #fff;
}

.footer .ft-list {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.footer .ft-list a {
  color: #fff;
}

.footer .ft-list-2 a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 25px;
  gap: 10px;
}

.footer .ft-list-2 a i {
  display: flex;
  height: 50px;
  width: 50px;
  background-color: var(--theme-color-second);
  border-radius: 600px;
  align-items: center;
  justify-content: center;
}


/* inner_banner */

.inner_banner a {
  color: #fff;
}

.inner_banner {
	background: url(../image/bg-1.jpg) no-repeat center / cover;
	padding: 100px 0 30px;
	color: #fff;
}

.inner_banner h1 {
  margin-bottom: 0;
  font-size: 72px;
  text-transform: uppercase;
}


.blog-page-1 .blog-list {
  border-left: 1px solid #c4c4c4;
  padding: 0 25px;
  height: 100%;
}

.blog-page-1 .blog-list li h5 {
  font-weight: 700;
  color: var(--theme-color-second);
}

.blog-page-1 .blog-list li a {
  display: inline-block;
  color: #1e1e1e;
  padding: 8px 0;
}

.blog-page-1 .blog-box-article .date {
  margin-bottom: 0;
  font-size: 14px;
  color: #131313;
}

.blog-page-1 .blog-box-article p {
  margin-bottom: 10px;
}

.blog-page-1 .blog-box-article h4 {
  font-size: 21px;
  font-weight: normal;
  margin-bottom: 3px;
}

.blog-page-1 .blog-box-article a {
  color: var(--theme-color-second);
}

.blog-page-1 .subscribe form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog-page-1 .subscribe form input,
.blog-page-1 .subscribe form button {
  padding: 10px;
  border: 1px solid #000;
  color: #000;
}

.blog-page-1 .subscribe form button {
  width: 155px;
  background-color: var(--theme-color-second);
  font-weight: 600;
}

.blog-page-1 .social li a {
  color: #000;
}
.blog-page-1  h3{
  font-size: 22px;
}


.get-in-touch .contact-left-part {
    background-color: #000000;
    padding: 45px 30px;
    border-radius: 15px;
}

.get-in-touch .contct-info {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.get-in-touch .contact-left-part .head {
  border-bottom: 1px solid #666;
  padding: 15px 0 30px 0;
}

.get-in-touch .contact-left-part h3 {
    margin: 0;
    color:#fff;
    font-size: 31px;
}

.table.table-wishlist .stock-status {
  color: green;
  font-weight: 600;
}

.get-in-touch .contact-left-part .contct-info i {
    height: 50px;
    min-height: 50px;
    width: 50px;
    min-width: 50px;
    color: #fff;
    background-color: var(--theme-color-second);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 600px;
}
.get-in-touch .contct-info .info {
  color: #e9e9e9;
}
.get-in-touch .contct-info .info p {
    margin-bottom: 5px;
    line-height: 1;
    color: #fff;
}
.get-in-touch .contct-info .info .phn {
    font-size: 22px;
    
    color: var(--theme-color-second);
    letter-spacing: 2px;
}
.get-in-touch .contct-info .info a {
    color: #ffffff;
    letter-spacing: 0;
}

.get-in-touch form label {
    margin-bottom: 15px;
    font-size: 19px;
    color: #000000;
}

.get-in-touch form input, .get-in-touch form select, .get-in-touch form textarea {
    padding: 12px;
    outline: none;
    border-radius: 10px;
    background-color: #e7e7e7;
    border: none;
    border: 2px solid #000000;
}

.get-in-touch form select {
  color:  var(--theme-color-second);
  font-weight: 600;
}

.get-in-touch form textarea {
  height: 190px;
}

.get-in-touch form button {
  padding: 12px;
  outline: none;
  border-radius: 10px;
  border-radius: 90px;
  width: 100%;
  border: none;
  border: 2px solid var(--theme-color-second);
  background-color: var(--theme-color-second);
  color: #fff;
}

.map {
  line-height: 0;
}

.map iframe {
  width: 100%;
}

#about-bg::after{
  display: none;
}


input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 100%;
    background-color: #00008b;
    color: #fff;
    border-radius: 60px;
    padding: 15px;
    border: none;
    text-transform: uppercase;
}



.inner-blog-left-sec .inner-blog-comment .contact-form {
    padding: 20px 25px;
    border: 1px solid rgba(69, 69, 70, 0.2);
    border-radius: 8px;
    background: #fff;
    color: #000;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


#respond {
/*     max-width: 600px; */
    margin: 0 auto;
}
#respond #reply-title small a{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#respond h2 {
    font-size: 24px;
    margin: 24px 0 16px 0;
    font-weight: 500;
}
#respond form {
    display: block;
    margin-top: 0em;
border: none;
}
#respond form p{
color: #6d6d6d;
 margin: 0;
    line-height: 26px;
    margin-bottom: 21px;
    font-size: 16px;
}
#respond .comment-form-comment,
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
    margin-bottom: 20px;
}

#respond label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#respond .comment-form-cookies-consent {
    margin-top: 20px;
}

#respond .form-submit {
    margin-top: 20px;
}

#respond .submit {
    background-color: #1c7690;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#respond .submit:hover {
    background: #000000;
    color: #fff;
    transition: all 0.8s;
}#respond .comment-form-cookies-consent input {
    width: 18px;
    height: 12px;
}
#respond .comment-form-cookies-consent input,
#respond .comment-form-cookies-consent label {
  display: inline;
}
#respond p.logged-in-as a{
color: #0f3ca1 !important;
text-decoration: underline;
display: inline-block !important;
}
#comments .comment-author a{
color: #000 !important;
}
#comments .comment-metadata a{
color: #000 !important;
}
#comments .comment-metadata a.comment-edit-link{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#comments span.comment-reply a{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
margin-right: 10px !important;
}



.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: #a020f0;
    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;
    margin: 0px 5px;
    font-size: 18px;
        z-index: 3;
border-radius: 5px;
}
form[data-form-id="6"] .es-form-field-container .gjs-row{
	display:block !important;
}
input[type="submit"] {
    width: 50%;
    background-color: #a020f0 !important;
    border: none;
    margin-top: 5px;
    color: #fff;
}
.blog-page-1 .main-article ul li{
	list-style: disc !important;
	margin-left:25px;
}
.social{
	list-style:none !important;
}

/* social media icons */

ul.ft-social-media {
    display: flex;
    justify-content: center;
	gap:10px;
}

ul.ft-social-media li a {
    color: #fff !important;
    font-size: 20px;
    border: 1px solid #A020F0;
    border-radius: 50%;
    padding: 6px 11px;
    background-color: #A020F0;
}