/* Google Fonts Raleway and open sans */

@import url("https://fonts.googleapis.com/css?family=Open+Sans|Raleway:300,400,600,700");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* ----------------------------------------------------------------------------------------
                        General css
* -------------------------------------------------------------------------------------- */

html,
body {
  height: 100%;
}

body {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  line-height: 24px;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
}

.clr {
  clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
p,
address,
strong,
i {
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222222;
  font-family: "Raleway", sans-serif;
}
h2 {
  font-family: "Kaleko";
}
a,
button {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

body {
  overflow-x: hidden;
}

ul,
li {
  margin: 0;
  padding: 0;
}

fieldset {
  border: 0 none;
  margin: 0 auto;
  padding: 0;
}

.p-t {
  padding-top: 100px;
}

input[type="submit"] {
  display: inline-block;
  background: #333333;
  padding: 12px 25px;
  border-radius: 0px;
  color: #fff;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.section-big {
  padding: 15px 0;
}

.section-small {
  padding: 50px 0px;
}

.section-title {
  margin: auto;
  text-align: center;
  width: 97%;
}

.section-title h2 {
  font-size: 40px;
  line-height: 26px;
  margin-bottom: 25px;
  margin-top: 0;
  font-weight: 500;
  color: #180f31;
  font-family: "Poppins", sans-serif;
}
.bnr-overly .cnt_list_counter {
  border-right: 1px solid #efecfd;
}
.bnr-overly .cnt_list_counter:last-child {
  border-right: none;
}
.section-title span {
  font-weight: 600;
}

.section-title p {
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
  color: #6a6a6a;
  max-width: 710px;
}

.section-title.white-title,
.section-title.white-title h2 {
  color: #fff;
}

.sub-title {
  font-size: 24px;
  margin-top: 0px;
}

.mt-30 {
  margin-top: 30px;
}

img {
  max-width: 100%;
}

/***  Button Start  ***/

.btn {
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  outline: 0 none;
  padding: 10px 45px;
  position: relative;
  text-align: center;
  text-decoration: none;
  z-index: 1;
  transition: all 0.4s ease;
  outline: 0;
}

.btn.btn-bordered-grad {
  background: transparent none repeat scroll 0 0;
  color: #2b323f;
}

.btn.btn-color {
  background: transparent none repeat scroll 0 0;
  color: #2b323f;
  position: relative;
}

.btn.btn-color:hover,
.btn.btn-color:focus {
  color: #fff;
}

.btn.btn-bordered-grad:hover,
.btn.btn-bordered-grad:focus {
  color: #fff;
}

.btn.btn-color:before {
  background: -webkit-linear-gradient(to left, #2c3f51 0%, #3498da 100%) repeat
    scroll 0 0;
  background: linear-gradient(to left, #2c3f51 0%, #3498da 100%) repeat scroll 0
    0;
  border-radius: 100px;
  content: "";
  height: calc(100% + 4px);
  left: -2px;
  position: absolute;
  top: -2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: calc(100% + 4px);
  z-index: -2;
}

.btn.btn-bordered-grad:before {
  background: rgba(0, 0, 0, 0) -webkit-linear-gradient(
      to left,
      #513d97 0%,
      #513d97 100%
    ) repeat scroll 0 0;
  background: rgba(0, 0, 0, 0)
    linear-gradient(to right, #513d97 0%, #513d97 100%) repeat scroll 0 0;
  border-radius: 100px;
  content: "";
  height: calc(100% + 4px);
  left: -2px;
  position: absolute;
  top: -2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: calc(100% + 4px);
  z-index: -2;
}

.btn.btn-bordered-grad:after {
  background: #fff none repeat scroll 0 0;
  border-radius: 100px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  z-index: -1;
}

.btn.btn-bordered-grad:hover:after,
.btn.btn-bordered-grad:focus:after {
  opacity: 0;
  z-index: 10;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.btn.btn-color:after {
  background: #fff none repeat scroll 0 0;
  border-radius: 100px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  z-index: -1;
}

.btn.btn-color:hover:after,
.btn.btn-color:focus:after {
  opacity: 0;
  z-index: 10;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.button-group a {
  margin-right: 30px;
  margin-top: 15px;
  outline: 0;
  text-transform: capitalize;
}

.button-group a:last-child {
  margin-right: 0;
}

.button-group a span {
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}

.dsp-tc span {
  padding-left: 0px;
}

.button-group a i {
  position: absolute;
  padding-right: 8px;
  left: 14px;
  top: 20px;
  font-size: 26px;
}

/* ----------------------------------------------------------------------------------------
                    preloader area css
* --------------------------------------------------------------------------------------- */

#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  z-index: 99999999;
}
.load-circle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: rotate 1s infinite;
  height: 50px;
  width: 50px;
}

.load-circle:before,
.load-circle:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}
.load-circle:before {
  animation: ball1 1s infinite;
  background-color: #7109e8;
  box-shadow: 30px 0 0 #bf09e8;
  margin-bottom: 10px;
}
.load-circle:after {
  animation: ball2 1s infinite;
  background-color: #b70387;
  box-shadow: 30px 0 0 #460591;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(0.8);
    -moz-transform: rotate(0deg) scale(0.8);
  }
  50% {
    -webkit-transform: rotate(360deg) scale(1.2);
    -moz-transform: rotate(360deg) scale(1.2);
  }
  100% {
    -webkit-transform: rotate(720deg) scale(0.8);
    -moz-transform: rotate(720deg) scale(0.8);
  }
}

@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 #bf09e8;
  }
  50% {
    box-shadow: 0 0 0 #bf09e8;
    margin-bottom: 0;
    -webkit-transform: translate(15px, 15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #bf09e8;
    margin-bottom: 10px;
  }
}

@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 #460591;
  }
  50% {
    box-shadow: 0 0 0 #460591;
    margin-top: -20px;
    -webkit-transform: translate(15px, 15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #460591;
    margin-top: 0;
  }
}

/* ----------------------------------------------------------------------------------------
                    Navigation area css
* --------------------------------------------------------------------------------------- */
.pdt {
  padding-top: 50px;
}
.menu-area.navbar-fixed-top {
  top: 0px;
  height: 75px;
  background: #4d3795;
}
.color-menu {
  background: linear-gradient(to right, #513d97, #513d97);
  background: -webkit- linear-gradient(to right, #513d97, #513d97);
  background: -moz- linear-gradient(to right, #513d97, #513d97);
  background: -o- linear-gradient(to right, #513d97, #513d97);
  background: -ms- linear-gradient(to right, #513d97, #513d97);
}

.menu-area.navbar-fixed-top.sticky-menu {
  top: 0px;
  height: 60px;
  z-index: 9999999;
  background: #4d3795;
}

.sticky-menu {
  box-shadow: 0px 3px 4.7px 0.3px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}

.mainmenu {
  padding-top: 0px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}

.sticky-menu .mainmenu {
  padding-top: 0px;
}

.nav.navbar-nav {
  margin-right: 16px;
}

.navbar {
  margin-bottom: 0;
  border: 0px;
  margin-top: 15px;
}

.sticky-menu .navbar {
  margin-top: 7px;
}

.navbar-brand {
  padding: 0;
}

.navbar-nav.navbar-center {
  position: absolute;
  left: 40%;
  transform: translatex(-30%);
}

.navbar-nav li {
  float: none;
  display: inline-block;
  padding: 10px 0px 0px 20px;
}

.navbar-nav li a {
  color: #fff;
  font-size: 18px;
  position: relative;
  display: block;
  padding: 0;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.navbar-nav li a.abonne {
  background: #fece06;
  padding: 5px 20px;
  border-radius: 50px;
  color: #4d3795;
  /* font-family: 'Kaleko'; */
  font-size: 18px;
}

.navbar-nav li.active a:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -8px;
  height: 3px;
  width: 100%;
  background: #fece06;
}
.navbar-nav li a.abonne:hover {
  background: #fff;
}
.nav > li > a:hover,
.nav > li > a:active,
.nav > li > a:focus {
  background: none;
}

/* Mobile Nav css */

.navbar-toggle .icon-bar {
  background: #fff;
}

/* Scrool top css */

#scroll-to-top {
  background: #513d97;
  background: -webkit- linear-gradient(to right, #513d97, #513d97);
  background: -moz- linear-gradient(to right, #513d97, #513d97);
  background: -o- linear-gradient(to right, #513d97, #513d97);
  background: -ms- linear-gradient(to right, #513d97, #513d97);
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 20px;
  line-height: 35px;
  color: #fff;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  border-radius: 50%;
}

/* ----------------------------------------------------------------------------------------
                    Slider area css
* -------------------------------------------------------------------------------------- */

.slider-area {
  height: auto;
  width: 100%;
  background: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  background-position: center;
}

.slider-overlay {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(to right, #513d97, #513d97);
  background: -webkit- linear-gradient(to right, #513d97, #513d97);
  background: -moz- linear-gradient(to right, #513d97, #513d97);
  background: -o- linear-gradient(to right, #513d97, #513d97);
  background: -ms- linear-gradient(to right, #513d97, #513d97);
}

.slider-table {
  height: auto;
  display: table;
  width: 100%;
}

.slider-cell {
  display: table-cell;
  vertical-align: middle;
  background-position: 44vw bottom;
  background-repeat: no-repeat;
}

.slider-text {
  text-align: center;
  margin-top: 44vh;
  transform: translateY(-50%);
}

.slider-img img {
  display: none;
}

.slider-text h2,
.slider-text h3 {
  font-size: 36px;
  color: #fff;
  line-height: 55px;
  margin: 0;
  font-family: "Kaleko";
}

.slider-text h2 {
  font-weight: 300;
  color: #fece06 !important;
}
.slider-text h2 span {
  font-family: "Presidente";
}
.slider-text h3 {
  font-weight: 700;
  font-size: 36px;
  padding: 0;
  text-transform: uppercase;
}
.slider-text h4 {
  font-family: "Kaleko";
  font-weight: 700;
  font-size: 28px;
  padding: 0;
  color: #fff;
}
.slider-text h4 font {
  color: #fece06;
}

.slider-text p {
  color: #ffffff;
  margin-bottom: 30px;
}
.slider-text .hero-btn {
  margin: 40px auto;
}

.slider-carosoul .owl-controls {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  margin-top: -20px;
}

.slider-carosoul .owl-controls div {
  font-size: 24px;
  color: #fff;
  display: inline;
}

.slider-carosoul .owl-controls div.owl-next,
.slider-carosoul .owl-controls div.owl-prev {
  position: absolute;
  color: #ffffff;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 35px;
  border: 2px solid #fff;
  border-radius: 50px;
}

.slider-carosoul .owl-controls div.owl-next {
  right: 15px;
  float: right;
}

.slider-carosoul .owl-controls div.owl-prev {
  left: 15px;
}

/* slider-2 */

.slider-background {
  background: linear-gradient(to right, #513d97, #513d97);
  background: -webkit- linear-gradient(to right, #513d97, #513d97);
  background: -moz- linear-gradient(to right, #513d97, #513d97);
  background: -o- linear-gradient(to right, #513d97, #513d97);
  background: -ms- linear-gradient(to right, #513d97, #513d97);
  min-height: 100vh;
  position: relative;
}

.shape-image img {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 333;
}

.hero-area {
  background-image: url(img/slider/1.html);
  background-size: cover;
  background-position: center center;
  height: 100vh;
  z-index: 1;
  position: relative;
  color: #fff;
}

.parallax {
  background-attachment: fixed;
}

.slider {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.slider h1 {
  color: #fff;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-size: 36px;
}

.slider p {
  color: #fff;
  font-size: 16px;
  margin: 0 0 35px;
  padding-right: 28%;
}

.slider-thumb {
  position: absolute;
  bottom: 0;
  right: 0%;
  z-index: 3;
}

.hero-text {
  position: absolute;
  top: 55.5%;
  transform: translate(0%, -50%);
}

.hero-btn,
input[type="submit"].hero-btn {
  background: #fece06 none repeat scroll 0 0;
  border-radius: 50px;
  color: #513d97;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
}

.hero-btn:hover,
.about-content > .hero-btn:hover,
input[type="submit"].hero-btn:hover {
  background-color: #fff;
  color: #513d97;
  text-decoration: none;
}
.btn-partener {
  float: right;
  padding: 17px 25px 17px 25px;
  margin-top: -5px;
  margin-left: 15px;
}
.hero-text p.he-p {
  padding: 0 22%;
  line-height: 30px;
}

/* Slider Nav */

.background-area .owl-nav div {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 38px;
  height: 50px;
  left: -56px;
  line-height: 45px;
  margin-top: -25px;
  position: absolute;
  text-align: center;
  top: 50%;
  transition: all 0.4s ease 0s;
  width: 50px;
  z-index: 999;
}

.background-area .owl-nav .owl-next {
  left: auto;
  right: -56px;
}

.background-area:hover .owl-nav div {
  left: 10px;
}

.background-area:hover .owl-nav .owl-next {
  left: auto;
  right: 10px;
}

.background-area .owl-nav div:hover {
  background: rgba(255, 255, 255, 0.4) none repeat scroll 0 0;
}

.background-area {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.single-carousel {
  background-size: cover;
}

.background-content {
  position: relative;
}

.banner-image {
  padding-left: 30px;
  position: absolute;
  right: 0;
  width: 22%;
  top: 25%;
}

.background-content {
  position: relative;
}

.watch img {
  margin-top: -13%;
}

.banner2-image img {
  position: absolute;
  right: 0;
  width: 100%;
  margin-top: 15%;
}

/* ----------------------------------------------------------------------------------------
                    About us area css
* ---------------------------------------------------------------------------------------*/
.about-area {
  padding: 30px 0;
}
#about-us {
  background: rgba(115, 70, 182, 0.05);
}

.about-card {
  background: #ffffff;
  margin-bottom: 60px;
  padding: 30px 15px;
  height: 360px;
  text-align: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}

.about-card:hover {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
  background: #f8f6fb;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  cursor: pointer;
}

.about-content {
  padding-top: 30px;
}

.about-card-content {
  text-align: center;
}

.about-card-content img {
  margin: 0 auto;
  padding-bottom: 20px;
  width: 50%;
}

.about-card-content h4 {
  color: #513d97;
  font-size: 20px;
  margin-bottom: 8px;
  margin-top: 5px;
  padding: 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.about-card-content p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #6a6a6a;
  text-align: center;
  padding: 0 20px;
}

/***  about-2  ***/

.about-text {
  padding-top: 20px;
}

.about-text p {
  text-align: left;
  line-height: 24px;
}

.about-span {
  position: relative;
  width: 420px;
}

.about-span p {
  color: #513d97 !important;
  padding-top: 20px;
  line-height: 24px;
}

.about-span-color p {
  color: #513d97;
}

.discription {
  margin-top: 10px;
}

.discription ul li {
  font-size: 16px;
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: justify;
}

.discription ul li i {
  font-size: 14px;
  margin-right: 15px;
}

/*** about- 3 ***/

.about-p {
  margin: 0 18px;
  width: 96%;
  padding: 0;
}

.about-text p {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  text-align: justify;
  text-transform: capitalize;
  padding-bottom: 14px;
}

/* ----------------------------------------------------------------------------------------
                    feature area css
* ---------------------------------------------------------------------------------------*/
/* + PopularCategory */
.categorybox {
  position: relative;
  margin-bottom: 30px;
  /*	-webkit-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.54);
-moz-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.54);
box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.54);
border-radius: 16px;*/
}
.popularcategory .section-padding:last-of-type {
  padding-top: 45px;
  padding-bottom: 45px;
}
.categorybox::before {
  /*position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 0;
	width: 0;
	border-bottom: 30px solid #fff;
	border-right: 30px solid transparent;
	z-index: 1;	*/
}
.categorybox::after {
  /*position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 0;
	width: 0;
	border-top: 30px solid rgba(255,255,255,0.25);
	border-left: 30px solid transparent;
	z-index: 1;	*/
}
/* .category-img {
  position: relative;
  border-radius: 50%;
  padding: 35px 20px;
  background: rgb(89, 44, 135, 1);
  background: linear-gradient(180deg, #ffffff 0%, #fbfaff 0.01%, #e4e2ed 100%),
    #ffcbcb;
  width: 130px;
  height: 130px;
  line-height: 130px;
  margin: 0 auto 10px;
  border: 5px solid #f2effe;
} */
.category-img {
  position: relative;
  border-radius: 50%;
  padding: 35px 20px;
  background-color: rgb(89, 44, 135, 1);
  width: 150px;
  height: 150px;
  line-height: 150px;
  margin: 0 auto 10px;
  background: linear-gradient(#fbfaff, #e4e2ed) padding-box,
    linear-gradient(133deg, #5cc6f0, #e6147a) border-box;
  border: 2px solid transparent;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.category-img img {
  width: 60px !important;
  margin: 0 auto;
  object-fit: cover;
}
/*.category-img::before{
	background-color: rgba(0, 0, 0, 0.6);
	bottom: 0;
	content: "";
	display: inline-block;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 16px;
	transition: all 1s ease 0s;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
}*/
.category-content {
  /*position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);*/
  text-align: center;
  display: inline-block;
  width: 100%;
}
.category-content span {
  display: block;
  font-size: 30px;
  color: #fff;
  margin-bottom: 27px;
  transition: all 1s ease 0s;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
}
.category-content a {
  text-decoration: none;
  letter-spacing: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #4c4294;
  line-height: 1;
  font-size: 20px;
  /*text-transform:uppercase;*/
  transition: all 1s ease 0s;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  /*word-wrap: break-word;*/
}
.categorybox:hover .category-content span,
.categorybox:hover .category-content a {
  color: #513d97;
}
.categorybox:hover .category-img::before {
  background: rgba(255, 255, 255, 0.7);
}

.single-feature {
  padding: 35px;
  background: rgba(115, 70, 182, 0.05);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  text-align: center;
}

.single-feature-squre {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.single-feature:hover {
  background: rgba(101, 78, 163, 0.85);
  background: linear-gradient(to right, #513d97, #513d97);
  background: -webkit- linear-gradient(to right, #513d97, #513d97);
  background: -moz- linear-gradient(to right, #513d97, #513d97);
  background: -o- linear-gradient(to right, #513d97, #513d97);
  background: -ms- linear-gradient(to right, #513d97, #513d97);
  color: #fff !important;
  box-shadow: 0px 4px 10px #373737;
}

.feature-inner,
.feature-top {
  margin-top: 60px !important;
}

.single-feature:hover h3,
.single-feature:hover p {
  color: #fff;
}

.single-feature h3 {
  margin-bottom: 30px;
  color: #513d97;
}

.single-feature .icon {
  height: 60px;
  width: 60px;
  border-radius: 100%;
  display: table;
  z-index: 999;
  position: absolute;
  left: 50%;
  top: -30px;
  margin-left: -30px;
}

.single-feature .icon .icon-cell {
  display: table-cell;
  vertical-align: middle;
}
.single-feature .icon .icon-cell {
  font-size: 24px;
  color: #513d97;
}
.single-feature .icon::after {
  position: absolute;
  background: #fff;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  border-radius: 50%;
  z-index: -1;
}

.single-feature .icon::before {
  position: absolute;
  left: -1px;
  top: -1px;
  content: "";
  height: calc(100% + 2px);
  width: calc(100% + 2px);
  background: linear-gradient(to right, #513d97, #513d97);
  background: -webkit- linear-gradient(to right, #513d97, #513d97);
  background: -moz- linear-gradient(to right, #513d97, #513d97);
  background: -o- linear-gradient(to right, #513d97, #513d97);
  background: -ms- linear-gradient(to right, #513d97, #513d97);
  z-index: -1;
  border-radius: 50%;
}

.feture-mobile {
  margin-top: 50px;
}

@keyframes fetureanimate {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.feture-mobile {
  /* animation-name: fetureanimate;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;

  -webkit-animation-name: fetureanimate;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-animation-name: fetureanimate;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  -ms-animation-name: fetureanimate;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;

  -o-animation-name: fetureanimate;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;*/
}

.feture-banner {
  margin-top: 50px;
}

@keyframes banneranimate {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  75% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.feture-banner {
  animation-name: banneranimate;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;

  -webkit-animation-name: banneranimate;
  -webkit-animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-animation-name: banneranimate;
  -moz-animation-duration: 8s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  -ms-animation-name: banneranimate;
  -ms-animation-duration: 8s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;

  -o-animation-name: banneranimate;
  -o-animation-duration: 8s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.feture-mobile img {
  margin-bottom: -10px;
}

/* ----------------------------------------------------------------------------------------
*                     Available  css
* --------------------------------------------------------------------------------------- */

.available-part {
  background: #f8f6fb;
}

.available-inner {
  text-align: center;
}

.available-inner img {
  margin: 0 auto;
}

.available-inner h4 {
  font-size: 22px;
  color: #513d97;
  font-weight: 700;
  text-transform: capitalize;
  padding: 20px 0 10px 0;
}

.available-inner p {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  text-transform: capitalize;
  text-align: justify;
}

/* ----------------------------------------------------------------------------------------
*                         FAQ CSS
* --------------------------------------------------------------------------------------- */

#faq {
  background: #f8f6fb;
}

.faq-content {
  background: #ffffff;
  margin: 40px 0 0;
  padding: 40px 20px 20px 25px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.faq-text {
  margin-bottom: 25px;
}

.faq-text h4 {
  font-size: 16px;
  color: #513d97;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 15px;
}

.faq-text p {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  text-transform: none;
  padding-left: 20px;
  border-left: 2px solid #513d97;
  margin-bottom: 15px;
  text-align: justify;
}

/* ----------------------------------------------------------------------------------------
*                     Screenshot css
* --------------------------------------------------------------------------------------- */
.screenshots {
  background: #f8f6fb;
}

.screenshots .all-title {
  color: #fff;
}

.screenshots .all-title p {
  margin-bottom: 10px;
}

.appin-screenshot .swiper-slide {
  padding: 115px 43px;
  cursor: ew-resize;
}

.swiper-container::before {
  background: url(../images/testi-iphone.png) no-repeat scroll center center;
  background-size: cover;
  content: "";
  height: 85%;
  left: 50%;
  position: absolute;
  top: 35px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 350px;
  z-index: 999;
}

.swiper-slide {
  width: 390px;
  height: auto;
  padding: 0 15px;
}

.swiper-slide img {
  display: block;
  margin: auto;
  width: 100%;
}

.screen-nav {
  color: #fff;
  margin: 10px auto 0;
  text-align: center;
  position: absolute;
  top: 50%;
  z-index: 100;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  z-index: 100;
  cursor: pointer;
  background: #513d97;
  color: #fff;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 0;
  padding: 9px 0;
  border-radius: 50%;
  font-size: 32px;
  margin: 0 25px;
  display: block;
  transition: all 0.6s ease;
}

.prev:hover,
.next:hover {
  background-color: #fc8b02;
  color: #fff;
}
.prev {
  position: absolute;
  left: 0;
}
.next {
  position: absolute;
  right: 0;
}
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: none !important;
}

/* ----------------------------------------------------------------------------------------
*                    Team area css
* --------------------------------------------------------------------------------------- */
.bg-grey {
  background: #f0f0f0;
}
.bg-white {
  background: #ffffff;
}
.bg-gris {
  background: #faf9ff;
}
.promo .promo-col img {
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 130px;
  object-fit: cover;
}
.promo .promo-col img.logo-partner {
  border-radius: 50%;
}
.promo-col {
  background: #f7f6ff;
  border-radius: 24px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.promo .promo-col .link {
  position: relative;
  display: block;
  overflow: hidden;
}

.promo .promo-col .member-promo h4 {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  color: #000;
  min-height: 58px;
}
.promo .promo-col .member-promo .cat_resto {
  font-size: 11px;
  color: #8b819d;
  display: block;
  text-transform: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 0 20px;
}

.promo .promo-col .member-promo p {
  font-size: 16px;
  color: #f72585;
  padding: 7px 20px 20px 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.promo .promo-hover {
  background: -moz-linear-gradient(
    left,
    rgba(115, 70, 182, 1) 0%,
    rgba(66, 39, 88, 0.6) 48%,
    rgba(115, 70, 182, 1) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(115, 70, 182, 1) 0%,
    rgba(66, 39, 88, 0.6) 48%,
    rgba(115, 70, 182, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(115, 70, 182, 1) 0%,
    rgba(66, 39, 88, 0.6) 48%,
    rgba(115, 70, 182, 1) 100%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-out;
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
}

.promo .promo-hover .promo-hover-content {
  color: #000;
  position: absolute;
  width: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.promo .promo-hover .promo-hover-content h4 {
  font-size: 18px;
  font-weight: 600;
}

.promo .promo-hover .promo-hover-content p {
  padding-top: 20px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.promo .promo-hover .promo-hover-content .extra-link {
  font-size: 10px;
  width: 100%;
}

.promo .promo-hover .promo-hover-content i {
  background: transparent;
  border: 1px solid #fff;
  padding-top: 8px;
  height: 30px;
  width: 30px;
  border-radius: 50px;
  margin-right: 10px;
  color: #fff;
}

.promo .promo-hover .promo-hover-content i:hover {
  background: #fff;
  color: #ff66a3;
}

.promo .promo-col .link:hover .team-hover {
  opacity: 1;
}
.blc_rs_details {
  text-align: right;
  margin: 20px 0;
}
.blc_rs_details .icon_rs {
  color: #4c4294;
  font-size: 26px;
  margin: 0 10px;
}
.blc_rs_details .icon_rs:hover {
  color: #fdce00;
}
.link_horraire {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #8b819d;
}
.cnt_horraire {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #8b819d;
}
.link_horraire:hover,
.link_horraire:focus {
  color: #4c4294;
  text-decoration: underline;
}
.cnt_horraire {
  display: none;
}
/* ----------------------------------------------------------------------------------------
*                        Testimonial AREA css
* --------------------------------------------------------------------------------------- */

.author-content {
  background: #f8f6fb none repeat scroll 0 0;
  padding: 60px 30px;
  position: relative;
}

.testmonial-quote {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.testmonial-quote::before,
.testmonial-quote::after {
  color: #513d97;
  content: "\f10d";
  font-family: fontawesome;
  font-size: 41px;
  left: 20px;
  line-height: 1;
  opacity: 1;
  position: absolute;
  top: 20px;
}

.testmonial-quote::after {
  bottom: 20px;
  content: "\f10e";
  left: auto;
  right: 20px;
  top: auto;
}

.author-name-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 100px;
}

.author-img {
  border: 3px solid #513d97;
  border-radius: 50%;
  height: 90px;
  left: 0;
  overflow: hidden;
  position: absolute;
  bottom: 17px;
  width: 90px;
}

.author-name-image h4,
.author-name-image a {
  margin-bottom: 0;
  color: #513d97;
}

.author-content .testmonial-quote p {
  margin: 35px 0 !important;
  font-size: 14px;
}

.testmonial-slider.owl-carousel {
  overflow: hidden;
}

.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 30px;
  margin: 5px;
  padding: 0px 4px;
  background: #513d97 !important;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.testmonial-area .owl-nav > div {
  background: #513d97 none repeat scroll 0 0;
  border-radius: 50%;
  color: #ffffff;
  font-size: 30px;
  height: 40px;
  left: -10px;
  opacity: 0;
  padding-top: 4px;
  position: absolute;
  text-align: center;
  top: 30%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 40px;
}

.testmonial-area .owl-nav > div.owl-next {
  left: auto;
  right: -30px;
}

.testmonial-area .owl-nav > div:hover {
  background: #586082 none repeat scroll 0 0;
}

.owl-carousel:hover .owl-nav > div.owl-next {
  opacity: 1;
  right: 0;
  visibility: visible;
}

.owl-carousel:hover .owl-nav > div.owl-prev {
  left: 0;
  opacity: 1;
  visibility: visible;
}

/*.testmonial-area .owl-controls {
    height: 20px;
    margin-top: 30px;
}*/

.testmonial-area .owl-dots {
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.testmonial-area .owl-dots > div {
  border: 1px solid #586082;
  border-radius: 50%;
  display: inline-block;
  height: 15px;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 15px;
}

.testmonial-area .owl-dots > div.active {
  background: #513d97 none repeat scroll 0 0;
  border-color: #513d97;
}

/* ----------------------------------------------------------------------------------------
*                    how-it-area-area area css
* --------------------------------------------------------------------------------------- */

.video-area {
  background: #f8f6fb;
  padding: 50px;
}

.video {
  position: relative;
  box-shadow: 0px 10px 20px 0px rgba(45, 45, 45, 0.3);
}

.video img {
  width: 100%;
}

.video:before {
  background: -moz-linear-gradient(
    left,
    rgba(115, 70, 182, 1) 0%,
    rgba(66, 39, 88, 0.6) 48%,
    rgba(115, 70, 182, 1) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(115, 70, 182, 1) 0%,
    rgba(66, 39, 88, 0.6) 48%,
    rgba(115, 70, 182, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(115, 70, 182, 0.6) 0%,
    rgba(66, 39, 88, 0.6) 48%,
    rgba(115, 70, 182, 0.8) 100%
  );
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.feature-inner .video a {
  width: 60px !important;
  height: 60px !important;
  margin: auto;
}

.video a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 90px;
  margin: auto;
  z-index: 99;
  height: 90px;
}

/* ----------------------------------------------------------------------------------------
*                    counter area css
* --------------------------------------------------------------------------------------- */

#counter .counter-banner {
  /*-webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);*/
}

#counter .counter-banner {
  background: #faf9ff;
  padding: 90px 0;
}

#counter .counter-banner.count-angle {
  padding: 50px 0px;
  position: relative;
  overflow: hidden;
}

#counter .counter-banner .bnr-overly {
  padding: 0;
}
#counter .counter-banner .bnr-overly h2 {
  font-family: "NHaasGroteskTXPro-65Md";
  font-size: 40px;
  margin-top: 11px;
  line-height: 1.3;
  color: #180f31;
}
#counter .counter-banner .bnr-overly .counter-text h4 {
  color: #180f31;
  font-size: 48px;
  padding: 5px 0px 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
#counter .counter-banner .bnr-overly .counter-text h4 span {
  font-size: 48px;
  font-family: "Poppins", sans-serif;
  color: #180f31;
  font-weight: 700;
  text-align: center;
}

#counter .counter-banner .bnr-overly .counter-text p {
  color: #180f31;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

#counter .counter-banner .bnr-overly .counter-text img {
  margin: 0 auto 20px;
}
#counter .counter-banner .bnr-overly .hero-btn {
  padding: 15px 18px;
  margin-top: 5px;
}
/* ----------------------------------------------------------------------------------------
*                   Pricing area css
* --------------------------------------------------------------------------------------- */
.condition b {
  font-size: 16px;
  font-weight: bold;
  color: #513d97;
  margin-bottom: 15px;
}
.condition p {
  font-family: "Roboto", sans-serif;
  color: #6a6a6a;
  font-size: 14px;
  margin-bottom: 5px;
}
.condition p a,
.condition p a:hover {
  color: #513d97;
}
.succes-box {
  padding: 60px;
  text-align: left;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  background: url("../images/price-bg-colour.png") no-repeat scroll right top/
    auto 40% #ffffff;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.succes-box h2,
.succes-box h4 {
  color: #513d97;
  margin-bottom: 15px;
}
.succes-box h3 {
  color: #6a6a6a;
  margin-bottom: 15px;
}
.succes-box p {
  font-family: "Roboto", sans-serif;
  color: #6a6a6a;
  font-size: 14px;
  margin-bottom: 10px;
}
.price-box {
  padding: 60px;
  text-align: center;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  background: url("../images/price-bg-colour.png") no-repeat scroll right top/
    auto 40% #ffffff;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.price-box:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
}

.price-box .price-icon {
  height: 80px;
}

.price-box .title {
  font-size: 22px;
  font-weight: 700;
  color: #53409a;
}

.price-box ul {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  color: #56576e;
}

.price-box ul li {
  margin-bottom: 10px;
  font-size: 16px;
  display: block;
  padding-left: 15px;
  position: relative;
  text-align: left;
  color: #6a6a6a;
}
.price-box ul li::before {
  color: #000;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  content: "\25AA";
}

.price-box .price-rate {
  color: #4b3489;
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0 0 0;
}
.price-box p {
  color: #4b3489;
}
.price-box h4 {
  line-height: 24px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.bttn-default {
  border: 1px solid #513d97;
  border-radius: 100px;
  color: #513d97;
  padding: 10px 30px;
  display: inline-block;
  font-weight: 700;
  background-color: #ffffff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.bttn-default:hover {
  background-color: #513d97;
  color: #ffffff;
}

.bttn-sq {
  border-radius: 6px;
}

.bttn-lg {
  padding: 20px 50px;
}
.app-one {
  width: 65%;
  margin: 0 auto;
}

/* ----------------------------------------------------------------------------------------
*                   download area css
* --------------------------------------------------------------------------------------- */

.download {
  background-size: cover;
  position: relative;
  z-index: -1;
  color: #fff;
}

/*
.download:before {
background: #f0f0f0;
  position: absolute;
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 1;
  z-index: 0;
}
*/

.download-inner h5 {
  padding: 25px 0;
  color: #fff;
}

.download-inner h2 {
  margin-bottom: 45px;
  color: #fff;
  font-size: 40px;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.download-inner .p-btn img {
  width: auto;
}

.download-inner p {
  line-height: 1.4;
  padding-bottom: 44px;
  font-family: "NHaasGroteskTXPro-55Rg";
  text-align: center;
  font-size: 20px;
  max-width: 750px;
  color: #fff;
}

.mr-md-3 {
  margin-right: 15px !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

/* ----------------------------------------------------------------------------------------
*                    newsletter area css
* --------------------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .newsletter-section {
    text-align: center;
  }
}

.newsletter-form {
  position: relative;
  margin-top: 27px;
}

@media (max-width: 767px) {
  .newsletter-form {
    text-align: center;
  }
}

.newsletter-form__input {
  height: 45px;
  padding-right: 165px;
  border-radius: 100px;
  padding-left: 25px;
}

@media (max-width: 480px) {
  .newsletter-form__input {
    padding-right: 145px;
  }
}

.pdt50 {
  padding-top: 50px;
}

.pdb50 {
  padding-bottom: 50px;
}

.pdt25 {
  padding-top: 25px;
}

.base-bg h3 {
  color: #fff;
}

.base-bg {
  background: url(../images/n.jpg) no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  color: #fff;
  position: relative;
  z-index: 30;
}

.base-bg:before {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  content: "";
  background: -moz-linear-gradient(
    left,
    rgba(115, 70, 182, 1) 0%,
    rgba(66, 39, 88, 0.6) 48%,
    rgba(115, 70, 182, 1) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(115, 70, 182, 1) 0%,
    rgba(66, 39, 88, 0.6) 48%,
    rgba(115, 70, 182, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(115, 70, 182, 1) 0%,
    rgba(66, 39, 88, 0.6) 48%,
    rgba(115, 70, 182, 1) 100%
  );
  z-index: 0;
}

.newsletter-form input[type="submit"] {
  display: inline-block;
  background: #fc8b02;
  border-radius: 50px;
  padding: 11px 25px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.newsletter-form__submit {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  color: #fff;
  text-transform: uppercase;
  background: #333d4c;
  padding: 15px 15px;
  border-color: #333d4c;
}

.newsletter-form input[type="submit"]:hover {
  border-color: #333d4c;
  background: #333d4c;
}

@media (max-width: 480px) {
  .newsletter-form__submit {
    padding: 15px 10px;
    min-width: 140px;
  }
}

/* ----------------------------------------------------------------------------------------
*                    Contact area css
* --------------------------------------------------------------------------------------- */

#contact {
  position: relative;
}

.form2,
.form4,
.form6 {
  margin: 0px 0 0px;
  padding: 49px 30px;
  background: linear-gradient(to right, #513d97, #513d97);
  background: -webkit- linear-gradient(to right, #513d97, #513d97);
  background: -moz- linear-gradient(to right, #513d97, #513d97);
  background: -o- linear-gradient(to right, #513d97, #513d97);
  background: -ms- linear-gradient(to right, #513d97, #513d97);
  box-shadow: 10px 10px 0 0 #513d970d;
}

.contact-form form input,
.contact-form form select {
  width: 100%;
  border: 1px solid #fff;
  color: #513d97;
  margin-bottom: 30px;
  height: 50px;
  padding: 0 15px;
  border-radius: 4px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.1);
}
.contact-form form input[type="radio"] {
  width: 20px;
  height: 20px;
  background: none;
  box-shadow: none;
  top: 50%;
  position: relative;
  margin-bottom: 0;
  margin-top: 19px;
}
.contact-form form label {
  font-size: 14px;
  font-weight: 400;
  color: #626262;
  line-height: 49px;
  display: inline-block;
  /* padding-top: 14px; */
  margin-right: 15px;
  height: 50px;
  margin: 0;
  margin-top: 1px;
  position: relative;
  top: -5px;
  margin-right: 15px;
}
input,
textarea {
  border: none;
}

.contact-form form textarea {
  border: 1px solid #fff;
  color: #513d97;
  width: 100%;
  padding: 15px;
  height: 100px;
  margin-bottom: 30px;
  border-radius: 3px;
  outline: 0;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.1);
}
.text-icon-box {
  text-align: center;
  margin-top: 30px;
}

.box-icon {
  height: 50px;
  width: 50px;
  line-height: 52px;
  border: 2px solid #fff;
  border-radius: 25px;
  margin-bottom: 15px;
  margin: 0 auto 20px;
}

.box-icon i {
  font-size: 22px;
  color: #fff;
}

.text-icon-box h4 {
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 10px;
}

.text-icon-box p {
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
}

/* sub-contact */

#other-contact {
  background: linear-gradient(to right, #513d97, #513d97);
  background: -webkit- linear-gradient(to right, #513d97, #513d97);
  background: -moz- linear-gradient(to right, #513d97, #513d97);
  background: -o- linear-gradient(to right, #513d97, #513d97);
  background: -ms- linear-gradient(to right, #513d97, #513d97);
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 0.8;
  margin-top: 0px;
}

#other-contact:before {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  opacity: 0.7;
  width: 100%;
  z-index: -9;
  content: "";
  background: url(../images/banner-colour-image.jpg) no-repeat;
  transform: rotate(0deg);
}
.contact-logo img {
  margin: 0;
  padding: 0;
  width: 27%;
}
.copyright-text {
  padding-top: 20px;
  border-top: 1px solid #efecfd;
}
.cont-icon,
.cont-footer {
  padding-left: 35px;
  padding-bottom: 20px;
  padding-top: 35px;
}
.cont-icon h4 {
  color: #ffffff;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  padding-top: 50px;
  padding-bottom: 20px;
}

.cont-icon ul li {
  display: inline-block;
  padding-right: 8px;
}

.cont-icon-color ul li a,
.cont-icon ul li a {
  outline: 0;
  text-align: center;
  float: left;
  color: #ffffff;
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.6s ease;
  display: inline-block;
  background: transparent;
  text-decoration: none;
}

.cont-footer h4 {
  color: #ffffff;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  padding-top: 0px;
  padding-bottom: 20px;
}

.cont-footer ul li {
  display: block;
  padding-right: 8px;
  margin-bottom: 10px;
}

.cont-footer-color ul li a,
.cont-footer ul li a {
  outline: 0;
  text-align: left;
  color: #4c4294;
  font-size: 16px;
  display: inline-block;
  background: transparent;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.31;
}
.cont-footer-color ul li a:hover,
.cont-footer ul li a:hover {
  color: #f52485;
}
.cont-footer ul li span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  outline: 0;
  text-align: left;
  color: #4c4294;
  font-size: 16px;
  display: inline-block;
  background: transparent;
  text-decoration: none;
  line-height: 1.31;
}
.cont-footer-infos.cont-footer ul li a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.cont-footer-infos.cont-footer ul li {
  margin-bottom: 20px;
}
.suiv_links a img {
  margin-right: 20px;
  position: relative;
  top: 10px;
  margin-top: -20px;
}
.suiv_links a:last-child img {
  margin-right: 0;
}
.cont-icon-color ul li a:hover {
  color: #513d97 !important;
}

.cont-icon ul li a:hover {
  color: #513d97;
  background: #ffffff;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.cont-icon-color ul li a i,
.cont-icon ul li a i {
  background: transparent;
}

/* ----------------------------------------------------------------------------------------
*                    Footer area css
* --------------------------------------------------------------------------------------- */

.footer-area {
  /*     font-size: 16px;*/
}

.copyright-area {
  background: #fff;
  padding: 20px 0px;
}

.footer-social a {
  color: #fff;
  margin: 0 5px;
}

.footer-social a i {
  color: #fff;
  border: 1px solid #fff;
  height: 30px;
  width: 30px;
  padding: 5px 0px;
  margin: 2px 0px;
  border-radius: 4px;
  text-align: center;
}

.footer-social a i:hover {
  color: #1f9cd8;
  background: #fff;
}

.copyright-text p {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #4c4294;
  margin: 4px 0px;
}
.copyright-text p a {
  color: #4c4294;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  margin: 0 5px;
}
.link_bigdeal img {
  position: relative;
  top: 5px;
}

/* ----------------------------------------------------------------------------------------
*                     Subscribe Area Start
* --------------------------------------------------------------------------------------- */

.subscribe-area {
  background: linear-gradient(to right, #513d97, #513d97);
  background: -webkit- linear-gradient(to right, #513d97, #513d97);
  background: -moz- linear-gradient(to right, #513d97, #513d97);
  background: -o- linear-gradient(to right, #513d97, #513d97);
  background: -ms- linear-gradient(to right, #513d97, #513d97);
}

.section-intro {
  max-width: 460px;
  margin: 0 auto 55px;
  text-align: center;
}

.subscribe-area .section-intro {
  text-align: center;
}

.subscribe-area .section-intro p {
  max-width: 650px;
}

.subscribe-area .section-intro .section-title,
.subscribe-area .section-intro .promo-area .promo-txt .promo-title,
.promo-area .promo-txt .subscribe-area .section-intro .promo-title,
.subscribe-area .section-intro .promo-area .promo-search .promo-title,
.promo-area .promo-search .subscribe-area .section-intro .promo-title,
.subscribe-area .section-intro p {
  color: #ffffff;
  font-weight: 500;
  margin-top: 20px;
}

.subscribe-area .subscribe {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.subscribe-area .subscribe input {
  border: 3px solid #ffffff;
  color: #ffffff;
  font-weight: 500;
  width: 100%;
  padding: 15px 30px;
}

.subscribe-area .subscribe ::-webkit-input-placeholder {
  color: #7a7a7a;
}

.subscribe-area .subscribe :-moz-placeholder {
  color: #7a7a7a;
}

.subscribe-area .subscribe ::-moz-placeholder {
  color: #7a7a7a;
}

.subscribe-area .subscribe :-ms-input-placeholder {
  color: #7a7a7a;
}

.subscribe-area .subscribe .custom-btn {
  position: absolute;
  right: 3px;
  border: none;
  padding: 15px 25px;
  top: 3px;
  font-size: 18px;
}

/* ----------------------------------------------------------------------------------------
*                     Compatibility Area
* --------------------------------------------------------------------------------------- */

#compatibility {
  background: #f8f6fb;
}

.compa-inner {
  padding-top: 30px;
}

.compat-content {
  text-align: center;
}

.compat-content img {
  margin: 0 auto;
  padding-bottom: 20px;
}
table {
  margin: 0 0 15px;
  width: 100%;
}
/*--------------------------------------------------------------
4. Forms
--------------------------------------------------------------*/

input[type="button"],
input[type="reset"],
input[type="submit"],
button {
  background: #ce1648;
  color: #fff;
  font-size: 14px;
  padding: 9px 35px;
  border: none;
  height: auto;
  width: auto;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
}

input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button:hover,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:focus,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active,
button:active {
  background-color: #222;
  color: #fff;
  outline: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
  color: #6a6a6a;
  border: 1px solid #ccc;
  padding: 7px 10px 7px 15px;
  /* background: #f6f6f6; */
  line-height: 30px;
}
/* Removes the clear button from date inputs */
input[type="date"]::-webkit-clear-button {
  display: none;
}

/* Removes the spin button */
input[type="date"]::-webkit-inner-spin-button {
  display: none;
}
input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  color: #6a6a6a;
  border: 1px solid #ccc;
  background: #f6f6f6;
  padding: 5px;
  display: inline-block !important;
  visibility: visible !important;
  padding: 8px 10px 8px 15px;
}
select {
  border: 1px solid #ccc;
  width: 100%;
  padding: 13px 25px 14px 13px;
  line-height: 30px;
  height: 48px;
  margin-bottom: 15px;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  outline: none;
}

textarea {
  width: 100%;
}
/*--------------------------------------------------------------
20.9. Checkout Page Starts
--------------------------------------------------------------*/

.section-checkout h3,
.checkout h3 {
  font-size: 20px;
  border-bottom: 1px solid #513d97;
  padding-bottom: 7px;
  clear: both;
  margin-bottom: 25px;
  color: #513d97;
  font-weight: bold;
}

.section-checkout .col2-set,
.checkout .col2-set {
  margin-left: -15px;
  margin-right: -15px;
  float: left;
  width: 100%;
}

.section-checkout .col2-set .col-1,
.section-checkout .col2-set .col-2,
.checkout .col2-set .col-1,
.checkout .col2-set .col-2 {
  float: left;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}

.section-checkout label,
.checkout label {
  color: #6a6a6a;
  margin-bottom: 5px;
  width: 100%;
  display: inline-block;
  font-weight: bold;
}
.section-checkout label a,
.checkout label a {
  color: #513d97;
  font-weight: bold;
  font-size: 15px;
}
.section-checkout select:focus,
.checkout select:focus {
  outline: none;
}

.section-checkout .col2-set .form-row,
.checkout .col2-set .form-row {
  margin-bottom: 30px;
}

.section-checkout .col2-set .form-row-wide,
.checkout .col2-set .form-row-wide {
  float: left;
  width: 100%;
}

.section-checkout .col2-set .form-row-first,
.section-checkout .col2-set .form-row-last,
.section-checkout .checkout .col2-set .form-row-first,
.section-checkout .checkout .col2-set .form-row-last {
  float: left;
  width: 48%;
}

.section-checkout .col2-set .form-row-last,
.section-checkout .checkout .col2-set .form-row-last {
  float: right;
}

.section-checkout input,
.section-checkout .checkout input {
  margin-bottom: 15px;
  width: 100%;
}

.section-checkout .checkbox-wrap input[type="checkbox"],
.section-checkout .checkbox-wrap label {
  display: inline-block;
  width: auto;
}

.section-checkout table.product-checkout-review-order-table,
.section-checkout table.product-checkout-review-order-table th,
.section-checkout table.product-checkout-review-order-table td {
  border: 0;
  text-align: left;
}

.section-checkout table.product-checkout-review-order-table th {
  background: #f6f6f6;
  padding: 8px 20px;
  font-weight: bold !important ;
  font-size: 15px;
  font-weight: 500;
}

.section-checkout table.product-checkout-review-order-table td {
  padding: 10px 20px;
  border: 1px solid #f6f6f6;
}

.section-checkout table.product-checkout-review-order-table .product-name {
  width: 50%;
}

.section-checkout table.product-checkout-review-order-table .cart_item {
  border-bottom: 1px solid #ddd;
}

.section-checkout .product-checkout-payment ul {
  list-style: none;
  margin: 0;
}

.section-checkout .product-checkout-payment ul li {
  display: inline-block;
  width: 100%;
}

.section-checkout .product-checkout-payment ul li input[type="radio"],
.section-checkout .product-checkout-payment ul li label {
  display: inline-block;
  width: auto;
}

.section-checkout .product-checkout-payment ul li label {
  font-size: 16px;
}

.section-checkout .product-checkout-payment ul li input[type="radio"] {
  margin-right: 5px;
}

.section-checkout .product-checkout-payment ul li label img {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 15px;
  max-height: 28px;
}
.section-checkout table.shop-table.product-checkout-review-order-table {
  margin-bottom: 30px;
}

.section-checkout textarea {
  width: 100% !important;
}
/* + Deal Section */
.deal-section .section-padding:last-of-type {
  padding-top: 35px;
  padding-bottom: 35px;
}
.dealbox {
  margin-bottom: 52px;
}
.deal-section .deal-thmbimg {
  position: relative;
  z-index: 100;
}
.deal-section .deal-thmbimg img {
  border-radius: 100%;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: block;
  padding: 3px;
  border: 1px solid #d9d9d9;
  background: #fff;
}
.deal-section .deal-thmbimg::before {
  /*position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: -5px;
	background: url("../images/dots-line.png");
	background-position: center center;
	background-repeat: no-repeat;
	height: 9px;*/
}

.deal-section .deal-thmbimg p {
  position: absolute;
  top: -12px;
  left: 50%;
  margin-left: -26px;
  background-color: #513d97;
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 12px;
  min-width: 52px;
  font-size: 15px;
  letter-spacing: 0.6px;
}
.deal-section .deal-thmbimg p::before {
  border-bottom: 21px solid #513d97;
  border-left: 6px solid rgba(0, 0, 0, 0);
  content: "";
  height: 0;
  left: -6px;
  position: absolute;
  top: 0;
  width: 0;
}
.deal-section .deal-thmbimg p::after {
  border-left: 26px solid rgba(0, 0, 0, 0);
  border-right: 26px solid rgba(0, 0, 0, 0);
  border-top: 13px solid #513d97;
  content: "";
  height: 0;
  left: 0;
  right: 0;
  width: 100%;
  position: absolute;
  bottom: -13px;
  width: 0;
}
.deal-section .deal-thmbimg p i {
  top: -2px;
  position: relative;
}
.deal-section .deal-thmbimg p span {
  display: block;
  letter-spacing: 0;
  font-size: 13px;
}
.deal-content {
  border: 1px solid #d9d9d9;
  padding: 128px 40px 20px;
  text-align: center;
  margin-top: -100px;
  position: relative;
  z-index: 10;
}

.deal-section .deal-content span {
  position: absolute;
  top: -12px;
  left: 20px;
  background-color: #513d97;
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 12px;
  min-width: 52px;
  font-size: 15px;
  letter-spacing: 0.6px;
}
.deal-section .deal-content span::before {
  border-bottom: 11px solid #513d97;
  border-left: 6px solid rgba(0, 0, 0, 0);
  content: "";
  height: 0;
  left: -6px;
  position: absolute;
  top: 0;
  width: 0;
}
.deal-section .deal-content span::after {
  border-left: 26px solid rgba(0, 0, 0, 0);
  border-right: 26px solid rgba(0, 0, 0, 0);
  border-top: 13px solid #513d97;
  content: "";
  height: 0;
  left: 0;
  right: 0;
  width: 100%;
  position: absolute;
  bottom: -13px;
  width: 0;
}
.deal-section .deal-content span i {
  top: -2px;
  position: relative;
}
.deal-section .deal-content span b {
  display: block;
  letter-spacing: 0;
  font-size: 13px;
}
.deal-content h3 {
  display: inline-block;
  padding-left: 18px;
  position: relative;
  font-size: 26px;
  line-height: 28px;
  letter-spacing: 0.56px;
  text-transform: capitalize;
  margin: 0 0 11px;
  word-wrap: break-word;
  color: #513d97;
  font-family: "Kaleko";
}

.deal-content p {
  color: #6a6a6a;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  word-wrap: break-word;
  padding-bottom: 15px;
  font-family: "Roboto", sans-serif;
}
.deal-content p strong {
  color: #513d97;
  font-weight: bold;
}

.getdeal-btn {
  display: inline-block;
  margin-bottom: 12px;
  position: relative;
  word-wrap: break-word;
}
.get-coupencode {
  border: 2px dashed #d9d9d9;
  color: #000;
  display: inline-block;
  font-family: "Hind", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.05px;
  line-height: 28px;
  margin-left: 36px;
  padding: 3.5px 8px;
  position: relative;
  text-align: right;
  text-transform: uppercase;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  min-width: 151px;
  z-index: -1;
  word-wrap: break-word;
}
.getdeal {
  color: #fff;
  display: inline-block;
  font-family: "Hind", sans-serif;
  font-size: 13px;
  letter-spacing: 0.91px;
  font-weight: 600;
  left: 0;
  min-width: 190px;
  padding: 13px 23px 9px;
  position: absolute;
  text-align: left;
  text-transform: uppercase;
  top: 0;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  z-index: 2;
  word-wrap: break-word;
}
.getdeal::before {
  position: absolute;
  content: "";
  background: url("../images/copunshape.png");
  background-repeat: no-repeat;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.getdeal-btn:hover .get-coupencode {
  border-color: #fd7140;
}
.getdeal-btn:hover .getdeal {
  left: -10px;
  color: #222;
}
.deal-content .expire {
  color: #777;
  font-size: 12px;
  line-height: 28px;
  letter-spacing: 0.48px;
}
.deal-content .expire span {
  color: #e94c3c;
  font-size: 12px;
  line-height: 28px;
  letter-spacing: 0.48px;
  text-transform: capitalize;
}
.map {
}
.map h3 {
  display: inline-block;
  padding-left: 18px;
  position: relative;
  font-size: 26px;
  line-height: 28px;
  letter-spacing: 0.56px;
  text-transform: capitalize;
  margin: 0 0 11px;
  word-wrap: break-word;
  color: #513d97;
  margin-bottom: 20px;
}
.content-map {
  padding: 5px;
  border: 1px solid #d9d9d9;
}
#map {
  height: 400px;
}
.errors {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #b94a48;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  color: #6a6a6a;
}
.errors ul li {
  padding: 5px 0;
}
.errors ul li i {
  color: #b94a48;
}
.btn_nessma,
input.btn_nessma[type="button"] {
  border: 1px solid #a1c416;
  color: #a1c416;
  background-image: url(../images/logo_nessmamobile.png);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 12px 11px;
  width: 100%;
  margin-top: 0px;
  font-weight: bold;
  padding: 13px 45px;
  background-color: #fff;
  margin-bottom: 15px;
}
.checkbox-wrap {
  margin-bottom: 15px;
}
.btn_nessma:hover,
input.btn_nessma[type="button"]:hover {
  background-color: #a1c416;
  color: #fff;
}
.felicitation {
  padding: 10px;
  border: 1px solid #a1c416;
  border-radius: 5px;
  color: #6a6a6a;
}
.felicitation i {
  color: #a1c416;
}
.tunisiaexpress {
  color: #ca1f26;
}
.tunisiaexpress:hover,
.tunisiaexpress:focus {
  color: #ca1f26;
}
#categories {
  background: url("../images/bg_iphone.png") center bottom no-repeat #faf9ff;
  background-size: cover;
  /* padding-bottom: 30px; */
  border-bottom: 3px solid #fff;
  padding-bottom: 50px;
}
#categories .owl-categories {
  margin-top: 170px;
}
.section-title p.txt_cat_style {
  font-family: "NHaasGroteskTXPro-55Rg";
  font-size: 24px;
  color: #b21e84;
  margin-bottom: 180px;
  text-align: center;
}
.owl-categories.owl-theme .owl-nav .owl-prev {
  left: 0;
}
.owl-categories.owl-theme .owl-nav .owl-next {
  right: 0;
}
.owl-categories.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: 25%;
  background: transparent !important;
  color: #4c3489;
  transition: all 0.3s;
}
.owl-categories.owl-theme .owl-nav [class*="owl-"]:hover {
  color: #f62586;
}
.owl-categories.owl-theme .owl-nav [class*="owl-"] i {
  font-weight: 700;
  font-size: 40px;
}

.owl-categories.owl-carousel:hover .owl-nav > div.owl-prev {
  opacity: 1;
  visibility: visible;
}
.owl-categories.owl-carousel:hover .owl-nav > div.owl-next {
  opacity: 1;
  visibility: visible;
}
#download-app {
  /*background: url("../images/bg_telechargement.jpg") center bottom no-repeat;*/
  position: relative;
  background-size: cover;
  padding-bottom: 0;
  padding-top: 79px;
  background: rgb(89, 44, 135, 1);
  background: linear-gradient(
      314.45deg,
      #4cc9f0 0.94%,
      #4895ef 12.27%,
      #4361ee 20.23%,
      #3f37c9 32.61%,
      #480ca8 53.68%,
      #560bad 63.75%,
      #7209b7 75.93%,
      #b5179e 88.43%,
      #f72585 100%
    ),
    #000000;
}
#download-app:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 99;
  width: 100%;
  height: 40px;
  background: url("../images/effet-banner-download.png") center bottom no-repeat;
}
#download-app .download-inner img {
  margin: 0 auto;
  position: relative;
  z-index: 99;
}
#counter .counter-banner .bnr-overly .counter-text {
  text-align: center;
}
.economie_argent {
  background: #efecfd;
}
.economie_argent .cnt_list_etap {
  text-align: center;
}
.economie_argent .cnt_list_etap img {
  margin: 20px auto;
  width: auto;
}
.economie_argent .cnt_list_etap p {
  font-size: 22px;
  color: #4c4294;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.partener .owl-stage-outer {
  padding-top: 20px;
  padding-bottom: 50px;
}
.promo-col:hover {
  margin-top: -20px;
  /* box-shadow: 0px 11px 15px 4px #afafaf; */
  box-shadow: -2px 40px 38px -15px rgba(24, 15, 49, 0.26);
  -webkit-box-shadow: -2px 40px 38px -15px rgba(24, 15, 49, 0.26);
  -moz-box-shadow: -2px 40px 38px -15px rgba(24, 15, 49, 0.26);
}
#section_top {
  /*background: url("../images/bg_header.png") center bottom no-repeat;*/
  position: relative;
  background-size: cover;
  padding-bottom: 0;
  padding-top: 85px;
  text-align: center;
  background: rgb(89, 44, 135, 1);
  /* background: linear-gradient(
    154deg,
    rgba(230, 20, 122, 1) 0%,
    rgba(178, 30, 132, 1) 8%,
    rgba(109, 49, 138, 1) 24%,
    rgba(89, 44, 135, 1) 36%,
    rgba(80, 40, 133, 1) 48%,
    rgba(76, 66, 148, 1) 60%,
    rgba(81, 92, 166, 1) 72%,
    rgba(92, 142, 202, 1) 92%,
    rgba(92, 198, 240, 1) 100%
  ); */
  background: linear-gradient(
      314.45deg,
      #4cc9f0 0.94%,
      #4895ef 12.27%,
      #4361ee 20.23%,
      #3f37c9 32.61%,
      #480ca8 53.68%,
      #560bad 63.75%,
      #7209b7 75.93%,
      #b5179e 88.43%,
      #f72585 100%
    ),
    #4c3489;
}
#section_top:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 99;
  width: 100%;
  height: 40px;
  background: url("../images/effet-banner.png") center bottom no-repeat;
}

#section_top .txt_banner {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 35px;
  color: #fff;
  max-width: 966px;
  line-height: inherit;
  margin: 48px auto;
}
#section_top .link-logo img {
  margin: 0 auto;
}

#section_top .btn_style_telech {
  display: inline-block;

  font-family: "NHaasGroteskTXPro-75Bd";
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 25px;
  border: solid 2px #fff;
  background: #ffffff;
  color: #c71a80;
}
#section_top .btn_style_telech:hover {
  background: transparent;
  color: #fff;
}
#section_top img {
  margin: 0 auto;
  position: relative;
  z-index: 99;
}
.cnt_avantages_right .btn_style_telech {
  display: inline-block;
  color: #4c3489;
  font-family: "NHaasGroteskTXPro-65Md";
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 25px;
  border: solid 2px #fdce00;
  background: #fff;
  margin-top: 15px;
}
.cnt_avantages_right .btn_style_telech:hover {
  background: #fdce00;
  color: #fff;
}
#banner-interne.bg_white_banner {
  /*background: url("../images/banner-interne-white.jpg") center bottom no-repeat;*/
}
#banner-interne {
  /*background: url("../images/banner-interne.jpg") center bottom no-repeat;*/
  /* position: relative; */
  background-size: cover;
  text-align: center;
  background: rgb(89, 44, 135, 1);
  background: linear-gradient(
      314.45deg,
      #4cc9f0 0.94%,
      #4895ef 12.27%,
      #4361ee 20.23%,
      #3f37c9 32.61%,
      #480ca8 53.68%,
      #560bad 63.75%,
      #7209b7 75.93%,
      #b5179e 88.43%,
      #f72585 100%
    ),
    #4c3489;
}
#banner-interne:after {
  /* content: ""; */
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: url("../images/effet-banner-interne.png") center bottom no-repeat;
}
#banner-interne.banner-interne-partenaire:after {
  background: url("../images/effet-banner.png") center bottom no-repeat;
}
#banner-interne img {
  margin: 0 auto;
}
#categories_internes {
  background: #faf9ff;
  padding: 70px 0 0;
}
#categories_internes .category-content a {
  min-height: 45px;
  overflow: hidden;
  display: inline-block;
}
#categories_internes .owl-categories .item {
  position: relative;
}
#categories_internes .owl-categories .item.current:after,
#categories_internes .owl-categories .item:hover:after {
  content: "";
  width: 70px;
  height: 2px;
  background: #fdce00;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.promo-interne {
  margin-bottom: 30px;
}
#categories_mobile button {
  color: #4c4294;
  font-size: 20px;
  font-family: "NHaasGroteskTXPro-65Md";
  border: none;
  border-radius: 0;
  height: 59px;
  padding: 0 30px;
  background: #faf9ff;
  width: 100%;
  text-transform: inherit;
  text-align: left;
  position: relative;
  outline: none;
}
#categories_mobile button i {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
#categories_mobile {
  display: none;
}
#categories_mobile .dropdown-menu {
  width: 100%;
  background: #faf9ff;
  border: 0;
}
#categories_mobile .dropdown-menu li {
  display: block;
}
#categories_mobile .dropdown-menu li a {
  padding: 10px 65px;
  color: #4c4294;
  font-family: "NHaasGroteskTXPro-65Md";
  font-size: 16px;
}
#deal-section .row > div:nth-child(4n + 1) {
  clear: both;
}
#Enseignes {
  padding-bottom: 0;
}
#header_detail_pdt {
  background: #faf9ff;
  padding: 50px 0;
}
#header_detail_pdt .header_detail_pdt_left {
  padding-left: 100px;
}
#header_detail_pdt .header_detail_pdt_left img {
  float: left;
  margin-right: 50px;
}
#header_detail_pdt .header_detail_pdt_left h2 {
  font-family: "NHaasGroteskTXPro-65Md";
  font-size: 40px;
  color: #180f31;
  padding-top: 30px;
  margin-bottom: 10px;
  line-height: 1.4;
}
#header_detail_pdt .header_detail_pdt_left p {
  font-family: "NHaasGroteskTXPro-65Md";
  font-size: 18px;
  color: #8b819d;
}
#header_detail_pdt .btn_back {
  font-family: "NHaasGroteskTXPro-65Md";
  font-size: 16px;
  color: #4c3489;
  padding: 10px 30px;
  border: 1px solid #4c3489;
  background: #fff;
  border-radius: 24px;
  display: inline-block;
  margin-top: 20px;
}
#header_detail_pdt .btn_back:hover {
  background: #4c4294;
  color: #fff;
}
.owl-detail-pdt.owl-theme .owl-nav .owl-prev {
  left: 0;
}
.owl-detail-pdt.owl-theme .owl-nav .owl-next {
  right: 0;
}
.owl-detail-pdt.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #4c4294;
  width: 48px;
  height: 48px;
  margin: 0;
  background: rgba(255, 255, 255, 0.8) !important;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
}
.owl-detail-pdt.owl-theme .owl-nav [class*="owl-"] i {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

.owl-detail-pdt.owl-carousel:hover .owl-nav > div.owl-prev {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.owl-detail-pdt.owl-carousel:hover .owl-nav > div.owl-next {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.galerie_detail_pdt {
  margin-bottom: 70px;
  padding-left: 10%;
}
.blc_avantages {
  text-align: left;
  border-radius: 24px;
  background-color: #f8f8f8;
  padding: 21px 100px 21px 20px;
  margin-bottom: 10px;
  position: relative;
}
.blc_avantages .blc_avantages_right {
  position: absolute;
  right: 20px;
  top: 25px;
}
.blc_avantages .blc_avantages_right button[aria-expanded="true"],
.blc_avantages .blc_avantages_right button {
  background: #fff;
  border: 2px solid #fdce00;
  color: #4c3489;
}
.blc_avantages .blc_avantages_right button:hover {
  background: #fdce00;
}
.blc_avantages .blc_avantages_right button {
  border-radius: 8px;
  width: 48px;
  height: 50px;
  background: #fff;
  border: 2px solid #fdce00;
  color: #4c3489;
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 0;
  transition: all 0.3s;
}
.blc_avantages .blc_avantages_right button img {
  margin: 0 auto;
}
.blc_avantages .blc_avantages_right .remise_blc .blc_top_remise {
  padding: 35px 15px 0;
}
.blc_avantages .blc_avantages_right .remise_blc .blc_top_remise h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #4c4294;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blc_avantages .blc_avantages_right .remise_blc .blc_top_remise p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #8b819d;
  padding-bottom: 10px;
  border-bottom: 1px dotted #e8e6f5;
}
.blc_avantages .blc_avantages_right .remise_blc .blc_middle_remise {
  padding: 25px 40px;
}
.blc_avantages .blc_avantages_right .remise_blc .blc_middle_remise img {
  float: left;
  padding-right: 30px;
  width: 50%;
}
.blc_avantages .blc_avantages_right .remise_blc .blc_middle_remise ul {
  float: left;
  width: 50%;
}
.blc_avantages .blc_avantages_right .remise_blc .blc_middle_remise ul li {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #180f31;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: left;
}
.blc_avantages .blc_avantages_right .remise_blc .blc_middle_remise:after {
  content: "";
  clear: both;
  display: block;
}
.blc_avantages .blc_avantages_right .remise_blc .blc_footer_remise {
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  padding: 18px 15px 45px;
  background: rgb(89, 44, 135, 1);
  background: linear-gradient(
      314.45deg,
      #4cc9f0 0.94%,
      #4895ef 12.27%,
      #4361ee 20.23%,
      #3f37c9 32.61%,
      #480ca8 53.68%,
      #560bad 63.75%,
      #7209b7 75.93%,
      #b5179e 88.43%,
      #f72585 100%
    ),
    #4c3489;
  border-radius: 0px 0px 24px 24px;
}
.blc_avantages .blc_avantages_right .remise_blc .blc_footer_remise h3 {
  font-family: "NHaasGroteskTXPro-65Md";
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}
.blc_avantages .blc_avantages_right .remise_blc {
  position: absolute;
  width: 400px;
  right: 0;
  top: 100%;
  margin-top: 10px;
  background: #fff;
  border-radius: 24px;
  z-index: 999;
  text-align: center;
  box-shadow: 0px 11px 15px 4px #a0a0a0;
}
.blc_avantages h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #f72585;
  margin-bottom: 10px;
}

.blc_avantages p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #8b819d;
  margin-bottom: 10px;
}
.sub_blc_avantage {
  display: block;
  font-weight: 700;
  margin-bottom: 7px;
}
.title_section h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #180f31;
  font-size: 40px;
  margin-bottom: 20px;
}

.details_points_vente ul li:last-child {
  border: none;
}
.details_points_vente ul li:first-child .cnt_horraire {
  display: block;
}
.details_points_vente ul li {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #4c3489;
  padding: 20px 0;
  border-bottom: solid 1px #e8e6f5;
  display: block;
}
.details_points_vente ul li .partner_location_nom {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #4c3489;
  display: block;
}
.details_points_vente ul li .partner_location_addr {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #8b819d;
}
.details_points_vente ul li span {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #b21e84;
  margin-top: 5px;
  display: block;
}
.wrap_key_location {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.details_points_vente ul li .key_day_location,
.details_points_vente ul li .key_hour_location {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #8b819d;
}
.blc_desc_pdt p {
  font-family: "NHaasGroteskTXPro-55Rg";
  font-size: 18px;
  color: #180f31;
  line-height: 1.5;
}
.blc_desc_pdt {
  margin-top: 60px;
}
.form_partner {
  max-width: 570px;
  margin: 60px auto 15px;
}
.blc_partenaire .section-title p {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #4c4294;
  text-align: center;
}
.form_partner label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #4c4294;
}
.form_partner input,
.form_partner select {
  height: 60px;
  background: #fff;
  font-family: "NHaasGroteskTXPro-65Md";
  font-size: 24px;
  color: #180f31;
  box-shadow: none;
  outline: none;
  line-height: 60px;
  padding: 10px 20px;
  /* background: linear-gradient(#fff 0 0) padding-box,
      linear-gradient(
        to right,
        #e6147a,
        #b21e84,
        #6d318a,
        #592c87,
        #502885,
        #4c4294,
        #515ca6,
        #5c8eca,
        #5cc6f0
      )
      border-box; */
  border: 2px solid rgba(76, 52, 137, 0.2);
  border-radius: 8px;
  background: #faf9ff;
}
.form_partner input:focus {
  box-shadow: none;
  transition: none;
  border-color: #4c3489;
  /* background: linear-gradient(#fff 0 0) padding-box,
      linear-gradient(
        to right,
        #e6147a,
        #b21e84,
        #6d318a,
        #592c87,
        #502885,
        #4c4294,
        #515ca6,
        #5c8eca,
        #5cc6f0
      )
      border-box;
  border-color: #a72185; */
}
.form_partner input.input-has-value,
.form_partner select.input-has-value {
  /* background: linear-gradient(#fff 0 0) padding-box,
      linear-gradient(
        to right,
        #e6147a,
        #b21e84,
        #6d318a,
        #592c87,
        #502885,
        #4c4294,
        #515ca6,
        #5c8eca,
        #5cc6f0
      )
      border-box; */
  border: 2px solid rgba(76, 52, 137, 0.2);
  border-radius: 8px;
  background: #faf9ff;
}
.form_partner .btn_submit {
  font-family: "NHaasGroteskTXPro-65Md";
  font-size: 16px;
  color: #4c3489;
  border-radius: 30px;
  border: none;
  padding: 18px 37px;
  margin: 15px 0 70px;
  border: 1px solid #4c3489;
  background-color: #fff;
  /* background: linear-gradient(
    90deg,
    rgba(230, 20, 122, 1) 0%,
    rgba(178, 30, 132, 1) 8%,
    rgba(109, 49, 138, 1) 24%,
    rgba(89, 44, 135, 1) 36%,
    rgba(80, 40, 133, 1) 48%,
    rgba(76, 66, 148, 1) 60%,
    rgba(81, 92, 166, 1) 72%,
    rgba(92, 142, 202, 1) 92%,
    rgba(92, 198, 240, 1) 100%
  ); */
}
.form_partner .btn_submit:hover,
.form_partner .btn_submit:focus {
  background: #4c4294;
  color: #fff;
}
.form_partner .txt_champ_oblig {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #8b819d;
}
.form_partner select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 20px;
  line-height: inherit;
  position: relative;
  background: url("../images/xpand.png") no-repeat 97% #faf9ff;
}
.form_partner input.error,
.form_partner select.error,
.form_partner input.input-has-value.error,
.form_partner select.input-has-value.error {
  border: solid 2px #ff595e;
  background-color: rgba(255, 89, 94, 0.05);
  margin-bottom: 0;
}
.form_partner label.error {
  font-family: "NHaasGroteskTXPro-55Rg";
  font-size: 18px;
  color: #ff595e;
  position: absolute;
  right: 0;
  top: 0;
}

.error-txt {
  font-family: "NHaasGroteskTXPro-55Rg";
  color: #ff595e;
}

.form_partner .form-group {
  position: relative;
}
/*
.form_partner select:after{
  content: '';
  background: url("../images/xpand.png") 0 0 no-repeat;
  width: 32px;
  height:32px;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  right:10px;
}*/

.owl-etapes .owl-dots {
  counter-reset: dots;
}
.owl-etapes .owl-dot:before {
  counter-increment: dots;
  content: counter(dots);
  font-family: "NHaasGroteskTXPro-65Md";
  font-size: 24px;
  color: #8b819d;
  margin: 0 5px;
}
.owl-etapes .owl-dot.active:before {
  font-size: 32px;
  color: #4c4294;
}
.owl-etapes.owl-theme .owl-dots .owl-dot span {
  display: none;
}
#telechargement {
  position: absolute;
  width: 400px;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  margin-top: 10px;
  background: #fff;
  border-radius: 24px;
  z-index: 999;
  text-align: center;
  box-shadow: rgb(160 160 160) 2px 5px 15px 0px;
}

#telechargement .p-btn {
  padding: 20px;
}

.blc_telech_buttons {
  position: relative;
  margin-bottom: 64px;
}
.promo-col .image {
  position: relative;
}
.promo-col .image .logo-partner {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 60px;
  height: auto !important;
}

.liste-style li {
  position: relative;
  padding-left: 20px;
  display: block;
  margin-bottom: 15px;
}
.liste-style li:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #4e3896;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 50%;
}
.bold {
  font-weight: 700;
}
.btn-app-header {
  background: linear-gradient(180deg, #ffffff 0%, #dddce1 100%);
  margin: 0 11px;
  min-height: 72px;
  padding: 10px 25px;
  text-align: center;
  border-radius: 15px;
  display: inline-block;
}
.btn-app-header .txt-app {
  width: 177px;
  height: 49px;
  display: block;
  transition: all 0.3s;
}
.btn-gplay .txt-app {
  background: url("../images/logo-google-play.png") no-repeat center center;
}
.btn-gplay:hover .txt-app {
  background: url("../images/logo-google-play-hover.png") no-repeat center
    center;
}
.btn-appstore .txt-app {
  background: url("../images/logo-app-store.png") no-repeat center center;
}
.btn-appstore:hover .txt-app {
  background: url("../images/logo-app-store-hover.png") no-repeat center center;
}

.btn-app-header-small {
  background: linear-gradient(180deg, #ffffff 0%, #dddce1 100%);
  margin: 0 7px;
  min-height: 45px;
  padding: 10px 15px;
  text-align: center;
  border-radius: 15px;
  display: inline-block;
}
.btn-app-header-small .txt-app {
  width: 105px;
  height: 25px;
  display: block;
  transition: all 0.3s;
}
.btn-gplay-small .txt-app {
  background: url("../images/logo-gp-small.png") no-repeat center center;
}
.btn-gplay-small:hover .txt-app {
  background: url("../images/logo-gp-small-hover.png") no-repeat center center;
}
.btn-appstore-small .txt-app {
  background: url("../images/logo-apps-small.png") no-repeat center center;
}
.btn-appstore-small:hover .txt-app {
  background: url("../images/logo-apps-small-hover.png") no-repeat center center;
}
.owl-categories .owl-stage-outer:after {
  content: "";
  position: absolute;
  right: 0;
  top: -10px;
  width: 150px;
  height: 100%;
  z-index: 99;

  background: linear-gradient(
    90deg,
    rgb(250 249 255 / 0%) 0%,
    rgb(250 249 255 / 84%) 50%,
    rgba(250, 249, 255, 1) 100%
  );
}
.owl-categories .owl-stage-outer:before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 150px;
  height: 100%;
  z-index: 99;

  background: linear-gradient(
    270deg,
    rgb(250 249 255 / 0%) 0%,
    rgb(250 249 255 / 84%) 50%,
    rgba(250, 249, 255, 1) 100%
  );
}

