@import url("../css/bootstrap.css");
@import url("../css/jquery.fancybox.min.css");
@import url("../css/slick.css");
@import url("https://netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@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");
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url("../fonts/stylesheet.css");
h2,h3,h4,p,a,ul{
  font-family: "Lato", sans-serif;
}
ul {
  padding: 0;
}
a{
  text-decoration: none;
}
li {
  list-style: none;
}

/* header css begin */
.top_bar {
  background: white;
  padding: 9px 0;
}

.top_bar a {
  color: #604099;
  font-size: 14px;
}

.top_bar div select {
  background: transparent;
  color: #604099;
  border-bottom: 1px solid #604099 !important;
  margin: 0 5px 0 19px;
  border: 0;
}
.top_bar div select option {
  color: black;
}
.logo-navs {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 10px 0px;
}

ul.navigations {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
}

.auths-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo a {
  font-size: 20px;
  color: black;
  font-family: 'Alexandria';
  font-weight: 600;
  padding: 10px 0px;
  display: inline-block;
}

.product-full-text {
  text-align: left;
}
.product-full-text a {
  background: black;
  color: white !important;
  padding: 5px 30px 5px 20px;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}
.full-pro-image {
  width: 100%;
}


.site-logo a span {
  color: #604099;
}

ul.navigations li a {
  font-size: 15px;
  color: black;
  font-family: Alexandria;
  position: relative;
  display: inline-block;
  transition: all .5s ease;
  font-weight: 300;
}

.auths-nav .d-flex h4 a {
    font-size: 15px;
}

.auths-nav:hover .d-flex h4 a,.auths-nav:hover .d-flex a {
    color: white;
}

.auths-nav .d-flex:hover {
  background: black;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transform: translate(0px, -7px);
}

ul.navigations li a::before {
  position: absolute;
  content: "";
  width: 0;
  transition: all .6s ease;
  height: 1px;
  background: #604099;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  animation: fadeIn 0.4s ease;
}
.custom-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 1330px;
  position: relative;
  animation: slideDown 0.4s ease;
}

/*.custom-modal-content {*/
/*  background-color: #fff;*/
/*  margin: auto auto;*/
/*  padding: 30px;*/
/*  border-radius: 10px;*/
/*  width: 100%;*/
/*  max-width: 1330px;*/
/*  position: absolute;*/
/*  animation: slideDown 0.4s ease;*/
/*  left: 50%;*/
/*  right: 50%;*/
/*  transform: translate(-50%, -50%);*/
/*  top: 50%;*/
/*}*/

.custom-close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}

.custom-close:hover {
  color: red;
}

.packages-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px 40px 20px;
}

.pkg-box {
  flex: 1;
  min-width: 200px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.pkg-box ul {
    padding: 20px 0 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.pkg-box:hover {
  transform: scale(1.03);
}

.pkg-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0;
  height: 310px;
  overflow: auto;
}

.pkg-box button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.pkg-box button:hover {
  background-color: #0056b3;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideDown {
  from {transform: translateY(-50px);}
  to {transform: translateY(0);}
}

ul.navigations li a:hover:before {
  width: 100%;
}

ul.navigations li a:hover {
  transform: translate(0px, -10px);
  color: #604099;
}

.d-flex h4 {
  font-size: 15px;
}

.auths-nav .d-flex {
  align-items: center;
  gap: 14px;
  padding: 0 11px 0 5px;
  transition: all .6s ease;
}

.auths-nav .d-flex a {
  color: #604099;
  font-size: 33px;
  position: relative;
}

.auths-nav .d-flex a span {
  position: absolute;
  font-size: 8px;
  color: white;
  background: #604099;
  width: 11px;
  height: 12px;
  text-align: center;
  right: 0px;
  top: 6px;
  border-radius: 10px;
}
.auths-nav .d-flex:first-child {
  border-right: 1px solid #ac9d9d94;
  padding: 0 19px 0 3px;
}
/* header css end */

/* banner css begin */
section.banner {
  background: url(../images/banner-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 500px;
  position: relative;
  z-index: 999;
}
.banner-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 400px;
  justify-content: center;
}

section.banner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #604099d6;
}

.banner-txt h2 {
  font-size: 50px;
  color: white;
  font-family: 'Alexandria';
  font-weight: 400;
  margin: 0 0 21px 0;
}

.banner-txt .form-group {
  width: 52%;
  text-align: center;
  position: relative;
}

.banner-txt .form-group input {
  width: 100%;
  background: #e9e9e936;
  border: none;
  height: 59px;
  padding: 12px 20px 15px 20px;
  border-radius: 40px;
  color: white;
  backdrop-filter: blur(5px);
}

.banner-txt .form-group input::placeholder {
  color: white;
}

.banner-txt .form-group button {
  position: absolute;
  right: 8px;
  top: 5px;
  border: 1px solid transparent;
  width: 49px;
  height: 49px;
  border-radius: 32px;
  font-size: 24px;
  background: #604099;
  color: white;
}
.paint-shadow {
  position: absolute;
  width: 100%;
  height: 215px;
  bottom: 0;
}

.paint-shadow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* banner css end */


/* accordian css begin */
.accordion {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  /* background: #efecf5; */
  border-radius: 12px;
}

.accordion-item {
  border: 0;
  margin-bottom: 5px;
  border-radius: 5px;
  overflow: hidden;
  border: 0;
  background: transparent !important;
}

.accordion-header {
  width: 100%;
  position: relative;
  padding: 24px 28px;
  text-align: left;
  background: transparent;
  color: white;
  font-size: 18px;
  border: none;
  cursor: pointer;
  color: black;
  transition: background 0.3s ease-in-out;
  font-weight: 600;
  font-family: 'Alexandria';
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.3s ease-in-out;
  /* background: #efecf5; */
  padding: 0 15px;
}
button.accordion-header span {
  position: absolute;
  right: 15px;
  font-size: 25px;
  color: #604099;
  transition: all .6s ease;
}
button.accordion-header.active span {
  transform: rotate(88deg);
}
.type-filter ul li:nth-child(7) a {
  margin: 40px 0 0 0;
  display: inline-block;
}

.type-filter ul li:nth-child(8) a {
  margin: 40px 0 0 0;
  display: inline-block;
}

.type-filter ul li:nth-child(6) {
  margin: 0 12px 0 auto;
  display: inline-block;
}

.accordion-content ul li a:hover {
  color: #604099;
}
.product-links {
    padding: 40px 0 0 0;
}
.type-filter ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.type-filter ul li a {
  background: transparent;
  color: black !important;
  padding: 7px 24px  !important;
  transition: all .6s ease;
  display: inline-block;
  border: 1px solid #3333;
  border-radius: 40px;
}

.type-filter ul li a:hover {
  background: #604099;
  color: white;
}
.accordion-content ul {
  padding: 0 0 0 0;
}

.accordion-content ul li a {
  color: black;
  padding: 0 0 16px 22px;
  display: inline-block;
}

.type-filter ul li a:hover {
  color: white !important;
}
section.products {
  padding: 10px 0 50px 0;
}
.sorting-filter select {
  background: #efecf5;
  padding: 19px 74px 19px 14px;
  border: 1px solid #3333;
  border-radius: 40px;
  color: #33333385;
  font-size: 13px;
  font-family: 'Alexandria';
  margin: 0 0 0 9px;
  font-weight: bold;
}

.sorting-filter {
  text-align: right;
  padding: 11px 0 30px 0;
}
.sorting-filter label {
  font-size: 17px;
  font-family: 'Alexandria';
  font-weight: 600;
}
.product-gird {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    grid-gap: 10px;
}
.product-main {
    position: relative;
}

.product-content {
    position: absolute;
    width: 80%;
    height: 49%;
    backdrop-filter: blur(24px);
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 22px 5px;
    opacity: 0;
    transition: all .6s ease;
    visibility: hidden;
    border: 1px solid #604099;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-content h2 {
    font-size: 18px;
    font-family: 'Alexandria';
    color: #333;
}

.product-content h4 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    font-family: 'Alexandria';
}

.product-content ul {
    display: flex;
    justify-content: center;
    gap: 13px;
}

.product-content ul li a {
    color: #2d2828;
    font-size: 13px;
}

.product-main:hover .product-content {
    top: 50%;
    visibility: visible;
    opacity: 1;
    cursor: pointer;
}
.product-img {
  width: 99%;
  height: 269px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.product-img img {
  width: 100%;
  height: 65%;
  object-fit: contain;
}

.product-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-links ul {
  display: flex;
  justify-content: end;
  gap: 21px;
  padding: 0 30px 0 30px;
}

.product-links ul li a {
  font-size: 20px;
  font-family: 'Alexandria';
  color: grey;
  font-weight: 600;
  background: transparent;
  width: 46px;
  height: 46px;
  line-height: 46px;
  display: inline-block;
  text-align: center;
  border-radius: 100%;
}

.product-links ul li:first-child a {
  background: #604099;
  color: white;
}
/* accordian css end */

/* our value css begin */
.heading h2 {
  font-size: 50px;
  font-family: 'Alexandria';
  text-transform: capitalize;
  font-weight: 300;
}

.heading {
  text-align: center;
}

.heading p {
  font-size: 14px;
  font-family: 'Alexandria';
}

.value-points {
  text-align: center;
  padding: 40px 30px 40px 30px;
}

.value-points span {
  background: #604099;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  border-radius: 100px;
}

.value-points h2 {
  font-size: 18px;
  font-family: 'Alexandria';
  font-weight: 600;
  padding: 21px 0 17px 0;
  color: black;
}

.value-points p {
  font-size: 13px;
  font-family: 'Alexandria';
  font-weight: 300;
}

section.our_value {
  padding: 40px 0 40px 0;
}
/* our value css end */

/* footer css begin */
footer {
  background: url(../images/ftr-bg.png);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0 0 0;
  z-index: 1;
  margin: 130px 0 0 0;
}

footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.9;
  z-index: -1;
  top: 0;
}
.cta-ftr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #604099;
  padding: 46px;
  border-radius: 20px;
  top: -251px;
  position: absolute;
  width: 100%;
}

.cta-ftr h2 {
  font-size: 40px;
  font-family: 'Alexandria';
  color: white;
}

.cta-ftr .form-group {
  width: 41%;
}

.form-group input {
  width: 100%;
  height: 83px;
  border-radius: 50px;
  border: 1px solid transparent;
  padding: 0 20px;
  background: #ffffff29;
}

.form-group input::placeholder {
  color: white;
}

.form-group {
  position: relative;
}

.form-group button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  height: 100%;
  width: 150px;
  background: #141307;
  color: white;
  border-radius: 50px;
  border: 1px solid transparent;
  font-family: 'Alexandria';
}
.footer-logo a {
  font-size: 34px;
  color: white;
  font-weight: 700;
}

.footer-logo a span {
  color: #604099;
}

.footer-logo p {
  font-size: 18px;
  color: #ffffffab;
  font-family: 'Lato';
  font-weight: 300;
  padding: 90px 0 0 0;
}

.footer-logo ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #604099;
  font-size: 29px !important;
}

.footer-logo ul {
  display: flex;
  gap: 30px;
}

.footer-links-one h3 {
  font-size: 20px;
  color: white;
  font-family: 'Alexandria';
  font-weight: 300;
  padding: 0 0 30px 0;
}

.footer-links-one ul li a {
  color: #ffffff91;
  font-family: 'Lato';
  font-weight: 300;
  padding: 0 0 20px 0;
  display: inline-block;
  position: relative;
  font-size: 17px;
}

.other-links h3 {
  font-size: 20px;
  color: white;
  font-family: 'Alexandria';
  font-weight: 300;
  text-transform: capitalize;
  padding: 0 0 30px 0;
}

.other-links ul li a {
  color: #ffffff91;
  font-family: 'Lato';
  font-weight: 300;
  padding: 0 0 10px 0;
  display: inline-block;
  position: relative;
}

.contact-info h3 {
  font-size: 20px;
  color: white;
  font-family: 'Alexandria';
  font-weight: 300;
  text-transform: capitalize;
  padding: 0 0 30px 0;
}

.footer-links-one {
  margin: 0 0 0 auto;
  width: fit-content;
  padding: 0 0 20px 0;
}

.other-links {
  margin: 0 0 0 auto;
  width: fit-content;
}

.contact-info {
  width: fit-content;
  margin: 0 0 0 auto;
}

.contact-info ul li a {
  color: #ffffff91;
  font-family: 'Lato';
  font-weight: 400;
  padding: 0 0 10px 0;
  display: inline-block;
}

.footer-txt p {
  margin: 0;
  font-size: 14px;
  font-family: 'Alexandria';
  color: #ffffff91;
}

.footer-txt {
  background: #604099;
  text-align: center;
  padding: 14px 0;
}

footer .container {
  position: relative;
}

.footer-links-one ul li a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: white;
  bottom: 19px;
  transition: all .6s ease;
}

.footer-links-one ul li a:hover:before {
  width: 100%;
}

.other-links ul li a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: white;
  bottom: 9px;
  transition: all .6s ease;
}

.other-links ul li a:hover:before {
  width: 100%;
}
.contact-info ul li {
  padding: 0 0 11px 0;
}

.footer-logo a:first-child {
  font-size: 44px;
}

.contact-info ul li a span {
  color: white;
  margin: 0 10px 0 0;
}

.heading h2 strong {
  font-weight: bold;
}

/* footer css end */