.bg-gray {
  background-color: #f8f8f8;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

@media (max-width: 1199px) {
  .d-lg-none {
    display: none;
  }
  .mb-lg-25 {
    margin-bottom: 25px;
  }
  .col-lg-reverse {
    flex-direction: column-reverse;
  }
}
@media (max-width: 991px) {
  .d-md-none {
    display: none;
  }
  .mb-md-25 {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .d-sm-none {
    display: none;
  }
  .mb-sm-25 {
    margin-bottom: 25px;
  }
}
/*=== reset ===*/
* {
  box-sizing: border-box;
}

body {
  line-height: 30px;
  overflow-x: hidden;
}

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

a {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: inherit;
  transition: inherit;
  vertical-align: baseline;
}

a:hover {
  color: inherit;
  text-decoration: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  transition: 0.2s ease;
}

a, button {
  cursor: pointer;
  display: inline-block;
}

button {
  font-family: "Inter", sans-serif;
}

img {
  max-width: 100%;
}

input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

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

/*=== globals ===*/
.s-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.s-padding:has(.container > .s-title-wrap) {
  padding-top: 90px;
}

.s-padding-b {
  padding-bottom: 100px;
}

.s-padding-t:has(.container > .s-title-wrap) {
  padding-top: 90px;
}

.s-title-wrap {
  margin-bottom: 45px;
  text-align: center;
}

.s-sub-title {
  font-size: 20px;
  line-height: 32px;
  color: #da126a;
  margin-bottom: 3px;
}

.s-title {
  font-size: 42px;
  line-height: 57px;
  color: #162b49;
}

.container-stretch {
  max-width: 1514px;
  width: 100%;
  padding: 0 12px;
  margin: auto;
}

ul.slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 4px;
  margin-top: 30px;
}

.slick-dots li button {
  display: none;
}

.slick-dots li {
  width: 16px;
  height: 6px;
  background: #fbecf3;
  border-radius: 3px;
  transition: 0.2s ease;
}

.slick-dots li.slick-active {
  width: 26px;
  background: #da126a;
}

.btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.list li {
  font-size: 18px;
  color: #535353;
  margin-bottom: 10px;
}
.list li a {
  transition: 0.1s ease;
  display: flex;
  justify-content: space-between;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.pagination button {
  border: none;
  outline: 0;
  background: none;
  font-size: 20px;
  line-height: 32px;
  text-transform: uppercase;
  color: #6c798b;
}
.pagination button .icon {
  display: none;
}

.page-items {
  display: flex;
}
.page-items li a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  color: #162b49;
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
}
.page-items li a.current {
  background: #da126a;
  color: #fff;
}

.i-list li {
  margin-bottom: 15px;
}
.i-list li .text {
  margin-left: 15px;
  font-size: 16px;
  line-height: 26px;
  color: #162b49;
}
.i-list li:last-child {
  margin-bottom: 0px;
}

.i-list-s2 li {
  padding: 11px 16px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  transition: 0.15s ease;
}
.i-list-s2 li .name svg {
  margin-right: 8px;
}
.i-list-s2 li .count {
  font-weight: 700;
  color: #da126a;
}
.i-list-s2 li:hover {
  background: rgba(217, 19, 106, 0.08);
}
.i-list-s2 li:last-child {
  margin-bottom: 0px;
}

.form .s-input {
  margin-bottom: 22px;
  width: 100%;
}
.form .s-input label {
  display: inline-block;
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 8px;
}

.form .s-input input,
.form .s-input textarea {
  display: block;
  width: 100%;
  height: 50px;
  font-size: 13px;
  line-height: 24px;
  padding-left: 20px;
  background: rgba(247, 232, 242, 0.27);
  border: 1px solid #e8e8e8;
  outline: 0;
  border-radius: 4px;
}
.form .s-input input::placeholder,
.form .s-input textarea::placeholder {
  color: #6c798b;
}

.form .s-input input[type=checkbox] {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.form .s-input:has(input[type=checkbox]) {
  align-self: flex-end;
}
.form .s-input:has(input[type=checkbox]) > label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 24px;
  color: #222222;
}

.form .s-input textarea {
  height: 150px;
}

.form .input-grp {
  display: flex;
  gap: 30px;
  align-items: center;
}
.form .input-grp > * {
  flex-basis: 50%;
}

.form .disclaimer {
  background: rgba(218, 18, 106, 0.07);
  border-radius: 4px;
  padding: 15px 20px;
  margin-bottom: 30px;
}
.form .disclaimer p .highlight {
  color: #da126a;
}

.form .frm-header {
  padding: 25px;
  background: #162B49;
  color: #fff;
  text-align: center;
  border-radius: 4px 4px 0px 0px;
}
.form .inner-wrap {
  padding: 25px 40px 40px;
  border: 1px solid #E0E0E0;
  border-top-color: transparent;
}

/*--- responsive ---*/
@media (max-width: 1600px) {
  .container-stretch {
    max-width: 1194px;
  }
}
@media (max-width: 1399px) {
  .container-stretch {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .container-stretch {
    max-width: 960px;
  }
  .pagination button {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .container-stretch {
    max-width: 720px;
  }
  .s-title {
    font-size: 34px;
    line-height: 46px;
  }
  .s-sub-title {
    font-size: 17px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .container-stretch {
    max-width: 540px;
  }
  .s-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .s-padding-b {
    padding-bottom: 80px;
  }
  .s-padding-t {
    padding-top: 80px;
  }
  .pagination button {
    font-size: 14px;
  }
  .form .input-grp {
    flex-direction: column;
    gap: 0;
  }
  .form .input-grp .input-grp {
    width: 100%;
  }
  .form .frm-header {
    font-size: 20px;
    padding: 15px;
  }
  .form .inner-wrap {
    padding: 20px 20px 30px;
  }
}
@media (max-width: 575px) {
  .container-stretch {
    width: 100%;
    max-width: none;
  }
  .s-title {
    font-size: 28px;
    line-height: 36px;
  }
  .s-sub-title {
    font-size: 15px;
    line-height: 24px;
  }
  .pagination button {
    font-size: 18px;
    color: #162b49;
  }
  .pagination button .text {
    display: none;
  }
  .pagination button .icon {
    display: inline-block;
  }
}
/*=== buttons ===*/
.btn {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  border-radius: 3px;
  padding: 13px 25px;
  outline: 0;
  display: inline-block;
  transition: 0.25s ease-in-out;
  vertical-align: baseline;
}

.btn.btn-lg {
  display: block;
  width: 100%;
}

.btn-s1, .btn-s2,
.btn-s1.outlined:hover {
  border: 1px solid #da126a;
  background: #da126a;
  color: #fff;
  padding: 13px 25px;
}

.btn-s1:hover, .btn-s2:hover,
.btn-s1.outlined,
.outlined.btn-s2 {
  background: transparent;
  color: #da126a;
}

.btn-s2:hover {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.btn-s2.fade:hover {
  opacity: 0.8;
  color: #fff;
  background: #da126a;
  border-color: #da126a;
  opacity: 0.8;
}

.btn-s3 svg {
  margin-right: 12px;
  display: inline-block;
}

.btn-s3,
.btn-s3.outlined:hover {
  border: 1px solid #1DC9B7;
  background: #1DC9B7;
  color: #fff;
  padding: 13px 25px;
}

.btn-s3:hover,
.btn-s3.outlined {
  background: transparent;
  color: #1DC9B7;
}

.btn-s4 svg {
  margin-right: 12px;
  display: inline-block;
}

.btn-s4,
.btn-s4.outlined:hover {
  border: 1px solid #F2C94C;
  background: #F2C94C;
  color: #162b49;
  padding: 13px 25px;
}

.btn-s4:hover,
.btn-s4.outlined {
  background: transparent;
  color: #162b49;
}

.btn-s9 svg {
  margin-right: 12px;
  display: inline-block;
}

.btn-s9,
.btn-s9.outlined:hover {
  border: 1px solid #F2C94C;
  background: #F2C94C;
  color: #162b49;
  padding: 13px 130px;
}

.btn-s9:hover,
.btn-s9.outlined {
  background: transparent;
  color: #162b49;
}

.btn-s5 svg {
  margin-right: 12px;
  display: inline-block;
}

.btn-s5,
.btn-s5.outlined:hover {
  border: 1px solid #1E6CFF;
  background: #1E6CFF;
  color: #fff;
  padding: 13px 25px;
}

.btn-s5:hover,
.btn-s5.outlined {
  background: transparent;
  color: #162b49;
}

.btn.btn-s6 {
  background: linear-gradient(97.97deg, #4D22AA 0%, #851C91 36.01%, #C21575 79.08%, #DA126A 99.62%);
  padding: 16px 40px;
  line-height: 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}
.btn.btn-s6:hover, .btn.btn-s6:active {
  opacity: 0.95;
}
.btn.btn-s6:hover:after, .btn.btn-s6:active:after {
  transform: translate3d(130%, 0, 0) rotate(35deg);
  transition: transform 0.3s ease-in-out;
}

.btn.btn-s6::after {
  background-color: hsla(0deg, 0%, 100%, 0.2);
  bottom: -50%;
  content: "";
  position: absolute;
  top: -110%;
  transform: translate3d(-400%, 0, 0) rotate(35deg);
  width: 50px;
  z-index: 1;
}

.app-btn {
  display: inline-block;
  background: transparent;
  transition: 0.2s ease;
}
.app-btn img {
  width: 100%;
  height: 100%;
}
.app-btn:hover {
  opacity: 0.85;
}

.btn-frm, .btn-frm-s2 {
  background: linear-gradient(102.93deg, #4d22aa 0%, #da126a 95.54%);
  border-radius: 4px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  width: 141px;
  height: 58px;
  display: inline-block;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}
.btn-frm:hover, .btn-frm-s2:hover, .btn-frm:active, .btn-frm-s2:active {
  opacity: 0.95;
}
.btn-frm:hover:after, .btn-frm-s2:hover:after, .btn-frm:active:after, .btn-frm-s2:active:after {
  transform: translate3d(130%, 0, 0) rotate(35deg);
  transition: transform 0.3s ease-in-out;
}

.btn-frm::after, .btn-frm-s2::after {
  background-color: hsla(0deg, 0%, 100%, 0.2);
  bottom: -50%;
  content: "";
  position: absolute;
  top: -110%;
  transform: translate3d(-400%, 0, 0) rotate(35deg);
  width: 50px;
  z-index: 1;
}

.btn-frm svg, .btn-frm-s2 svg {
  margin-right: 8px;
}

.btn-frm-s2 {
  background: #F2C94C;
  color: #162b49;
}

/*--- responsive ---*/
@media (max-width: 991px) {
  .btn {
    font-size: 15px;
  }
}
/*=== search bar ===*/
.s-bar-s1 .s-bar-inner {
  width: 618px;
  height: 68px;
  margin: auto;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.s-bar-s1 .s-bar-inner .p-left {
  flex: 1 1 0;
  display: flex;
  gap: 20px;
}
.s-bar-s1 .s-bar-inner .p-right {
  flex: 0;
}

.s-bar-s1 .nice-select {
  float: none;
  width: 146px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #162B49;
  border: none;
  border-radius: 5px 0 0 5px;
}
.s-bar-s1 .nice-select > * {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
.s-bar-s1 .nice-select .option {
  color: #000;
}
.s-bar-s1 .nice-select::after {
  width: 7px;
  height: 7px;
  border-color: #fff;
  right: 23px;
}
.s-bar-s1 .nice-select .list {
  max-height: 270px;
  overflow-y: scroll !important;
}

.s-bar-s1 input[type=text] {
  border: none;
  outline: none;
  background: transparent;
}
.s-bar-s1 input[type=text]::placeholder {
  color: #6C798B;
}

.s-bar-s1 .btn-frm, .s-bar-s1 .btn-frm-s2 {
  margin-top: 5px;
  margin-right: 5px;
}

.s-bar-s1.accent-lightBlue .nice-select {
  background: #1DC9B7;
}

.s-bar-s1.accent-darkBlue .nice-select {
  background: #162b49;
}

.s-bar-s2 .s-bar-inner {
  background: #fff;
  width: 618px;
  display: flex;
  justify-content: space-between;
  border: 1px solid #DDDDDD;
  padding: 5px;
  border-radius: 4px;
}

.s-bar-s2 .s-bar-inner input {
  border: none;
  outline: 0;
  width: 60%;
  display: inline-block;
  padding-left: 20px;
}

/*=== counter ===*/
.counter-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
}

.counter-sm .s-counter {
  display: flex;
  gap: 5px;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.5019607843);
}
.counter-sm .s-counter p {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #ffffff;
}

.counter-sm .s-counter:last-child {
  border-right: none;
  padding-right: 0;
}

.counter-sm .s-counter:first-child {
  padding-left: 0px;
}

.c-counter-s1 {
  text-align: center;
}
.c-counter-s1 .thumb {
  margin-bottom: 30px;
}
.c-counter-s1 .content h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 7px;
}
.c-counter-s1 .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  padding: 0 30px;
}

.c-counter-s1 .progress {
  padding-bottom: 30px;
}

.c-counter-s1 .progress .circle-outer {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: blue;
  margin: auto;
  display: grid;
  place-items: center;
}
.c-counter-s1 .progress .circle-outer .circle-inner {
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  background: #1dc9b7;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.c-counter-s1 .progress .circle-outer .circle-inner .counter-num {
  font-size: 42px;
  line-height: 57px;
  color: #fff;
}

/*--- repsonsive ---*/
@media (max-width: 767px) {
  .counter-sm .s-counter {
    padding: 0px 12px;
  }
  .counter-sm .s-counter p {
    font-size: 15px;
  }
}
/*=== animations ===*/
@keyframes popup {
  from {
    opacity: 0;
    transform: scale(0) rotate(45deg);
  }
  to {
    opacity: 1;
    transform: scale(1.1) rotate(45deg);
  }
}
.animated-boxes li {
  opacity: 0;
  transform: scale(1) rotate(45deg);
  background: rgba(255, 255, 255, 0.1);
  background-size: 400% 400%;
  animation: popup 0.05s cubic-bezier(0.175, 0.885, 0.32, 1.275) var(--box-delay) forwards;
}

.animated-boxes-l {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background: transparent;
}

.animated-boxes-l li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  transform: rotate(45deg);
}

.animated-boxes-l li:nth-child(1) {
  width: 234px;
  height: 234px;
  left: 2%;
  bottom: 10%;
}
@media (max-width: 1700px) {
  .animated-boxes-l li:nth-child(1) {
    width: 208px;
    height: 208px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-l li:nth-child(1) {
    width: 182px;
    height: 182px;
  }
}

.animated-boxes-l li:nth-child(2) {
  width: 85.5px;
  height: 85.5px;
  left: 15%;
  bottom: 5%;
}
@media (max-width: 1700px) {
  .animated-boxes-l li:nth-child(2) {
    width: 76px;
    height: 76px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-l li:nth-child(2) {
    width: 66.5px;
    height: 66.5px;
  }
}

.animated-boxes-l li:nth-child(3) {
  width: 166.5px;
  height: 166.5px;
  left: 22%;
  bottom: 11%;
}
@media (max-width: 1700px) {
  .animated-boxes-l li:nth-child(3) {
    width: 148px;
    height: 148px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-l li:nth-child(3) {
    width: 129.5px;
    height: 129.5px;
  }
}

.animated-boxes-l li:nth-child(4) {
  width: 166.5px;
  height: 166.5px;
  left: 30%;
  bottom: -13%;
}
@media (max-width: 1700px) {
  .animated-boxes-l li:nth-child(4) {
    width: 148px;
    height: 148px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-l li:nth-child(4) {
    width: 129.5px;
    height: 129.5px;
  }
}

.animated-boxes-l li:nth-child(5) {
  width: 85.5px;
  height: 85.5px;
  left: 31%;
  bottom: 36%;
}
@media (max-width: 1700px) {
  .animated-boxes-l li:nth-child(5) {
    width: 76px;
    height: 76px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-l li:nth-child(5) {
    width: 66.5px;
    height: 66.5px;
  }
}

.animated-boxes-l li:nth-child(6) {
  width: 135px;
  height: 135px;
  left: 25%;
  bottom: 51%;
}
@media (max-width: 1700px) {
  .animated-boxes-l li:nth-child(6) {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-l li:nth-child(6) {
    width: 105px;
    height: 105px;
  }
}

.animated-boxes-l li:nth-child(7) {
  width: 135px;
  height: 135px;
  left: -3%;
  top: -8%;
}
@media (max-width: 1700px) {
  .animated-boxes-l li:nth-child(7) {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-l li:nth-child(7) {
    width: 105px;
    height: 105px;
  }
}

.animated-boxes-l li:nth-child(8) {
  width: 144px;
  height: 144px;
  left: 6%;
  top: 9%;
}
@media (max-width: 1700px) {
  .animated-boxes-l li:nth-child(8) {
    width: 128px;
    height: 128px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-l li:nth-child(8) {
    width: 112px;
    height: 112px;
  }
}

.animated-boxes-l li:nth-child(9) {
  width: 135px;
  height: 135px;
  left: 15%;
  top: 35%;
}
@media (max-width: 1700px) {
  .animated-boxes-l li:nth-child(9) {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-l li:nth-child(9) {
    width: 105px;
    height: 105px;
  }
}

.animated-boxes-l li:nth-child(10) {
  width: 31.5px;
  height: 31.5px;
  left: 36%;
  top: 40%;
}
@media (max-width: 1700px) {
  .animated-boxes-l li:nth-child(10) {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-l li:nth-child(10) {
    width: 24.5px;
    height: 24.5px;
  }
}

.animated-boxes-l li:nth-child(11) {
  width: 144px;
  height: 144px;
  left: 32%;
  top: 5%;
}
@media (max-width: 1700px) {
  .animated-boxes-l li:nth-child(11) {
    width: 128px;
    height: 128px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-l li:nth-child(11) {
    width: 112px;
    height: 112px;
  }
}

.animated-boxes-l li:nth-child(12) {
  width: 126px;
  height: 126px;
  left: 26%;
  top: -12%;
}
@media (max-width: 1700px) {
  .animated-boxes-l li:nth-child(12) {
    width: 112px;
    height: 112px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-l li:nth-child(12) {
    width: 98px;
    height: 98px;
  }
}

.animated-boxes-l li:nth-child(13) {
  width: 31.5px;
  height: 31.5px;
  top: 10%;
  left: 21%;
}
@media (max-width: 1700px) {
  .animated-boxes-l li:nth-child(13) {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-l li:nth-child(13) {
    width: 24.5px;
    height: 24.5px;
  }
}

.animated-boxes-r {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background: transparent;
}

.animated-boxes-r li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  transform: rotate(45deg);
}

.animated-boxes-r li:nth-child(1) {
  width: 234px;
  height: 234px;
  right: 2%;
  bottom: 10%;
}
@media (max-width: 1700px) {
  .animated-boxes-r li:nth-child(1) {
    width: 208px;
    height: 208px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-r li:nth-child(1) {
    width: 182px;
    height: 182px;
  }
}

.animated-boxes-r li:nth-child(2) {
  width: 85.5px;
  height: 85.5px;
  right: 15%;
  bottom: 5%;
}
@media (max-width: 1700px) {
  .animated-boxes-r li:nth-child(2) {
    width: 76px;
    height: 76px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-r li:nth-child(2) {
    width: 66.5px;
    height: 66.5px;
  }
}

.animated-boxes-r li:nth-child(3) {
  width: 166.5px;
  height: 166.5px;
  right: 22%;
  bottom: 11%;
}
@media (max-width: 1700px) {
  .animated-boxes-r li:nth-child(3) {
    width: 148px;
    height: 148px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-r li:nth-child(3) {
    width: 129.5px;
    height: 129.5px;
  }
}

.animated-boxes-r li:nth-child(4) {
  width: 166.5px;
  height: 166.5px;
  right: 30%;
  bottom: -13%;
}
@media (max-width: 1700px) {
  .animated-boxes-r li:nth-child(4) {
    width: 148px;
    height: 148px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-r li:nth-child(4) {
    width: 129.5px;
    height: 129.5px;
  }
}

.animated-boxes-r li:nth-child(5) {
  width: 85.5px;
  height: 85.5px;
  right: 31%;
  bottom: 36%;
}
@media (max-width: 1700px) {
  .animated-boxes-r li:nth-child(5) {
    width: 76px;
    height: 76px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-r li:nth-child(5) {
    width: 66.5px;
    height: 66.5px;
  }
}

.animated-boxes-r li:nth-child(6) {
  width: 135px;
  height: 135px;
  right: 25%;
  bottom: 51%;
}
@media (max-width: 1700px) {
  .animated-boxes-r li:nth-child(6) {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-r li:nth-child(6) {
    width: 105px;
    height: 105px;
  }
}

.animated-boxes-r li:nth-child(7) {
  right: -3%;
  top: -8%;
  width: 135px;
  height: 135px;
}
@media (max-width: 1700px) {
  .animated-boxes-r li:nth-child(7) {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-r li:nth-child(7) {
    width: 105px;
    height: 105px;
  }
}

.animated-boxes-r li:nth-child(8) {
  width: 144px;
  height: 144px;
  right: 6%;
  top: 9%;
}
@media (max-width: 1700px) {
  .animated-boxes-r li:nth-child(8) {
    width: 128px;
    height: 128px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-r li:nth-child(8) {
    width: 112px;
    height: 112px;
  }
}

.animated-boxes-r li:nth-child(9) {
  width: 135px;
  height: 135px;
  right: 15%;
  top: 35%;
}
@media (max-width: 1700px) {
  .animated-boxes-r li:nth-child(9) {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-r li:nth-child(9) {
    width: 105px;
    height: 105px;
  }
}

.animated-boxes-r li:nth-child(10) {
  width: 31.5px;
  height: 31.5px;
  right: 36%;
  top: 40%;
}
@media (max-width: 1700px) {
  .animated-boxes-r li:nth-child(10) {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-r li:nth-child(10) {
    width: 24.5px;
    height: 24.5px;
  }
}

.animated-boxes-r li:nth-child(11) {
  width: 144px;
  height: 144px;
  right: 32%;
  top: 5%;
}
@media (max-width: 1700px) {
  .animated-boxes-r li:nth-child(11) {
    width: 128px;
    height: 128px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-r li:nth-child(11) {
    width: 112px;
    height: 112px;
  }
}

.animated-boxes-r li:nth-child(12) {
  width: 126px;
  height: 126px;
  right: 26%;
  top: -12%;
}
@media (max-width: 1700px) {
  .animated-boxes-r li:nth-child(12) {
    width: 112px;
    height: 112px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-r li:nth-child(12) {
    width: 98px;
    height: 98px;
  }
}

.animated-boxes-r li:nth-child(13) {
  width: 31.5px;
  height: 31.5px;
  top: 10%;
  right: 21%;
}
@media (max-width: 1700px) {
  .animated-boxes-r li:nth-child(13) {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 1600px) {
  .animated-boxes-r li:nth-child(13) {
    width: 24.5px;
    height: 24.5px;
  }
}

/*--- responsive ---*/
@media (max-width: 1399px) {
  .animated-boxes {
    display: none;
  }
}
/*=== icon box ===*/
.i-box-s1, .i-box-s2 {
  background: #fff;
  padding: 25px 0;
  text-align: center;
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  transition: 0.25s ease-in-out;
}
.i-box-s1:hover, .i-box-s2:hover {
  transform: translateY(-12px);
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.1);
}
.i-box-s1:hover .f-btn, .i-box-s2:hover .f-btn {
  color: #da126a;
}
.i-box-s1:hover .f-btn svg, .i-box-s2:hover .f-btn svg {
  margin-left: 8px;
}
.i-box-s1:hover .f-btn::before, .i-box-s2:hover .f-btn::before {
  width: 100%;
}

.i-box-s1 .thumb, .i-box-s2 .thumb {
  margin-bottom: 22px;
}

.i-box-s1 h3, .i-box-s2 h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}

.i-box-s1 .f-btn, .i-box-s2 .f-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  position: relative;
}
.i-box-s1 .f-btn::before, .i-box-s2 .f-btn::before {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0px;
  background-color: #da126a;
  position: absolute;
  left: 0;
  transition: 0.25s ease-in-out;
}
.i-box-s1 .f-btn svg, .i-box-s2 .f-btn svg {
  margin-left: 5px;
  transition: 0.25s ease-in-out;
}

.i-box-s2 {
  width: 205px;
  height: 205px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.i-box-s2 .thumb {
  margin-bottom: 15px;
}
.i-box-s2 .thumb img {
  height: 60px;
  width: auto;
}

.i-box-s3 {
  background: #ffffff;
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.i-box-s3 h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
}
.i-box-s3 h4:hover {
  color: #1DC9B7;
}
.i-box-s3 p {
  font-size: 16px;
  line-height: 24px;
  color: #ef262c;
}

.i-box-s4 {
  background: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 25px 20px 35px;
  transition: 250ms ease;
}
.i-box-s4 .thumb {
  padding-bottom: 25px;
}
.i-box-s4 h3 {
  font-size: 20px;
  line-height: 24px;
}
.i-box-s4:hover {
  transform: translateY(-10px);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

/*--- reponsive ---*/
@media (max-width: 1199px) {
  .i-box-s4 h3 {
    font-size: 15px;
  }
}
/*=== product box ===*/
.pro-box-s1 {
  background: #ffffff;
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 25px;
}
.pro-box-s1:hover .thumb::before {
  opacity: 0.8;
  visibility: visible;
}
.pro-box-s1:hover .thumb .purchas-preview-wrap {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.pro-box-s1:hover .thumb img {
  transform: scale(1.1);
}

.pro-box-s1 .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 3px 5px 0 0;
}
.pro-box-s1 .thumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #162b49;
  z-index: 9;
  transition: 0.25s ease;
  opacity: 0;
  visibility: hidden;
}

.pro-box-s1 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}

.pro-box-s1 .thumb .price {
  position: absolute;
  top: 15px;
  right: 15px;
  font-weight: 600;
  font-size: 26px;
  line-height: 24px;
  color: #ffffff;
  width: 52px;
  height: 52px;
  background: #da126a;
  border-radius: 3px;
  text-align: center;
  padding-top: 12px;
}
.pro-box-s1 .thumb .price .p-fix {
  font-weight: 500;
  font-size: 14px;
  vertical-align: top;
  margin-top: -6px;
  display: inline-block;
}

.pro-box-s1 .thumb .purchas-preview-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  display: flex;
  pointer-events: none;
  z-index: 99;
  transition: 0.25s ease;
  align-items: center;
  width: max-content;
}
.pro-box-s1 .thumb .purchas-preview-wrap .preview {
  font-weight: 400;
  font-size: 16px;
  line-height: 1em;
  color: #fff;
  padding-right: 10px;
  border-right: 1px solid #fff;
  margin-right: 10px;
  transition: 0.2s ease;
}
.pro-box-s1 .thumb .purchas-preview-wrap .preview:hover {
  color: #da126a;
}
.pro-box-s1 .thumb .purchas-preview-wrap .b-btn {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  transition: 0.2s ease;
}
.pro-box-s1 .thumb .purchas-preview-wrap .b-btn:hover {
  color: #da126a;
}

.pro-box-s1 .content {
  padding-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 13px;
}

.pro-box-s1 .content .download-rating-wrap {
  display: flex;
  justify-content: space-between;
}

.pro-box-s1 .content .p-meta {
  font-size: 14px;
}
.pro-box-s1 .content .p-meta .author {
  color: #222;
  margin: 0 5px;
  transition: 0.2s ease;
}
.pro-box-s1 .content .p-meta .author:hover {
  color: #da126a;
}
.pro-box-s1 .content .p-meta .catagory {
  background: linear-gradient(180deg, #4d22aa 0.02%, #851c91 36.18%, #c21575 79.42%, #da126a 100.04%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.pro-box-s1 .content .p-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}

.pro-box-s1 .content .download-rating-wrap .d-btn {
  font-size: 14px;
}
.pro-box-s1 .content .download-rating-wrap .d-btn svg {
  font-size: 16px;
  margin-right: 5px;
  color: #162b49;
}

.pro-box-s1 .content .download-rating-wrap .rating > * {
  color: #ffa800;
}
.pro-box-s1 .content .download-rating-wrap .rating span:last-child {
  color: #bfbfbf;
}

/*--- repsonsive ---*/
@media (max-width: 1199px) {
  .pro-box-s1 .thumb .purchas-preview-wrap {
    width: max-content;
  }
}
/*=== tab ===*/
.tab-contents .tab-pane {
  display: none;
  animation: tabFade 1s;
}
.tab-contents .tab-pane.active {
  display: block;
}

@keyframes tabFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tab-s1 .tab-links {
  text-align: right;
}
.tab-s1 .tab-links .tab-btn {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #6c798b;
  border: 0;
  background: transparent;
  outline: 0;
  margin-right: 55px;
}
.tab-s1 .tab-links .tab-btn svg {
  margin-right: 5px;
}
.tab-s1 .tab-links .tab-btn:last-child {
  margin-right: 0px;
}
.tab-s1 .tab-links .tab-btn:hover, .tab-s1 .tab-links .tab-btn.active {
  color: #da126a;
}

/*-- responsive ---*/
@media (max-width: 767px) {
  .tab-s1 .tab-links .tab-btn {
    font-size: 16px;
    margin-right: 20px;
  }
}
/*=== feature box ===*/
.feat-box-s1 {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  padding: 0px 30px;
  position: relative;
}

.feat-box-s1::after {
  content: "";
  width: 160px;
  height: 34px;
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/icons/featur1-angle-right.png) no-repeat center/contain;
}

.feat-box-s1 .thumb {
  margin-bottom: 24px;
}

.feat-box-s1 .content h4 {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}

.feat-box-s1-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feat-box-s1-wrap .feat-box-s1:last-child::after {
  display: none;
}

/*--- responsive ---*/
@media (max-width: 1399px) {
  .feat-box-s1::after {
    width: 135px;
  }
}
@media (max-width: 1199px) {
  .feat-box-s1::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .feat-box-s1 {
    width: 200px;
    height: 200px;
  }
  .feat-box-s1 .content h4 {
    font-size: 16px;
    line-height: 26px;
  }
  .feat-box-s1 .thumb {
    width: 50px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .feat-box-s1-wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
/*=== testimonial ===*/
.testimonials-s1-wrap {
  margin: 0 -12px;
}

.s-testimonial-s1 {
  background: #f9ecf5;
  border-radius: 6px;
  padding-top: 30px;
  padding-left: 40px;
  padding-bottom: 40px;
  padding-right: 20px;
  position: relative;
  margin: 0 12px;
}

.s-testimonial-s1 .desc {
  margin-bottom: 30px;
}

.s-testimonial-s1 .q-icon {
  position: absolute;
  top: 20px;
  left: 20px;
}

.s-testimonial-s1 .rating {
  font-size: 25px;
  color: #ffc107;
  margin-bottom: 30px;
}

.s-testimonial-s1 .thumb-info-wrap {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  align-items: center;
}
.s-testimonial-s1 .thumb-info-wrap .thumb {
  flex-shrink: 0;
}
.s-testimonial-s1 .thumb-info-wrap h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: -2px;
}

.testimonial-sec-s2 {
  background: url(../images/backgrounds/testimonial2-bg.png) no-repeat center/cover;
  background-color: #f8f8f8;
}

.s-testimonial-s2 {
  background: #1e6cff;
  border-radius: 6px;
  padding: 50px 50px;
}

.s-testimonial-s2 p {
  font-size: 24px;
  line-height: 41px;
  /* or 171% */
  text-align: center;
  color: #ffffff;
}

.testimonials-s2-nav {
  margin-top: 80px;
}

.s-testimonial-s2-auth .inner {
  text-align: center;
}

.s-testimonial-s2-auth .inner .thumb {
  margin-bottom: 10px;
}
.s-testimonial-s2-auth .inner .thumb img {
  margin: auto;
  opacity: 0.7;
}

.s-testimonial-s2-auth .inner .content {
  bottom: -15px;
  visibility: hidden;
  opacity: 0;
}

.s-testimonial-s2-auth .inner .content .name {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  color: #111111;
  margin-bottom: -3px;
}
.s-testimonial-s2-auth .inner .content .designation {
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #717171;
}

.slick-current.s-testimonial-s2-auth .inner .content {
  visibility: visible;
  opacity: 1;
}
.slick-current.s-testimonial-s2-auth .inner .thumb img {
  opacity: 1;
}

/* responsive */
@media (max-width: 991px) {
  .s-testimonial-s2 p {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .s-testimonial-s2 {
    padding: 30px;
  }
}
/*=== post box ===*/
.post-box-s1 {
  background: #ffffff;
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  transition: 0.25s ease-out;
  padding: 8px;
}
.post-box-s1:hover {
  transform: translateY(-5px);
}
.post-box-s1:hover .thumb img {
  transform: scale(1.08);
}
.post-box-s1:hover .content .title {
  color: #da126a;
}
.post-box-s1:hover .content .f-btn {
  color: #da126a;
}
.post-box-s1:hover .content .f-btn::before {
  width: 100%;
}

.post-box-s1 .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0px 0px;
}
.post-box-s1 .thumb img {
  border-radius: 8px 8px 0px 0px;
  width: 100%;
  transition: 0.25s ease;
}

.post-box-s1 .thumb .p-date {
  background: #da126a;
  position: absolute;
  padding: 4px 11px;
  border-radius: 5px;
  right: 10px;
  top: 10px;
}
.post-box-s1 .thumb .p-date .day {
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  color: #fff;
}
.post-box-s1 .thumb .p-date .month {
  color: #fff;
  line-height: 1em;
}

.post-box-s1 .content {
  padding: 18px 12px 6px;
}

.post-box-s1 .content .author {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 12px;
}
.post-box-s1 .content .author .name {
  color: #222222;
}

.post-box-s1 .content .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
  transition: color 0.25s ease;
}

.post-box-s1 .content .f-btn {
  font-size: 16px;
  line-height: 24px;
  border: 0;
  outline: 0;
  background: none;
  padding: 0;
  font-weight: 400;
  color: #6c798b;
  position: relative;
  transition: color 0.25s ease;
}
.post-box-s1 .content .f-btn svg {
  margin-left: 5px;
}
.post-box-s1 .content .f-btn::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #da126a;
  position: absolute;
  bottom: 3px;
  left: 0;
  transition: all 0.25s ease;
}

/*=== page banner ===*/
.breadcrumbs {
  display: flex;
  justify-content: center;
}
.breadcrumbs li {
  position: relative;
  padding: 0 12px;
}
.breadcrumbs li a {
  font-size: 20px;
  line-height: 32px;
  color: #fff;
}
.breadcrumbs li::after {
  content: "/";
  position: absolute;
  right: -4px;
  top: 0;
  color: #fff;
}
.breadcrumbs li:first-child {
  padding-left: 0;
}
.breadcrumbs li:last-child {
  padding-right: 0;
}
.breadcrumbs li:last-child::after {
  display: none;
}

.page-banner-s1 {
  background: linear-gradient(128.5deg, #d02a7a 0%, #851c91 34.94%, #c21575 76.73%, #da126a 96.65%);
  position: relative;
  z-index: 9;
  padding: 60px 0;
}

.page-banner-s1 .p-banner-inner {
  text-align: center;
}
.page-banner-s1 .p-banner-inner .s-title {
  color: #fff;
  margin-bottom: 10px;
}

.page-banner-s1 .animated-boxes-r li:nth-child(1) {
  width: 110px;
  height: 110px;
  right: 2%;
  top: 0;
}
.page-banner-s1 .animated-boxes-r li:nth-child(2) {
  right: 7%;
}
.page-banner-s1 .animated-boxes-r li:nth-child(3) {
  width: 150px;
  height: 150px;
  top: -15%;
  right: 12%;
}
.page-banner-s1 .animated-boxes-r li:nth-child(4) {
  width: 80px;
  height: 80px;
  right: 0;
  bottom: 0;
}
.page-banner-s1 .animated-boxes-r li:nth-child(5) {
  width: 40px;
  height: 40px;
  right: 20%;
  bottom: 36%;
}
.page-banner-s1 .animated-boxes-r li:nth-child(6) {
  width: 100px;
  height: 100px;
  top: 11%;
  right: 24%;
}

.page-banner-s1 .animated-boxes-l li:nth-child(1) {
  width: 110px;
  height: 110px;
  left: 2%;
  top: 0;
}
.page-banner-s1 .animated-boxes-l li:nth-child(2) {
  left: 7%;
}
.page-banner-s1 .animated-boxes-l li:nth-child(3) {
  width: 150px;
  height: 150px;
  top: -15%;
  left: 12%;
}
.page-banner-s1 .animated-boxes-l li:nth-child(4) {
  width: 80px;
  height: 80px;
  left: 0;
  bottom: 0;
}
.page-banner-s1 .animated-boxes-l li:nth-child(5) {
  width: 40px;
  height: 40px;
  left: 20%;
  bottom: 36%;
}
.page-banner-s1 .animated-boxes-l li:nth-child(6) {
  width: 100px;
  height: 100px;
  top: 11%;
  left: 24%;
}

/*=== accordion ===*/
.accordion-s1 .s-accordion {
  background: #ffffff;
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  margin-bottom: 20px;
}
.accordion-s1 .s-accordion.active {
  background: #da126a;
  padding-bottom: 20px;
}
.accordion-s1 .s-accordion.active .s-accordion__h {
  border-color: rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.accordion-s1 .s-accordion.active .s-accordion__h h3 {
  color: #fff;
}
.accordion-s1 .s-accordion.active .s-accordion__h .icon::after {
  transform: rotate(0deg) translateX(-50%);
}
.accordion-s1 .s-accordion.active .s-accordion__h .icon::before, .accordion-s1 .s-accordion.active .s-accordion__h .icon::after {
  background: #fff;
}
.accordion-s1 .s-accordion.active .s-accordion__b p {
  color: #ffffff;
}

.accordion-s1 .s-accordion > .s-accordion__h {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}
.accordion-s1 .s-accordion > .s-accordion__h h3 {
  transition: 0.15s ease;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #6c798b;
}
.accordion-s1 .s-accordion > .s-accordion__h .icon {
  position: relative;
}
.accordion-s1 .s-accordion > .s-accordion__h .icon::before, .accordion-s1 .s-accordion > .s-accordion__h .icon::after {
  width: 20px;
  height: 4px;
  background: #9a9a9a;
  content: "";
  position: absolute;
  border-radius: 2px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease-in-out;
}
.accordion-s1 .s-accordion > .s-accordion__h .icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.s-accordion__b {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: height 0.35s ease;
}

/* responsive */
@media (max-width: 767px) {
  .accordion-s1 .s-accordion > .s-accordion__h h3 {
    font-size: 16px;
  }
}
/*=== rangle slider ===*/
.range-slilder-container {
  padding-top: 10px;
}

div[data-element=range-slider] {
  display: grid;
  width: min(100%, 300px);
  position: relative;
  z-index: 9;
}

div[data-element=range-slider] > div[data-role=slider-fill] {
  width: auto;
  height: 9px;
  background: #ffbb38;
  position: absolute;
  left: 0;
  right: 50%;
  top: -3px;
  z-index: -1;
}

div[data-element=range-slider]::after {
  content: "";
  width: 100%;
  height: 9px;
  background: #d4d4d4;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -99;
  border-radius: 5px;
}

div[data-element=range-slider] input[type=range] {
  grid-column: 1/-1;
  grid-row: 1/-1;
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  width: 100%;
  background-color: transparent;
  pointer-events: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 3px 10px #cccccc;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 3px 10px #cccccc;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}

p[data-role=slider-output] {
  color: #162b49;
  padding-top: 20px;
}

/*=== header ===*/
header {
  z-index: 999;
}

.t-bar-menu {
  display: flex;
  gap: 30px;
}
.t-bar-menu li {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #162b49;
}

.u-pref-menu {
  display: flex;
  gap: 32px;
}
.u-pref-menu .country {
  display: flex;
  align-items: center;
  gap: 5px;
}

.u-pref-menu li {
  z-index: 99;
}

.u-pref-menu li .nice-select {
  background: none;
  border: none;
  padding: 0;
  padding-right: 12px;
  float: none;
}
.u-pref-menu li .nice-select::after {
  right: 0px;
  width: 7px;
  height: 7px;
  border-color: #162b49;
}
.u-pref-menu li .nice-select * {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #162b49;
}
.u-pref-menu li .nice-select .option {
  display: flex;
  align-items: center;
}

.h-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.h-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.h-bottom-inner .p-left .m-logo {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav > li {
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  color: #162b49;
  cursor: pointer;
}
.main-nav > li.dropdown {
  position: relative;
}
.main-nav > li:hover > a {
  color: #da126a;
}
.main-nav > li:hover .dropdown-container {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.main-nav > li > a {
  padding: 10px;
  transition: 0.2s ease;
}
.main-nav > li .icon {
  margin-left: 6px;
  vertical-align: middle;
}

.dropdown-container {
  position: absolute;
  top: 95%;
  border: 1px solid #e8e8e8;
  z-index: 999;
  min-width: 180px;
  background: #fff;
  transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown-container.dual-col {
  display: flex;
  min-width: 360px;
  justify-content: space-between;
}
.dropdown-container.dual-col > * {
  flex-basis: 50%;
  border-right: 1px solid #e8e8e8;
}

.dropdown-menu li a {
  font-size: 12px;
  border: 1px solid #e8e8e8;
  background: #fff;
  padding: 7px 0;
  padding-left: 20px;
  display: inline-block;
  width: 100%;
  transition: 0.2s ease;
}
.dropdown-menu li a:hover {
  background: #e8e8e8;
}

.dropdown-container.dual-col .dropdown-menu li a {
  border: 0;
  border-bottom: 1px solid #e8e8e8;
  transition: opacity 0.2s ease-in-out, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding-left: 20px;
}
.dropdown-container.dual-col .dropdown-menu li:last-child a {
  border: 0;
}

.h-bottom-inner .p-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
}

.u-avatar {
  display: inline-block;
  margin: 0;
  padding: 0;
  transition: 0.25s ease;
}
.u-avatar:hover {
  opacity: 0.9;
}

.cart-link {
  font-size: 29px;
  color: #162b49;
  position: relative;
  transition: 0.25s ease;
}
.cart-link::before {
  content: attr(data-cart-count);
  width: 17px;
  height: 17px;
  background: linear-gradient(128.5deg, #5e2ad0 0%, #851c91 34.94%, #c21575 76.73%, #da126a 96.65%);
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-32%);
  text-align: center;
  font-size: 9px;
  line-height: 1em;
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
  line-height: 13px;
  transition: 0.25s ease;
}
.cart-link:hover {
  opacity: 0.9;
  color: #162b49;
}
.cart-link:hover::before {
  transform: scale(1.25) translateY(-3px) translateX(-32%);
}

@keyframes headerSlideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header.sticky {
  padding-bottom: 84px;
}

.header.sticky .h-bottom-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0px;
  background: #fff;
  z-index: 99;
  animation: headerSlideIn 600ms ease 0;
  animation-iteration-count: 1;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#m-nav-open,
#m-nav-close {
  border: 0;
  outline: 0;
  background: linear-gradient(128.5deg, #5e2ad0 0%, #851c91 34.94%, #c21575 76.73%, #da126a 96.65%);
  width: 45px;
  height: 45px;
  color: #fff;
  border-radius: 5px;
  font-size: 20px;
  display: none;
}
#m-nav-open:active,
#m-nav-close:active {
  opacity: 0.8;
}

#m-nav-container {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  min-width: 320px;
  transform: translateX(-100%);
  transition: 0.4s ease 0.4s;
}
#m-nav-container::before {
  content: "";
  width: 0;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  left: 0;
  z-index: -1;
  position: fixed;
  top: 0;
  transition: 0.5s ease;
}

#m-nav-container.open {
  transform: translateX(0);
}
#m-nav-container.open::before {
  width: calc(100vw + 320px);
}

#m-nav-container .logo {
  margin-top: 50px;
}

.m-nav-inner {
  padding: 20px;
  height: 100vh;
  overflow-y: scroll;
  background: #fff;
}

#m-nav-container .main-nav {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 30px;
}

#m-nav-container .main-nav li {
  background: #f4f4f4;
}
#m-nav-container .main-nav li:hover .dropdown-container {
  display: block;
}
#m-nav-container .main-nav li .dropdown-container {
  position: initial;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translate(0);
  display: none;
}
#m-nav-container .main-nav li .dropdown-container ul li a {
  background: none;
}

#m-nav-container .t-bar-menu {
  display: none;
}
#m-nav-container .bs-link {
  margin-top: 20px;
  margin-bottom: 20px;
  display: none;
}

#m-nav-container.accent-darkBlue #m-nav-close {
  background: #1E6CFF;
}

.header.accent-lightBlue .cart-link::before {
  background: #1DC9B7;
}
.header.accent-lightBlue .main-nav > li:hover > a {
  color: #1DC9B7;
}
.header.accent-lightBlue #m-nav-open {
  background: #1DC9B7;
}

.header.accent-darkBlue .cart-link::before {
  background: #1E6CFF;
}
.header.accent-darkBlue .main-nav > li:hover > a {
  color: #1E6CFF;
}
.header.accent-darkBlue #m-nav-open {
  background: #1E6CFF;
}

/* header responsive */
@media (max-width: 1199px) {
  .h-bottom-inner .p-center {
    display: none;
  }
  #m-nav-container,
#m-nav-open,
#m-nav-close {
    display: block;
  }
}
@media (max-width: 767px) {
  .h-bottom-inner .p-right .bs-link {
    display: none;
  }
  .h-top-container {
    display: none;
  }
  #m-nav-container .t-bar-menu {
    display: flex;
  }
  #m-nav-container .bs-link {
    display: block;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .h-top-inner .p-left {
    display: none;
  }
  .h-top-inner .p-right {
    width: 100%;
    justify-content: space-between;
  }
  .u-pref-menu {
    width: 100%;
    justify-content: space-between;
  }
  .h-bottom-inner .p-left .logo {
    display: none;
  }
  .h-bottom-inner .p-left .m-logo {
    display: block;
  }
}
/*=== hero ===*/
.hero-s1 {
  background: linear-gradient(128.5deg, #5e2ad0 0%, #851c91 34.94%, #c21575 76.73%, #da126a 96.65%);
  position: relative;
  z-index: 9;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.h-s1-inner {
  text-align: center;
}
.h-s1-inner .h-title {
  font-size: 58px;
  line-height: 78px;
  color: #ffffff;
  margin-bottom: 24px;
}
.h-s1-inner .h-desc {
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
  width: 58%;
  margin: auto;
}
.h-s1-inner .s-bar-s1 {
  margin-top: 50px;
}
.h-s1-inner .counter-sm {
  padding-bottom: 0;
}

.hero-s2 {
  background: url(../images/backgrounds/hero-2.png) no-repeat center/cover;
  position: relative;
  overflow: hidden;
}
.hero-s2 .shapes {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.hero-s2__content {
  position: relative;
}
.hero-s2__content .h-title {
  font-size: 58px;
  line-height: 78px;
  margin-bottom: 20px;
}
.hero-s2__content .h-desc {
  font-size: 20px;
  line-height: 32px;
  padding-right: 80px;
  margin-bottom: 40px;
}
.hero-s2__content .s-bar-s1 .s-bar-inner {
  margin: 0;
}
.hero-s2__content .counter-sm {
  justify-content: flex-start;
}
.hero-s2__content .counter-sm .s-counter {
  border-color: #d9d9d9;
}
.hero-s2__content .counter-sm .s-counter p {
  color: #6C798B;
}
.hero-s2__content .s-bar-s2 .s-bar-inner {
  margin: initial;
}
.hero-s2__content .shape {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-30%, -28%);
  z-index: -1;
}

.hero-s2__thumb {
  margin-right: -130px;
}

.hero-s3 {
  background: #eff5ff;
  padding-top: 50px;
  padding-bottom: 80px;
}

.hero-s3 .p-top {
  background: #eff5ff;
}

.hero-s3 .p-top {
  background: url(../images/backgrounds/hero-3.png) no-repeat center/cover;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  padding: 95px 60px;
}

.hero-s3__thumb {
  text-align: right;
}

.hero-s3__thumb .hero-3__animated-box {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-content: center;
  transform: rotate(45deg) translate(-45px, 45px);
}

.hero-3__animated-box .tag-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero-3__animated-box .box {
  background: #fff;
  border-radius: 10px;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-3__animated-box .box::before, .hero-3__animated-box .box::after {
  position: absolute;
  content: "";
  background: #d9d9d9;
}
.hero-3__animated-box .box::before {
  content: "";
  width: 1px;
  top: 5px;
  height: calc(100% - 10px);
  right: -15px;
}
.hero-3__animated-box .box::after {
  content: "";
  width: calc(100% - 10px);
  height: 1px;
  bottom: -15px;
  left: 5px;
}
.hero-3__animated-box .box:nth-child(2)::before, .hero-3__animated-box .box:nth-child(4)::before {
  display: none;
}
.hero-3__animated-box .box:nth-child(3)::after, .hero-3__animated-box .box:nth-child(4)::after {
  display: none;
}

.hero-s3__content .h-title {
  font-size: 58px;
  line-height: 78px;
  color: #ffffff;
  margin-bottom: 20px;
  width: 90%;
}
.hero-s3__content .h-desc {
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
  margin-bottom: 35px;
  width: 78%;
}
.hero-s3__content .s-bar-inner {
  margin: initial;
}

.hero-s3 .p-bottom {
  margin-top: 40px;
}
.hero-s3 .p-bottom .c-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.hero-s3 .p-bottom .c-container .i-box-s1 .f-btn::before, .hero-s3 .p-bottom .c-container .i-box-s2 .f-btn::before {
  background: #1E6CFF;
}
.hero-s3 .p-bottom .c-container .i-box-s1:hover .f-btn, .hero-s3 .p-bottom .c-container .i-box-s2:hover .f-btn {
  color: #1E6CFF;
}

/*--- responsive ---*/
@media (max-width: 1600px) {
  .hero-s2__thumb {
    margin-right: -130px;
    margin-left: 80px;
  }
  .hero-s3 .p-bottom .c-container {
    grid-template-columns: repeat(5, 1fr);
  }
  .hero-s3 .p-bottom .c-container .i-box-s2:nth-child(6) {
    display: none;
  }
}
@media (max-width: 1399px) {
  .hero-3__animated-box .box {
    width: 120px;
    height: 120px;
  }
  .hero-s1 {
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
  }
}
@media (max-width: 1199px) {
  .hero-s2__thumb {
    margin-right: -100px;
    margin-left: 30px;
  }
  .hero-s2__content .h-title {
    font-size: 42px;
    line-height: 56px;
    margin-bottom: 10px;
  }
  .hero-s2__content .h-desc {
    font-size: 17px;
  }
  .hero-s2__content .s-bar-s2 .s-bar-inner {
    width: 550px;
  }
  .hero-s3 .p-top {
    padding: 60px;
  }
  .hero-s3 .p-bottom .c-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero-s3 .p-bottom .c-container .i-box-s2:nth-child(5) {
    display: none;
  }
}
@media (max-width: 991px) {
  .h-s1-inner .h-title {
    font-size: 42px;
    line-height: 56px;
  }
  .h-s1-inner .h-desc {
    font-size: 17px;
    line-height: 28px;
    width: 80%;
  }
  .s-bar-s1 .s-bar-inner {
    width: 100%;
  }
  .hero-s2__thumb {
    display: none;
  }
  .hero-s3__content .h-title {
    font-size: 42px;
    line-height: 56px;
  }
  .hero-s3 .p-bottom .c-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-items: center;
  }
}
@media (max-width: 767px) {
  .s-bar-s1 .s-bar-inner {
    flex-direction: column;
    width: 100%;
    height: auto;
    background: transparent;
  }
  .s-bar-s1 .s-bar-inner .p-left {
    background: #fff;
    border-radius: 5px;
  }
  .s-bar-s1 .s-bar-inner .nice-select {
    height: 60px;
  }
  .s-bar-s1 .s-bar-inner .btn-frm, .s-bar-s1 .s-bar-inner .btn-frm-s2 {
    width: 100%;
    margin-top: 15px;
    background: #162b49;
    color: #fff;
  }
  .s-bar-s1 .s-bar-inner .btn-frm::after, .s-bar-s1 .s-bar-inner .btn-frm-s2::after {
    display: none;
  }
  .s-bar-s2 .s-bar-inner .btn-frm-s2 {
    color: #fff;
  }
  .hero-s2__content .s-bar-s2 .s-bar-inner {
    width: 100%;
  }
  .hero-s3 .p-top {
    padding: 40px 30px;
  }
  .hero-s3__content .h-title {
    font-size: 42px;
    line-height: 52px;
    width: 100%;
  }
  .hero-s3__content .h-desc {
    width: 100%;
    font-size: 17px;
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .h-s1-inner .h-title {
    font-size: 36px;
    line-height: 46px;
  }
  .h-s1-inner .h-desc {
    width: 100%;
  }
  .hero-s2__content .h-title {
    font-size: 32px;
    line-height: 42px;
  }
  .hero-s3 .p-bottom .c-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .hero-s3__content .h-title {
    font-size: 36px;
    line-height: 44px;
  }
}
/*=== product catagories section ====*/
.catagories-sec-s1 {
  background: #f8f8f8;
}

.catagories-sec-s1 .catagories-sec-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 35px;
}

.catagories-sec-s1.accent-lightBlue .catagories-sec-inner .i-box-s1 .f-btn::before,
.catagories-sec-s1.accent-lightBlue .catagories-sec-inner .i-box-s2 .f-btn::before {
  background: #1DC9B7;
}
.catagories-sec-s1.accent-lightBlue .catagories-sec-inner .i-box-s1:hover .f-btn,
.catagories-sec-s1.accent-lightBlue .catagories-sec-inner .i-box-s2:hover .f-btn {
  color: #1DC9B7;
}

/* catagories responsive */
@media (max-width: 1199px) {
  .catagories-sec-s1 .catagories-sec-inner {
    gap: 25px;
  }
  .catagories-sec-s1 .catagories-sec-inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .catagories-sec-s1 .catagories-sec-inner > .i-box-s1, .catagories-sec-s1 .catagories-sec-inner > .i-box-s2 {
    width: 100%;
  }
  .catagories-sec-s1 .catagories-sec-inner > .i-box-s2 {
    width: 205px;
  }
}
@media (max-width: 991px) {
  .catagories-sec-s1 .catagories-sec-inner {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}
@media (max-width: 575px) {
  .catagories-sec-s1 .catagories-sec-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .catagories-sec-s1 .catagories-sec-inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*=== product gallery ===*/
.product-gallery-s1 {
  background-image: url("../images/backgrounds/product-gallery-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.product-gallery-s1 .s-title {
  width: 65%;
  margin: auto;
}
.product-gallery-s1 .view-all {
  padding-top: 10px;
}
.product-gallery-s1 .view-all .btn {
  padding: 13px 40px;
}

.product-gallery-s1.accent-lightBlue .pro-box-s1 .thumb .price {
  background: #1DC9B7;
}
.product-gallery-s1.accent-lightBlue .pro-box-s1 .thumb .purchas-preview-wrap .b-btn:hover, .product-gallery-s1.accent-lightBlue .pro-box-s1 .thumb .preview:hover {
  color: #1DC9B7;
}
.product-gallery-s1.accent-lightBlue .pro-box-s1 .content .p-meta .catagory {
  color: #1DC9B7;
  background: none;
  -webkit-text-fill-color: #1DC9B7;
}

.product-gallery-s1.accent-darkBlue .pro-box-s1 .thumb .price {
  background: #1E6CFF;
}
.product-gallery-s1.accent-darkBlue .pro-box-s1 .thumb .purchas-preview-wrap .b-btn:hover {
  color: #1E6CFF;
}
.product-gallery-s1.accent-darkBlue .pro-box-s1 .content .p-meta .catagory {
  color: #1E6CFF;
  background: none;
  -webkit-text-fill-color: #1E6CFF;
}

/* responsive */
@media (max-width: 1199px) {
  .product-gallery-s1 .s-title {
    width: 100%;
  }
}
/*=== cta section ===*/
.cta-s1 {
  background-image: url("../images/backgrounds/cta1-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 40px;
  padding-bottom: 15px;
}

.cta-s1 .cta-content {
  padding-left: 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  margin-top: -18px;
}

.cta-s1 .cta-content .s-title {
  color: #fff;
  margin-bottom: 40px;
}
.cta-s1 .cta-content .s-title .t-light {
  font-weight: 400;
}

.cta-s1 .cta-thumb {
  padding-right: 100px;
  position: relative;
  text-align: right;
}
.cta-s1 .cta-thumb .bg {
  position: absolute;
  width: 100%;
  height: 90%;
  top: -20px;
  left: 0;
  object-fit: contain;
}

.cta-s2 {
  background: url(../images/backgrounds/cta2-bg.png) no-repeat center/cover;
  padding: 90px;
}

.cta-s2 .cta-content {
  text-align: center;
}
.cta-s2 .cta-content .s-title {
  color: #fff;
  width: 70%;
  margin: auto;
  margin-bottom: 40px;
}
.cta-s2 .cta-content .s-title .t-light {
  font-weight: 400;
}
.cta-s2 .cta-content .btn {
  padding: 16px 40px;
  border-radius: 50px;
}
.cta-s2 .cta-content .btn:hover {
  color: #F2C94C;
}

.cta-s2.accent-darkBlue {
  background: url(../images/backgrounds/cta3-bg.png) no-repeat center/cover;
}
.cta-s2.accent-darkBlue .cta-content .btn {
  border-radius: 4px;
}

/* responsive */
@media (max-width: 1199px) {
  .cta-s1 .cta-content {
    padding-left: 0;
  }
  .cta-s1 .cta-thumb .bg {
    left: -65px;
  }
}
@media (max-width: 991px) {
  .cta-s1 .cta-thumb {
    padding-right: 0;
  }
  .cta-s1 .cta-thumb .bg {
    left: 0;
  }
  .cta-s2 .cta-content .s-title {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cta-s1 {
    padding: 50px 0px;
  }
  .cta-s1 .cta-content {
    margin: 0;
  }
  .cta-s2 {
    padding: 90px 0;
  }
}
/*=== recent product section ===*/
.recent-products-s1, .recent-products-s2 {
  overflow-x: hidden;
}
.recent-products-s1 .s-title-wrap, .recent-products-s2 .s-title-wrap {
  text-align: left;
  margin-bottom: 0px;
}

.recent-products-s1 .tab-s1, .recent-products-s2 .tab-s1 {
  margin-top: -35px;
  z-index: 9;
  position: relative;
}
.recent-products-s1 .tab-s1 .tab-links, .recent-products-s2 .tab-s1 .tab-links {
  margin-bottom: 55px;
}

.recent-products-s1 .tab-pane .tab-p-inner .p-row, .recent-products-s2 .tab-pane .tab-p-inner .p-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.recent-products-s1 .tab-pane .tab-p-inner .p-row:last-child, .recent-products-s2 .tab-pane .tab-p-inner .p-row:last-child {
  margin-bottom: 0px;
}

.recent-products-s1 .tab-pane .tab-p-inner .p-row .p-item, .recent-products-s2 .tab-pane .tab-p-inner .p-row .p-item {
  width: 92px;
  height: 92px;
  background: #f6e8f3;
  border-radius: 50%;
  text-align: center;
  line-height: 92px;
  transition: 0.2s ease;
}
.recent-products-s1 .tab-pane .tab-p-inner .p-row .p-item:hover, .recent-products-s2 .tab-pane .tab-p-inner .p-row .p-item:hover {
  transform: translateY(-10px);
  opacity: 0.85;
}

.recent-products-s1.accent-darkBlue .tab-s1 .tab-links .tab-btn:hover, .accent-darkBlue.recent-products-s2 .tab-s1 .tab-links .tab-btn:hover,
.recent-products-s1.accent-darkBlue .tab-s1 .tab-links .tab-btn.active,
.accent-darkBlue.recent-products-s2 .tab-s1 .tab-links .tab-btn.active {
  color: #1E6CFF;
}
.recent-products-s1.accent-darkBlue .tab-pane .tab-p-inner .p-row .p-item, .accent-darkBlue.recent-products-s2 .tab-pane .tab-p-inner .p-row .p-item {
  background: #E4EEFF;
}

.recent-products-s2 .tab-s1 .tab-links .tab-btn:hover,
.recent-products-s2 .tab-s1 .tab-links .tab-btn.active {
  color: #1DC9B7;
}
.recent-products-s2 .p-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/*--- responsive ---*/
@media (max-width: 1199px) {
  .recent-products-s1 .s-title-wrap, .recent-products-s2 .s-title-wrap {
    margin-bottom: 45px;
  }
  .recent-products-s1 .tab-s1, .recent-products-s2 .tab-s1 {
    margin-top: 0px;
  }
  .recent-products-s1 .tab-s1 .tab-links, .recent-products-s2 .tab-s1 .tab-links {
    text-align: left;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .recent-products-s1 .tab-pane .tab-p-inner .p-row .p-item:nth-child(8), .recent-products-s2 .tab-pane .tab-p-inner .p-row .p-item:nth-child(8),
.recent-products-s1 .tab-pane .tab-p-inner .p-row .p-item:nth-child(7),
.recent-products-s2 .tab-pane .tab-p-inner .p-row .p-item:nth-child(7) {
    display: none;
  }
  .recent-products-s2 .p-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .recent-products-s1 .tab-pane .tab-p-inner .p-row .p-item:nth-child(6), .recent-products-s2 .tab-pane .tab-p-inner .p-row .p-item:nth-child(6),
.recent-products-s1 .tab-pane .tab-p-inner .p-row .p-item:nth-child(5),
.recent-products-s2 .tab-pane .tab-p-inner .p-row .p-item:nth-child(5) {
    display: none;
  }
}
@media (max-width: 575px) {
  .recent-products-s1 .tab-pane .tab-p-inner .p-row .p-item, .recent-products-s2 .tab-pane .tab-p-inner .p-row .p-item {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
  .recent-products-s1 .tab-pane .tab-p-inner .p-row .p-item img, .recent-products-s2 .tab-pane .tab-p-inner .p-row .p-item img {
    width: 35px;
  }
  .recent-products-s2 .p-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*=== features section ===*/
.features-sec-s1 {
  background-image: url("../images/backgrounds/feature-sec1-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.features-sec-s1 .s-sub-title {
  color: #fff;
}
.features-sec-s1 .s-title {
  color: #fff;
}

.features-sec-s2 {
  position: relative;
}
.features-sec-s2 .feat-box-s1 {
  border: 1px solid #1DC9B7;
}
.features-sec-s2 .feat-box-s1::after {
  background: url(../images/icons/featur1-angle-righ2.png);
}
.features-sec-s2 .shapes .shp-1 {
  position: absolute;
  left: 0;
  top: 0;
}
.features-sec-s2 .shapes .shp-2 {
  position: absolute;
  right: 0;
  bottom: 40px;
}

.features-sec-s2.accent-darkBlue .feat-box-s1 {
  border: 1px solid #1E6CFF;
}
.features-sec-s2.accent-darkBlue .feat-box-s1::after {
  background: url(../images/icons/featur1-angle-righ3.png);
}

/*=== brands section ===*/
.brand-sec-s1 {
  padding-top: 80px;
}

.brand-sec-s1 .brand-sec-inner .b-row {
  display: flex;
  justify-content: center;
  gap: 115px;
}
.brand-sec-s1 .brand-sec-inner .b-row:first-child {
  margin-bottom: 80px;
}
.brand-sec-s1 .brand-sec-inner .b-row img:hover {
  filter: invert(26%) sepia(92%) saturate(6558%) hue-rotate(324deg) brightness(87%) contrast(95%);
}

/*--- responsive ---*/
@media (max-width: 991px) {
  .brand-sec-s1 .brand-sec-inner .b-row {
    gap: 80px;
  }
  .brand-sec-s1 .brand-sec-inner .b-row div:last-child {
    display: none;
  }
}
@media (max-width: 767px) {
  .brand-sec-s1 .brand-sec-inner .b-row {
    gap: 60px;
  }
  .brand-sec-s1 .brand-sec-inner .b-row div:nth-last-child(2) {
    display: none;
  }
}
/*=== downlaod app  ===*/
.d-app-s1, .d-app-s2 {
  background-image: url("../images/backgrounds/app-d-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.d-app-content-s1 .s-title, .d-app-content-s3 .s-title {
  color: #fff;
  margin-bottom: 25px;
}
.d-app-content-s1 .s-title .t-highlight, .d-app-content-s3 .s-title .t-highlight {
  color: #da126a;
}

.d-app-content-s1 p, .d-app-content-s3 p {
  color: #fff;
  margin-bottom: 50px;
}

.d-app-thumb-s1 {
  margin-left: -220px;
  position: relative;
  width: calc(100% + 220px);
  height: 100%;
  overflow: hidden;
}

.d-app-thumb-s1 img {
  position: absolute;
  top: 0;
  right: 0px;
  transform: translateY(-25%);
  width: 100%;
}

.d-app-s2 {
  background-image: url("../images/backgrounds/app-d-bg2.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.d-app-s2 .s-title .t-highlight {
  color: #1DC9B7;
}
.d-app-s2 .d-app-thumb-s1 {
  margin-right: -220px;
  margin-left: initial;
}

.d-app-s3 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.d-app-content-s3 .s-title {
  color: #162b49;
}
.d-app-content-s3 .s-title .t-highlight {
  color: #1E6CFF;
}
.d-app-content-s3 p {
  color: #6C798B;
}

.d-app-thumb-s3 {
  position: relative;
}
.d-app-thumb-s3 .t-img {
  position: absolute;
  left: 0;
  transform-origin: bottom;
}
.d-app-thumb-s3 .bg {
  transform: scale(0.85);
}

/* responsive */
@media (max-width: 991px) {
  .d-app-thumb-s3 {
    text-align: center;
    margin-bottom: 60px;
  }
  .d-app-thumb-s3 .t-img {
    left: 50%;
    transform: translateX(-50%) !important;
  }
}
@media (max-width: 767px) {
  .d-app-s3 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
/*=== blog section ===*/
.blog-sec-s1.accent-lightBlue .post-box-s1 .thumb .p-date {
  background: #1DC9B7;
}
.blog-sec-s1.accent-lightBlue .post-box-s1 .content .f-btn::before {
  background: #1DC9B7;
}
.blog-sec-s1.accent-lightBlue .post-box-s1:hover .content .title {
  color: #1DC9B7;
}
.blog-sec-s1.accent-lightBlue .post-box-s1:hover .content .f-btn {
  color: #1DC9B7;
}

.blog-sec-s1.accent-darkBlue .post-box-s1 .thumb .p-date {
  background: #1E6CFF;
}
.blog-sec-s1.accent-darkBlue .post-box-s1 .content .f-btn::before {
  background: #1E6CFF;
}
.blog-sec-s1.accent-darkBlue .post-box-s1:hover .content .title {
  color: #1E6CFF;
}
.blog-sec-s1.accent-darkBlue .post-box-s1:hover .content .f-btn {
  color: #1E6CFF;
}

/*=== footer ===*/
.footer-sub-s1-inner {
  background-image: url("../images/backgrounds/footer-subs-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
  padding-right: 20px;
  padding-bottom: 20px;
  border-radius: 10px;
}

.footer-sub-s1-inner .content {
  padding-top: 10px;
}
.footer-sub-s1-inner .content > * {
  color: #fff;
}
.footer-sub-s1-inner .content .s-title {
  margin-bottom: 2px;
}
.footer-sub-s1-inner .content p {
  margin-bottom: 35px;
}

.subs-form-s1 {
  width: 508px;
  height: 65px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 30px;
  padding-right: 7px;
}
.subs-form-s1 input {
  border: 0;
  outline: 0;
  flex-basis: 50%;
}
.subs-form-s1 .btn-frm, .subs-form-s1 .btn-frm-s2 {
  background: #da126a;
  height: 51px;
}

.footer-sub-s2-inner {
  text-align: center;
}
.footer-sub-s2-inner .subs-form-s1 {
  margin: auto;
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
}
.footer-sub-s2-inner .subs-form-s1 .btn-frm, .footer-sub-s2-inner .subs-form-s1 .btn-frm-s2 {
  background: #F2C94C;
  color: #162b49;
}
.footer-sub-s2-inner p {
  width: 55%;
  margin: auto;
  margin-bottom: 30px;
}

.accent-darkBlue .footer-sub-s1-inner {
  background: url(../images/backgrounds/footer-subs2-bg.png) no-repeat center/cover;
}
.accent-darkBlue .footer-sub-s1-inner .subs-form-s1 .btn-frm, .accent-darkBlue .footer-sub-s1-inner .subs-form-s1 .btn-frm-s2 {
  background: #F2C94C;
  color: #162b49;
}

.accent-darkBlue .f-menu li a:hover {
  color: #1E6CFF;
}

.footer-m-wrap.accent-darkBlue .f-menu li a:hover {
  color: #1E6CFF;
}

.f-menu li {
  margin-bottom: 10px;
}
.f-menu li a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: 0.2s ease;
}
.f-menu li a:hover {
  color: #da126a;
  text-decoration-color: currentColor;
}

footer .w-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 25px;
}

.footer-stats {
  display: flex;
  min-width: 305px;
}

.footer-stats .s-stat {
  padding: 0 25px;
  border-right: 1px solid #374862;
}
.footer-stats .s-stat h4 {
  color: #da126a;
}
.footer-stats .s-stat p {
  color: #fff;
}
.footer-stats .s-stat:first-child {
  padding-left: 0px;
}
.footer-stats .s-stat:last-child {
  padding-right: 0px;
  border-right: 0px;
}

.footer-stats.accent-darkBlue .s-stat h4 {
  color: #1E6CFF;
}

.footer-s1 {
  background-image: url("../images/backgrounds/footer1-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 130px;
}
.footer-s1 > .container {
  position: relative;
}
.footer-s1 .footer-subs-s1 {
  display: inline-block;
  width: 100%;
  margin-top: -130px;
  overflow: auto;
}

.footer-s1 .footer-m-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-top: 75px;
  padding-bottom: 50px;
}

.footer-s1 .widget-1 .logo {
  margin-bottom: 27px;
}

.widget-4 {
  flex-basis: 30%;
}
.widget-4 > p {
  color: #fff;
  margin-bottom: 40px;
}

.footer-s1 .f-copy-right {
  display: flex;
  justify-content: space-between;
  padding: 35px 0;
}
.footer-s1 .f-copy-right p {
  display: inline-block;
}

.footer-s1 .f-copy-right .s-links {
  margin-right: 20px;
  display: inline-flex;
  justify-content: flex-start;
  gap: 20px;
}

.footer-s1 .f-copy-right .p-right span {
  display: inline-block;
  margin-right: 20px;
  color: #fff;
}
.footer-s1 .f-copy-right .p-right span svg {
  margin-left: 8px;
}

.footer-s1.footer-s2 {
  background: url(../images/backgrounds/footer2-bg.png) no-repeat center/cover;
  padding-top: 90px;
  margin-top: 0;
}

.footer-s1.footer-s2 .w-title {
  color: #162b49;
}

.footer-s1.footer-s2 .f-menu li a {
  color: #6C798B;
}
.footer-s1.footer-s2 .f-menu li a:hover {
  color: #1DC9B7;
}

.footer-s1.footer-s2 .footer-stats .s-stat h4 {
  color: #1DC9B7;
}
.footer-s1.footer-s2 .footer-stats .s-stat p {
  color: #6C798B;
}

.footer-s1.footer-s2 .f-copy-right p {
  color: #162b49;
}
.footer-s1.footer-s2 .f-copy-right .s-links li a {
  color: #162b49;
}

.footer-s1.footer-s2 .widget-4 > p {
  color: #6C798B;
}

/*--- responsive ---*/
@media (max-width: 991px) {
  .footer-s1 .footer-m-wrap {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }
  .footer-s1 .f-copy-right {
    justify-content: center;
  }
  .footer-s1 .f-copy-right .p-right {
    display: none;
  }
  .w-title {
    margin-bottom: 20px;
  }
  .footer-sub-s1-inner .thumb {
    display: none;
  }
  .footer-sub-s2-inner p {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer-sub-s1-inner {
    padding: 10px 25px 25px;
  }
  .footer-sub-s1-inner .thumb {
    display: none;
  }
  .subs-form-s1 {
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0;
    background: transparent;
  }
  .subs-form-s1 > * {
    width: 100%;
  }
  .subs-form-s1 .btn-frm, .subs-form-s1 .btn-frm-s2 {
    margin-top: 20px;
  }
  .subs-form-s1 .btn-frm::after, .subs-form-s1 .btn-frm-s2::after {
    display: none;
  }
  .subs-form-s1 input {
    border-radius: 5px;
    display: inline-block;
    padding: 12px 10px;
  }
  .footer-s1 .footer-m-wrap .widget-1 .logo {
    width: 80%;
  }
  .footer-s1 .footer-m-wrap .widget-2,
.footer-s1 .footer-m-wrap .widget-4 {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .footer-s1 .footer-m-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-s1 .footer-m-wrap .f-widget {
    text-align: center;
  }
  .footer-s1 .footer-m-wrap .widget-1 .logo {
    margin: auto;
    width: 100%;
    margin-bottom: 20px;
  }
  .footer-s1 .footer-m-wrap .widget-4 p {
    padding: 0 20px;
  }
  .footer-s1 .footer-m-wrap .widget-4 .footer-stats {
    justify-content: center;
  }
  .footer-s1 .footer-m-wrap .widget-2,
.footer-s1 .footer-m-wrap .widget-4 {
    padding-left: 0px;
  }
}
/*=== funfact ===*/
.f-facts-s1 {
  background: url(../images/backgrounds/funfact-1.png) no-repeat center/cover;
  padding-top: 100px;
  margin-bottom: 90px;
}
.f-facts-s1 .p-bottom {
  margin-top: 45px;
  margin-bottom: -90px;
  display: inline-flex;
}

.fact-box-s1 {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  position: relative;
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
}
.fact-box-s1 h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 24px;
  margin-bottom: 20px;
}
.fact-box-s1 p {
  margin-bottom: 30px;
}
.fact-box-s1 .icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.fact-box-s1 .btn {
  padding: 16px 40px;
}

.f-facts-s1.accent-darkBlue {
  background: url(../images/backgrounds/funfact-2.png);
}
.f-facts-s1.accent-darkBlue .c-counter-s1 .progress .circle-outer .circle-inner {
  background: #1E6CFF;
}

/* responsive */
@media (max-width: 991px) {
  .f-facts-s1 {
    padding-top: 70px;
  }
}
/*=== about section ===*/
.about-sec-s1 {
  background: #f8f8f8;
}

.about-s1__content .s-title {
  margin-bottom: 10px;
}
.about-s1__content .s-title .highlight {
  color: #da126a;
}
.about-s1__content .desc {
  margin-bottom: 35px;
}

/* responsive */
@media (max-width: 1199px) {
  .about-s1__thumb {
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .about-s1__thumb {
    padding: 0;
    text-align: center;
    padding-bottom: 40px;
  }
}
/*=== team section ===*/
.team-sec-s1 {
  position: relative;
  overflow: hidden;
}
.team-sec-s1 .shapes .shp-1 {
  position: absolute;
  top: 10px;
  left: 0;
}
.team-sec-s1 .shapes .shp-2 {
  position: absolute;
  bottom: 20px;
  right: 0;
}

.team-sec-s1 .team-slider-s1 {
  margin: 0 -12px;
}

.s-team-s1 {
  padding: 0 12px;
}
.s-team-s1 .inner {
  padding: 10px;
  background: #fbecf3;
  border-radius: 4px;
  text-align: center;
}
.s-team-s1 .inner .content {
  padding: 15px 0px;
}
.s-team-s1 .inner .content .name {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #111111;
}
.s-team-s1 .inner img {
  width: 100%;
}
.s-team-s1 .inner:hover .thumb .social-links li {
  visibility: visible;
  opacity: 1;
  transform: translateX(0px);
}

.s-team-s1 .inner .thumb {
  position: relative;
}
.s-team-s1 .inner .thumb .social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.s-team-s1 .inner .thumb .social-links li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fbecf3;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  transition: 250ms ease;
  color: #da126a;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
}
.s-team-s1 .inner .thumb .social-links li a:hover {
  background: #da126a;
  color: #fbecf3;
}
.s-team-s1 .inner .thumb .social-links li {
  transform: translateX(-20px);
  transition: 250ms ease;
  visibility: hidden;
  opacity: 0;
}
.s-team-s1 .inner .thumb .social-links li:nth-child(2) {
  transition-delay: 70ms;
}
.s-team-s1 .inner .thumb .social-links li:nth-child(3) {
  transition-delay: 140ms;
}
.s-team-s1 .inner .thumb .social-links li:nth-child(4) {
  transition-delay: 210ms;
}

/*=== product archive ===*/
.p-archive-main {
  margin-top: 80px;
  padding-bottom: 100px;
  background: url(../images/backgrounds/product-archieve-bg.png) no-repeat center/cover;
}

.p-search-cat {
  margin-bottom: 40px;
}

.p-search-cat .p-catagories {
  line-height: 68px;
  height: 68px;
  border: 1px solid #dedede;
}
.p-search-cat .p-catagories .current {
  color: #162b49;
  font-weight: 500;
}
.p-search-cat .p-catagories .option {
  font-size: 14px;
  min-height: 25px;
  line-height: 30px;
}
.p-search-cat .p-catagories::after {
  right: 18px;
}

.p-archive-listing {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
  margin-bottom: 50px;
}
.p-archive-listing > * {
  padding: 0 12px;
}

.p-archive-sidebar {
  padding-right: 25px;
}

.p-archive-sidebar .w-title {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dcdcdc;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #162b49;
}

.p-archive-sidebar .widget {
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
}

.p-archive-sidebar .widget .list li a:hover {
  color: #da126a;
}

.p-archive-sidebar .p-add > a {
  display: block;
}

/* responsive */
@media (max-width: 1199px) {
  .p-archive-listing {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .p-search-cat .s-bar-s2 .s-bar-inner {
    width: 500px;
  }
  .p-archive-sidebar {
    padding-right: 0px;
  }
  .p-archive-sidebar .p-add {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-search-cat .s-bar-s2 .s-bar-inner {
    width: 100%;
  }
  .p-archive-listing > * {
    width: 100%;
  }
  .p-search-cat .p-catagories {
    margin-top: 20px;
    width: 100%;
  }
  .p-archive-main {
    padding-bottom: 80px;
  }
}
/*=== product detail ===*/
.product-detail-main {
  padding-top: 80px;
  padding-bottom: 80px;
}

.product-thumb-slider {
  padding: 15px;
  background: #ffffff;
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
.product-thumb-slider img {
  width: 100%;
}

.product-thumb-slider-inner {
  position: relative;
}

.product-thumb-slider-inner .slick-arrow {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: none;
  border: 1px solid #da126a;
  color: #da126a;
  position: absolute;
  top: 50%;
  z-index: 9;
  background-color: #e5c4d3;
  transition: 0.15s;
}
.product-thumb-slider-inner .slick-arrow.btn-next {
  right: -32px;
}
.product-thumb-slider-inner .slick-arrow.btn-prev {
  left: -32px;
}
.product-thumb-slider-inner .slick-arrow:hover {
  background: #da126a;
  color: #fff;
}

.product-detail-tab {
  margin-top: 40px;
}
.product-detail-tab .title {
  font-weight: 600;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 10px;
}

.product-detail-tab .description > div {
  margin-bottom: 45px;
}
.product-detail-tab .description > div:last-child {
  margin-bottom: 0px;
}

.product-detail-tab .description p + .i-list {
  margin-top: 25px;
}

.product-detail-tab .description .product-fonts .i-list li a {
  color: #1e6cff;
}

.product-detail-tab .description .disclamer {
  background: #fceef5;
  padding: 20px;
  border-radius: 4px;
}
.product-detail-tab .description .disclamer p .highlight {
  color: #da126a;
}

.product-detail-tab .tab-links {
  text-align: left;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.product-detail-tab .tab-links .tab-btn {
  margin: 0;
  position: relative;
  padding: 10px 0px;
}
.product-detail-tab .tab-links .tab-btn::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #da126a;
  position: absolute;
  left: 0;
  bottom: 0px;
  transition: 0.1s ease;
  visibility: hidden;
  opacity: 0;
}
.product-detail-tab .tab-links .tab-btn.active {
  color: #da126a;
}
.product-detail-tab .tab-links .tab-btn.active::after {
  visibility: visible;
  opacity: 1;
}

.product-detail-tab .comments .pagination {
  padding-top: 20px;
}

.sp-comment .sp-comment {
  padding-left: 140px;
}

.sp-comment-innner {
  background: #f8f8f8;
  padding: 15px 30px 25px;
  margin-bottom: 30px;
}
.sp-comment-innner .p-date {
  color: #da126a;
  margin-bottom: 5px;
}
.sp-comment-innner .c-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sp-comment-innner .c-bottom .auth-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.sp-comment-innner .c-bottom .f-btn {
  font-weight: 500;
  font-size: 18px;
  color: #da126a;
  text-transform: capitalize;
}

.sp-review {
  background: #f8f8f8;
  padding: 15px 30px 25px;
  margin-bottom: 30px;
}
.sp-review:last-child {
  margin-bottom: 0px;
}

.sp-review .rate-date-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.sp-review .rate-date-wrap .date {
  color: #da126a;
}
.sp-review .rate-date-wrap .rating svg {
  font-size: 24px;
  color: #ffa800;
}

.sp-review .auth-detail {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.support-form {
  background: #ffffff;
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 30px 30px 35px;
}

.support-form .form .btn-s6 {
  border: 0;
  outline: 0;
}
.support-form .form .btn-s6::after {
  display: none;
}

.support-form .form .f-bottom {
  text-align: right;
}

.product-detail-sidebar {
  padding-left: 35px;
}

.product-detail-sidebar .w-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 20px;
}

.product-detail-sidebar > div {
  margin-bottom: 30px;
}
.product-detail-sidebar > div:last-child {
  margin-bottom: 0px;
}

.product-detail-sidebar .widget {
  background: #ffffff;
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 30px;
}

.p-pricing-widget {
  background: #da126a;
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  text-align: center;
  padding: 25px 35px 45px;
}

.p-pricing-widget .nice-select {
  background: #da126a;
  border: 0;
  outline: 0;
  float: none;
  display: inline-block;
}
.p-pricing-widget .nice-select .current {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
}
.p-pricing-widget .nice-select::after {
  width: 10px;
  height: 10px;
  display: block;
  margin-top: -8px;
  border-color: #fff;
}
.p-pricing-widget .nice-select .list {
  border-radius: 4px;
  background: #ff2c89;
  border: 1px solid rgba(255, 255, 255, 0.3411764706);
}
.p-pricing-widget .nice-select .list .option {
  color: #fff;
}
.p-pricing-widget .nice-select .list .option:hover,
.p-pricing-widget .nice-select .list .option.focus,
.p-pricing-widget .nice-select .list .option.selected.focus {
  background: none;
}

.p-pricing-widget .p-pricing-content .f-list {
  display: inline-block;
  text-align: left;
  color: #fff;
  margin-right: -10px;
  margin-bottom: 30px;
}
.p-pricing-widget .p-pricing-content .f-list li {
  margin-bottom: 10px;
}
.p-pricing-widget .p-pricing-content .f-list li .icon {
  margin-right: 5px;
}

.p-pricing-widget .p-pricing-content > div {
  display: none;
}
.p-pricing-widget .p-pricing-content > div.active {
  display: block;
}

.p-pricing-widget .p-pricing-content .price {
  font-weight: 600;
  font-size: 80px;
  line-height: 100px;
  color: #ffffff;
  margin-bottom: 30px;
}
.p-pricing-widget .p-pricing-content .price sub {
  font-size: 30px;
}

.p-pricing-widget .p-pricing-content .btn {
  display: block;
}
.p-pricing-widget .p-pricing-content .btn.p-view {
  margin-bottom: 20px;
}
.p-pricing-widget .p-pricing-content .btn.outlined, .p-pricing-widget .p-pricing-content .btn:hover {
  border-color: #fff;
  color: #fff;
}
.p-pricing-widget .p-pricing-content .btn.outlined:hover, .p-pricing-widget .p-pricing-content .btn {
  color: #162b49;
  border-color: #F2C94C;
}

.p-meta-widget ul li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 15px;
}
.p-meta-widget ul li .name {
  font-weight: 500;
  font-size: 18px;
  color: #162b49;
}
.p-meta-widget ul li .tags {
  text-align: right;
  flex-basis: 70%;
}
.p-meta-widget ul li .tags a {
  color: #1e6cff;
}

.p-author-widget .auth-thumb-name-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.p-author-widget .auth-thumb-name-wrap .name {
  font-weight: 600;
  font-size: 24px;
}
.p-author-widget .auth-thumb-name-wrap .date {
  font-size: 17px;
}
.p-author-widget .btn {
  padding: 12px;
  font-size: 17px;
}
.p-author-widget .btn:hover {
  padding: 12px;
}

/* responsive */
@media (max-width: 1399px) {
  .p-author-widget .btn-group {
    flex-direction: column;
  }
  .p-author-widget .btn-group .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1199px) {
  .product-detail-sidebar {
    padding-left: 15px;
  }
  .p-pricing-widget {
    padding: 30px 20px;
  }
  .p-pricing-widget .p-pricing-content .f-list li {
    font-size: 14px;
  }
  .p-pricing-widget .p-pricing-content .price {
    font-size: 60px;
    line-height: 80px;
  }
  .p-meta-widget ul li {
    font-size: 14px;
  }
  .p-meta-widget ul li .name {
    font-size: 16px;
  }
  .product-detail-sidebar .widget {
    padding: 30px 20px;
  }
  .p-author-widget .auth-thumb-name-wrap {
    flex-direction: column;
  }
  .p-author-widget .auth-thumb-name-wrap .content {
    text-align: center;
    margin-top: 10px;
  }
  .p-author-widget .auth-thumb-name-wrap .name {
    font-size: 20px;
  }
  .p-author-widget .auth-thumb-name-wrap .date {
    font-size: 16px;
  }
  .sp-comment .sp-comment {
    padding-left: 80px;
  }
}
@media (max-width: 991px) {
  .product-detail-sidebar {
    padding-left: 0;
    margin-top: 80px;
  }
  .product-detail-tab .title {
    font-size: 22px;
    line-height: 32px;
  }
  .sp-comment .sp-comment {
    padding-left: 40px;
  }
  .sp-comment-innner .c-bottom .auth-detail {
    padding: 15px 15px 20px;
  }
  .sp-comment-innner .c-bottom .auth-detail .name {
    font-size: 18px;
  }
  .sp-review {
    padding: 15px 15px 20px;
  }
  .sp-review .auth-detail h5 {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .product-thumb-slider-inner .slick-arrow.btn-prev {
    margin-left: 15px;
  }
  .product-thumb-slider-inner .slick-arrow.btn-next {
    margin-right: 15px;
  }
  .product-detail-tab .tab-links .tab-btn {
    flex-basis: 25%;
    font-size: 24px;
  }
  .product-detail-tab .tab-links .tab-btn .text {
    display: none;
  }
  .sp-review .rate-date-wrap .rating svg {
    font-size: 16px;
  }
  .sp-review .rate-date-wrap .date {
    font-size: 14px;
  }
  .support-form {
    padding: 30px 20px;
  }
}
/*=== related products ===*/
.related-products-s1 {
  background-color: #f8f8f8;
  padding-bottom: 205px;
  margin-bottom: -120px;
  padding-top: 120px;
}

/* responsive */
@media (max-width: 991px) {
  .related-products-s1 {
    background-color: #f8f8f8;
    padding-bottom: 165px;
    padding-top: 80px;
  }
}
/*=== cart ====*/
.cart-page-main {
  padding-top: 80px;
  padding-bottom: 100px;
}
.cart-page-main.hidden {
  display: none;
}

#empty-msg {
  display: none;
  padding: 60px 0 100px;
}
#empty-msg h2.s-title {
  margin-top: 50px;
  margin-bottom: 45px;
  font-weight: 600;
  font-size: 36px;
  line-height: 38px;
}
#empty-msg .btn::after {
  display: none;
}
#empty-msg.visible {
  display: block;
}

.cart-table {
  box-shadow: 0px 25px 63px rgba(0, 0, 0, 0.05);
}

.cart-table thead {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #162b49;
  background-color: #fbeff5;
}

#cart-products tr {
  border-bottom: 1px solid #ededed;
}
#cart-products tr:last-child {
  border-bottom: 0;
}

.cart-table td {
  padding: 20px 40px;
}

.cart-table .product {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.cart-table .product .p-img {
  border: 4px solid #fcecf3;
}
.cart-table .product .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #222222;
}
.cart-table .product .author {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #da126a;
}

.cart-table .price,
.cart-table .discount,
.cart-table .total {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}
.cart-table .discount {
  color: #eb5757;
}
.cart-table .btn-rm {
  border: 0;
  outline: 0;
  background: none;
  color: #aaaaaa;
  transition: 0.15s ease;
}
.cart-table .btn-rm:hover {
  color: #191919;
}

.cart-page-main-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
}

.cart-discount-form .inner {
  width: 460px;
  display: flex;
  justify-content: space-between;
}
.cart-discount-form .inner input[type=text] {
  flex: 1;
  border: 1px solid #d5d5d5;
  outline: 0;
  border-right-color: transparent;
  color: #797979;
  font-size: 13px;
  padding-left: 30px;
  border-radius: 4px 0px 0px 4px;
}
.cart-discount-form .inner button {
  border: 0;
  background: #da126a;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #fff;
  height: 53px;
  width: 150px;
  border-radius: 4px;
  margin-left: -1px;
}

.cart-total-info {
  margin-top: 20px;
  border: 1px solid #ededed;
  padding: 25px 30px 30px;
}
.cart-total-info > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-total-info > div .value {
  color: #162b49;
}
.cart-total-info > div p {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.cart-total-info > div.sub-total {
  margin-bottom: 20px;
}
.cart-total-info > div.discount {
  margin-bottom: 15px;
}
.cart-total-info > div.discount .value {
  color: #eb5757;
}
.cart-total-info > div.total {
  padding-top: 16px;
  border-top: 1px solid #ededed;
  margin-bottom: 20px;
}
.cart-total-info .btn {
  display: block;
  text-align: center;
}

/* responsvie */
@media (max-width: 991px) {
  .cart-table td {
    padding: 12px;
  }
  .cart-table thead td {
    font-size: 14px;
  }
  .cart-table .product .title {
    font-size: 16px;
    line-height: 24px;
  }
  .cart-page-main-footer > * {
    flex-basis: 48%;
  }
  .cart-discount-form .inner {
    flex-direction: column;
    width: auto;
    gap: 10px;
  }
  .cart-discount-form .inner input[type=text] {
    height: 50px;
    display: block;
    flex: auto;
    border: 1px solid #d5d5d5;
  }
  .cart-discount-form .inner button {
    display: block;
    width: 100%;
  }
  .cart-detail-box .btn-group {
    flex-direction: column;
    gap: 10px;
  }
  .cart-detail-box .btn-group .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
  .cart-total-info {
    padding: 15px 20px;
  }
  .cart-table .price,
.cart-table .discount,
.cart-table .total {
    font-size: 16px;
  }
  #empty-msg {
    padding-bottom: 80px;
  }
  #empty-msg h2.s-title {
    font-size: 30px;
    margin-top: 35px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cart-table-container {
    overflow-x: scroll;
  }
  .cart-table {
    width: 630px;
  }
  .cart-page-main-footer {
    flex-direction: column;
    gap: 30px;
  }
  #empty-msg {
    padding-bottom: 60px;
  }
}
/*=== checkout ===*/
.checkout-page-main {
  padding-top: 80px;
  padding-bottom: 100px;
}

.checkout-contact-details,
.checkout-payment-details {
  box-shadow: 0px 25px 63px rgba(0, 0, 0, 0.05);
}
.checkout-contact-details .form,
.checkout-payment-details .form {
  padding: 0 30px 40px;
}
.checkout-contact-details .header,
.checkout-payment-details .header {
  padding: 20px 30px;
  border-radius: 4px;
  background: #162b49;
  margin-bottom: 22px;
}
.checkout-contact-details .header h2,
.checkout-payment-details .header h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}

.checkout-payment-details .form-footer {
  text-align: center;
}
.checkout-payment-details .form-footer .btn {
  width: 345px;
  margin-bottom: 20px;
}
.checkout-payment-details .form-footer .info {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  width: 70%;
  margin: auto;
}
.checkout-payment-details .form-footer .info a {
  color: #da126a;
}

.checkout-payment-details .tab-links {
  display: flex;
  margin-bottom: 25px;
}
.checkout-payment-details .tab-links .tab-btn {
  flex: 1;
  padding: 20px;
  background: #f7f7f7;
  border: 1px solid #d9d9d9;
  margin: 0;
  position: relative;
  z-index: 1;
}
.checkout-payment-details .tab-links .tab-btn img {
  position: relative;
  z-index: 99;
}
.checkout-payment-details .tab-links .tab-btn::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  background: #da126a;
  pointer-events: none;
  bottom: 0;
  left: 50%;
  z-index: 9;
  transform: rotate(45deg) translateY(50%);
  visibility: hidden;
  opacity: 0;
}
.checkout-payment-details .tab-links .tab-btn.active {
  background: #da126a;
}
.checkout-payment-details .tab-links .tab-btn.active::before {
  visibility: visible;
  opacity: 1;
}

.checkout-page-sidebar .w-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 25px;
}
.checkout-page-sidebar .p-single {
  display: flex;
  gap: 15px;
  padding: 30px 0px;
  border-bottom: 1px solid #d9d9d9;
}
.checkout-page-sidebar .p-single .thumb {
  flex-shrink: 0;
}
.checkout-page-sidebar .p-single .thumb img {
  border: 4px solid #fcecf3;
}
.checkout-page-sidebar .p-single h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
}
.checkout-page-sidebar .p-single span {
  font-size: 14px;
  line-height: 17px;
  color: #da126a;
}
.checkout-page-sidebar .p-single .price {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  color: #162b49;
}
.checkout-page-sidebar .p-single:first-child {
  padding-top: 0;
}
.checkout-page-sidebar .p-single:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.checkout-page-sidebar .order-summary .cart-total-info {
  padding-bottom: 0px;
}

/* responsive */
@media (max-width: 1199px) {
  .checkout-page-sidebar {
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .checkout-page-main {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .checkout-payment-details .form-footer .btn {
    width: 100%;
  }
  .checkout-contact-details .form,
.checkout-payment-details .form {
    padding: 0px 15px 15px;
  }
  .checkout-contact-details .header,
.checkout-payment-details .header {
    padding: 15px 20px;
  }
  .checkout-contact-details .header h2,
.checkout-payment-details .header h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .checkout-contact-details .form,
.checkout-payment-details .form {
    padding: 0px 15px 15px;
  }
  .checkout-payment-details .tab-links .tab-btn {
    padding: 10px;
  }
  .checkout-payment-details .tab-links .tab-btn::before {
    width: 20px;
    height: 20px;
  }
  .checkout-payment-details .form-footer .info {
    width: 100%;
  }
}
/*=== thank you ===*/
.thankyou-main {
  padding-top: 60px;
  text-align: center;
  padding-bottom: 75px;
}
.thankyou-main .s-title {
  margin-top: 35px;
  margin-bottom: 30px;
}
.thankyou-main .btn::after {
  display: none;
}

/*=== blog listing ===*/
.blog-listing {
  padding-top: 100px;
  padding-bottom: 100px;
}
.blog-listing .col-xl-4:has(.post-box-s1) {
  padding-bottom: 25px;
}
.blog-listing .pagination {
  padding-top: 35px;
}

/* responsive */
@media (max-width: 991px) {
  .blog-listing {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
/*=== blog detail ===*/
.blog-detail-main {
  padding-top: 100px;
  padding-bottom: 100px;
}

.blog-detail-main .p-title {
  font-weight: 600;
  font-size: 26px;
  line-height: 38px;
  margin-top: 12px;
  margin-bottom: 16px;
}

.post-content-wrap .p-thumb {
  margin-bottom: 30px;
}
.post-content-wrap .p-thumb img {
  width: 100%;
  border-radius: 2px;
}

.post-content-wrap .p-meta ul {
  display: flex;
  gap: 35px;
}
.post-content-wrap .p-meta ul .icon {
  margin-right: 6px;
  color: #da126a;
}

.post-content-wrap .desc {
  margin-bottom: 40px;
}

.post-content-wrap .img-group {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.post-content-wrap .img-group > * {
  flex-basis: 50%;
}
.post-content-wrap .img-group img {
  width: 100%;
}

.i-list li {
  margin-bottom: 10px;
}
.i-list li .text {
  font-weight: 500;
}

.post-tag-share-wrap {
  padding-top: 20px;
  margin-top: 50px;
  border-top: 1px solid #dcdcdc;
  display: flex;
  justify-content: space-between;
}
.post-tag-share-wrap h4 {
  font-size: 24px;
  color: #162b49;
  margin-right: 15px;
  font-weight: 500;
}
.post-tag-share-wrap .post-tags,
.post-tag-share-wrap .post-share {
  display: flex;
  align-items: center;
}
.post-tag-share-wrap .tags a {
  margin-right: 25px;
  transition: 0.15s ease;
}
.post-tag-share-wrap .tags a:last-child {
  margin-right: 0;
}
.post-tag-share-wrap .tags a:hover {
  color: #da126a;
}

.post-tag-share-wrap .s-links {
  display: flex;
  gap: 12px;
}
.post-tag-share-wrap .s-links li a {
  font-size: 18px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  color: #fff;
  transition: 0.15s ease;
  background: #da126a;
  border: 1px solid #da126a;
}
.post-tag-share-wrap .s-links li a:hover {
  background: #fff;
  color: #da126a;
}

.post-comment-form {
  padding: 25px 30px 30px;
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  margin-top: 50px;
}
.post-comment-form .p-title {
  margin-top: 0;
}
.post-comment-form .f-bottom {
  text-align: right;
}
.post-comment-form .btn {
  border: none;
  outline: none;
}
.post-comment-form .btn::after {
  display: none;
}

.post-comments {
  margin-top: 40px;
}

.blog-detail-sidebar {
  padding-left: 5px;
}
.blog-detail-sidebar .w-title {
  font-size: 24px;
  line-height: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dcdcdc;
}
.blog-detail-sidebar .widget {
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  padding: 30px;
}

.blog-detail-sidebar .search-widget .search-input {
  position: relative;
  background: #f7e8f2;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  margin-top: 20px;
}
.blog-detail-sidebar .search-widget .search-input input,
.blog-detail-sidebar .search-widget .search-input button {
  border: none;
  background: none;
  outline: none;
}
.blog-detail-sidebar .search-widget .search-input button {
  font-size: 25px;
  color: #da126a;
}

.blog-detail-sidebar .l-posts {
  margin-top: 20px;
}
.blog-detail-sidebar .l-posts .sl-post {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.blog-detail-sidebar .l-posts .sl-post .thumb {
  flex-shrink: 0;
}
.blog-detail-sidebar .l-posts .sl-post .thumb img {
  border-radius: 4px;
}
.blog-detail-sidebar .l-posts .sl-post .title {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 6px;
}
.blog-detail-sidebar .l-posts .sl-post .title:hover {
  color: #da126a;
}
.blog-detail-sidebar .l-posts .sl-post p span {
  display: inline-block;
  margin-right: 10px;
  font-size: 13px;
  color: #da126a;
}
.blog-detail-sidebar .l-posts .sl-post:last-child {
  margin-bottom: 0;
}

.blog-detail-sidebar .post-catagories .list {
  margin-top: 20px;
}
.blog-detail-sidebar .post-catagories .list li a {
  display: flex;
  justify-content: space-between;
}
.blog-detail-sidebar .post-catagories .list li a:hover {
  color: #da126a;
}
.blog-detail-sidebar .post-catagories .list li:last-child {
  margin-bottom: 0;
}

.blog-detail-sidebar .post-tags .tags {
  margin-top: 20px;
}
.blog-detail-sidebar .post-tags .tags a {
  padding: 6px 18px;
  background: #f7e8f2;
  border-radius: 3px;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: 0.15s ease;
}
.blog-detail-sidebar .post-tags .tags a:hover {
  background: #da126a;
  color: #fff;
}

.blog-detail-sidebar .news-letter {
  background: url(../images/backgrounds/subs-from-bg.png) no-repeat center/cover;
  position: relative;
  z-index: 9;
}
.blog-detail-sidebar .news-letter::before {
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.blog-detail-sidebar .news-letter p {
  margin-top: 20px;
  color: #fff;
}
.blog-detail-sidebar .news-letter .w-title {
  color: #fff;
}
.blog-detail-sidebar .news-letter .subs-form {
  margin-top: 35px;
}
.blog-detail-sidebar .news-letter input, .blog-detail-sidebar .news-letter button {
  border: none;
  outline: none;
  height: 60px;
  border-radius: 4px;
  display: block;
  width: 100%;
}
.blog-detail-sidebar .news-letter input {
  padding-left: 30px;
  margin-bottom: 15px;
}
.blog-detail-sidebar .news-letter button {
  background: #da126a;
  color: #fff;
}

/* responsive */
@media (max-width: 1199px) {
  .blog-detail-sidebar {
    padding-left: 0px;
    padding-top: 60px;
  }
  .blog-detail-main {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .post-tag-share-wrap {
    flex-direction: column;
    gap: 30px;
  }
  .post-tag-share-wrap .post-tags, .post-tag-share-wrap .post-share {
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .widget {
    padding: 20px;
  }
  .blog-detail-main .p-title {
    font-size: 22px;
    line-height: 34px;
  }
  .post-comment-form {
    padding: 25px 20px 30px;
  }
}
/*=== error ===*/
.error-main {
  padding-top: 90px;
  padding-bottom: 100px;
  text-align: center;
}
.error-main .s-title {
  margin-top: 50px;
  margin-bottom: 45px;
}
.error-main .btn::after {
  display: none;
}

/* responsive */
@media (max-width: 767px) {
  .error-main {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .error-main .s-title {
    margin-top: 40px;
    margin-bottom: 35px;
  }
}
/*=== terms ===*/
.terms-main {
  padding-top: 80px;
  padding-bottom: 65px;
}
.terms-main h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
}
.terms-main p {
  margin-bottom: 35px;
}
.terms-main .list {
  list-style-type: disc;
  padding-left: 20px;
}
.terms-main .list li {
  font-size: 16px;
}
.terms-main .list:last-child {
  padding-bottom: 35px;
}

/*responsive*/
@media (max-width: 767px) {
  .terms-main {
    padding-top: 60px;
    padding-bottom: 35px;
  }
}
/*=== terms ===*/
.privacy-main {
  padding-top: 80px;
  padding-bottom: 65px;
}
.privacy-main h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
}
.privacy-main p {
  margin-bottom: 35px;
}
.privacy-main .list {
  list-style-type: disc;
  padding-left: 20px;
}
.privacy-main .list li {
  font-size: 16px;
}
.privacy-main .list:last-child {
  padding-bottom: 35px;
}

/*responsive*/
@media (max-width: 767px) {
  .privacy-main {
    padding-top: 60px;
    padding-bottom: 35px;
  }
}
/*=== faq ===*/
.faq-sec {
  padding-top: 80px;
  padding-bottom: 100px;
}
.faq-sec .faq-accordion .title {
  padding-bottom: 35px;
}
.faq-sec .faq-contact {
  padding-left: 5px;
}
.faq-sec .faq-contact .btn-s2:hover {
  color: #fff;
  background: #da126a;
  border-color: #da126a;
  opacity: 0.8;
}

/* responsive */
@media (max-width: 991px) {
  .faq-sec {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .faq-sec .faq-contact {
    padding-left: 0px;
    padding-top: 60px;
  }
}
/*=== contact ===*/
.contact-main .title {
  font-weight: 600;
  font-size: 26px;
  line-height: 24px;
  margin-bottom: 12px;
}
.contact-main .desc {
  width: 70%;
}
.contact-main .contact-boxes-wrap {
  margin-top: 20px;
}

.contact-main__form .btn-s2:hover {
  color: #fff;
  background: #da126a;
  border-color: #da126a;
  opacity: 0.8;
}

.contact-boxes-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.contact-boxes-wrap .c-box {
  background: #f8eff6;
  border-radius: 4px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 25px;
  padding-right: 25px;
}
.contact-boxes-wrap .c-box .icon {
  margin-bottom: 15px;
}
.contact-boxes-wrap .c-box h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 8px;
}
.contact-boxes-wrap .c-box.map {
  grid-column: 1/3;
}
.contact-boxes-wrap .c-box.map .box {
  display: flex;
  gap: 20px;
  text-align: left;
  margin-bottom: 20px;
}
.contact-boxes-wrap .c-box.map .map-wrap {
  padding: 5px;
  background: #fff;
  border-radius: 3px;
}
.contact-boxes-wrap .c-box.map .map-wrap iframe {
  width: 100%;
  height: 213px;
}

/* responsive */
@media (max-width: 1199px) {
  .contact-main__form {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .contact-boxes-wrap {
    grid-template-columns: 1fr;
  }
  .contact-boxes-wrap .c-box.map {
    grid-column: auto;
  }
}
@media (max-width: 575px) {
  .contact-boxes-wrap .c-box {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/*=== profile page ===*/
.profile-banner-s1 {
  padding-top: 20px;
}

.profile-banner-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  background: linear-gradient(128.5deg, #5e2ad0 0%, #851c91 34.94%, #c21575 76.73%, #da126a 96.65%);
  padding: 60px 0;
  z-index: 9;
  padding: 60px 40px;
}
.profile-banner-inner .thumb {
  flex-shrink: 0;
}
.profile-banner-inner .thumb img {
  width: 274px;
  height: 274px;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 50%;
}

.profile-banner-inner .content .name {
  font-size: 42px;
  line-height: 57px;
  color: #ffffff;
  margin-bottom: 8px;
}
.profile-banner-inner .content .catagories {
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 20px;
}
.profile-banner-inner .content .rating {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2470588235);
  display: flex;
  gap: 15px;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}
.profile-banner-inner .content .rating .rating-stars {
  color: #ffa800;
}

.profile-banner-inner .ctrl-btns {
  display: flex;
  gap: 15px;
  position: absolute;
  right: 40px;
  top: 40px;
}
.profile-banner-inner .ctrl-btns .profile-btn,
.profile-banner-inner .ctrl-btns .logout-btn {
  background: #fff;
  border-radius: 4px;
  transition: 150ms ease;
}
.profile-banner-inner .ctrl-btns .profile-btn:hover,
.profile-banner-inner .ctrl-btns .logout-btn:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.profile-banner-inner .ctrl-btns .profile-btn {
  font-weight: 500;
  font-size: 20px;
  color: #da126a;
  padding: 10px 25px;
}
.profile-banner-inner .ctrl-btns .profile-btn .icon {
  display: none;
}
.profile-banner-inner .ctrl-btns .logout-btn {
  color: #6c798b;
  font-size: 24px;
  padding: 10px;
}

.profile-banner-inner .animated-boxes-r li:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 0;
  right: -3%;
}
.profile-banner-inner .animated-boxes-r li:nth-child(2) {
  width: 100px;
  height: 100px;
  right: 7%;
  top: 30%;
}
.profile-banner-inner .animated-boxes-r li:nth-child(3) {
  width: 40px;
  height: 40px;
  right: 18%;
  bottom: 40%;
}
.profile-banner-inner .animated-boxes-r li:nth-child(4) {
  width: 150px;
  height: 150px;
  right: 0;
  bottom: -19%;
}
.profile-banner-inner .animated-boxes-r li:nth-child(5) {
  width: 130px;
  height: 130px;
  right: 20%;
  bottom: -10%;
}
.profile-banner-inner .animated-boxes-r li:nth-child(6) {
  width: 120px;
  height: 120px;
  right: 17%;
  top: 0%;
}
.profile-banner-inner .animated-boxes-r li:nth-child(7) {
  right: 32%;
  top: -15%;
  width: 100px;
  height: 100px;
}
.profile-banner-inner .animated-boxes-r li:nth-child(8) {
  width: 120px;
  height: 120px;
  right: 27%;
  top: 29%;
}

.profile-banner-inner .animated-boxes-l li:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 0;
  left: -3%;
}
.profile-banner-inner .animated-boxes-l li:nth-child(2) {
  width: 100px;
  height: 100px;
  left: 7%;
  top: 30%;
}
.profile-banner-inner .animated-boxes-l li:nth-child(3) {
  width: 40px;
  height: 40px;
  left: 18%;
  bottom: 40%;
}
.profile-banner-inner .animated-boxes-l li:nth-child(4) {
  width: 150px;
  height: 150px;
  left: 0;
  bottom: -19%;
}
.profile-banner-inner .animated-boxes-l li:nth-child(5) {
  width: 130px;
  height: 130px;
  left: 20%;
  bottom: -10%;
}
.profile-banner-inner .animated-boxes-l li:nth-child(6) {
  width: 120px;
  height: 120px;
  left: 17%;
  top: 0%;
}
.profile-banner-inner .animated-boxes-l li:nth-child(7) {
  left: 32%;
  top: -15%;
  width: 100px;
  height: 100px;
}
.profile-banner-inner .animated-boxes-l li:nth-child(8) {
  width: 120px;
  height: 120px;
  left: 27%;
  top: 29%;
}

.profile-main {
  padding-bottom: 100px;
}

.profile-tab-links .tab-links {
  border-bottom: 1px solid #bfbfbf;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile-tab-links .tab-links .tab-btn {
  border: none;
  outline: none;
  background: none;
  font-weight: 500;
  font-size: 18px;
  color: #6c798b;
  border-bottom: 1px solid transparent;
  display: inline-block;
  margin-bottom: -1px;
  padding: 20px 0;
}
.profile-tab-links .tab-links .tab-btn.active {
  border-color: #da126a;
  color: #da126a;
}
.profile-tab-links .tab-links .tab-btn .icon {
  margin-right: 5px;
}

.profile-tab {
  padding-top: 40px;
}

.profile-tab .overview > div {
  margin-bottom: 30px;
}
.profile-tab .overview .title {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 15px;
}
.profile-tab .overview .pink {
  color: #da126a;
}
.profile-tab .overview .blue {
  color: #1E6CFF;
}
.profile-tab .overview .spacer {
  padding-top: 30px;
}
.profile-tab .overview .i-list li .text {
  font-weight: 400;
}

.profile-tab .portfolio, .profile-tab .collection {
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-right: -24px;
}
.profile-tab .portfolio > *, .profile-tab .collection > * {
  padding: 0 12px;
}

.purchased-items {
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  padding: 30px 40px;
  padding-bottom: 0px;
}
.purchased-items .t-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid #dcdcdc;
}

.purchased-items .no-items {
  text-align: center;
  padding: 60px 0;
}
.purchased-items .no-items h3 {
  font-weight: 600;
  font-size: 36px;
  line-height: 38px;
  margin: 40px 0;
}
.purchased-items .no-items .btn::after {
  display: none;
}

.purchased-items .purchased-s-item {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid #dcdcdc;
}
.purchased-items .purchased-s-item:last-child {
  border-bottom: 0;
}
.purchased-items .purchased-s-item .p-left {
  display: flex;
  gap: 16px;
}
.purchased-items .purchased-s-item .p-right {
  flex-shrink: 0;
  text-align: right;
}
.purchased-items .purchased-s-item .thumb {
  flex-shrink: 0;
}
.purchased-items .purchased-s-item .thumb img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid #fcecf3;
  border-radius: 2px;
}
.purchased-items .purchased-s-item .title {
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: #222222;
  max-width: 250px;
  margin-bottom: 10px;
}
.purchased-items .purchased-s-item .author {
  font-size: 14px;
  line-height: 17px;
  color: #da126a;
  margin-bottom: 14px;
}
.purchased-items .purchased-s-item .price {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
}
.purchased-items .purchased-s-item .rating {
  font-size: 32px;
  padding-top: 20px;
  color: #ffa800;
}

.profile-tab .collection .pro-box-s1 .thumb .price {
  font-size: 17px;
  width: 38px;
  height: 34px;
  line-height: 12px;
}
.profile-tab .collection .pro-box-s1 .thumb .purchas-preview-wrap .b-btn {
  font-size: 16px;
}
.profile-tab .collection .pro-box-s1 .content {
  padding-left: 0;
  padding-right: 0;
}
.profile-tab .collection .pro-box-s1 .content .p-title {
  font-size: 18px;
}

.settings .profile-settings-form {
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
  padding: 25px 30px 40px;
}
.settings .profile-settings-form .f-bottom {
  text-align: right;
  padding-top: 5px;
}
.settings .profile-settings-form .f-bottom .btn.reset {
  background: none;
  border: none;
  outline: none;
  color: #eb5757;
}

.settings .account-integrations {
  padding-top: 45px;
}
.settings .account-integrations h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dcdcdc;
}
.settings .account-integrations .options-container {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 30px;
}
.settings .account-integrations .option {
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 20px 0;
  border-radius: 4px;
  transition: 150ms ease;
}
.settings .account-integrations .option p {
  padding-top: 5px;
  padding-bottom: 15px;
  font-size: 20px;
  line-height: 32px;
}
.settings .account-integrations .option:hover {
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1);
}
.settings .account-integrations .btn {
  padding: 8px 12px;
  color: #fff;
}
.settings .account-integrations .btn.disconnect {
  background: #162b49;
}
.settings .account-integrations .btn.connect {
  background: #da126a;
}

.profile-sidebar {
  padding-left: 30px;
  padding-top: 40px;
}
.profile-sidebar .widget {
  box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  margin-bottom: 30px;
  padding: 30px;
}
.profile-sidebar .widget:last-child {
  margin-bottom: 0px;
}
.profile-sidebar .w-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 20px;
}

.profile-sidebar .follow {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.profile-sidebar .follow > * {
  padding: 0 40px;
  border-right: 1px solid #d9d9d9;
}
.profile-sidebar .follow > *:last-child {
  border-right: 0;
}
.profile-sidebar .follow .count {
  font-size: 22px;
  line-height: 28px;
  color: #da126a;
}

.profile-sidebar .personal-info ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.profile-sidebar .personal-info ul li .field {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #162b49;
}
.profile-sidebar .personal-info ul li:last-child {
  margin-bottom: 0px;
}

.social-links {
  display: flex;
  gap: 16px;
}
.social-links li a {
  border-radius: 50%;
  transition: 150ms ease;
}
.social-links li a:hover {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

/* responsive */
@media (max-width: 1399px) {
  .profile-banner-inner .animated-boxes {
    display: block;
  }
}
@media (max-width: 1199px) {
  .profile-banner-inner {
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
  }
  .profile-banner-inner .animated-boxes {
    display: none;
  }
  .purchased-items {
    padding: 30px 20px;
  }
  .purchased-items .p-right .btn-s2 {
    font-size: 15px;
  }
  .purchased-items .p-right .rating {
    font-size: 26px;
  }
  .profile-tab-links .tab-links .tab-btn {
    font-size: 16px;
  }
  .profile-sidebar .widget {
    padding: 30px 20px;
  }
  .profile-sidebar {
    padding-left: 10px;
  }
  .settings .account-integrations .options-container {
    gap: 15px;
  }
  .settings .account-integrations .btn.disconnect {
    font-size: 15px;
  }
  .settings .account-integrations .btn.connect {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .profile-sidebar {
    padding-left: 0;
  }
  .profile-tab-links .tab-links .tab-btn .icon {
    margin-left: 0;
    display: block;
  }
  .profile-banner-inner {
    padding: 30px 20px;
  }
  .profile-banner-inner .thumb img {
    width: 220px;
    height: 220px;
  }
  .profile-banner-inner .content .name {
    font-size: 34px;
    margin-bottom: 0;
  }
  .profile-banner-inner .content .catagories {
    font-size: 17px;
    margin-bottom: 15px;
  }
  .profile-banner-inner .ctrl-btns {
    top: 15px;
    right: 15px;
  }
  .profile-banner-inner .ctrl-btns .logout-btn {
    font-size: 18px;
  }
  .profile-banner-inner .ctrl-btns .profile-btn {
    font-size: 18px;
    padding: 12px;
  }
  .profile-banner-inner .ctrl-btns .profile-btn .text {
    display: none;
  }
  .profile-banner-inner .ctrl-btns .profile-btn .icon {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .profile-main {
    padding-bottom: 80px;
  }
  .profile-banner-inner {
    flex-direction: column;
  }
  .profile-banner-inner .content {
    text-align: center;
  }
  .profile-banner-inner .rating {
    justify-content: center;
  }
  .profile-banner-inner .ctrl-btns {
    flex-direction: column;
  }
  .profile-tab-links .tab-links .tab-btn {
    font-size: 24px;
    padding: 15px;
  }
  .profile-tab-links .tab-links .tab-btn .text {
    display: none;
  }
  .profile-tab .overview .title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .profile-tab .overview .spacer {
    padding-top: 20px;
  }
  .profile-tab .portfolio > *,
.profile-tab .collection > * {
    width: 100%;
  }
  .purchased-items .purchased-s-item {
    flex-direction: column;
    gap: 20px;
  }
  .purchased-items .purchased-s-item .title {
    max-width: initial;
  }
  .purchased-items .purchased-s-item .p-right {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .purchased-items .purchased-s-item .p-right .rating {
    font-size: 24px;
  }
  .purchased-items .purchased-s-item .p-right .btn-s2 {
    padding: 0px 16px;
  }
  .settings .account-integrations .options-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .profile-banner-inner .content .name {
    font-size: 26px;
  }
  .profile-banner-inner .content .catagories {
    font-size: 15px;
  }
  .profile-banner-inner .content .rating {
    flex-direction: column;
    gap: 8px;
  }
  .purchased-items .purchased-s-item .p-left {
    flex-direction: column;
  }
  .purchased-items .purchased-s-item .thumb img {
    width: 100%;
    height: 100%;
  }
  .purchased-items {
    padding: 20px 15px;
  }
  .purchased-items .no-items h3 {
    font-size: 28px;
    line-height: 34px;
    margin: 30px 0;
  }
  .settings .profile-settings-form {
    padding: 15px 20px 30px;
  }
}
/*=== author page ===*/
.author-banner {
  padding-top: 20px;
}

.author-banner-inner {
  background: linear-gradient(128.5deg, #5e2ad0 0%, #851c91 34.94%, #c21575 76.73%, #da126a 96.65%);
  text-align: center;
  padding: 90px 20px;
  position: relative;
  z-index: 9;
}
.author-banner-inner .title {
  font-size: 58px;
  line-height: 78px;
  margin-bottom: 40px;
  color: #fff;
}
.author-banner-inner .btn {
  background: #fff;
  color: #da126a;
}
.author-banner-inner .btn:hover {
  box-shadow: 0 5px 8px 0px rgba(0, 0, 0, 0.2);
}

.author-banner-inner .animated-boxes-r li:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 0;
  right: -3%;
}
.author-banner-inner .animated-boxes-r li:nth-child(2) {
  width: 100px;
  height: 100px;
  right: 7%;
  top: 30%;
}
.author-banner-inner .animated-boxes-r li:nth-child(3) {
  width: 40px;
  height: 40px;
  right: 18%;
  bottom: 40%;
}
.author-banner-inner .animated-boxes-r li:nth-child(4) {
  width: 150px;
  height: 150px;
  right: 0;
  bottom: -19%;
}
.author-banner-inner .animated-boxes-r li:nth-child(5) {
  width: 130px;
  height: 130px;
  right: 20%;
  bottom: -10%;
}
.author-banner-inner .animated-boxes-r li:nth-child(6) {
  width: 120px;
  height: 120px;
  right: 17%;
  top: 0%;
}
.author-banner-inner .animated-boxes-r li:nth-child(7) {
  right: 32%;
  top: -15%;
  width: 100px;
  height: 100px;
}
.author-banner-inner .animated-boxes-r li:nth-child(8) {
  width: 120px;
  height: 120px;
  right: 27%;
  top: 29%;
}

.author-banner-inner .animated-boxes-l li:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 0;
  left: -3%;
}
.author-banner-inner .animated-boxes-l li:nth-child(2) {
  width: 100px;
  height: 100px;
  left: 7%;
  top: 30%;
}
.author-banner-inner .animated-boxes-l li:nth-child(3) {
  width: 40px;
  height: 40px;
  left: 18%;
  bottom: 40%;
}
.author-banner-inner .animated-boxes-l li:nth-child(4) {
  width: 150px;
  height: 150px;
  left: 0;
  bottom: -19%;
}
.author-banner-inner .animated-boxes-l li:nth-child(5) {
  width: 130px;
  height: 130px;
  left: 20%;
  bottom: -10%;
}
.author-banner-inner .animated-boxes-l li:nth-child(6) {
  width: 120px;
  height: 120px;
  left: 17%;
  top: 0%;
}
.author-banner-inner .animated-boxes-l li:nth-child(7) {
  left: 32%;
  top: -15%;
  width: 100px;
  height: 100px;
}
.author-banner-inner .animated-boxes-l li:nth-child(8) {
  width: 120px;
  height: 120px;
  left: 27%;
  top: 29%;
}

.author-benefits {
  background: #f8f8f8;
  padding-top: 260px;
  margin-top: -220px;
  padding-bottom: 70px;
  z-index: -1;
}

#author .about-sec-s1 {
  background: #fff;
}

#author .catagories-sec-s1 {
  padding-bottom: 250px;
  margin-bottom: -130px;
}

/* repsonsive */
@media (max-width: 1399px) {
  .author-banner-inner {
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
  }
}
@media (max-width: 1199px) {
  .author-banner-inner .title {
    font-size: 52px;
    line-height: 66px;
  }
}
@media (max-width: 991px) {
  .author-banner-inner .title {
    font-size: 42px;
    line-height: 56px;
  }
}
@media (max-width: 767px) {
  #author .catagories-sec-s1 {
    padding-bottom: 210px;
  }
  .author-banner-inner .title {
    font-size: 34px;
    line-height: 46px;
  }
}
/*=== login ===*/
.login-main {
  padding: 60px 0;
  position: relative;
  background: linear-gradient(128.5deg, #5e2ad0 0%, #851c91 34.94%, #c21575 76.73%, #da126a 96.65%);
  z-index: 9;
}

#login .footer-s1 {
  margin-top: 0px;
}

.login-main__form {
  background: #fff;
  border-radius: 6px;
  width: 570px;
  margin: auto;
}
.login-main__form .inner-wrap {
  padding-bottom: 25px;
}

.login-main__form .forgot-pass-btn {
  color: #da126a;
}
.login-main__form .f-bottom .btn.google {
  border: 1px solid rgba(83, 86, 251, 0.16);
  background: #fafafa;
  color: #a2a8b1;
  margin-bottom: 20px;
}
.login-main__form .f-bottom .btn:first-child {
  margin-bottom: 15px;
}
.login-main__form .f-bottom p {
  text-align: center;
}
.login-main__form .f-bottom p a {
  color: #162b49;
}

/* repsonsive */
@media (max-width: 1399px) {
  .login-main {
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
  }
}
@media (max-width: 767px) {
  .login-main__form {
    width: 100%;
  }
}
/*=== signup ===*/
.signup-main {
  position: relative;
  z-index: 9;
  background: linear-gradient(128.5deg, #5e2ad0 0%, #851c91 34.94%, #c21575 76.73%, #da126a 96.65%);
  padding-top: 60px;
  padding-bottom: 60px;
}

/* responsive */
@media (max-width: 1399px) {
  .signup-main {
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
  }
}
body#home1 > .brand-sec-s1 {
  padding-top: 80px;
}

body#home2 .s-sub-title {
  color: #1DC9B7;
}

body#home3 .s-sub-title {
  color: #1E6CFF;
}

/*# sourceMappingURL=style.css.map */
