.footer {
  clear: left;
}

@media (max-width: 4000px) {
  .container {
    width: 100% !important;
  }
}

/*menu-css*/
.humburger-ico{display: none;}
.side-menu ul li {
  position: relative;
  padding: 20px 0px;
}

.side-menu ul li ul {
  position: absolute;
  right: -87px;
  top: 66px;
  width: 350px;
  display: none;
  padding: 30px 42px 15px;
  background: #fff;
  border-radius: 0px;
  border: 1px solid #000;
  background: #D9D9D9;
  z-index: 99;
}

.side-menu ul li:hover ul {
  display: block;
}

.side-menu ul li ul li a {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
}

.side-menu ul li ul li {
  padding-right: 0;
  margin-right: 0px;
  padding-bottom: 15px;
  padding-top: 0px;
}

.side-menu ul li ul:after,
.side-menu ul li ul:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.row.header_head .col-lg-3 {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}

.side-menu ul li ul:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #D9D9D9;
  border-width: 10px;
  margin-left: -10px;
}

.side-menu ul li ul:before {
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: #D9D9D9;
  border-width: 11px;
  margin-left: -11px;
}

/*  ------------------- NEWS-PAGE CSS  START ------------------- */

.inner-banner-outer {
  position: relative;
  height: calc(100% - 115px);
  overflow: hidden;
}

.inner-banner-outer img {
  width: 100%;
}

.inner-banner-outer.zoom img {
  width: 100%;
  margin-top: 0px;
  -webkit-transition: all 500ms cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 500ms cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: scale(1);
  transform: scale(1);
  height: 100%;
}

.inner-banner-outer.zoom img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-animation: cssAnimation 3s 1 ease-in-out forwards;
  animation: cssAnimation 3s 1 ease-in-out forwards;
  object-fit: cover;
}

@keyframes cssAnimation {
  from {
    -webkit-transform: scale(1) translate(0px);
  }

  to {
    -webkit-transform: scale(1.3) translate(0px);
  }
}

@-webkit-keyframes cssAnimation {
  from {
    -webkit-transform: scale(1) translate(0px);
  }

  to {
    -webkit-transform: scale(1.3) translate(0px);
  }
}

.inner-banner-text-outer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  bottom: 0;
  display: flex;
  align-items: center;
}

.inner-banner-text-outer .container h1 {
  color: #fff;
  font: 80px/100% 'Cormorant Infant', serif;
  font-weight: 700;
  /*text-transform: uppercase;*/
}

.news-outer {
  padding: 50px 0px;
}

.news-main h2 {
  font: 60px/100% 'Cormorant Infant', serif;
  font-weight: 700;
  color: #000000;
  text-align: center;
  padding-bottom: 50px;
}

.news-box {
  margin-bottom: 30px;
  width: 50%;
  flex-basis: unset;
}

.news-box figure {
  margin: 0px;
}

.news-box figure img {
  width: 100%;
}

.news-area {
  padding: 55px 45px;
  background: #FBFBFD;
}

.news-area p {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 130%;
  color: #000000;
  margin-bottom: 40px;
}

.news-anch {
  display: flex;
  justify-content: space-between;
}

.news-anch h4 {
  margin: 0px;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 130%;
  color: #B1B1B1;
}

.news-anch a {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 130%;
  color: #0066CC;
  transition: all 0.2s ease-out;
}

.news-anch a:hover img {
  left: 15px;
}

.news-anch a img {
  left: 10px;
  transition: all 0.2s ease-out;
  position: relative;
}

.news-anch a:hover {
  text-decoration: underline;
}

.pagination-area {
  display: flex;
  justify-content: flex-end;
  margin-top: 36px;
  margin-bottom: 30px;
}

.pagination-area ul {
  display: flex;
  list-style: none;
}

.pagination-area ul li a {
  width: 68px;
  height: 68px;
  display: flex;
  border: 1px solid #000000;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
  color: #000000;
  align-items: center;
  justify-content: center;
}

.pagination-area ul li {
  margin: 0px 4px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.pagination-area ul li span {
  align-items: center;
  justify-content: center;
  display: flex;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
  color: #000000;
  width: 50px;
  height: 50px;
  margin-top: -16px;
}

.pagination-area ul li.prvious a {
  background: #000000;
}

.pagination-area ul li.next a {
  background: #000000;
}

.pagination-area ul li.active a {
  background: #0066CC;
  color: #fff;
}

.subscribe-here-outer {
  padding-bottom: 78px;
}

.subscribe-here-main h2 {
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  text-align: center;
  color: #000000;
  margin-bottom: 30px;
}

.subscribe-here-form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.subscribe-box {
  width: 50%;
  padding: 0px 15px;
}

.subscribe-box input,
.subscribe-box select {
  width: 100%;
  background: #F2F2F2;
  height: 74px;
  padding: 22px 30px;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #000000;
  border: none;
}

.subscribe-box-btn {
  padding-top: 50px;
  text-align: center;
  width: 100%;
}

.subscribe-box-btn button {
  font-family: 'SF Pro Display';
  font-weight: 500;
  font-size: 30px;
  line-height: 130%;
  text-align: right;
  color: #0066CC;
  display: inline-block;
  padding-right: 25px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
  background: none;
}

.subscribe-box-btn button:hover img {
  left: 15px;
}

.subscribe-box-btn button img {
  left: 10px;
  transition: all 0.2s ease-out;
  position: relative;
}

/*.subscribe-box-btn button:hover{ text-decoration: underline; }*/
.subscribe-box input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
  opacity: 1;
}

.subscribe-box input::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
  opacity: 1;
}

.subscribe-box input:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
  opacity: 1;
}

.subscribe-box input:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
  opacity: 1;
}

/*  ------------------- NEWS-DETAILS-PAGE END CSS  ------------------- */



/*  ------------------- NEWS-DETAILS-PAGE CSS START ------------------- */
.news-details-outer {
  padding: 50px 0px;
}

.news-details-title h5 {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 26px;
  line-height: 130%;
  color: #B1B1B1;
  padding-bottom: 15px;
}

.news-details-title h2 {
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 60px;
  line-height: 130%;
  color: #000000;
  padding-bottom: 32px;
}

.news-details-title h6 {
  font-family: 'SF Pro Display';
  font-weight: 700;
  font-size: 26px;
  line-height: 130%;
  color: #000000;
  padding-bottom: 35px;
}

.news-details-title {
  max-width: 1106px;
  margin: 0 auto;
}

.news-details-text {
  max-width: 1106px;
  margin: 0 auto;
  padding: 52px 0px;
}

.share-this {
  margin-top: 15px;
}

.news-details-text p {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  color: #7D7D7D;
  margin-bottom: 30px;
}

.share-this h3 {
  font-family: 'SF Pro Display';
  font-weight: 700;
  font-size: 26px;
  line-height: 130%;
  color: #000000;
  margin-bottom: 30px;
}

.share-this ul {
  list-style: none;
  display: flex;
}

.share-this ul li {
  margin: 0px 8px;
}

.news-related h2 {
  font-family: 'Cormorant Infant';
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 130%;
  color: #000000;
  padding-bottom: 30px;
}

.news-related-main {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.news-related-box {
  width: 25%;
  float: left;
  padding: 0px 15px;
}

.news-related-box figure {
  margin: 0px;
  height: 241px;
}

.releted-area {
  padding: 25px 0px;
}

.releted-area h4 {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  display: flex;
  align-items: center;
  color: #7D7D7D;
  font-family: 'SF Pro Display';
  margin-bottom: 15px;
}

.releted-area p {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #000000;
  margin-bottom: 23px;
}

.releted-area a {
  font-family: 'SF Pro Display';
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #0066CC;
}

.releted-area a:hover img {
  left: 15px;
}

.releted-area a img {
  left: 10px;
  transition: all 0.2s ease-out;
  position: relative;
}

.releted-area a:hover {
  text-decoration: underline;
}

/*  ------------------- NEWS-DETAILS-PAGE CSS END ------------------- */


/*  ------------------- CONTACT US PAGE CSS START ------------------- */
.contact-us-outer {
  float: left;
  width: 100%;
  padding: 85px 0px 120px;
}

.conact-main h2 {
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 60px;
  line-height: 130%;
  text-align: center;
  color: #000000;
  margin-bottom: 70px;
}

.contact-us-form {
  display: flex;
}

.contact-us-left {
  width: 50%;
}

.contact-img {
  background: #000000;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-left-area {
  max-width: 495px;
}

.contact-us-right {
  width: 50%;
}

.contact-area-right {
  max-width: 522px;
}

.contact-box-text h3 {
  font-family: 'SF Pro Display';
  font-weight: 700;
  font-size: 30px;
  line-height: 130%;
  color: #000000;
  margin-bottom: 15px;
}

.contact-box-text p {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 26px;
  line-height: 170%;
  color: #7D7D7D;
}

.contact-box-text {
  margin-bottom: 70px;
}

.contact-box-text a {
  font-family: 'SF Pro Display';
  font-weight: 500;
  font-size: 26px;
  line-height: 130%;
  text-align: center;
  text-decoration-line: underline;
  color: #0066CC;
}

.contact-area-right h3 {
  font-family: 'SF Pro Display';
  font-weight: 700;
  font-size: 30px;
  line-height: 130%;
  color: #000000;
  margin-bottom: 15px;
}

.contact-input {
  margin-bottom: 20px;
}

.contact-input input {
  width: 100%;
  background: #F2F2F2;
  height: 74px;
  padding: 22px 25px;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #000000;
  border: none;
}

.contact-input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
  opacity: 1;
}

.contact-input input::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
  opacity: 1;
}

.contact-input input:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
  opacity: 1;
}

.contact-input input:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
  opacity: 1;
}

.contact-input select {
  width: 100%;
  background: #F2F2F2 url(../images/arrow-right.png) no-repeat 96% center;
  height: 74px;
  padding: 22px 25px;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #000000;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-input textarea {
  width: 100%;
  background: #F2F2F2;
  height: 200px;
  padding: 22px 25px;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #000000;
  border: none;
  resize: none;
}

.contact-input textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
  opacity: 1;
}

.contact-input textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
  opacity: 1;
}

.contact-input textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
  opacity: 1;
}

.contact-input textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
  opacity: 1;
}

.contact-input .submit {
  background: #000000;
  width: 257px;
  font-family: 'SF Pro Display';
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.2s ease-out;
}

.contact-input .submit:hover {
  background: #0066CC;
}

.contact-us-form {
  padding-bottom: 170px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.warranty-registration {
  padding: 75px 0px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.warranty-box {
  width: 33.33%;
  text-align: center;
  padding: 0px 15px;
}

.warranty-box figure {
  min-height: 88px;
}

.warranty-box h3 {
  font-family: 'SF Pro Display';
  font-weight: 700;
  font-size: 30px;
  line-height: 130%;
  text-align: center;
  color: #000000;
  margin-bottom: 25px;
}

.warranty-box a {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 130%;
  color: #0066CC;
  font-size: 30px;
}

.warranty-box a:hover img {
  left: 15px;
}

.warranty-box a img {
  left: 10px;
  transition: all 0.2s ease-out;
  position: relative;
}

.warranty-box a:hover {
  text-decoration: underline;
}

/*  ------------------- CONTACT US PAGE CSS END ------------------- */


/*  ------------------- FAQ PAGE CSS START ------------------- */
.faq-outer {
  padding: 100px 0px 20px;
}

.faq-outer .collapse.in {
  display: block;
}

.faq-main .tab-content .card .card-header {
  display: none;
}

.faq-main .tab-content .accordion .card .card-header {
  display: block;
  border: none;
}

.faq-main .nav-tabs {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: nowrap;
}

.faq-main .nav-tabs>li {
  margin: 0px;
  width: 100%;
}

.faq-main .nav-tabs>li>a {
  border: none;
  font-family: 'Cormorant Infant';
  font-style: normal;
  font-weight: 700;
  font-size: 29px;
  line-height: 130%;
  color: #7D7D7D;
  padding: 0;
}

.faq-main .nav-tabs>li>a span {
  position: relative;
  display: inline-block;
  padding-right: 40px;
}

.faq-main .nav-tabs>li>a.active span:after {
  height: 14px;
  width: 100%;
  background: #000;
  bottom: -15px;
  left: 0;
  content: '';
  position: absolute;
}

.faq-main .nav-tabs>li>a:hover,
.faq-main .nav-tabs>li>a:focus {
  color: #000000;
  border: none;
  background: none;
}

.faq-main .nav-tabs>li.active>a,
.faq-main .nav-tabs>li.active>a:focus,
.faq-main .nav-tabs>li.active>a:hover {
  color: #000000;
  border: none;
  background: none;
}

.accordion .card-body {
  padding: 8px 0px 50px;
  border: none !important;
}

/*.faq-main .panel-group,.faq-main .panel-group .panel,.faq-main .panel-group .panel-heading,.faq-main .panel-group .panel-heading a, .faq-main .tab-content .card  .card-header,
.faq-main .tab-content .card  .card-header a,.faq-main .panel-group .panel-body, .faq-main .panel-group .panel-group .panel-heading + .panel-collapse > .panel-body { border-radius: 2px;
  border: 0;}*/
.faq-main .tab-content .card .card-header {
  padding: 20px 0px;
  background-color: white;
}

.faq-main .tab-content .card .card-header a {
  display: block;
  padding: 8px 45px 8px 0px;
  text-decoration: none;
  position: relative;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 130%;
  color: #000000;
  text-align: left;
  box-shadow: none;
  white-space: normal;
}

.faq-main .tab-content .card .card-header a.collapsed {}

.faq-main .tab-content .card .card-header a:before {
  content: '';
  position: absolute;
  right: 0px;
  top: 10px;
  background: url(../images/accord-minus.png) right center no-repeat;
  width: 35px;
  height: 35px;
  background-size: 100% auto;
}

.faq-main .tab-content .card .card-header a.collapsed:before {
  background: url(../images/accord-plus.png) right center no-repeat;
  content: '';
  right: 0px;
  top: 10px;
  width: 35px;
  height: 35px;
  background-size: 100% auto;
}

.faq-main .panel-group .panel-body {
  background: #ffffff;
  padding: 15px;
}

.faq-main .panel-group .panel {
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: none;
  margin: 0px !important;
}

.faq-main .card-body p {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 200%;
  color: #7D7D7D;
}

.faq-outer .tab-content {
  padding: 30px 0px;
}

.loard-faq {
  padding: 45px 0px 0px;
  text-align: center;
}

.loard-faq a {
  font-family: 'SF Pro Display';
  transition: all .5s ease;
  transform: scale(1.0);
  display: inline-block;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 130%;
  text-align: center;
  color: #0066CC;
}

.loard-faq a:hover,
.loard-faq a:focus {
  color: #0066CC;
  text-decoration: none;
  transform: scale(1.04);
}

.faq-main .card.tab-pane {
  border: none;
  border-radius: 0px;
}

.faq-main .accordion .card {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: none;
  margin: 0px !important;
  border-radius: 0px;
}

.deler-locator-main {
  display: flex;
  justify-content: space-between;
}

.delar-box {
  background: #F9F9F9;
  min-height: 444px;
  width: 49.5%;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.delar-box h3 {
  width: 100%;
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  text-align: center;
  color: #000000;
  padding-bottom: 15px;
}

.Explore-registration a {
  font-family: 'SF Pro Display';
  font-weight: 500;
  font-size: 26px;
  line-height: 130%;
  color: #0066CC;
  display: inline-block;
}

.Explore-registration a:hover {
  color: #0066CC;
}

.Explore-registration a:hover img {
  left: 15px;
}

.Explore-registration a img {
  left: 10px;
  transition: all 0.2s ease-out;
  position: relative;
}

.Explore-registration a:hover {
  text-decoration: underline;
}

.Explore-registration {
  text-align: center;
}

.deler-ico {
  display: inline-block;
  margin-top: 30px;
}

.delear-area {
  text-align: center;
}

.delear-area p {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 36px;
  line-height: 150%;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
}

.deler-locator-outer {
  padding-bottom: 60px;
  clear: left;
}

/*  ------------------- FAQ PAGE CSS END ------------------- */

/*  ------------------- KNOW WERYWIN CSS START ------------------- */
.company-overview-outer {
  padding: 115px 0px;
  float: left;
  width: 100%;
}

.company-overview-main {
  text-align: center;
}

.company-overview-main h2 {
  margin: 0px;
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  color: #000000;
  padding-bottom: 39px;
}

.company-overview-main p {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 20px;
  text-align:justify;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 35px;
}

.company-fig {
  display: inline-block;
  margin-top: 12px;
}

.our-value-main {
  clear: left;
}

.our-value-main .our-value-row figure img {
  max-width: 100%;
}

.our-value-row {
  margin-bottom: 110px;
  position: relative;
}

.our-value-text {
  position: absolute;
  top: 0;
  left: 0px;
  padding: 90px 70px;
}

.our-value-area {
  width: 564px;
}

.our-value-area h2 {
  margin: 0px 0px 10px;
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  color: #000000;
}

.our-value-area p {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 26px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.8);
}

.our-value-row-oone .our-value-area h2 {
  color: #fff;
}

.our-value-row-oone .our-value-area p {
  color: #fff;
}

.about-history-outer {
  float: left;
  width: 100%;
  padding-bottom: 120px;
}

.about-history-main h2 {
  margin: 0px;
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  color: #000000;
  text-align: center;
  padding-bottom: 40px;
}

.history-slide-main {
  background: url(../images/world-map-bg.png) no-repeat;
  background-size: 96% 100%;
  min-height: 500px;
  padding-top: 70px;
}

.history-slider-box {
  width: 25%;
  float: left;
  padding-right: 52px;
  padding-bottom: 160px;
}

.history-slider-box h3 {
  margin: 0px 0px 15px;
  text-align: center;
  font-family: 'SF Pro Display';
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
  text-align: center;
  color: #000000;
}

.history-slider-area {
  background: #999999;
  padding: 15px;
  -webkit-box-shadow: 0px 88px 76px -45px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 88px 76px -45px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 88px 76px -45px rgba(0, 0, 0, 0.25);
  border: 4px solid #fff;
  border-radius: 25px;
  position: relative;
  transition: all 0.5s ease;
}

.history-slider-area p {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #FFFFFF;
}

.history-slider-area:after,
.history-slider-area:before {
  left: 99.5%;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.history-slider-area:after {
  border-color: rgba(153, 153, 153, 0);
  border-left-color: #999999;
  border-width: 20px;
  margin-top: -20px;
}

.history-slider-area:before {
  border-color: rgba(255, 255, 255, 0);
  border-width: 26px;
  margin-top: -26px;
}

.history-slider-box.slick-current.slick-active.slick-center .history-slider-area {
  background: #606060;
  transform: scale(1.2);
}

.history-slider-box.slick-current.slick-active.slick-center .history-slider-area::after {
  border-left-color: #606060;
}

.history-slide-main .slick-dots {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: 9;
  text-align: center;
}

.history-slide-main .slick-dots li {
  position: relative;
  display: inline-block;
  width: 106px;
  height: 6px;
  margin: 0 5px;
  padding: 0 1px;
  cursor: pointer;
  border: 1px solid #B1B1B1;
}

.history-slide-main .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 103px;
  height: 4px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #fff;
}

.history-slide-main .slick-dots li.slick-active button {
  background: #000;
}

.empowering-people-outer {
  float: left;
  width: 100%;
  padding-bottom: 115px;
}

.empowering-people-main {
  text-align: center;
}

.empowering-people-main h2 {
  margin: 0px;
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  color: #000000;
  text-align: center;
  padding-bottom: 40px;
}

.empowering-people-main p {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 27px;
  line-height: 170%;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 45px;
}

.empowering-people-main ul {
  list-style: none;
  max-width: 697px;
  margin: 0 auto;
}

.empowering-people-main ul li {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 27px;
  line-height: 270%;
  color: #7D7D7D;
  background: url(../images/arrow-icon.png) no-repeat 0px 21px;
  padding-left: 75px;
  text-align: left;
}

.delar-box.about-deler-box {
  width: 100%;
}

.delar-box.about-deler-box h3 {
  margin-bottom: 10px;
}

.knowwyerwin-model figure img {
  max-width: 100%;
}

.knowwyerwin-model .modal-content h2 {
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 60px;
  line-height: 130%;
  text-align: center;
  color: #000;
  padding-bottom: 20px;
}

.knowwyerwin-model .modal-content p {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #919191;
  padding: 0px 20px;
}

.knowwyerwin-model .modal-dialog {
  width: 900px;
  max-width: 900px;
  -webkit-transform: unset !important;
  transform: unset !important;
}

.knowwyerwin-model .modal-content .close {
  width: 50px;
  height: 50px;
  opacity: 1;
  position: absolute;
  right: -16px;
  top: -15px;
  border: 1px solid #000;
  border-radius: 100%;
  z-index: 9;
  background: #fff;
  font-size: 30px;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5 !important;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.fade.in {
  opacity: 1;
}

/*  ------------------- KNOW WERYWIN CSS END ------------------- */


/*  ------------------- LEGAL CSS START ------------------- */

.legal-outer {
  float: left;
  width: 100%;
  padding: 65px 0px 30px;
}

.legal-main h2 {
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  text-align: center;
  color: #000000;
  margin: 0px 0px 40px;
}

.legal-main p {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #7D7D7D;
  margin-bottom: 30px;
}

/*  ------------------- LEGAL CSS START ------------------- */


/*  ------------------- ALLINACE CSS START ------------------- */
.alliance-slide-row {
  position: relative;
}

.alliance-slide-row figure img {
  width: 100%;
}

.alliances-slider .slick-dots {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  z-index: 9;
  text-align: center;
}

.alliances-slider .slick-dots li {
  position: relative;
  display: inline-block;
  width: 106px;
  height: 6px;
  margin: 0 5px;
  padding: 0 1px;
  cursor: pointer;
  border: 1px solid #B1B1B1;
}

.alliances-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 103px;
  height: 4px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #fff;
}

.alliances-slider .slick-dots li.slick-active button {
  background: #000;
}


.werywin-investors-outer {
  float: left;
  width: 100%;
  padding: 100px 0px;
}

.werywin-investors-main {
  display: flex;
}

.werywin-investors-left {
  width: 50%;
}

.werywin-investors-left img {
  width: 100%;
}

.werywin-investors-right {
  width: 50%;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  padding-left: 80px;
}

.werywin-investors-right h2 {
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 60px;
  line-height: 130%;
  color: #000000;
  margin-bottom: 25px;
}

.werywin-investors-right p {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #919191;
  margin-bottom: 20px;
}

.big-dummy-outer {
  background: #000;
  float: left;
  width: 100%;
  height: 680px;
  display: flex;
}

.big-dummy-outer .container {
  display: flex;
  align-items: center;
}

.big-dummy-main {
  text-align: center;
  width: 940px;
  margin: 0 auto;
}

.big-dummy-main h2 {
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 60px;
  line-height: 130%;
  text-align: center;
  color: #FFFFFF;
  margin: 0px 0px 30px;
}

.big-dummy-main figure {
  margin-bottom: 20px;
}

.big-dummy-main p {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 25px;
}

.big-dummy-main a {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 30px;
  line-height: 130%;
  text-align: right;
  color: #0066CC;
}

.big-dummy-main a:hover {
  color: #0066CC;
}

.big-dummy-main a:hover img {
  left: 15px;
}

.big-dummy-main a img {
  left: 10px;
  transition: all 0.2s ease-out;
  position: relative;
}

.big-dummy-main a:hover {
  text-decoration: underline;
}

.big-dummy-outer.black {
  background: #fff;
}

.big-dummy-outer.black .big-dummy-main h2 {
  color: #000;
}

.big-dummy-outer.black .big-dummy-main p {
  color: #000;
}

/*  ------------------- ALLINACE CSS END ------------------- */


/*  ------------------- PRODUCT PAGE CSS START ------------------- */
.pistol-outer {
  padding-top: 50px;
}

.pistol-outer.CS {
  padding-top: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.pistol-outer.CS .container {
  position: absolute;
}


.pistol-outer.CS img {
  width: 100%
}

.pistol-outer .coming_soon {
  padding: 0px 0;
  border-radius: 5px;

  margin: 20px auto;
}

.pistol-outer .coming_soon h1 {
  font-size: 3.8rem;
  color: #fff;

}

.pistol-outer.CS .grid-box {
  margin: 0 !important
}

.pistol-outer .grid-box {
  display: flex;
  margin-bottom: 50px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.pistol-outer .grid-box .products-box a.blackBtn {
  background: #000000;
  display: flex;
  align-items: center;
  height: 75px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.pistol-outer .grid-box .products-box h3 {
  background: #000;
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  color: #FFFFFF;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /*overflow: hidden;
    height: 24px;*/
}

.pistol-outer .grid-box .products-box h3 span {
  display: block;
  width: 100%;
  padding: 0 15px;
  font-size: 22px;
  font-weight: 400
}

.pistol-outer .grid-box .products-box h3 span:before {
  display: none
}

.pistol-outer .grid-box .products-box {
  width: 48%;
  height: 490px;
  margin-right: 2%;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
  margin-bottom: 2%;
}

.pistol-outer .grid-box .products-box figure {
  display: flex;
  width: 426px;
  height: 333px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  transition: width .5s ease;
}

.pistol-outer .grid-box .products-box img {
  width: 100%;
  transition: width .5s ease;
}

.pistol-outer .checkbox {
  margin: 0px;
}

.pistol-outer .checkbox input:checked+label::after {
  right: 0;
  margin: 0 auto;
  left: 0;
}

.pistol-outer .grid-box .products-box:hover img {
  width: 70%;
  margin-right: -56px;
  margin-top: 0px;
}

.pistol-outer .grid-box .products-box:hover figure {
  align-items: flex-start;
  justify-content: right;
}

.pistol-outer .grid-box .products-box .overlay {
  transition: all 0.5s ease;
  bottom: -100px;
  opacity: 1;
  display: block;
  position: absolute;
}

.pistol-outer .grid-box .products-box:hover .overlay {
  display: block;
  opacity: 1;
  bottom: 95px;
}

.pistol-outer .grid-box .products-box .overlay ul li span {
  min-width: 175px;
}

.plus-cricle-btn {
  position: absolute;
  bottom: 36px;
  right: 60px;
  -webkit-transition: all 0.3s ease-in-out;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.plus-cricle-btn a {
  width: 70px;
  height: 70px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.plus-cricle-btn:hover {
  box-shadow: 0 0 0 7px rgb(255, 255, 255);
}

.plus-cricle-btn {
  padding: 1px;
  box-shadow: 0 0 0 2px rgb(255, 255, 255);
}

.pistol-outer .title-box {
  display: flex;
  justify-content: flex-end;
  padding: 0px 28px;
}

.pistol-outer .title-box a {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 130%;
  text-align: right;
  text-transform: uppercase;
  color: #0066CC;
  transition: all .5s ease;
  transform: scale(1);
}

.pistol-outer .title-box a:hover {
  transform: scale(1.04);
}

.compair-product .modal-dialog {
  max-width: 1340px;
}

.modal-compair {
  padding-top: 50px;
}

.compair-product .modal-dialog .modal-content {
  border-radius: 0px;
  display: block;
}

.modal-compair-table {
  padding: 0 15px
}

.modal-compair-table .col-lg-3 {
  width: 25%;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 210%;
  color: #000000;
  border-bottom: 1px solid #C5C7CD;
  padding-left: 50px;
}

.modal-compair-table .col-lg-3 figure {
  margin-top: 40px;
}

.modal-compair-table .col-lg-3 a {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 130%;
  color: #0066CC;
  display: block;
  text-align: center;
  padding-bottom: 40px;
}

.compair-product .close {
  opacity: 1;
  width: 53px;
  margin-top: 15px;
  margin-right: 22px;
  position: absolute;
  right: 0;
  top: 0
}

.modal-compair-table .col-lg-3.compair-head {
  padding-left: 30px;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 210%;
  color: #000000;
  background: #E6E6E6;
}

.modal-compair-table .col-lg-3 a.pre-book-nw {
  padding-bottom: 0px;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #FFFFFF;
  background: #0066CC;
  padding: 17px 18px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 40px;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
}

.modal-compair-table .col-lg-3 a.pre-book-nw:hover {
  background: #000;
}

.pre-book-nw img {
  margin-left: 8px;
}



/*  ------------------- PRODUCT PAGE CSS END ------------------- */


/*  ------------------- SIGN UP AND LOGIN PAGE CSS START ------------------- */

.error-meassage {
  padding: 0;
  position: absolute;
  left: 50%;
  z-index: 99;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  box-shadow: 0px 34px 34px 30px rgba(0, 0, 0, 0.05);
}

.error-meassage h4 {
  font-family: 'Cormorant Infant';
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  /* or 60px */


  color: #000000;
  border-bottom: 1px solid #B1B1B1;
  padding: 15px
}

.error-meassage h4 button span {
  font-size: 60px;
  line-height: 10px
}

.error-meassage p {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  /* identical to box height, or 77% */

  letter-spacing: 0.3px;

  color: #FF0000;
  padding: 15px;
  margin-bottom: 0
}

.error-meassage button.okay {
  background: #0066CC;
  width: 100px;
  height: 40px;
  text-align: center;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  /* identical to box height, or 39px */

  text-align: center;
  text-transform: uppercase;

  color: #FFFFFF;
  opacity: 1;
  float: none;
  margin: 0 auto 30px auto;
  display: inherit;
}

.error-meassage p img {
  width: 70px;
  margin-right: 15px
}

.sign-up-outer {
  padding: 91px 0px;
}

.sign-up-main {
  display: flex;
}

.sign-up-images {
  width: 50%;
  display: flex;
}

.sign-up-right {
  width: 50%;
  padding: 62px 65px;
  background: #F7F8FC;
  display: flex;
  align-items: center;
}

.sign-up-area {
  width: 100%;
}

.sign-up-right h1 {
  font-family: 'Cormorant Infant';
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  text-align: center;
  color: #000000;
  padding-bottom: 30px;
}

.sign-up-box {
  margin-bottom: 12px;
  position: relative;
}

.sign-up-box input {
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  height: 74px;
  padding: 20px 20px;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #7D7D7D;
  width: 100%;
}

.sign-up-box input#datepicker {
  background: #FFFFFF url(../images/calender-ico.png) no-repeat 95% center;
}

.sign-up-box select {
  background: #FFFFFF url(../images/arrow-right.png) 98% center no-repeat;
  border: 1px solid #E6E6E6;
  height: 74px;
  padding: 20px 20px;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #7D7D7D;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.sign-up-box .form-group {
  display: flex;
  align-items: center;
}

.sign-up-box .form-group input {
  width: 45px;
  height: 45px;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  margin-right: 18px;
}

.sign-up-box .form-group label {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #9FA2B4;
}

.sign-up-box .form-group label span {
  padding-left: 15px;
}

.sign-up-box .submit {
  background: #000000;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  ;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
}

.sign-up-box .form-group label a {
  color: #0066CC;
}

.sign-up-box .form-group label a:hover {
  text-decoration: underline;
}

.sign-up-box .submit:hover {
  background: #0066CC;
  ;
  border: 1px solid #0066CC;
  color: #fff;
}

.sign-up-box p {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.3px;
  color: #9FA2B4;
  margin-top: 25px;
  margin-bottom: 25px;
}

.sign-up-box p a {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #0066CC;
  display: inline-block;
  margin-left: 8px;
}

.sign-up-box p a:hover {
  text-decoration: underline;
}

.sign-up-box .form-group.checkbox {
  position: static;
}

.sign-up-box input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #7D7D7D;
  opacity: 1;
}

.sign-up-box input::-moz-placeholder {
  /* Firefox 19+ */
  color: #7D7D7D;
  opacity: 1;
}

.sign-up-box input:-ms-input-placeholder {
  /* IE 10+ */
  color: #7D7D7D;
  opacity: 1;
}

.sign-up-box input:-moz-placeholder {
  /* Firefox 18- */
  color: #7D7D7D;
  opacity: 1;
}

.forget-link {
  text-align: right;
  display: block;
  margin: 8px 0px;
}

.forget-link a {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: right;
  letter-spacing: 0.1px;
  color: #0066CC;
}

.forget-link a:hover {
  text-decoration: underline;
}

.sign-up-box .sign-or {
  display: inline-block;
  font-family: 'Cormorant Infant';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  text-align: center;
  color: #000000;
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

.field-icon {
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 25px;
  color: #9FA2B4;
  font-size: 25px;
}

.otp-input {
  display: flex;
  justify-content: space-between;
  margin: 50px 0px;
}

.otp-input input {
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  width: 74px;
  height: 74px;
  text-align: center;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #7D7D7D;
}

.sign-up-verify p {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  letter-spacing: 0.1px;
  color: #000000;
}

.resend-one {
  margin: 43px 0px 30px;
  text-align: center;
}

.resend-one a {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.1px;
  color: #0066CC;
  display: inline-block;
}

.resend-one a:hover {
  text-decoration: underline;
}

/*  ------------------- SIGN UP AND LOGIN PAGE CSS END ------------------- */



/*HEADER-MENU*/

.chapternav-slide {
  width: 100%;
  text-align: center;
}

.chapternav {
  position: absolute;
  top: 70px;
  left: 0px;
  background: #D9D9D9;
  height: 118px;
  width: 100%;
  z-index: -1;
  padding-top: 0px;
  display: flex;
  /* opacity: 0; */
  visibility: hidden;
}

.chapternav .slick-track {
  display: flex;
  align-items: center;
}

.nav-menu ul li.active .chapter-box {
  width: 138px;
  display: inline-block;
  animation: chapternav-slidein 350ms backwards
}

.chapter-box .chapternav-label {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
}

.chapter-box figure {
  margin-bottom: 10px;
  min-height: 47px;
}

.chapter-box figure img {
  max-height: 40px;
  margin: 0 auto;
}

.nav-menu ul li.active .chapternav {
  z-index: 2;
  padding-top: 0px;
  display: flex;
  /* opacity: 1; */
  visibility: visible;
}

.nav-menu ul li.is-hidden.active .chapternav {
  z-index: -1;
  visibility: hidden;
}

@keyframes chapternav-slidein {
  0% {
    opacity: 0
  }

  1% {
    transform: translateX(160px)
  }

  100% {
    opacity: 1;
    transform: translateX(0)
  }
}

.chapternav .slick-prev,
.chapternav .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.chapternav .slick-prev {
  left: 0px;
  background: url(../images/chapternav-slick-prev.png) no-repeat;
}

.chapternav .slick-next {
  right: 0px;
  background: url(../images/chapternav-next.png) no-repeat;
}

.nav-menu ul li.active>a {
  position: relative;
}

.nav-menu ul li.active>a:before {
  width: 100%;
  height: 2px;
  background: #000;
  content: '';
  position: absolute;
  bottom: -25px;
  z-index: 3;
}

.nav-menu ul li.active>a:after {
  width: 13px;
  height: 6px;
  content: '';
  position: absolute;
  bottom: -30px;
  z-index: 3;
  background: url(../images/arrow-img.png) no-repeat;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.nav-menu ul li.active.is-hidden>a:before {
  display: none;
}

.nav-menu ul li.active.is-hidden>a:after {
  display: none;
}


/*left-part-css*/
.left-sidebar-pro {
  width: 255px;
  height: 100%;
  float: left;
}

.menu-switcher-pro {
  position: absolute;
  top: 42px;
  right: 16px;
}

.menu-switcher-pro #sidebarCollapse {
  position: relative;
  padding: 0;
  line-height: 0;
  background: none;
  border: none;
}

#sidebar {
  min-width: 255px;
  background: #000000;
  color: #fff;
  position: fixed;
  transition: all 0.3s;
  z-index: 999;
  height: 100%;
  flex-wrap: wrap;
  align-content: flex-start;
  max-width: 255px;
}

.admin-logo {
  width: 100%;
  padding: 22px 24px 23px 11px;
  border-bottom: 1px solid #373737;
}

#sidebar ul {
  width: 100%;
}

#sidebar ul li {
  display: block;
}

#sidebar ul li a {
  display: flex;
  padding: 20px 20px 20px 26px;
  align-items: center;
  width: 100%;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.2px;
  color: #DDE2FF;
}

#sidebar ul li a .menu-ico {
  display: flex;
  width: 20px;
  margin-right: 20px;
  height: 25px;
  justify-content: center;
  align-items: center;
}

#sidebar ul li a .menu-ico img {
  display: block;
  margin: 0 auto;
}

#sidebar ul li.active a {
  background: rgba(221, 189, 189, 0.15);
  border-left: 3px solid #0066CC;
}

.left-custom-menu-adp-wrap.comment-scrollbar {
  width: 100%;
  height: 800px;
}

.mobile-logo {
  display: none;
}

/*expand-css*/
#sidebar.active {
  min-width: 80px;
  max-width: 80px;
  text-align: center;
}

#sidebar.active .desktop-logo {
  display: none;
}

#sidebar.active .mobile-logo {
  display: block;
}

#sidebar.active .menu-title {
  display: none;
}

.mini-navbar .all-content-wrapper {
  margin-left: 80px;
}

.mini-navbar .left-sidebar-pro {
  width: 80px;
}

.mini-navbar .header-top-area {
  left: 80px
}

.mini-navbar .menu-switcher-pro #sidebarCollapse {
  transform: rotate(180deg);
}

.mini-navbar .admin-logo {
  overflow: hidden;
  padding: 22px 12px 23px 8px;
}

.mini-navbar .menu-switcher-pro {
  right: 8px;
}

/*left-part-css-end*/

/*header-part-css*/
.all-content-wrapper {
  margin-left: 255px;
  transition: all 0.3s;
  height: auto;
  padding: 20px 15px 60px;
  display: block;
  overflow: hidden;
}

.header-top-area {
  margin: 0 auto;
  transition: all 0.3s;
  padding-bottom: 25px;
}

.header-right-info .header-right-menu {
  float: right;
  padding: 13px 0px;
}

.header-right-info ul.header-right-menu>li>a {
  display: inline-block;
  color: #BCBCCB;
  padding: 0px 0px 0px 25px;
  font-size: 25px;
  text-decoration: none;
  position: relative;
  line-height: 42px;
}

.header-right-info ul.header-right-menu>li>a span {
  width: 15px;
  height: 15px;
  background: #0066CC;
  position: absolute;
  right: -5px;
  top: 5px;
  border-radius: 20px;
  border: 1px solid #fff;
}

.header-right-info ul.header-right-menu>li .btn.dropdown-toggle {
  display: inline-block;
  color: #BCBCCB;
  padding: 0px 0px 0px 25px;
  font-size: 20px;
  text-decoration: none;
  position: relative;
  line-height: 42px;
  background: none;
  border: none;
}

.header-right-info .admin-name {
  display: inline-block;
  color: #43425D;
  font-size: 20px;
  position: relative;
  top: -2px;
  margin-left: 2px;
}

.header-right-info ul.header-right-menu .nav-item .dropdown-toggle::after {
  display: none;
}

.header-right-info .nav>li.profile>a>img {
  width: 50px;
  border-radius: 50%;
}

.head-text {
  padding: 13px 0px;
}

.head-text p {
  font-size: 20px;
  color: #006A8D;
  margin: 0px;
  line-height: 42px;
}

.btn-check:focus+.btn-info,
.btn-info:focus {
  box-shadow: none !important;
}

.btn-check:focus+.btn,
.btn:focus {
  box-shadow: none !important;
}

.header-right-info ul.header-right-menu li .dropdown-menu {
  width: 100%;
  padding: 10px 0px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .175);
  width: 200px;
  padding: 10px 0px;
}

.header-right-info ul.header-right-menu li .dropdown-menu a {
  padding: 10px 20px;
  display: block;
  color: #303030;
  font: 14px/20px 'SF Pro Display';
}

.header-right-info ul.header-right-menu li {
  position: relative;
}

.search-main {
  position: absolute;
  top: 41px;
  background: #ccc;
  padding: 10px;
  width: 250px;
  right: -16px;
  z-index: 9;
  width: 0;
  opacity: 0;
}

.search-main input {
  width: 100%;
  background: #fff;
  border: 1px solid #fff;
  height: 45px;
}

.search-main .submit-search {
  width: 50px;
  height: 40px;
  background: #fff url(../images/search.png) no-repeat center;
  font-size: 0;
  position: absolute;
  right: 10px;
  top: 14px;
}

.search-main.sb-search-open {
  width: 250px;
  opacity: 1;
}

.search-btn {
  line-height: 42px;
}

/*header-part-css*/

/*  ------------------- PRFILE SECTION CSS ------------------- */
.main-admin-outer {
  float: left;
  width: 100%;
  background: #f7f8fc;
  /*height: 100%;*/
}

.head-text h1 {
  font-family: 'Cormorant Infant';
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  letter-spacing: 0.3px;
  color: #252733;
}

.profile-outer {
  background: #FFFFFF;
  border: 1px solid #DFE0EB;
  padding: 44px 38px;
  float: left;
  width: 100%;
}

.profile-update {
  text-align: right;
}

.profile-update label {
  font-family: 'SF Pro Display';
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: right;
  letter-spacing: 0.2px;
  color: #C4C4C4;
}

.profile-pic {
  float: left;
  min-width: 170px; position: relative;
}

.profile-pic figure {
  width: 100%;
  margin: 0px;
}
.profile-pic figure button.change-image{background: transparent;
    border: none;
    position: absolute;
    right: 0px;
    top: 107px;
    width: 30px;
    height: 30px;
    border: 1px solid #DFE0EB;
    border-radius: 100%;
    background: #fff; cursor: pointer;}
.profile-pic figure button.change-image img{width: 15px; height: auto; border-radius: 0;}
.profile-pic figure img {
  max-width: 170px;
  width: 100%;
  height: 170px;
  border-radius: 50%;
}

.profile-name-sec h3 {
  margin: 0px;
}

.profile-pic-area {
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 35px;
  border-bottom: 1px solid #E6E6E6; position: relative;
}

.profile-name-sec {
  width: 100%;
  padding-left: 30px;
}

.profile-name-sec h3 {
  font-family: 'Cormorant Infant';
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.4px;
  color: #252733;
  padding-bottom: 5px;
}

.profile-name-sec p {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #252733;
}

.prfile-form-row {
  padding: 35px 0px;
  float: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.profile-input-box {
  float: left;
  width: 50%;
}

.profile-input-box {
  width: 49%;
  float: left;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 17px;
}

.pro-file-name {
  width: 50%;
  padding-right: 10px;
}

.pro-file-name:last-child {
  padding-right: 0;
  padding-left: 10px;
}

.profile-input-box input {
  background: #F2F2F2;
  border: 1px solid #E6E6E6;
  height: 74px;
  padding: 20px 20px;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #7D7D7D;
  width: 100%;
}

.profile-input-box .iti {
  width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #4A4A4A;
}

.profile-input-box .iti__flag {
  display: none;
}

.profile-input-box .iti__arrow {
  background: url(../images/arrow-right.png) no-repeat;
  border: none !important;
  width: 20px;
  height: 12px;
}

#mobile_code {
  padding-left: 110px !important;
}

.iti--separate-dial-code .iti__selected-flag:after {
  background: #C4C4C4;
  height: 39px;
  width: 1px;
  position: absolute;
  right: -15px;
  top: 17px;
  content: '';
}

.profile-input-box input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #7D7D7D;
  opacity: 1;
}

.profile-input-box input::-moz-placeholder {
  /* Firefox 19+ */
  color: #7D7D7D;
  opacity: 1;
}

.profile-input-box input:-ms-input-placeholder {
  /* IE 10+ */
  color: #7D7D7D;
  opacity: 1;
}

.profile-input-box input:-moz-placeholder {
  /* Firefox 18- */
  color: #7D7D7D;
  opacity: 1;
}

.profile-input-box textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #7D7D7D;
  opacity: 1;
}

.profile-input-box textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #7D7D7D;
  opacity: 1;
}

.profile-input-box textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #7D7D7D;
  opacity: 1;
}

.profile-input-box textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #7D7D7D;
  opacity: 1;
}

.profile-input-box select {
  border: 1px solid #E6E6E6;
  height: 74px;
  padding: 20px 20px;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #7D7D7D;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: #F2F2F2 url(../images/arrow-right.png) no-repeat 98% center;
}

.profile-submit-box {
  width: 100%;
  text-align: center;
  margin-top: 25px;
  display: flex;
  justify-content: center;
  margin-right: -10px;
  margin-left: -10px;
}

.profile-submit-box.editprofilebtn{justify-content: flex-end; margin: 0; position: absolute; right: 0; top: 30px;}
.profile-submit-box.editprofilebtn button{border: none; background: none; cursor:pointer ; font-family: SF Pro Display; color: #0066CC; display: flex; align-items: center;}
.profile-submit-box.editprofilebtn button img{width: 14px; margin-left: 8px;}
.profile-submit-box input[type="reset"] {
  background-color: #FFF;
  color: #000;
}

.profile-submit-box input {
  background: #000000;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  cursor: pointer;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  width: 49%;
  height: 74px;
  border: 1px solid #000000;
  margin: 0px 10px;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
}

.profile-submit-box input.cancle {
  background: #ffffff;
  border: 1px solid #000000;
  color: #000000;
}

.profile-submit-box input:hover {
  background: #0066CC;
  ;
  border: 1px solid #0066CC;
  color: #fff;
}

/*.profile-submit-box input.cancle:hover{background: #000000;border: 1px solid #000000;color: #fff;}*/
.profile-input-box input#datepicker {
  background: #F2F2F2 url(../images/calender-ico.png) no-repeat 98% center;
}

.profile-input-box textarea {
  background: #F2F2F2;
  border: 1px solid #E6E6E6;
  height: 74px;
  padding: 20px 20px;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #7D7D7D;
  width: 100%;
  resize: none;
}

.drop-zone {
  max-width: 100%;
  height: 233px;
  padding: 25px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border: 1px dashed #C4C4C4;
  width: 100%;
  background: #F9F9F9;
}

.drop-zone p {
  font-family: 'SF Pro Display';
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #000000;
}

.drop-zone p a {
  color: #0066CC;
}

.drop-zone p a:hover {
  text-decoration: underline;
}

.drop-zone--over {
  border-style: solid;
}

/* .drop-zone__input {display: none;} */
.drop-zone__thumb {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #cccccc;
  background-size: unset;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
}

.drop-zone__thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  font-family: 'SF Pro Display';
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

.profile-input-box.full {
  width: 100%;
}

.profile-input-box.full .checkbox {
  position: relative;
}

.profile-input-box.full .checkbox label span {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #9FA2B4;
  padding-left: 18px;
}

.checkbox label::before {
  width: 45px;
  height: 45px;
  background: #F2F2F2;
  border: 1px solid #E6E6E6;
}

.checkbox input:checked+label::after {
  /*background: url(../images/checked-black.png) no-repeat; */
  top: 10px;
  left: 8px;
}

.view-product {
  width: 100%;
  text-align: right;
  margin-bottom: 30px;
  margin-top: 30px;
}

.view-product a {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: right;
  color: #0066CC;
}

.view-product a img {
  margin-left: 15px;
}

.checkbox input:checked+label::after {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  left: 8px;
  width: 29px;
  height: 23px;
  background: url(../images/checked.png) center center no-repeat;
  border-width: 0 2px 2px 0;
}

/*  ------------------- MY LICENSE PAGE CSS ------------------- */
.my-license-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.my-license-list h2 {
  font-family: 'Cormorant Infant';
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #252733;
}

.add-license-anchr a {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: right;
  color: #0066CC;
}

.add-license-anchr a img {
  margin-left: 15px;
}

.my-license-area {
  padding: 35px 44px;
  background: #F9F9F9;
  position: relative;
}

.license-bx label {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.2px;
  color: #9FA2B4;
  display: block;
  margin-bottom: 13px;
}

.license-bx p {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #252733;
  margin-bottom: 12px;
  overflow-wrap: break-word;
}

.my-license-area .row {
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 14px;
}

.license-edit {
  float: left;
  width: 30%;
}

.my-license-area .row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.license-bx-check {
  position: absolute;
  top: 0;
  right: 0;
}

.license-bx-check .checkbox label::before {
  background: #D9D9D9;
}



.order-name h3 {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.2px;
  color: #989898;
  margin-bottom: 20px;
}

.order-name h3 span {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #252733;
}

.order-name h3 span:before {
  display: none;
}

.order-button {
  text-align: right;
  padding-bottom: 25px;
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 28px;
}

.order-button a {
  background: #000;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  display: inline-block;
  padding: 12px 30px;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
}

.order-button a:hover {
  background: #0066CC;
}

.license-bx h4.complete {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #22D73F;
}

.license-bx h4.panding {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #F15642;
}

.order-button a.cancle {
  border: 1px solid #DBDBDB;
  background: #fff;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
}

.order-button a.pending {
  border: 1px solid #DBDBDB;
  background: #d1d10f;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
}

.order-button a.cancle:hover {
  background: #0066CC;
  color: #fff;
}

.row-per-page {
  display: flex;
  align-items: center;
  padding-right: 15px;
}

.row-per-page h5 {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #9FA2B4;
}

.row-per-page select {
  background: url(../images/pagi-select.png) no-repeat 80% center;
  border: none;
  appearance: none;
  padding-right: 15px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
  letter-spacing: 0.3px;
  color: #4B506D;
  font-family: 'SF Pro Display';
}

.my-license-area.my-license-area-dealer {
  margin-bottom: 21px;
}

.profile-input-third {
  width: 33.33%;
  padding-right: 10px;
}

.profile-input-third:nth-child(2) {
  padding-left: 10px;
}

.profile-input-third:last-child {
  padding-right: 0;
  padding-left: 10px;
}

.check-profile-area {
  width: 100%;
}

.profile-check-bx {
  float: left;
  padding-right: 20px;
}

.profile-check-bx .checkbox {
  position: static;
}

.profile-input-box h5 {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #000000;
  padding-bottom: 15px;
}

.profile-input-box .checkbox label::before {
  width: 63px;
  height: 63px;
  background: #D9D9D9;
  border: 1px solid #D9D9D9;
}

.profile-input-box .checkbox input:checked+label::after {
  top: 20px;
  left: 17px;
}

.cul-text{padding-left:20px;}
.cul-text li{color: #b1b1b1;}

/*brandgudline-pop*/
#Brand-store-guidelines .modal-dialog {
  max-width: 1380px;
  margin-top: 100px;
}

.Brand-store-guidelines-area {
  padding: 116px 53px 70px;
}

#Brand-store-guidelines .modal-dialog .modal-content {
  border-radius: 0px;
  display: block;
}

#Brand-store-guidelines .close {
  opacity: 1;
  width: 53px;
  margin-top: 15px;
  margin-right: 22px;
}

.Brand-store-guidelines-area h1 {
  font-family: 'Cormorant Infant';
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  text-align: center;
  color: #000000;
  padding-bottom: 54px;
}

.Brand-store-guidelines-area ul {
  list-style: none;
}

.Brand-store-guidelines-area ul li {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #7D7D7D;
  padding-bottom: 35px;
  position: relative;
  padding-left: 50px;
}

.Brand-store-guidelines-area ul li:before {
  background: url(../images/gudline-arrow.png) no-repeat;
  width: 33px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 6px;
  content: '';
}

.Brand-store-agree {
  background: #0066CC;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  display: block;
  padding: 18px 50px;
  width: 50%;
  margin: 0 auto;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
}

.Brand-store-agree:hover {
  background: #000;
  color: #fff;
}

.pre-booking-content p {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.2px;
  color: #252733;
  margin-bottom: 0px;
}


@media only screen and (max-width:1450px) {
  .pistol-outer .grid-box .products-box:hover img {
    margin-right: -14px;
  }

  .compair-product .modal-dialog {
    max-width: 1240px;
  }

  #Brand-store-guidelines .modal-dialog {
    max-width: 1240px;
  }
}


@media only screen and (max-width:767px) {
  .faq-main .tab-content .card .card-header a {
    font-size: 20px;
  }

  .accordion .card-body {
    padding: 0px 15px;
    border: 1px solid #ccc !important;
    border-bottom: none !important;
  }

  .panel-group .fw-previous-tab-pane .panel-heading+.panel-collapse>.panel-body {
    border: none !important;
    padding: 0px !important;
  }

  .faq-outer {
    padding: 50px 0px 0px;
  }

  .faq-main .tab-content .card .card-header {
    display: block;
  }

  .faq-main .nav-tabs {
    display: none;
  }

  .tab-content>.tab-pane {
    display: block;
    opacity: 1;
  }

  .faq-main .accordion {
    border: 1px solid #707070;
    padding: 20px;
  }

  .acc-tab {
    display: none;
  }
}



/*.faq-main .tab-content > .tab-pane {
  display: none;
}
.faq-main .tab-content > .tab-pane.show{
  display: block;
}*/

/** start Pagination css dynamic**/
.news-pagination svg {
  margin: -5px 0px;
  width: 30px;
}

.news-pagination span span.relative {
  padding: 12px 22px !important;
  font-size: 30px;
  margin-right: 5px;
}

.news-pagination span a {
  padding: 12px 16px !important;
  font-size: 30px;
  margin: 0px 4px;
  border: 1px solid #000 !important;
  color: #000;
}

span[aria-current="page"] span {
  background-color: #0066CC !important;
  color: #ffffff !important;
  border: 1px solid #000 !important;
}

.news-pagination nav .flex.justify-between.flex-1.sm\:hidden {
  display: none;
}

.news-pagination p.text-sm.text-gray-700.leading-5 {
  color: #fff !important;
}

.news-pagination span span[aria-disabled="true"] span {
  background-color: #000000 !important;
  color: #0066CC !important;

}

.news-pagination span a[rel="prev"] {
  background-color: #000000 !important;
  color: #0066CC !important;
}

.news-pagination span a[rel="next"] {
  background-color: #000000 !important;
  color: #0066CC !important;
}

/** Close Pagination css **/
/*Category image link css start */
.img_linkPro {
  position: relative;
}

.img_linkPro a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*Category image link css end */
/* hover css */
a.hover-yellow:hover {
  background-color: #f7da08;
  color: #000;
}
/* 15-02-23 */
button.close {
  position: absolute;
  right: 1%;
  top: 24%;
}
a.modal-btn {
  display: inline-block;
  background-color: black;
  color: #ffff;
  margin-top: 11px;
  padding: 8px 20px;
  border-radius: 5px;
}
/*  */
button.top-close-btn {
  position: absolute;
  top: 5%;
  right: 4%;
  font-size: 35px;
}
button.bottom-close-btn {
  position: absolute;
  bottom: -60%;
  right: 4%;
}
/*  */
/* .upload_img {
  border: 1px solid #fff;
  border-style: dashed;
  padding: 10px;
} */

/* rupali media query */
@media(max-width:1024px){
  .manual-list{margin-top: 30px;}
  .owner-safety {
    padding: 16px 0;
}
.owner-safety h2{font: 45px/80px 'Cormorant Infant';padding-bottom: 0;}
.manual-list ul li a span{font-size: 20px;}
.warranty-box h3{font-size: 18px;}
.warranty-box a{font-size: 20px;}
.warranty-box h3{margin-bottom: 15px;}

.warranty-registration{padding: 30px 0px;}
  .inner-banner-text-outer .container h1{font: 50px/100% 'Cormorant Infant', serif;}
.company-overview-outer{padding: 40px 0px;}
.company-overview-main h2{font-size: 50px;padding-bottom: 20px;}
.company-overview-main p{font-size: 18px;margin-bottom: 20px;}
.our-value-text{padding: 40px 30px;}
.our-value-area h2{font-size: 50px;}
.our-value-area p{font-size: 20px;}
.our-value-row{margin-bottom: 50px;}
.about-history-outer{padding-bottom: 50px;}
.about-history-main h2{font-size: 50px;}
.empowering-people-main h2{font-size: 50px;padding-bottom: 19px;}
.empowering-people-main p{font-size: 20px;margin-bottom: 20px;}
.empowering-people-main ul li{font-size: 20px;}
.empowering-people-outer{padding-bottom: 50px;}
.delar-box{min-height: 300px;}
.delar-box.about-deler-box h3{margin-bottom: 0px;}
.delar-box h3{font-size: 50px;}
.delear-area p{font-size: 25px;}
.Explore-registration a{font-size: 20px;}
.subscribe-here-main h2{font-size: 50px;}
.subscribe-box input,.subscribe-box select{height: 60px;padding: 14px 30px;}
.subscribe-box-btn button{font-size: 30px;}
.inner-banner-outer{height: auto!important;}
}

@media(max-width:992px){
  .profile-pic figure button.change-image{right: -7px;}
  .faq-outer {
    padding: 50px 0px 0px;
}
.delar-box h3 {
  font-size: 30px;
  margin-bottom: 26px;
  padding-bottom: 0;
}
.delear-area p {
  font-size: 18px;
}
.faq-main .nav-tabs>li>a{font-size: 25px;}
.subscribe-here-main h2 {
  font-size: 35px!important;
}
.faq-main .tab-content .card .card-header a{font-size: 18px;}
.faq-main .nav-tabs>li>a.active span:after{height: 9px;bottom: -10px;}
  .card-body{padding: 0!important;}
  .legal-main h2{font-size: 45px;margin: 0px 0px 30px;}
  .legal-outer{padding: 35px 0px 30px;}
  .legal-main p{font-size: 18px;}
  .footer-middle .col{width: 50%;margin-bottom: 30px;}
  .footer-middle .col:last-child {
    width: 50%;
    padding-right: 0;
}
  .footer-middle .col:first-child {
    padding-left: 15px;
}
  .footer-middle{flex-wrap:wrap}
.footer-middle .col{flex-basis:inherit}
  .nav-menu{display: none;}
  .side-menu ul li a{font-size: 0px;display: block;}
  .nav-menu.active{display: block;}
 
  .footer-middle .col:last-child ul li a {
    padding-left: 3px;
}
  .humburger-ico {
    display: block;
    width: 40px;
    position: absolute;
    top: 24px;
    right: 30px;
    border: none;
}
.humburger-ico .hum-ico {
  display: block;
  width: 35px;
  background: #ffffff;
  position: absolute;
  height: 5px;
  width: 100%;
  border-radius: 9px;
  transition: all 0.3s ease;
}
.humburger-ico .hum-ico:nth-child(2) {
  top: 11px;
}
.humburger-ico .hum-ico:nth-child(3) {
  top: 22px;
}
  .side-menu{padding-top: 20px;
    padding-right: 65px;}
    .nav-menu ul {
      display: block;
      list-style-type: none;
  }
  .nav-menu ul li a{
    color: #000000;
  }
  .nav-menu ul li{
    border-bottom: 1px solid #000000;
    padding-bottom: 24px;
    padding-top: 10px;
  }
  .nav-menu ul li:last-child{border-bottom: none;padding-bottom: 0;}
  .nav-menu{
    position: absolute;
    padding: 19px 30px 215px;
    list-style-type: none;
    color: #000000;
    padding: 33px;
    width: 100%;
    left: 0;
    top: 102%;
    background: #ffffff;
  }
  .nav-menu ul li.active .chapternav{
    position: inherit;
  }
  .humburger-ico.humburger-open span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
  }
  .humburger-ico.humburger-open span:nth-child(2) {
    opacity: 0;
    left: -30px;
    display: none;
  }
  .humburger-ico.humburger-open span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
  }
  .profile-submit-box.editprofilebtn input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    border-radius: 5px;
    max-width: 130px;
  }
  .profile-pic input {
    margin-top: 10px;
  }
  .profile-submit-box.editprofilebtn {
    margin-top: 5px;
  }
  
}

@media(max-width:767px){
  .profile-pic figure button.change-image{    right: 30px;
    top: 91px;}

  .mini-navbar .left-sidebar-pro {
    width: 80px;
    position: absolute;
    left: 0;
}
.left-sidebar-pro {
    width: 255px;
    height: 100%;
    float: left;
    position: absolute;
    left: 0;
}
.all-content-wrapper{margin-left:80px!important}
.mini-navbar .all-content-wrapper {
    margin-left: 80px!important;
}
  .profile-input-box{width: 100%;}
  .pro-file-name{width: 100%;}
  .pro-file-name:last-child{padding-left: 0;}
  .prfile-form-row{padding: 7px 0px;}
  .profile-pic-area{padding-bottom: 20px;}
  .profile-submit-box{margin-top: 0;}
  .profile-input-box select{height: 50px;padding: 10px 20px;}
  .head-text h1{font-size: 40px;}
  .profile-outer{padding: 30px 30px;}
  .profile-submit-box input{height: 55px;font-size: 25px;}
  .profile-name-sec{padding-left: 0;}
  .profile-pic figure img{height: 140px;max-width: 140px;}
  .pro-file-name{padding-top: 10px;}
  .profile-input-box input{height: 50px;padding: 20px 20px;}
  .contact-box-text{margin-bottom: 35px;}
  .contact-us-left {width: 100%;}
  .contact-left-area {max-width: 100%;}
  .contact-us-right {width: 100%;}
  .contact-area-right {max-width: 100%;}
  .contact-us-form{flex-wrap: wrap;padding-bottom: 40px;}
  .conact-main h2{margin-bottom: 40px;font-size: 50px;}
  .contact-us-outer{padding: 35px 0px 120px;}
  .sign-up-main{flex-wrap: wrap;}
  .sign-up-right{width: 100%;padding: 36px 40px;margin-top: 25px;}
  .sign-up-images{width: 100%;}
  .sign-up-images img{width: 100%;}
  .sign-up-outer {padding: 50px 0px;}
  .profile-input-box .checkbox label::before{width: 50px;height: 50px;}
  .profile-input-box .checkbox input:checked+label::after {top: 14px;left: 10px;}
  .werywin-investors-outer{padding: 50px 0px;}
  .big-dummy-main h2{font-size: 40px;margin: 0px 0px 20px;}
  .big-dummy-main figure{margin-bottom: 0;}
  .werywin-investors-right p{font-size: 18px;}
  .werywin-investors-right{padding-top: 30px;}
  .werywin-investors-main{display: block;}
  .werywin-investors-right h2{font-size: 40px;}
  .big-dummy-outer{height: 100%;}
  .big-dummy-main a{font-size: 25px;}
  .werywin-investors-left {
    width: 100%;
}
.werywin-investors-right{width: 100%;padding-left: 0;}
  .our-value-area{
    width: 430px;
  }
  .about-history-main h2 {
    font-size: 40px;
  }
  .history-slider-area p{
    font-size: 16px;
  }
  .empowering-people-main h2{font-size: 40px;}
  .empowering-people-main ul li{font-size: 15px;padding-top: 16px;}
  .delar-box h3 {
    font-size: 40px;
  }
  .subscribe-here-main h2 {
    font-size: 35px;
  }
  .news-main h2{font: 45px/100% 'Cormorant Infant', serif;padding-bottom: 30px;}
  .news-area{padding: 25px 30px;}
  .news-anch h4{font-size: 22px;}
  .news-anch a{font-size: 22px;}
  .news-area p{margin-bottom: 35px;}
  .pagination-area{margin-top: 0px;
    margin-bottom: 27px;}
}
@media(max-width:600px){
  .pistol-outer .coming_soon h1{font-size: 2.3rem;}
  .pistol-outer .grid-box .products-box{width: 100%;}
  .warranty-box h3 {font-size: 15px;}
  .contact-box-text p{font-size: 20px;}
  .contact-box-text h3{font-size: 24px;}
  .profile-check-bx{padding-right: 72px;}
  .filter-search .search{width: 100%;}
  .filter-search .search .form-group{display: block;}
  .filter-search{display: block;}
  .filter-search .filter{width: 100%;}
  .filter-search .filter .form-group{display: block;}
  .filter-search .filter .form-group select{padding: 20px;}
  .filter-search .filter .form-group .w-50{width: 100%!important;margin-top: 10px;}
  .filter-search .filter .form-group input[type="submit"]{width: 69px;
    line-height: 43px;
    font-size: 22px;
    margin-top: 10px;
  }
  .filter-search .search form input{width: 100%!important;}
  .filter-search .search form input[type="submit"]{width: 59px;
    line-height: 50px;margin-top: 10px;}

}
@media(max-width:500px){
    .loard-faq a{font-size:20px;}
    .history-slide-main{padding-top:0px;}
  .profile-name-sec h3{padding-right:50px;}
  .my-license-list h2{font-size: 16px;}
  .profile-pic figure button.change-image{right: 250px;top: 63px;}
  .profile-submit-box.editprofilebtn{right: 7px;margin-top: 30px;top: 0;}
  .add-license-anchr a{font-size: 14px;}
  .order-name h3 span{font-size: 12px;}
  .my-license-area{padding: 20px 14px;margin-bottom: 20px;}
  .order-button a.cancle{margin-bottom: 16px;font-size: 15px;padding: 10px 25px;}
  .profile-update label{font-size: 12px;}
  .profile-pic{min-width: 100%;}
  .mini-navbar .all-content-wrapper {margin-left: 75px!important;}
  .order-button a{font-size: 16px;padding: 10px 25px;}
  .order-button{text-align: left;margin-bottom: 18px;}
  .all-content-wrapper{padding: 10px 7px 60px;}
  .order-button a.pending{font-size: 15px;}
  .profile-submit-box input {height: 40px;font-size: 13px;}
  .profile-pic figure img {height: 110px;max-width: 110px;}
  .profile-outer {padding: 7px 7px;}
  .head-text {padding: 0px 0px;}
  .profile-name-sec h3{font-size: 23px;text-align: center;}
  .head-text h1 {font-size: 30px;}
  .profile-pic-area {padding-top: 20px;padding-bottom: 20px;display: block;}
  .sign-up-box input{height: 55px;padding: 13px 20px;}
  .sign-up-box .submit{font-size:22px;}
  .sign-up-right h1{font-size: 45px;}
  .loard-faq {padding: 0px 0px 0px;}
.delar-box{width: 100%;margin-top: 15px;}
  .news-pagination span a{padding: 8px 12px !important; font-size: 25px;}
  .news-pagination span span.relative{padding: 8px 16px !important;
    font-size: 26px;}
    .deler-locator-main{display: block;}
  .empowering-people-main ul li{font-size: 15px;
    padding-top: 0px;
    padding-left: 70px;
    background: url(../images/arrow-icon.png) no-repeat 0px 5px;
  }
  .empowering-people-main p{font-size: 14px;text-align:justify;}
  .footer-middle{display: block;}
  .footer-middle .col {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer-middle .col:last-child {
    width: 100%;
    padding-right: 0;
  }
  .col:last-child ul li a img {
    left: -3px!important;
  }
  .footer-middle .col:last-child ul li a {
    padding-left: 30px;
  }
  .our-value-area p {
    font-size: 14px;
  }
  .our-value-area {
    width: 100%;
  }
  .about-history-main h2 {
    font-size: 32px;
  }
  .empowering-people-main h2{font-size: 32px;}
  .delar-box h3 {
    font-size: 33px;
  }
  .subscribe-here-outer {
    padding-bottom: 20px;
  }
  .subscribe-here-main h2 {
    font-size: 33px;
  }
  .footer-bottom span{padding-left: 20px;}
  .footer-middle .col:last-child ul li {
    margin-bottom: 5px;
  }
  .footer-middle .col{margin-bottom: 10px;}
  .text-4xl{margin-bottom: 20px;font-size: 2.15rem;}
  .h-full{margin-bottom: 10px;padding: 1rem!important;}
  .lg\:block .flex.justify-between.items-center{display: block!important;}
}
@media(max-width:400px){
  .profile-name-sec h3{position: absolute;top: 28%;right: 0;}
  .profile-pic figure button.change-image{right: 150px;}
  .profile-submit-box input{font-size: 12px;}
  .my-license-list{display: block;}
  .my-license-list h2{margin-bottom: 10px;}
  .add-license-anchr a {font-size: 18px;}
  .head-text h1 {font-size: 25px;}
  .inner-banner-text-outer .container h1 {
    font: 30px/100% 'Cormorant Infant', serif;
  }
  .company-overview-main h2{font-size: 40px;}
  .plus-cricle-btn a{height: 30px;width: 30px;}
  .our-value-area h2{font-size: 30px;}
  .our-value-text {
    padding: 15px 13px;
  }
  .history-slider-area{padding: 25px;}
  .empowering-people-main ul li{font-size: 13px;}
  .delear-area p{font-size: 14px;}
  .subscribe-here-form{display: block;}
  .subscribe-box{width: 100%;margin-top: 10px;}
  .plus-cricle-btn{right: 20px;bottom: 14px;}
  .owner-safety h2{font: 35px/80px 'Cormorant Infant';}
}
@media(max-width:390px){
  .profile-pic figure button.change-image {right: 140px;}
}


/* end */