

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 26px;
  background: #ffffff;
  font-weight: 400;
}
body::-webkit-scrollbar {
  width: 8px;
}

/* Track */
body::-webkit-scrollbar-track {
  background: #000000;
}

/* Handle */
body::-webkit-scrollbar-thumb {
  background: #e93323;
  border-radius: 10px;
}

ul,
li,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
p {
  font-size: 16px;
  margin-bottom: 15px;
}
a {
  color: #000000;
  text-decoration: none;
  transition: all 0.5s ease;
}
a:hover {
  color: #000000;
}
a:focus {
  outline: 0;
}
img {
  display: block;
  max-width: 100%;
}
input,
textarea,
button,
select {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  background: #ffffff;
  border: 1px solid #000000;
  padding: 0 20px;
}
input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: none;
}
label {
  display: inline-block;
}
h1,
h2,
h3,
h4 {
  color: #000000;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 55px;
  margin-bottom: 30px;
}

h5,
h6 {
  color: #000000;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 15px;
}

/*common-classes*/
.wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
div [class^="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col-10 {
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
  max-width: 10%;
}

.col-20 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.col-25 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-30 {
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 30%;
}

.col-33 {
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
}

.col-40 {
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
}

.col-50 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-60 {
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%;
}

.col-70 {
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  max-width: 70%;
}

.col-80 {
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
  max-width: 80%;
}

.col-90 {
  -ms-flex: 0 0 90%;
  flex: 0 0 90%;
  max-width: 90%;
}

.col-100 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.common-heading {
  color: #000000;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 55px;
  margin-bottom: 30px;
}
.common-heading span {
  color: #e93323;
  display: block;
  font-size: 50px;
  font-weight: 600;
}
.btn {
  font-size: 16px;
  color: #000000;
  position: relative;
  display: inline-block;
  padding: 0 0 0 40px;
  transition: all 0.2s ease;
  text-align: left;
}
.btn:before {
  content: "";
  background: url(../svg/btnarrowblack.svg) no-repeat 50% center;
  height: 30px;
  width: 30px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100px;
  border: 1px solid #000;
  transition: all 0.3s ease;
}
.btn:hover {
  padding: 0 22px;
  padding-right: 44px;
}
.btn:hover:before {
  width: 100%;
  background-color: #e93323 !important;
  border-color: #e93323 !important;
  background: url(../svg/btn_arrow_white.svg) no-repeat 85% center;
}
.btn span {
  position: relative;
  font-size: 14px;
  line-height: 32px;
  font-weight: 600;
  vertical-align: middle;
  color: #000000;
  text-transform: uppercase;
}

.btn.btnWt {
  color: #ffffff;
}
.btn:hover span {
  font-weight: 400;
  color: #ffffff;
}

.btn.btnWt:before {
  background: url(../svg/btn_arrow_white.svg) no-repeat 50% center;
  border: 1px solid #fff;
}

.btn.btnWt span {
  color: #ffffff;
}
.btn.btnWt:hover:before {
  width: 100%;
  background-position: 86% center;
}
.error {
  color: red;
  font-size: 12px;
}
.com-pad {
  padding: 70px 0;
}
.pd-comm-bottom {
  padding-bottom: 70px;
}
.text-center {
  text-align: center;
}

.underline-heading {
  font-size: 14px;
  color: #000000;
  text-decoration: underline;
  line-height: 24px;
  margin-bottom: 6px;
  font-weight: bold;
}
.red-color{color: #e93323;}

.blue-bg {
  background: #010101;
}
.wt-common-heading {
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
.wt-common-heading span {
  color: #e93323;
  font-size: 50px;
  font-weight: 600;
  display: block;
}
.banner-mt {
  margin-top: 82px;
}

/*header*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
  background: #fff;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .lefthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 140px;
  margin: 0;
  transition: all 0.5s ease;
  margin-right: 34px;
  padding: 15px 0;
}

.nav-links {
  transition: all 0.5s ease;
}
.nav-links nav ul {
  display: flex;
}
.nav-links nav li {
  font-size: 14px;
  padding: 0 22px;
  font-weight: 700;
  line-height: 38px;
  text-transform: uppercase;
}
.nav-links nav li:last-child {
  padding-right: 0;
}
.nav-links nav li a {
  color: #1b1c1e;
  background: linear-gradient(to right, #e93323, #e93323, 50%, #1b1c1e 50%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 200%, 100%;
  background-position: 100%;
}
.nav-links nav li:hover a {
  background-position: 0%;
}

.righthead {
  position: relative;
  transition: all 0.5s ease;
}
.righthead .search {
  height: 20px;
  width: 20px;
  display: block;
}
.searchpart {
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.searchpart {
  position: absolute;
  top: -10px;
  right: 0;
  width: 200px;
  overflow: hidden;
  /*width: 0;*/
}
/*.searchpart.active {
  width: 220px;
}*/
.searchpart input {
  border: 0;
  border-bottom: 1px solid #000000;
  background: transparent;
  padding: 0;
  font-size: 14px;
  padding-right: 30px;
}

header.is-sticky {
  background: rgb(255 255 255 / 95%);
  box-shadow: 0 0 7px rgb(195 195 195 / 20%);
}
header.is-sticky .logo {
  padding: 8px 0;
}
.main-div {
  background: #fff;
}
/*humburger-icon*/
.menuBx {
  /*width: 40px;
  height: 46px;
  margin-right: 30px;
  display: block;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  cursor: pointer;*/
  width: 40px;
  height: 46px;
  padding: 6px 0;
  display: block;
  margin-right: 30px;
  cursor: pointer;
}
.menuBx span {
  /*height: 2px;
  display: block;
  background: #1B1C1E;
  margin: 3px 0;
  width: 28px;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);*/
  width: 28px;
  background: #1b1c1e;
  margin: 6px 0 0 0;
  height: 2px;
  display: block;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menuBx:hover span:first-child {
  width: 24px;
}
.menuBx:hover span:nth-child(2) {
  width: 20px;
}
.menuBx:hover span:last-child {
  width: 18px;
}
/*footer*/
footer {
  background: #010101;
  border-top: 1px solid #1a1a1a;
}
footer .fo-linkbx {
  color: #ffffff;
  padding: 70px 0 50px;
}
footer .common-heading {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 25px;
}
footer .common-heading span {
  display: inline-block;
  font-size: 40px;
}

.footer-search-box {
  margin: 25px 0 0;
}
.fo-linkbx .fo-bx .footer-search-box p {
  font-size: 18px;
  line-height: 28px;
}
.form-group {
  margin-bottom: 40px;
}
.footer-search-box .form-group {
  margin-bottom: 24px;
}
.footer-search-box label {
  margin: 9px 0 8px 0;
  font-size: 14px;
}
.fo-search {
  background: #383838;
  height: 45px;
  display: flex;
  max-width: 400px;
}
.fo-search input {
  background: transparent;
  border: none;
  color: #fff;
  height: 45px;
}
.fo-search button {
  width: auto;
  background: #686868;
  border-radius: 0;
  height: 45px;
  border: 0;
}

.footer-search-box .term-con-box label.term-container {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.footer-search-box .term-con-box label.term-container .checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 15px;
  width: 15px;
  border: 1px solid #ffffff;
}
.footer-search-box .term-con-box label.term-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.footer-search-box
  .term-con-box
  label.term-container
  input:checked
  ~ .checkmark {
  background-color: #e93323;
  border-color: #e93323;
}
.footer-search-box .term-con-box label.term-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.footer-search-box
  .term-con-box
  label.term-container
  input:checked
  ~ .checkmark:after {
  display: block;
}
.footer-search-box .term-con-box label.term-container .checkmark:after {
  left: 3px;
  top: 0;
  width: 3px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.social-list ul {
  display: flex;
}
footer .social-list ul {
  flex-wrap: wrap;
  align-items: center;
}
.social-list ul li a {
  margin-right: 40px;
}
.social-list ul li:last-child a {
  margin-right: 40px;
}
.social-list ul li a svg,
.social-list ul li a svg path {
  transform: translateY(0);
  transition: all 0.5s ease-in-out;
}
.social-list ul li a:hover svg path {
  stroke: #cd303e;
}
.social-list ul li a:hover svg {
  transform: translateY(-3px);
}
.fo-contact-detail {
  margin: 20px 0;
}
.fo-contact-detail ul li {
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  position: relative;
  padding: 10px 0 10px 40px;
}
.fo-contact-detail ul li a {
  color: #ffffff;
}
.fo-contact-detail ul li a:hover {
  color: #d13843;
}
.fo-contact-detail ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  background: url(../png/call.png) no-repeat center;
  width: 22px;
  height: 22px;
}
.fo-contact-detail ul li:first-child {
  font-size: 32px;
  line-height: 32px;
}
.fo-contact-detail ul li:nth-child(2):before {
  background: url(../png/mail.png) no-repeat;
  top: 12px;
}
.fo-contact-detail ul li:nth-child(3):before {
  background: url(../png/location.png) no-repeat;
  top: 12px;
}

footer .fo-copyright {
  background: #010101;
  color: #ffffff;
  border-top: 1px solid #505050;
  padding: 10px 0;
}
.footer-logo {
  width: 147px;
}
.footer-logo img {
  width: 100%;
  filter: invert(1);
  -moz-filter: invert(1);
  -webkit-filter: invert(1);
  -moz-filter: invert(1);
}
.fo-copyright .copy-txt,
.fo-linkbx .fo-bx p {
  font-size: 14px;
}
.fo-copyright .copy-links li {
  text-align: right;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  padding-right: 15px;
}
.fo-link li a,
.fo-link h4 a,
.fo-copyright .copy-links li a {
  color: #ffffff;
}
footer .copy-txt.copy-links {
  justify-content: flex-start;
}
footer .copy-txt {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.fo-linkbx .footer-right-side {
  height: 600px;
  overflow-y: auto;
  padding-right: 10px;
}
.fo-linkbx .footer-right-side::-webkit-scrollbar {
  width: 8px;
}
.fo-linkbx .footer-right-side::-webkit-scrollbar-track {
  background: #898989;
  border-radius: 13px;
}
.fo-linkbx .footer-right-side::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 13px;
}

.fo-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-cozy-box {
  background: #ffffff;
  padding: 20px 30px;
  margin-bottom: 40px;
  color: #060606;
}
.footer-right-side .footer-cozy-box:last-child {
  margin-bottom: 0;
}
.fo-get-cozy-content p {
  margin-bottom: 0;
}
.fo-get-cozy-content h6 {
  font-weight: 600;
  font-size: 20px;
  color: #060606;
  line-height: 25px;
}
.footer-cozy-box:hover .fo-get-cozy-content h6 {
  color: #e93323;
}
.fo-get-cozy-content p {
  font-size: 16px;
  color: #060606;
  line-height: 26px;
}
.fo-get-cozy-boz .image {
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  height: 160px;
  width: 160px;
  margin: 0 auto
}
.fo-get-cozy-boz .image img {
  width: 100%;
  height: 100%;
   object-fit: cover;
}
.fo-get-cozy-boz .fo-cozy-link a {
  background: #e93323;
  position: absolute;
  top: 1%;
  right: 10%;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  text-align: center;
  padding: 18px;
}

.fo-get-cozy-boz .fo-cozy-link a img {
  margin: auto;
  width: 100%;
}
/*homepage*/
.mainBanrSec {
  position: relative;
  padding-top: 82px;
}
.mainbannrvideo {
  width: 100%;
  display: block;
}

.mainBanrSec .wrapper {
  position: absolute;
  text-align: right;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  color: #fff;
  font-size: 12px;
  padding-bottom: 20px;
  padding-right: 0;
}

.numbrngSec {
  background: rgb(247,247,247);
  background: linear-gradient(90deg, rgba(247,247,247,1) 0%, rgba(240,240,240,1) 32%, rgba(219,219,219,1) 100%);
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  height: 400px;
}
.numbrngSec .score label {
  line-height: 15px;
  text-transform: uppercase;
  font-size: 11px;
}
.sunnypic {
  position: absolute;
  left: 0;
  bottom: 0;
  top: inherit;
  width: 40%;
}

.numbrngSec .wrapper {
  position: relative;
}
.numbrngSec .note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  padding-left: 40%;
  text-align: right;
  font-size: 12px;
  padding-right: 4%;
  padding-bottom: 10px;
}
.numbrngSec .tagimg {
  position: absolute;
  top: 0;
  left: 4%;
  z-index: 1;
  width: 55px;
}
.counterdiv {
  background: #d7d7db;
  border-radius: 100px;
  width: 60%;
  float: right;
  box-shadow: inset 9px 12px 13px 0px #9a9a9a;
  height: 130px;
  overflow: hidden;
}
.counterdiv .score {
  display: inline-block;
  font-size: 12px;
  color: #000000;
  width: 35%;
  padding: 10px 45px;
  height: 100%;
}
.counterdiv .score.secondbox {
  background: #b3b3b3;
  box-shadow: inset 9px 12px 13px 0px #7f7f7f;
  border-radius: 100px;
  width: 64%;
  vertical-align: top;
}
.counterdiv .score span {
  font-size: 50px;
  display: block;
  font-weight: 600;
  line-height: 70px;
}
.playslider {
  padding-bottom: 50px;
}
.playslider .slick-list {
  padding: 0 20px 0 30px;
}
.playslider .item,
.productlistshow .item,
.other-proslider .item,
.get-ready .item {
  padding: 30px 0 0;
}
.product-wrapper .img-box-pro {
  position: relative;
  margin-bottom: 20px;
}

.product-wrapper:hover .btn {
  padding: 0 22px;
  padding-right: 44px;
}

.product-wrapper:hover .btn:before {
  width: 100%;
  background-color: #e93323 !important;
  border-color: #e93323 !important;
  background: url(../svg/btn_arrow_white.svg) no-repeat 85% center;
}
.product-wrapper:hover .btn span {
  font-weight: 400;
  color: #ffffff;
}
.splashshot {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translate(0, 0) scale(0.5);
}
.product-wrapper:hover .splashshot {
  visibility: visible;
  opacity: 1;
  transform: translate(-20%, -20px) scale(0.9);
}

.packshot {
  transform: translate(0, 0);
  transition: all 0.2s ease-in-out;
  z-index: 1;
  width: 65%;
  margin: 0 auto;
}

.packshot img {
  width: 100%;
}

.product-wrapper:hover .packshot {
  transform: translate(0, -25px);
  filter: drop-shadow(0px 10px 9px rgba(0, 0, 0, 0.17));
  z-index: -1;
}

.bottom-img {
  position: absolute;
  right: -5%;
  bottom: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.5) translate(0, 0);
  transition: all 0.3s ease-in-out;
}

.product-wrapper:hover .bottom-img {
  z-index: 1;
  transform: scale(1.2) translate(0, -10px);
  visibility: visible;
  opacity: 1;
}

.pleasureSec {
  background: url(../png/sunny_bg1.png) no-repeat center bottom;
  background-size: cover;
  padding-top: 100px;
  background-attachment: fixed;
}
.pleasureSec .row {
  justify-content: flex-end;
  align-items: center;
  align-content: center;
}
.pleasureSec .homeHeading h2 span {
  font-weight: 600;
}
.pleasureSec h3 {
  color: #fff;
}
.pleasureSec img {
  max-width: 57%;
  margin: 0 auto;
}

.zipSec {
  position: relative;
}
.zipSec .btn{
  position: absolute;
  left: 50%;
  bottom: 2%;
  z-index: 1;
  transform: translate(-50%, -2%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  transition: transform 2s ease-in-out;
}
.zipSec .btn.btntrans{
  bottom: 8%;
  transform: translate(-50%, -8%);
  opacity: 1;
  visibility: visible;
}
/*.zipSec #destop-zip-video{
  height: 95vh !important;
  top: 68px !important;
}*/
/*.hidebtn {
  opacity: 0;
}
.mainBnrImage img{
 width: 100%;
}*/
/*.zipSec a.btn {
  position: absolute;
  left: 50%;
  z-index: 1;
  transform: translateY(100px);
  transition: all 0.5s ease-in-out;
  transition: transform 2s ease-in-out;
  bottom: -180px;
  margin-left: -77px;
  width: auto;
  opacity: 0;
  visibility: hidden;
}
.zipSec a.btn.btntrans {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  bottom: 180px;
}*/
/*.zipSec {
  overflow: hidden;
}*/

.makeOutSlider {
  position: relative;
}
.makeOutSlider .slick-list {
  padding: 40px 0 0 !important;
  margin: 0 -20px;
}
.makeOutSlider .slick-arrow {
  bottom: inherit;
  top: -6%;
}
.slick-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 40px;
  width: 40px;
  background: #ffffff;
  box-shadow: 0px 4px 6px 3px rgba(0, 0, 0, 0.04);
  border: 0;
  font-size: 0;
  border-radius: 50%;
  text-align: center;
  padding: 0;
  cursor: pointer;
  z-index: 10;
}
.slick-prev.slick-arrow {
  right: 50px;
}
.slick-arrow:before {
  content: "\f105";
  font-family: FontAwesome;
  font-size: 20px;
  color: #000000;
}
.slick-prev.slick-arrow:before {
  content: "\f104";
}
.slick-arrow.slick-disabled:before {
  color: #afafaf;
}

.makeOutSlider h3 {
  font-size: 24px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 0;
}
.makeOutSlider h3 span {
  color: #e93323;
  display: block;
}

.therapistSec {
  background: url(../jpg/therapist_bg.jpg) no-repeat center bottom;
  background-size: cover;
  padding: 120px 0;
  background-attachment: fixed;
}
.cardPart {
  position: relative;
  margin: 0 auto;
  width: 440px;
}

.imgCenter {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 440px;
}
.imgLeft,
.imgRight {
  position: absolute;
  bottom: 12px;
  z-index: 0;
}
.scrollAnim {
  transition: 0.8s;
}

.scrollAnim.anim {
  opacity: 1;
}

.anim-left,
.anim-right,
.anim-bottom {
  transition: all 5s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  width: 100%;
  transition: all 0.5s ease-out;
}

.anim-left {
  left: 0;
}
.anim-right {
  right: 0;
}
.anim-bottom {
  opacity: 0;
}

.anim-left,
.anim-right,
.anim-bottom {
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
}

.anim .anim-left {
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
  left: -134px;
  transition: all 0.5s ease-out;
}
.anim .anim-right {
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
  right: -134px;
  transition: all 0.5s ease-out;
}
.anim-bottom {
  opacity: 0;
}
.anim .anim-bottom {
  opacity: 1;
  transition: all 0.5s ease-out;
}
.anim-bottom.active {
  opacity: 0;
}

@keyframes swing {
  0% {
    right: 0;
  }
  to {
    right: -147px;
  }
}

/*product-listing*/
.innerpage-banner {
  position: relative;
  margin-top: 84px;
}
.innerpage-banner img {
  width: 100%;
}
.innerpage-banner .banner-caption {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 30px 0;
}
.innerpage-banner .banner-caption h1 {
  margin-bottom: 0;
  font-size: 14px;
  color: #ffffff;
  text-transform: unset;
  font-weight: 400;
  line-height: 24px;
}

.innerpage-banner.product-banner .banner-caption {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.innerpage-banner.product-banner .wrapper {
  position: relative;
}
.innerpage-banner.product-banner .banner-caption h1.common-heading {
  position: absolute;
  right: 0;
  top: 5%;
  color: #000000;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 0;
  text-align: right;
}
.innerpage-banner.product-banner .banner-caption h1.common-heading span {
  margin-bottom: 10px;
  line-height: 50px;
}

.innerpage-banner.product-banner .note {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45%;
  padding: 25px 15px;
  display: none;
}

.fixed-strip {
  border-bottom: 0.6px solid #000000;
  background: #fff;
}
.fixed-strip ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.fixed-strip ul li {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  font-weight: 400;
  padding: 14px 24px;
  position: relative;
  text-transform: uppercase;
}
.fixed-strip ul li.current,
.fixed-strip ul li:hover {
  font-weight: 700;
}

.fixed-strip ul li.current:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -1px;
  left: 0;
  width: 100%;
  background: #000000;
  height: 3px;
}

.section.com-pad {
  padding: 40px 0;
}
.headequal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}
.headequal h2 {
  font-weight: 700;
  margin-bottom: 0;
  margin-right: 30px;
}
.headequal p {
  font-size: 14px;
  width: 30%;
  margin-bottom: 0;
}

.productlistshow h4 {
  display: none;
}

.productlistshow .slick-arrow {
  top: -100px;
}

.cat-slider-heading .common-heading {
  margin-bottom: 0;
  font-size: 30px;
  line-height: 40px;
}
.cat-slider-heading .common-heading span {
  font-size: 40px;
}

.get-ready .slick-list {
  padding: 0 20px 0 30px;
}
.get-ready .product-wrapper .packshot {
  width: 65%;
}

.productlistshow .slick-track {
  display: flex;
}
.productlistshow .slick-slide {
  height: inherit !important;
}
.productlistshow .img-ready {
  height: 100%;
  display: flex;
  align-items: center;
}
.productlistshow .cat-slider-heading {
  margin-top: -50px;
  width: 100%;
}
.productlistshow .product-wrapper {
  height: 100%;
}
.productlistshow .slick-track {
  margin-left: 0;
}
.other-proslider .slick-arrow {
  bottom: inherit;
  top: -30px;
}
.other-proslider .slick-list {
  padding: 0 20px 0 30px;
}

/*productdetail*/
.product-detail-section {
  background: #ffffff;
}
.porduct-box {
  padding-left: 110px;
  position: sticky;
  top: 100px;
}
.porduct-box .prodetail-nav {
  width: 94px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 0;
}
.porduct-box .prodetail-nav .slick-prev.slick-arrow {
  top: -30px;
  transform: rotate(90deg);
  left: 30px;
}
.porduct-box .prodetail-nav .slick-next.slick-arrow {
  bottom: -30px;
  transform: rotate(90deg);
  left: 30px;
}
.porduct-box .prodetail-nav .prodetail-item {
  height: 94px;
  width: 94px;
  overflow: hidden;
  padding: 5px;
}
.porduct-box .prodetail-nav .prodetail-item img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.porduct-box .prodetail-nav .prodetail-item.slick-current {
  border: 1px solid #a5a5a5;
}

.porduct-box .prodetail-slider {
  background: #f5f5f5;
}
.porduct-box .product-zoombox {
  height: 500px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}
.porduct-box .product-zoombox img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.porduct-box .product-zoombox .tagimg {
  position: absolute;
  top: 0;
  left: 5%;
  width: 40px;
  height: auto;
  object-fit: unset;
}
.porduct-box .product-zoombox p {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 12px;
  color: #000;
  margin-bottom: 0;
  padding: 0 0 8px 10px;
}
.product-detail-content-box .proname-bx {
  border-bottom: 1px dashed #bababa;
  margin-bottom: 15px;
}
.product-detail-content-box .proname-bx h1,.product-detail-content-box .proname-bx h2 {
  letter-spacing: -0.8px;
  color: #101010;
  margin-bottom: 10px;
  line-height: 45px;
}
.product-detail-content-box .proname-bx p,
.product-detail-content-box .alldescription p {
  font-size: 14px;
  line-height: 24px;
  color: #000000;
}
.product-detail-content-box .alldescription {
  margin-bottom: 24px;
}
.product-detail-content-box .alldescription p:last-child {
  margin-bottom: 0;
}
.product-detail-content-box .features {
  margin-bottom: 14px;
}
.features .common-list li {
  padding: 3px 15px;
}
.common-list.black-ul li {
  color: #000000;
}
.common-list.black-ul li:before {
  background: #000000;
}
.product-detail-content-box .features ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.product-detail-content-box .features li {
  font-size: 14px;
  line-height: 22px;
}
.buy-nowoption ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid #fafafa;
  border-right: 0;
  border-bottom: 0;
}
.buy-nowoption ul li {
  border-right: 1px solid #fafafa;
  border-bottom: 1px solid #fafafa;
  padding: 15px 10px;
  transition: all 0.2s ease-out;
}
.buy-nowoption ul li a {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.buy-nowoption .buy-now-box img {
  margin: 0 auto;
  max-width: 100px;
}
/*.buy-nowoption li:first-child .buy-now-box img{max-width: 120px;}*/
.buy-nowoption ul li:hover {
  background: #f0f0f0;
}

.detail-features {
  position: relative;
  padding-top: 30px;
}
.detail-features:before {
  content: "";
  width: 192px;
  height: 90%;
  background: #f5f5f5;
  opacity: 0.4;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, 0);
  display: none;
}
.feature-heading {
  /* position: absolute;
  right: 44px; */
}

.feature-content-box {
  display: flex;
  align-items: center;
}

.product-feature li:nth-child(even) .feature-content-box {
  flex-direction: row-reverse;
}
.feature-content-box .content {
  width: 500px;
  padding-left: 120px;
  position: relative;
  padding-top: 26px;
}

.product-feature {
  position: relative;
}
.feature-content-box .image {
  position: relative;
}
.feature-content-box .image:before {
  content: "";
  position: absolute;
  right: -112px;
  top: 107px;
  width: 154px;
  height: 42px;
  background: url(../svg/line1.svg) no-repeat;
}
.product-feature ul li:nth-child(2) .feature-content-box .image:before {
  background: url(../svg/line2.svg) no-repeat;
  left: -20px;
  top: 134px;
}
.product-feature ul li:nth-child(2) .feature-content-box .content{
	padding-right: 60px;
    padding-left: 40px;
}
.product-feature ul li:nth-child(4) .feature-content-box .content {
  padding-right: 105px;
  padding-left: 20px;
}
.product-feature ul li:nth-child(3) .feature-content-box .content {
  padding-left: 66px;
  top: 30px;
}
.product-feature ul li:nth-child(3) .feature-content-box .image:before {
  left: inherit;
  top: 100px;
  right: -110px;
}
.product-feature ul li:nth-child(4) .feature-content-box .image:before {
  background: url(../svg/line2.svg) no-repeat;
  left: -86px;
  top: 140px;
}
.product-feature ul li:nth-child(5) .feature-content-box .image {
  margin-top: -190px;
}
.product-feature ul li:nth-child(5) .feature-content-box .image:before {
  background: url(../svg/line5.svg) no-repeat;
  right: -77px;
  top: inherit;
  bottom: 26px;
  width: 112px;
  height: 75px;
}
.product-feature ul li:nth-child(5) .feature-content-box .content {
  padding-left: 58px;
  padding-top: 40px;
}
.feature-content-box h6 {
  font-weight: 700;
}

.feature-content-box p {
  font-size: 14px;
  line-height: 21px;
}

.other-product h2 {
  font-size: 24px;
  line-height: 34px;
}

.pd-lf6 {
  padding-left: 6%;
}

.other-proslider .slick-list {
  padding: 0 20px 0 30px;
}
.other-proslider .slick-track {
  margin-left: 0;
}

/*Blog*/

.travel-banner.banner-txt-position {
  top: inherit;
  bottom: 10%;
}
.blog-listing-section .blog-content .date {
  display: block;
  padding-left: 25px;
  font-size: 14px;
  line-height: 19px;
  color: #787878;
  position: relative;
  margin-bottom: 10px;
}
.blog-listing-section .blog-content .date:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  background: url(../svg/calender.svg) no-repeat;
  width: 19px;
  height: 20px;
  background-size: 17px;
}
.align-center {
  display: flex;
  align-items: center;
}
.sub-heading {
  font-weight: 700;
  font-size: 40px;
  line-height: 54px;
  text-transform: uppercase;
  color: #1b1c1e;
}
.blog-listing-section .blog-content p {
  font-size: 18px;
  line-height: 30px;
  color: #787878;
}
.mt-50 {
  margin-top: 50px;
}
.popular-blog-section .sub-heading {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
}
.popular-blog-box {
  margin-bottom: 60px;
}
.popular-blog-box .blog-content {
  margin-top: 20px;
}
.popular-tags{display: none;}


/*.popular-blog-section .row .col-50:nth-last-child(2) .popular-blog-box,
.popular-blog-section .row .col-50:last-child .popular-blog-box {
  margin-bottom: 0;
}*/
.right-popular-post .sub-heading {
  font-size: 14px;
  line-height: 20px;
}
.right-popular-post .blog-img {
  width: 132px;
}
.right-border-bottom {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.right-border-bottom:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e5e5e5;
}

.right_box {
  margin-bottom: 50px;
}
.right_box h4,
.popular-categories h4 {
  position: relative;
  font-size: 20px;
  color: #000000;
  line-height: 27px;
  margin-bottom: 15px;
}
.right_box h4:after,
.popular-categories h4:after {
  content: "";
  width: 20%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000000;
}
.popular-categories h4 {
  display: inline-block;
}
.popular-categories h4:after {
  width: 30%;
}
.popular-categories {
  margin-bottom: 40px;
}
.tags-ul li {
  border: 1px solid #787878;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.tags-ul li a {
  color: #787878;
  padding: 10px;
  display: block;
}
.tags-ul li:hover a {
  background: #787878;
  color: #ffffff;
}

.popular-list-item {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: 100%;
}
.popular-post-list .popular-list-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.text-blog-popular {
  padding-left: 15px;
}
.imagethumb-popular img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.popular-list-item .text-blog-popular h5 {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 5px;
  font-weight: 600;
}
.popular-list-item a:hover h5 {
  color: #e93323;
}
.popular-list-item .text-blog-popular span.timre-popular,
.single-blog-txt .date {
  background: url(../svg/calender.svg) no-repeat;
  font-size: 14px;
  color: #787878;
  padding-left: 25px;
  padding-bottom: 2px;
  vertical-align: middle;
}
.blog-img img{
  width: 100%
}

.popular-categories li.active a{
    background: #787878;
    color: #ffffff;
}



/*blog-detail*/
.blog-detail-page {
  padding-top: 100px;
}
.blog-detail-page .wrapper {
  padding: 0 11%;
}
.back-btn {
  margin-bottom: 20px;
  position: relative;
  color: #303030;
  display: block;
}
.back-btn:before {
  content: "\f104";
  display: inline-block;
  font-family: FontAwesome;
  margin-right: 15px;
  font-size: 20px;
  line-height: 19px;
}

.blog-detail-page h1.mainblogheading {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  color: #000000;
}
.blog-detail-page h1.mainblogheading span {
  color: #e93323;
}

.blog-publish {
  margin-bottom: 30px;
}
.blog-publish ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-publish ul li {
  color: #303030;
}
.blogimg {
  margin-bottom: 24px;
}
.blogimg img {
  width: 100%;
}
.blog-content {
  margin-bottom: 40px;
}
.blog-detail-page .blog-content h2 {
  font-size: 24px;
  line-height: 30px;
  color: #1b1c1e;
  font-weight: 700;
  text-transform: unset;
  margin: 30px 0 15px;
}
.blog-detail-page .blog-content p {
  color: #787878;
}
.blog-detail-page .blog-content a {
  color: #e93323;
  text-decoration: underline;
}
.popular-categories.mg-bt24 {
  margin-bottom: 24px;
}
.blog-disclaimer {
  background: #f5f5f5;
  padding: 20px 15px;
}
.blog-disclaimer p {
  color: #787878;
  font-size: 13px;
  line-height: 23px;
}
.blog-disclaimer p:last-child {
  margin-bottom: 0;
}

/*loader*/
.loader-container {
  height: 100%;
  display: block;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}
.loader-container img {
  width: 50%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/*top places*/
.makeOutSlider .item-make {
  padding: 0 15px;
}
.div-relative {
  position: relative;
  margin-bottom: 15px;
  height: 270px;
}
.wdfull {
  margin: 0 auto;
}
.makeOutSlider .imgWrp01 .mk-pos,
.makeOutSlider .imgWrp02 .kas-pos,
.makeOutSlider .imgWrp03 .Kerala-pos,
.makeOutSlider .imgWrp07 .mumbai-pos,
.makeOutSlider .imgWrp08 .rishi-pos,
.makeOutSlider .imgWrp10 .karnataka-pos,
.makeOutSlider .imgWrp09 .maharashtra-pos,
.makeOutSlider .imgWrp06 .jibhi-pos {
  position: absolute;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.makeOutSlider .imgWrp01 .wdfull {
  z-index: 2;
  position: relative;
}
.mk-pos.cloud01 {
  top: 14%;
  right: 19%;
  z-index: 1;
}
.mk-pos.cloud02 {
  top: 19%;
  z-index: 3;
  transform: scale(0.8);
  left: -1%;
}
.mk-pos.elmt06 {
  top: 3%;
  left: 37%;
  z-index: 3;
  transform: scale(0.7);
}
.mk-pos.elmt05 {
  top: 23%;
  z-index: 3;
  left: 27%;
  transform: scale(0.8);
}
.mk-pos.elmt07 {
  top: 29%;
  z-index: 3;
  left: 40%;
}
.makeOutSlider .item-make:hover .imgWrp01 .mk-pos.cloud01 {
  right: 16%;
}
.makeOutSlider .item-make:hover .imgWrp01 .mk-pos.elmt07 {
  top: 24%;
  left: 52%;
}
.makeOutSlider .item-make:hover .imgWrp01 .mk-pos.elmt05 {
  transform: scale(1);
}
.makeOutSlider .item-make:hover .imgWrp01 .mk-pos.cloud02 {
  transform: scale(0.9);
  left: -2%;
  top: 16%;
}
.makeOutSlider .item-make:hover .imgWrp01 .mk-pos.elmt06 {
  transform: scale(0.9);
  top: 0;
}

.kas-pos.elmt01 {
  top: 22%;
  left: -2%;
  transform: scale(0.8);
}
.kas-pos.elmt02 {
  top: 6%;
  left: 15%;
  transform: scale(0.6);
}
.kas-pos.elmt03 {
  transform: scale(0.7);
  right: 10%;
  top: 1%;
}
.makeOutSlider .item-make:hover .imgWrp02 .kas-pos.elmt01 {
  transform: scale(1);
}
.makeOutSlider .item-make:hover .imgWrp02 .kas-pos.elmt02 {
  transform: scale(1);
  top: 2%;
  left: 18%;
}
.makeOutSlider .item-make:hover .imgWrp02 .kas-pos.elmt03 {
  transform: scale(1);
}

.Kerala-pos.elmt01 {
  bottom: 2%;
  left: -3%;
}
.Kerala-pos.elmt02 {
  top: 0%;
  left: 5%;
  transform: scale(0.8);
}
.makeOutSlider .item-make:hover .imgWrp03 .Kerala-pos.elmt01 {
  left: -5%;
}
.makeOutSlider .item-make:hover .imgWrp03 .Kerala-pos.elmt02 {
  top: -3%;
  left: 10%;
  transform: scale(1);
}

.makeOutSlider .imgWrp04 .beach {
  position: absolute;
  bottom: -8%;
  left: 0;
  transform: scale(1);
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.makeOutSlider .item-make:hover .imgWrp04 .beach {
  transform: scale(1.05);
}
.makeOutSlider .imgWrp05 .sand-camel {
  position: absolute;
  bottom: -3%;
  left: 0;
  transform: scale(1);
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.makeOutSlider .item-make:hover .imgWrp05 .sand-camel {
  transform: scale(1.05);
}

.mumbai-pos.elmt01 {
  bottom: 2%;
  left: 24%;
}
.mumbai-pos.elmt02 {
  top: 24%;
  right: 0%;
}
.mumbai-pos.elmt03 {
  top: 2%;
  right: 18%;
}
.mumbai-pos.elmt04 {
  top: 22%;
  left: 2%;
}
.makeOutSlider .item-make:hover .imgWrp07 .mumbai-pos.elmt01 {
  left: 30%;
}
.makeOutSlider .item-make:hover .imgWrp07 .mumbai-pos.elmt02 {
  right: -3%;
}
.makeOutSlider .item-make:hover .imgWrp07 .mumbai-pos.elmt03 {
  top: 2%;
  right: 7%;
}
.makeOutSlider .item-make:hover .imgWrp07 .mumbai-pos.elmt04 {
  top: 22%;
  left: 0%;
}

.rishi-pos.elmt01 {
  top: 18%;
  left: 34%;
  z-index: 1;
}
.rishi-pos.elmt02 {
  top: 30%;
  left: -2%;
}
.rishi-pos.elmt03 {
  top: 0;
  right: 10%;
}
.rishi-pos.elmt04 {
  bottom: 19%;
  left: 2%;
  transform: scale(0.8);
}
.makeOutSlider .item-make:hover .imgWrp08 .rishi-pos.elmt01 {
  top: 14%;
  left: 38%;
}
.makeOutSlider .item-make:hover .imgWrp08 .rishi-pos.elmt02 {
  left: -6%;
}
.makeOutSlider .item-make:hover .imgWrp08 .rishi-pos.elmt03 {
  right: 4%;
}
.makeOutSlider .item-make:hover .imgWrp08 .rishi-pos.elmt04 {
  bottom: 19%;
  left: -6%;
  transform: scale(0.9);
}

.karnataka-pos.elmt01 {
  left: 32%;
  top: 0%;
  transform: scale(0.8);
}
.karnataka-pos.elmt02 {
  right: 8%;
  top: 47%;
}
.karnataka-pos.elmt03 {
  right: 18%;
  top: 47%;
}
.karnataka-pos.elmt04 {
  right: 5%;
  top: 23%;
}
.karnataka-pos.elmt05 {
  left: 19%;
  top: 40%;
}
.karnataka-pos.elmt06 {
  right: 16%;
  top: 2%;
}
.karnataka-pos.elmt07 {
  left: 18%;
  top: 5%;
}
.karnataka-pos.elmt08 {
  right: 8%;
  top: 22%;
  z-index: 1;
}
.karnataka-pos.elmt09 {
  left: 0%;
  top: 24%;
}

.makeOutSlider .item-make:hover .imgWrp10 .karnataka-pos.elmt01 {
  z-index: 1;
  top: -5%;
  transform: scale(1);
}

.makeOutSlider .item-make:hover .imgWrp10 .karnataka-pos.elmt02 {
  top: 44%;
}
.makeOutSlider .item-make:hover .imgWrp10 .karnataka-pos.elmt03 {
  top: 44%;
}
.makeOutSlider .item-make:hover .imgWrp10 .karnataka-pos.elmt04 {
  right: 4%;
  top: 25%;
}
.makeOutSlider .item-make:hover .imgWrp10 .karnataka-pos.elmt05 {
  top: 36%;
}
.makeOutSlider .item-make:hover .imgWrp10 .karnataka-pos.elmt06 {
  right: 10%;
}
.makeOutSlider .item-make:hover .imgWrp10 .karnataka-pos.elmt07 {
  left: 12%;
}
.makeOutSlider .item-make:hover .imgWrp10 .karnataka-pos.elmt08 {
  right: 8%;
  top: 22%;
  z-index: 1;
}
.makeOutSlider .item-make:hover .imgWrp10 .karnataka-pos.elmt09 {
  left: -3%;
}

.maharashtra-pos.elmt01 {
  top: 2%;
  right: 11%;
}
.maharashtra-pos.elmt02 {
  top: 10%;
  right: 15%;
}
.maharashtra-pos.elmt03 {
  top: 44%;
  left: -1%;
}
.makeOutSlider .item-make:hover .imgWrp09 .maharashtra-pos.elmt01 {
  right: 7%;
}
.makeOutSlider .item-make:hover .imgWrp09 .maharashtra-pos.elmt02 {
  top: 9%;
  right: 12%;
}
.makeOutSlider .item-make:hover .imgWrp09 .maharashtra-pos.elmt03 {
  left: -5%;
}

.jibhi-pos.elmt01 {
  top: 17%;
  left: 24%;
}
.jibhi-pos.elmt02 {
  top: 3%;
  right: 20%;
}
.jibhi-pos.elmt03 {
  top: 13%;
  left: 14%;
}
.jibhi-pos.elmt04 {
  top: 34%;
  left: 7%;
}
.makeOutSlider .item-make:hover .imgWrp06 .jibhi-pos.elmt01 {
  top: 15%;
  left: 26%;
}
.makeOutSlider .item-make:hover .imgWrp06 .jibhi-pos.elmt02 {
  top: 2%;
  right: 12%;
}
.makeOutSlider .item-make:hover .imgWrp06 .jibhi-pos.elmt03 {
  left: 5%;
}
.makeOutSlider .item-make:hover .imgWrp06 .jibhi-pos.elmt04 {
  top: 32%;
  left: 9%;
}

/*travel*/
.exploreplaces h1, .exploreplaces h2 {
  margin-bottom: 15px;
}

/*page-not-found*/
.pagenotfound {
  margin-top: 83px;
  background: #fff;
  min-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #000;
  position: relative; 
}
.pagenotfound:before {
  content: "";
  background: url("../png/red-circle-page-not-found.png") no-repeat;
  height: 176px;
  width: 176px;
  position: absolute;
  top: -80px;
  right: 0;display: none;
  transform: rotate(180deg);
}
.pagenotfound:after {
  content: "";
  background: url("../png/red-circle-page-not-found.png") no-repeat;
  height: 176px;
  width: 176px;
  position: absolute;
  bottom: -80px;
  left: 0;display: none;
}

.pagenotfound h1 {
  color: #000;
  font-size: 150px;
  line-height: 150px;
  letter-spacing: 7px;
  margin-bottom: 8px;
}
.pagenotfound h4 {
  color: #000;
  font-size: 40px;
  margin-bottom: 15px;
  text-transform: unset;
}
.pagenotfound p {
    font-size: 24px;
    color: #000;
    font-weight: 700;
    margin-bottom: 40px;    
}
.pagenotfound .wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  padding-bottom: 50px;
}
.pagenotfound .wrapper:before {
  content: "";
  background: url("../png/pattern-red.png");
  height: 100px;
  width: 100px;
  position: absolute;
  right: 2%;
  top: 0;display: none;
}
.pagenotfound .wrapper:after {
  content: "";
  background: url("../png/pattern-red.png");
  height: 100px;
  width: 100px;
  position: absolute;
  left: 2%;
  bottom: 0;display: none;
}
.pagenotfound .thankyou {
  padding:   0;
}
.pagenotfound .thankyou img { 
    margin: 0 auto;
    margin-bottom: 20px;
}
.pagenotfound .btn {
    padding: 0 22px;
    padding-right: 44px;color: #fff;
}
.pagenotfound  .btn:before {
    width: 100%;
    background-color: #e93323 !important;
    border-color: #e93323 !important;
    background: url(../svg/btn_arrow_white.svg) no-repeat 91% center;height: 44px;
}
.pagenotfound .btn span { 
    line-height: 46px; 
    color: #fff; 
}

/*search*/
.search-banner {
  margin-top: 83px;
  background: #ffffff;
}
.search-bar {
  padding: 70px 0 0;
}
.search-result-txt {
  text-align: center;
  margin-bottom: 45px;
}
.search-result-txt .src-txt1 {
  margin-top: 40px;
  font-weight: 400;
  font-size: 24px;
}
.search-result-txt .src-txt1 span {
  color: #e93323;
  font-weight: 600;
}
.search-prd-box {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 8px;
  margin-bottom: 24px;
}
.search-prd-list .wrapper {
  max-width: 1044px;
}
.search-prd-list .search-prd-box {
  border-bottom: 0;
}
.search-prd-box h2 {
  font-size: 24px;
  font-weight: 700;
  color: #e93323;
  margin-bottom: 15px;
  line-height: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}
.search-prd-box h2:after {
  content: "";
  background: #e93323;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.search-prd-box p {
  color: #303030;
}
.search-bar .search-input-box {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.search-bar .search-input-box input {
  border: 1px solid #d9d9d9;
  padding-right: 45px;
}
.search-bar .search-input-box button {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: #e93323;
  border: 0;
  padding: 12px;
  z-index: 1;
  cursor: pointer;
}

.full-btn {
  color: #787878;
  border-color: #787878;
  font-weight: 700;
  transition: all 0.5s ease;
  cursor: pointer;
}

.full-btn:hover {
  color: #ffffff;
  background: #787878;
}
.serch-filter-tabs {
  margin-top: 45px;
}
.serch-filter-tabs li {
  display: inline-block;
  margin-right: 50px;
  font-size: 16px;
}
.serch-filter-tabs li:last-child {
  margin-right: 0;
}
.serch-filter-tabs li a {
  color: #303030;
  border: 1px solid #303030;
  padding: 5px 20px;
}
.serch-filter-tabs li.active-search a {
  background: #e93323;
  border-color: #e93323;
  color: #ffffff;
  font-weight: 700;
}

/*about*/
.aboutSec .col-100.my-60 {
  margin-bottom: 0 !important;
}
.about-mfc-image .about-head {
  position: absolute;
  left: 40px;
  top: 40px;
  display: none;
}
.about-mfc-image {
  position: relative;
}

.about-mfc-image .about-head h2,
.about-mfc-image .about-head h2 span {
  font-size: 28px;
  line-height: 30px;
}
.disclaimer-box p {
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  transform: skew(-348deg);
  margin-bottom: 0;
}
.disclaimer-box {
  background: #ffffff;
  border: 1px solid #c4c4c4;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  padding: 30px 50px;
  transform: skew(348deg);
  margin: 20px;
}
.my-60 {
  margin: 60px 0;
}
.note-about p {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  color: #303030;
}
.disclaimer-box p span {
  color: #e93323;
  font-weight: bold;
}
.about-mfc-content .common-heading {
  margin-bottom: 19px;
}
.aboutMankindSec {
  background: url(../png/about-mankind-bg.png) no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.numscrlSec li span {
  font-weight: 700;
  font-size: 50px;
  line-height: 68px;
}
.numscrlSec li {
  border-bottom: 1px solid #ffffff;
  text-align: right;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.numscrlSec li:last-child {
  border-bottom: none;
}
.aboutMankindSec .about-manking-left {
  max-width: 500px;
}
.aboutMankindSec .about-manking-left p {
  opacity: 0.7;
}
.other-product-heading-area {
  text-align: center;
  max-width: 80%;
  margin: 0 auto 60px;
}
.other-product-heading-area h2 {
  margin-bottom: 10px;
}
.othrProSec .partner-slider .pr-item .pr-img img {
  filter: grayscale(100%);
  margin: 0 auto;
}
.othrProSec .partner-slider .pr-item .pr-img:hover img {
  filter: grayscale(0);
}

.pd-zero {
  padding-top: 0;
}
.auditnote {
  font-size: 14px;
  line-height: 24px;
  margin-top: 20px;
}

/*sunnyside*/
.with-fancybox .fancybox__container {
  z-index: 10500;
}
.innerpage-banner.sunnyside-banner .travel-banner {
  left: inherit;
  right: 0;
  width: 100%;
  text-align: right;
  top: 45%;
}
.innerpage-banner.sunnyside-banner .travel-banner .wrapper {
  position: relative;
}
.innerpage-banner.sunnyside-banner .travel-banner h1.common-heading {
  color: #ffffff;
  padding-right: 8%;
}
.ads-video {
/*  height: 490px;*/
/*  overflow: hidden;*/
  background: #000;
}
.ads-video img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ads-video a {
  position: relative;
  display: block;
  height: 100%;
}
.ads-video a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(../png/play-icon.png) no-repeat;
  height: 80px;
  width: 80px;
  background-size: 100% 100%;
  transform: translate(-50%, -50%);
  display: block;
}
.sunny-video-area .slider-nav-video .play-txt {
  display: none;
}
.sunny-video-area .slider-nav-video .item.slick-current .play-txt {
  display: block;
}
/*sitemap*/
.privacy-tabs {
  background: #ffffff;
}
.sitemap-box ul li {
  margin-bottom: 40px;
  font-weight: 600;
}
.sitemap-box ul li a {
  position: relative;
  padding-bottom: 3px;
  text-transform: uppercase;
}
.sitemap-box ul li a:after {
  content: "";
  width: 0;
  height: 1px;
  background: #e93323;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.5s;
}
.sitemap-box ul li a:hover {
  color: #e93323;
}
.sitemap-box ul li a:hover:after {
  width: 25px;
}
.sitemap-box ul li:last-child {
  margin-bottom: 0;
}
.sitemap-box .sub-site-list {
  margin-top: 25px;
}
.sitemap-box .sub-site-list li {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 18px;
  position: relative;
  padding-left: 29px;
}
.sitemap-box .sub-site-list li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 19px;
  height: 0.1px;
  background: #000;
}

/*instructions-for-use*/
.travel-banner.instruct-banner {
  top: 10%;
  left: 0;
  text-align: center;
  width: 100%;
  display: block;
}
.travel-banner.instruct-banner h1 {
  margin-bottom: 10px;
  display: none;
}
.travel-banner.instruct-banner .scrl-down {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
  color: #1b1c1e;
   display: none;
}
.instruct-heading h2 {
  font-size: 50px;
}
.instruct-heading h2 span {
  display: inline;
}
.instruction .wrapper {
  padding: 0 6%;
}
.instruct-steps-section .steps-box .right-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.instruct-steps-section .steps-box .left-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.instruct-right-side {
  width: 75%;
}
.instruct-right-side p{
  text-align: justify;
}
.steps-box {
  margin-bottom: 70px;
}
.instruct-steps-section .steps-box:nth-child(odd) .left-box {
  order: 1;
}
.instruct-steps-section .steps-box:nth-child(odd) .right-box {
  order: 2;
}
.instruct-steps-section .steps-box:nth-child(even) .left-box {
  order: 2;
  justify-content: flex-end;
}
.instruct-steps-section .steps-box:nth-child(even) .right-box {
  order: 1;
  justify-content: flex-start;
}
.instruct-right-side .number {
  font-weight: 700;
  font-size: 120px;
  line-height: 165px;
  color: #e93323;
}
.instruct-steps-section .steps-box {
  margin-bottom: 70px;
}
.instruct-steps-section .steps-box:last-child {
  margin-bottom: 0;
}
.mfc-does-section {
  background: #1b1c1e;
  color: #fff;
}
.mfc-does-section .com-do-dont h3 {
  color: #ffffff;
  text-align: center;
}
.mfc-does-section .disclaimer-box {
  background: rgb(255 255 255 / 70%);
  padding: 20px 30px;
  margin-top: 50px;
}
.mfc-does-section .disclaimer-box p {
  font-size: 14px;
  line-height: 24px;
}
.mfc-does-section .disclaimer-box span {
  font-weight: 600;
  color: #000000;
}
.mfc-does-section .wrapper {
  background: url(../png/like-dislikethumb.png) no-repeat center center;
}
.mfc-does-section .com-do-dont ul {
  border-left: 1px solid rgb(255 255 255 / 30%);
  border-top: 1px solid rgb(255 255 255 / 30%);
  width: 90%;
  padding-top: 50px;
  position: relative;
}
.mfc-does-section .com-do-dont ul:after {
  content: "";
  background: rgb(255 255 255 / 30%);
  position: absolute;
  right: 0;
  top: 0;
  height: 60%;
  width: 1px;
}
.com-do-dont {
  padding-left: 20px;
}
.com-do-dont.dont-box {
  padding-left: 0;
  padding-right: 20px;
}
.com-do-dont.dont-box ul {
  margin: 0 0 0 auto;
  border-left: 0;
  border-top: 1px solid rgb(255 255 255 / 30%);
  border-right: 1px solid rgb(255 255 255 / 30%);
}
.mfc-does-section .com-do-dont.dont-box ul:after {
  right: auto;
  left: 0;
}
.mfc-does-section .com-do-dont li {
  position: relative;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  padding: 0 90px 0 60px;
  margin-bottom: 40px;
  margin-left: -20px;
}
.mfc-does-section .com-do-dont li:after {
  content: "";
  height: 40px;
  width: 40px;
  background: #2cac41 url(../svg/tick-green.svg) no-repeat center center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.mfc-does-section .com-do-dont.dont-box li {
  text-align: right;
  padding: 0 60px 0 90px;
  margin-left: 0;
  margin-right: -20px;
}
.mfc-does-section .com-do-dont.dont-box li:after {
  left: auto;
  right: 0;
  background: #e93323 url(../svg/cross-points.svg) no-repeat center center;
}
/*FAQ*/
.selctCat.faq-cat p {
  color: #fff;
  margin-bottom: 30px;
}
.selctCat.faq-cat li.active a {
  background: #fff;
  color: #010101;
}
.selctCat.faq-cat {
  margin: 30px auto;
  text-align: center;
}
.faq-filter-section {
  max-width: 80%;
  margin: 0 auto;
}
.search-box {
  max-width: 42%;
  margin: 0 auto;
  position: relative;
  height: 40px;
  background: var(--white);
  padding: 0 20px;
  border-radius: 100px;
}
.search-box input {
  background: transparent;
  border-radius: 0;
  border: none;
  height: 44px;
  padding-left: 30px;
}
.search-box:before {
  content: "";
  position: absolute;
  left: 19px;
  top: 12px;
  background: url(../svg/faq-search.svg) no-repeat;
  width: 20px;
  height: 20px;
  background-size: 16px 20px;
}
.sub-heading-content p,
.sub-heading-content ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
/*.prodetail-slider .img-ready {
  height: auto;
}*/
.product-detail-section {
  margin-top: 64px;
}
body {
  overflow-x: hidden;
}
.other-proslider .get-box {
  min-height: 320px;
}
.error {
  color: red;
  font-size: 12px;
}
.page-not-foundbx {
  padding: 200px 0 150px 0;
}
.hideM {
  display: none;
}
.faQsCls {
  max-width: 80%;
  margin: 0 auto;
}
.faQsCls.accordion .accordion-item {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 44px;
  margin-bottom: 30px;
  padding: 16px 45px 16px 35px;
}
.faQsCls.accordion .btn {
  margin: 0 auto;
  display: block;
  max-width: 132px;
}
.selctCat h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #ffffff;
  margin-bottom: 30px;
}
.selctCat ul li {
  display: inline-block;
}
.selctCat ul li a {
  color: #fff;
  padding: 8px 22px;
  border: 1px solid #ffffff;
  border-radius: 100px;
  text-align: center;
  margin-right: 18px;
  margin-bottom: 15px;
  display: block;
}
.askTheSexSec .col-lg-8 {
  padding-left: 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.askTheSexSec .accordion {
  /*height: 439px;*/
  max-height: 439px;
  overflow-y: auto;
  padding-right: 70px;
}
.askTheSexSec .accordion::-webkit-scrollbar {
  width: 8px;
}

.askTheSexSec .accordion::-webkit-scrollbar-track {
  background-color: #EEEEEE;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.askTheSexSec .accordion::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #E93323;
}
.accordion-item {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
}
.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion-collapse {
  display: none;
  padding-top: 10px;
}
.accordion-item:last-of-type {
  border: 0;
}
.accordion-collapse li {
  color: #ffffff;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}
.accordion-collapse li:after {
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 10px;
}
.accordion-header {
  position: relative;
  color: #fff;
  cursor: pointer;
}
.accordion-header strong {
  display: block;
  font-weight: 700;
  color: #e93323;
  margin-bottom: 10px;
}
.accordion-item .accordion-header:before {
  position: absolute;
  width: 21px;
  height: 12px;
  top: 50%;
  right: -15px;
  content: "";
  display: inline-block;
  background: url(../svg/down-arrow.svg) no-repeat center center;
  margin-top: -6px;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.accordion-item .accordion-header.current:before {
  transform: rotate(180deg);
}
.accordion-collapse p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #fff;
}
.accordion-collapse p:last-child {
  margin-bottom: 0;
}
.no-banner {
  padding-top: 160px !important;
}

.search-box {
  background: #ffffff;
  border-radius: 34px;
  max-width: 454px;
  height: 44px;
  margin-top: 40px;
}
.counterdiv .score span {
  display: inline-block !important;
}
.faQsCls .no-record{
	text-align: center;
	color: #fff
}



/*Talk sex*/
/*.askTheSexSec {
  background: url(../img/bg_sexologist.png) no-repeat center top;
  background-size: cover;
}*/
.askTheSexSec {
	background: #ffffff
}
.border-left {
  border-left: 0.5px solid #9e9e9e;
}
.askQuestionAra .input textarea {
  border: 1px solid #000000;
  border-radius: 36px;
  width: 298px;
  height: 32px;
  background: transparent;
  color: #000000;
  resize: none;
  line-height: 30px;
}
.askQuestionAra ::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}
.askQuestionAra {
  margin-top: 40px;
}
.askQuestionAra .input {
  display: flex;
}
.submitbtn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  width: auto;
  height: auto;
  margin-left: 20px;
}
.submitbtn:hover:before {
  z-index: -1;
}
.selctCat li.active a {
  background: #fff;
  color: #010101;
}
.askQuestionAra {
  position: relative;
}
.askQuestionAra .error {
  position: absolute;
  top: 100%;
  left: 0;
}
.askQuestionAra .message-box-frmAskQuestion {
  color: #1af300;
  font-size: 12px;
  position: absolute;
  top: 100%;
  left: 0;
}
.askTheSexSec .accordion-header strong{
	text-transform: uppercase;
}
.askTheSexSec .accordion-header, .askTheSexSec .accordion-collapse p, .askTheSexSec .accordion-collapse ul li{
	color: #303030
}
.askTheSexSec .accordion-collapse li:after{
	background: #303030
}
.askTheSexSec .accordion-item{
	border-bottom: 0.5px solid rgb(48 48 48 / 20%);
}
.askTheSexSec .accordion-item:last-child{
	border-bottom: 0;
}
.askTheSexSec .submitbtn{
	color: #000000;
}
.askTheSexSec .submitbtn:hover{
	color: #ffffff;
}
.askTheSexSec .selctCat h2{
	font-size: 18px;
	color: #000000
}
.askTheSexSec .selctCat ul li a{
	color: #000000;
	border-color: #000000;
	text-transform: uppercase;
	padding: 6px 20px;
}
.askTheSexSec .accordion-item .accordion-header:before{
	background: url(../svg/black-accordian-arrow.svg) no-repeat center center;
}
.askTheSexSec .selctCat ul li.active a{
    position: static;
    color: #fff;
    background: #000000;
    font-weight: 600;
}



/*popup modal*/
.modal {
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .modal-dialouge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  z-index: 9;
  height: 90%;
  overflow: hidden;
}
.modal .modal-dialouge img {
  margin: 0 auto;
  height: 100%;
 /* width: 100%;*/
  width: auto;
/*  object-fit: contain;*/
}
.modal .shots-images {
  height: 100%;
  width: auto;
}
.modal .close {
  position: absolute;
  top: 0;
  left: 50%;
  background: #ffffff;
  border: 1px solid #e93323;
  border-radius: 110px;
  width: 32px;
  height: 32px;
  color: #e93323;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  line-height: 30px;
  transform: translate(-50%, 0);
}
.download-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.download-link a {
  background: #fff;
  position: relative;
  padding: 15px 27px;
  padding-left: 50px;
  text-align: center;
  text-transform: uppercase;
  color: #e93323;
  border-radius: 68px;
  font-weight: 600;
}
.download-link a:hover {
  color: #e93323;
}
.download-link a:before {
  content: "";
  position: absolute;
  left: 18px;
  top: 26%;
  background: url(../svg/download.svg) no-repeat;
  width: 20px;
  height: 20px;
}
.image-view {
  display: none;
}

/*thankyou-page*/
.thankyou-box {
  min-height: 550px;
  margin-top: 83px;
  padding: 80px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: url(../jpg/thankyou-heart.jpg);
  text-align: center;
}
.thankyou-box h2.common-heading {
  font-size: 80px;
  font-weight: 600;
}
.thankyou-box h2.common-heading span {
  display: inline;
  font-size: 80px;
}
.thankyou-box p {
  font-size: 18px;
  margin-bottom: 40px;
}
.btn-thank {
  background: #e93323;
  padding: 15px 50px;
  color: #ffffff;
  border-radius: 32px;
  border: 1px solid #e93323;
}
.btn-thank:hover {
  color: #e93323;
  border: 1px solid #e93323;
  background: #fff;
}

/*contact-us*/
.getintouch .contactForm {
  padding-left: 18%;
}
.contactinfo-div {
  background: #1b1c1e;
  position: relative;
  z-index: 1;
}
.contactForm .form-group input,
.contactForm .form-group textarea {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #000000;
  margin-top: 10px;
}
.contactForm .form-group textarea {
  height: 80px;
  resize: none;
}
.contactForm .btn {
  border: 0;
  max-width: 145px;
  padding: 0 0 0 40px;
}
.contactForm .btn:before {
  top: 3px;
}
.contactinfo-div:after {
  content: "";
  height: 20px;
  width: 100%;
  position: absolute;
  top: -2px;
  left: 0;
  z-index: -1;
  background: #ffffff;
}
.contact-iframe {
  height: 100%;
}
.contact-iframe iframe {
  width: 100%;
  height: 100%;
}
.address-information {
  padding: 80px 0 40px;
  color: #ffffff;
}
.address-information .common-heading {
  color: #ffffff;
  font-size: 50px;
  margin-bottom: 16px;
}
.address-information .common-heading span {
  display: inline;
}
.address-information ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
}
.address-information ul li:first-child {
  max-width: 22%;
  flex: 0 0 22%;
  -ms-flex: 0 0 22%;
  margin-left: 0;
}
.address-information ul li {
  max-width: 35%;
  flex: 0 0 35%;
  -ms-flex: 0 0 36%;
  margin-left: 24px;
  border: 1px solid #2f2e2e;
  padding: 12px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  word-break: break-word;
}
.address-information ul li span {
  font-weight: 600;
  margin-bottom: 35px;
  position: relative;
  width: 100%;
  padding-top: 8px;
}
.address-information ul li span:after {
  content: "";
  background: #2f2e2e url(../png/call.png) no-repeat center;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 0;
  top: 0;
}
.address-information ul li a {
  color: #ffffff;
}
.address-information ul li a:hover{
  color: #e93323;
}
.address-information ul li:nth-child(2) span:after {
  background-image: url(../png/mail.png);
}
.address-information ul li:last-child span:after {
  background-image: url(../png/location.png);
}
.iconbox {
  background: url(../png/contact-animate.png) no-repeat;
  height: 80px !important;
  width: 80px !important;
  animation: png-animation 3s steps(5) forwards;
  animation-iteration-count: infinite;
  position: absolute;
  left: 0;
  top: 0;
}
.animation-icon {
  position: relative;
  padding-left: 90px;
}

@keyframes png-animation {
  to {
    background-position: -400px 0px;
  }
}
.sunny-cal-slider .slick-track {
  padding: 0 150px;
}

.aboutMankindSec {
  overflow-x: hidden;
}

/*Navigation*/

.navigation.nav-open ul li a {
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
}
.navigation.nav-open ul li a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #fff;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
}
.navigation.nav-open ul li a:hover {
  opacity: 0.7;
  color: #e1e1e1;
  letter-spacing: 0.06em;
}
.navigation.nav-open ul li a:hover:before {
  width: 100%;
}
.navigation.nav-open ul li {
  margin-bottom: 25px;
}
.navigation .mfc-logo {
  position: absolute;
  top: 10px;
  left: 56px;
}
.navigation .mobilelinks{
  display: none;
}

/*Menu section*/
body.body-red {
  overflow: hidden;
  background-color: #e93323;
}
.main-div {
  z-index: 10000;
  transition: transform 0.5s;
  position: relative;
  box-shadow: 0 0 15em 3em rgb(0 0 0 / 20%);
}
.main-div.translate-div {
  height: 100vh;
  transform: scale(0.8) translate(30%);
}
.navigation {
  height: 100%;
  color: #fff;
  align-items: center;
  padding: 0 3.8em;
  transition: transform 0.5s;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
  transform: translate(-100%);
}
.navigation.nav-open {
  z-index: 999999;
  width: 35%;
  transform: translate(0);
}
.navigation .close-nav {
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: -6%;
  display: none;
}
.navigation .close-nav .inner-close {
  width: 5.27em;
  height: 5.27em;
  cursor: pointer;
  background-color: #fff;
  border-radius: 100em;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 0 2em 0.5em rgb(0 0 0 / 20%);
  transition: all 0.5s ease-in-out;
  transform: translateY(0px);
}
.navigation .close-nav .inner-close:hover {
  transform: translateY(-10px);
}

.navigation .close-nav .inner-close span {
  color: #e93323;
  font-size: 50px;
}

/*gotop*/
.gotop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  height: 50px;
  width: 50px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  -moz-backdrop-filter: blur(2.5px);
  -o-transition: blur(2.5px);
  border-radius: 50%;
  z-index: 12;
  font-size: 25px;
  line-height: 50px;
  text-align: center;
  transition: all 2s ease-in-out;
  overflow: hidden;
  opacity: 0;
}
.gotop i {
  transition: all 0.5s ease-in-out;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gotop i:last-child {
  transform: translateY(300%);
}
.gotop:hover i:first-child {
  transform: translateY(-300%);
}
.gotop:hover i:last-child {
  transform: translate(-50%, -50%);
}
.showgoto {
  opacity: 1;
}
.desktop-view {
  display: block;
}
.mobile-view {
  display: none;
}

/*Sunny side*/
.grid-shot {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  height: 500px;
  gap: 4px;
}
.grid-shot .shot-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.grid-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.imgshot {
  height: 250px;
}
.sunny-shot-slider,
.sunny-shot-collage-slider,
.sunny-cal-slider {
  padding-bottom: 60px;
}
.sunny-cal-slider .cal-img {
  padding: 10% 2%;
}
.cal-img img {
  /*    transform: rotateY( 52deg ) skew(-19deg, 0deg);*/
  transform: perspective(500px) rotateY(-10deg);
  width: 90%;
  margin: 0 auto;
}

.sunny-card-game {
  background: #f5f5f7;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
}
.sunny-card-game:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 144px;
  background: url(../png/sunny-game-bg1.png) no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}
.sunny-card-game .game-content {
  position: relative;
  max-width: 50%;
  margin: 0 auto;
  margin-bottom: 45%;
  padding-left: 10%;
}
.sunny-card-game h2.common-heading .gap {
  display: inline;
  padding-left: 60px;
}
.sunny-card-game .game-content .card-img {
  position: absolute;
  left: -25% !important;
  top: 10% !important;
  width: 260px;
}

.sunny-image {
  position: absolute !important;
  bottom: -100px !important;
  left: 25% !important;
  transform: translate(-50%, 0);
  top: inherit !important;
  width: 55%;
}
.sunny-video-area iframe {
  height: 500px;
}
.sunny-video-area .slider-nav-video .item {
  cursor: pointer;
  margin: 10px 0 0;
  padding: 0 10px 60px;
  opacity: 0.5;
}
.sunny-video-area .slider-nav-video .item.slick-current {
  opacity: 1;
}
.sunny-video-area .slider-nav-video{
  margin: 0 -10px;
}
.sunny-video-area .slider-nav-video .item img {
 /* height: 130px;*/
  object-fit: cover;
  width: 100%;
}

.shot-col,
.imgshot {
  overflow: hidden;
}
.grid-shot .shot-col img {
  width: 100%;
  transition: transform 1s;
}
.grid-shot .shot-col:hover img {
  transform: scale(1.1);
}
.grid-shot .shot-col:hover .imgshot img {
  transform: scale(1);
}
.grid-shot .shot-col .imgshot:hover img {
  transform: scale(1.1);
}

/*travel*/
.exploreplaces {
  overflow: hidden;
  position: relative;
  padding-bottom: 0
}
.exploreplaces .places-slider .slick-list {
  padding: 0 150px 0 0 !important;
}
.exploreplaces .places-slider .item {
  margin-right: 30px;
}
.place-imgbx {
  position: relative;
}
.place-imgbx img {
  width: 100%;
}
.place-imgbx .video-icon-ani {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 35px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}
.video-icon-ani span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 28px solid #fff;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-radius: 2px;
}
.place-imgbx .video-icon-ani:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: transparent;
  border-radius: 50%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: pulse-border 1500ms ease-out infinite;
  box-shadow: 0 3px 6px #00000029;
}
.video-icon-ani:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 3px 6px #00000029;
  border-radius: 50%;
  transition: all 200ms;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.exploreplaces .exlopre-placestext {
  position: relative;
  height: 100%;
}
.exploreplaces .exlopre-placestext p {
  font-size: 16px;
  position: relative;
  margin-bottom: 0;
}
.exploreplaces .exlopre-placestext p:after {
  content: "";
  width: 20%;
  height: 1px;
  background: var(--light-black);
  position: absolute;
  left: 0;
  bottom: 0;
}
.txt-explore {
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 0 2% 0 8%;
  transform: translate(0, -50%);
}
.second-slider .slick-arrow {
  bottom: -20px;
  z-index: 100;
}
.places-slider{
  padding-top: 40px;
}
.places-slider .slick-arrow {
  top: -30px;
  z-index: 100;
}
.places-slider .slick-prev.slick-arrow,
.second-slider .slick-prev.slick-arrow,
.sunny-cal-slider .slick-prev.slick-arrow {
  right: 100px;
}
.places-slider .slick-next.slick-arrow,
.second-slider .slick-next.slick-arrow,
.sunny-cal-slider .slick-next.slick-arrow {
  right: 50px;
}

.proposals .slider-probox {
  padding: 0 15px 50px;
  position: relative;
}
.proposals .second-slider .slick-list {
  padding: 0 120px 0 0;
}
.proposals .second-slider img {
  width: 100%;
}
.proposals .slider-probox .anywhere-img {
  position: relative;
}
.proposals .slider-probox .txt-anywhere {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  text-align: center;
  padding-top: 6px;
}
.proposals .txt-anywhere .common-heading {
  margin-bottom: 0;
}
.proposals .slider-probox .txt-anywhere h2 {
  margin-bottom: 0;
}
/*.proposals .txt-anywhere .common-heading h1 {
  margin-bottom: 0;
  font-size: 30px;
}
.proposals .txt-anywhere .common-heading h1 span {
  font-size: 30px;
}*/
.cat-proposal {
  margin-bottom: 50px;
}
.cat-proposal .item {
  text-align: center;
  margin: 0 15px;
}
.cat-proposal .item .cat-txt {
  border: 1px solid #fff;
  border-radius: 100px;
  padding: 10px 25px;
  color: #fff;
}
.cat-proposal .item.slick-current .cat-txt {
  background: #fff;
  color: #040915;
  font-weight: 700;
}
.proposal-box .item {
  padding: 0 15px;
}
.second-slider .slider-probox:nth-child(even) {
  margin-top: 50px;
}
.common-heading.wt-heading {
  color: #fff;
}
.proposal-text h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
.travel-banner {
  position: absolute;
  top: 38%;
  left: 10%;
  width: 50%;
  display: none;
}
.container-tabpro .slick-track {
  padding-bottom: 50px;
}
.container-tabpro .slick-arrow.slick-disabled {
  opacity: 0.5;
}
.container-tabpro .slider-probox:last-child {
  margin-right: -120px;
}
.container-tabpro {
  margin-left: 50px;
}

/*Privacy Policy*/

section.legal-banner img {
  width: 100%;
}
.mobile-banner {
  display: none !important;
}
.legal-banner {
  position: relative;
  margin-top: 83px;
}
.legal-banner-heading h1 {
  font-size: 50px;
  line-height: 68px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0;
}
.legal-banner-heading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.legal-content .sub-heading-content h2 {
  font-weight: 400;
  color: #000000;
  margin-bottom: 15px;
}
.legal-right-side p {
  color: #8e8e8e;
}
.legal-content .sub-heading-content ul {
  padding-left: 5px;
}
.common-list li {
  color: #8e8e8e;
  padding: 3px 0;
  position: relative;
  padding-left: 15px;
}
.common-list li a {
  color: #8e8e8e;
}
.common-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  background: #8e8e8e;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.legal-right-side .legal-content {
  padding-bottom: 40px;
}
.sub-heading-content a {
  font-weight: bold;
}
.privacy-tabs .legal-left-side .active a {
  color: #010101;
  font-weight: 700;
}
.privacy-tabs .legal-left-side li.active:before {
  background: #010101;
  font-weight: 700;
}
.legal-left-side .common-list li {
  width: 90%;
  margin-bottom: 6px;
}
.privacy-tabs .legal-left-side {
  position: sticky;
  top: 100px;
}
body,
html {
  scroll-behavior: smooth;
}
.legal-content {
  position: relative;
}
.legal-content .legal-offset {
  position: absolute;
  top: -100px;
}
/*campaign*/
.fixed-strip .campaign-tab li.current:after{background: #E93323;}
.fixed-strip .campaign-tab li.current a{color:#E93323;}
.campaign-tab-content{display: none;}
.campaign-active{display: block;}
.campaign-tab-content .content h3{
font-size: 24px;
font-weight: 700;
line-height: 33px;
margin-bottom: 15px;
}

.campaign-tab-content .content{color: #8E8E8E;}
.campaign-tab-content .content .date{font-size: 16px;color: #E93323;font-weight: 700;    text-transform: uppercase;}
.campaign-row-box {
    margin: 40px 0;
}
.campaign-row-box .row {
    align-items: center;
}
.campaign-row-box:nth-child(2n) .row {
    flex-direction: row-reverse;
}
.camp-images a{position: relative;display: block;}
.camp-images a:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: url(../png/play-icon.png) no-repeat;
    height: 80px;
    width: 80px;
    background-size: 100% 100%;
    transform: translate(-50%, -50%);
    display: block;
}

/*Flip card*/

.influence-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.influencer-section .card {
  cursor: pointer;
  width:100%;
  height: 100%;
  min-height: 400px;
  perspective: 1000px;
  position: relative;
  display: block;
  margin-bottom: 25px;
}
/*.influencer-section .campaign-row-box .row .col-25:nth-last-child(2n) .card 
{margin-bottom: 0;}*/
.influencer-section .influence-images {
    height: 100%;
    position: relative;
}

/*.influencer-section .influence-images:before{
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.70) 100%),lightgray -377.978px -181.019px / 535.316% 187.891% no-repeat;
}*/


.front,
.back {
  text-align: center;
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: ease-in-out 600ms;
  overflow: hidden;
}

.card:hover .front {
  transform: rotateY(180deg);
}

/*.card:nth-child(even):hover .front {
  transform: rotateY(-180deg);
}*/

.back {
  background: linear-gradient(0deg, #1B1C1E 0%, #1B1C1E 100%), lightgray -377.978px -181.019px / 535.316% 187.891% no-repeat;
  transform: rotateY(-180deg);
  padding: 0 2em;
}

.card:hover .back {
  transform: rotateY(0deg);
}
.card .influence-content-box {
    transition: ease-in-out 600ms;
    /* transform: translateY(100%); */
    color: #fff;
    /* visibility: hidden; */
    height: 100%;
    width: 100%;
    padding: 30px 0;
}
.card .influence-content-box p {
    opacity: 0.6;
    margin-top: 20px;
}
.bottom-section {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 30px;
}
.card .influence-content-box .bottom-section   p{
  opacity: 0.75;
  margin-top: 0;
  margin-bottom: 4px;
}
.bottom-section a{
color: #5894FB;
font-size: 16px;
font-style: italic;
font-weight: 400;
line-height: 26px;
text-decoration-line: underline;
}
.influence-content-box{
  transform: translateY(100%);
  visibility: hidden;
  transition: all 2s ease-in-out;
  transition-delay: 1s;
}
.card:hover .influence-content-box{
  transform: translateY(0);
  visibility: visible;
}

/*.card:nth-child(even) .back {
  transform: rotateY(180deg);
}*/ 

.card:nth-child(even):hover .back {
  transform: rotateY(0deg);
}
.influence-images .title {
    position: absolute;
    bottom: 15px;
    left: 0;
    text-align: center;
    width: 100%;
    z-index: 3;
}
.title {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-family: Open Sans;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
#influencer .campaign-row-box:nth-child(2n) .row{flex-direction: row;}
.influence-title h2 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height:42px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.influence-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:25px;

}
.influence-images:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    background: linear-gradient(45deg, black, transparent);
}  
.influence-title  .influce-date{    
  font-size: 16px;
    color: #E93323;
    font-weight: 700;
    text-transform: uppercase;
  }

.home-banner-slider ul.slick-dots{
display: flex;
justify-content: center;
}
/*.home-banner-slider ul.slick-dots button{

  width: 10px;
  height: 10px;
  font-size: 0px;
  border-radius: 50%;
  border: 1px soli #000;
}*/
.home-banner-slider .slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  position: absolute;
   bottom: 0;
  left: 50%;
  list-style-type: none;
  gap: 10px;
  z-index: 5;
} 
/* .home-banner-slider   .slick-dots  li {
      margin: 0 0.25rem;
    }*/
  
.home-banner-slider .slick-dots button {
      display: block;
      width: 13px;
      height: 13px;
      padding: 0;      
      border: none;
      border-radius: 100%;
      border: 1px solid #000;     
      text-indent: -9999px;
      cursor: pointer;

    }
  .home-banner-slider .slick-dots li.slick-active button{
    background-color: #e93323;
    border: 1px solid #e93323; 
  }

/*01-09-2023*/
/*.ecomlink{
  position: absolute;
  bottom: 20%;
  right: 5%;
  height: 50px;
  width: 50px;
  z-index: 1;
  background: #fff;
}*/



/*side social links*/

.mfc-fixed-left {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;      
}

.mfc-fixed-left li a {
    position: relative;
  /*  height: 70px;*/
    display: block;
    text-align: center;
    padding:15px 20px;
    background: hsla(0,0%,100%,.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 28px 0 rgb(0 0 0 / 10%);
 }
.mfc-fixed-left li:first-child a{
     border-top-left-radius: 20px; 
}
.mfc-fixed-left li:last-child a{border-bottom-left-radius: 20px; }

.txt-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mfc-fixed-left li img{
width: 30px;
}
