@font-face {
    font-family: "Heebo";
    src: url("../fonts/Heebo/Heebo-Regular.ttf") format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: "Heebo";
    src: url("../fonts/Heebo/Heebo-Bold.ttf") format('truetype');
    font-weight: bold;
}


@font-face {
    font-family: "Roboto Mono";
    src: url("../fonts/RobotoMono/RobotoMono.ttf") format('truetype');
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto-Regular.ttf") format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto-Bold.ttf") format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: "Raleway";
    src: url("../fonts/Raleway/Raleway.ttf") format('truetype');
}


@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/Oswald.ttf") format('truetype');
}


@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Regular.ttf") format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Bold.ttf") format('truetype');
    font-weight: bold;
}


@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans/OpenSans-Regular.ttf") format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans/OpenSans-Bold.ttf") format('truetype');
    font-weight: bold;
}

:root {
    --primary: #6222CC;
    --secondary: #FBA504;
    --light: #F6F4F9;
    --dark: #04000B;
}

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video
{
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section
{
  display: block;
}

ol, ul, li {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}
table {border-spacing: 0;}

body {
    font-size: 13px !important;
    font-weight: normal;
    color: #707070 !important;
    line-height: 1.8em;
    background: #fff;
    margin: 0;
    padding: 0;
	  font-family: "Heebo", sans-serif;
}

a
{
  color:#9a6ce5;
  transition: 0.5s;
  text-decoration:none;
}

a:hover,
a:active,
a:focus {
  color: #160434;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  font-size:16px;
  line-height:22px;
  font-weight:400;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

.dropdown-toggle::after
{
	  color:#fba504;
}

.compulsory
{
    color: #ff5a00 !important;
}

.header-temp
{
		background: rgba(42, 44, 57, 0.9) !important;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}
/*** Navbar ***/

/********** Small icons on top header **************/

/*** Hero Header ***/
.hero-header {
    margin-bottom: 0rem;
    padding: 10rem 0;
    background: url(../images/blob-top-left.png),
        url(../images/blob-top-right.png),
        url(../images/blob-bottom-left.png),
        url(../images/blob-bottom-right.png),
        url(../images/blob-center.png),
        url(../images/bg-bottom.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-repeat: no-repeat;
}

.bg-primary {
    background-color: #8861c9 !important;
}

@media only screen and (max-width: 991px) {
    .hero-header {
        padding: 9rem 0 9rem 0;
    }
}

.header-icon-box
{
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
}

.header-icon-box li
{
    margin-right: 15px;
    float: left;
	  color:#3b147a;
}

.login-button-icon
{
    display: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
}

.signup-button-icon
{
    display: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
}


.btn-primary {
    color: #fff !important;
    background-color: #6222CC !important;
    border-color: #6222CC !important;
}

.cart-section
{
    color: #FFFFFF;
    font-size: 26px;
}

.cart-section .fa
{
    margin-top: 5px;
}

.login-box{
	border-radius:25px !important;}

.login-button-header
{
	  background: #fff !important;
    border: none !important;
    color: #080200 !important;
    border-radius: 25px !important;
	  padding:5px 15px !important;
	cursor: pointer !important;
	font-size:16px;
}

.login-button-header:hover
{
	box-shadow: 0 0 10px rgb(0 0 0 / 50%);
}

.signup-button-header
{
	 background: #fff !important;
    border: none !important;
    color: #080200 !important;
    border-radius: 25px !important;
	  padding:5px 15px !important;
	  cursor: pointer !important;
	  font-size:16px;
}

.signup-button-header:hover
{
	box-shadow: 0 0 10px rgb(0 0 0 / 50%);
}



.language_drop_menu
{
    min-width: 115px !important;
    background-color: #FFFFFF !important;
    margin-top: 23px !important;
}

.language_drop_menu li
{
    margin-right: 0px;
	width:100%;
}

.language_drop_menu img
{
    margin-right:5px;
    width:17px;
}

.language_drop_menu a
{
    color: #000000 !important;
	font-size:14px;
}


.user-icon-outer::after
{
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    color: #FFFFFF;
}

.letter-icon-first
{
    text-transform: uppercase;
    font-size: 18px;
    border: 1px solid #e8daff;
    padding: 5px 10px;
    border-radius: 10%;
    background-color: #e8daff;
    color: #3b147a;
    display: inline-block;
}

.letter-icon-second
{
  text-transform: uppercase;
  font-size: 20px;
  border: 1px solid  #855dc7;
  padding: 10px 15px;
  border-radius: 10%;
  background-color:#855dc7;
  color: #FFFFFF;
  display: inline-block;
  margin-right: 5px;

}

.user_name_pop {
  padding-left: 5px;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
}

.user_email_pop {
  float: left;
  color: #333333;
  font-size: 12px;
}

.user-ul-outer {
  width: 275px;
  height: auto;
  color: #CCCCCC;
  padding: 15px;
  margin-top:20px !important;
  background-color: #FFFFFF !important;
}

.username-li
{
 width: 100%;
 height: 60px;
 border-bottom: 1px solid #CCCCCC;
}

.username-li p
{
 width: 55px;
 float: left;
}

.menu-li
{
    width: 100%;
    height: 30px;
    margin-top: 10px;
}

.menu-li a
{
    padding-left: 5px;
    color: #000000;
}

.menu-li .fa
{
   font-size: 15px;
    margin-right: 10px;
}

.menu-li-account a
{
    	padding-left: 0px !important;
	font-size:14px;
	color:#ff5a00 !important;
}


.menu-li-balance
{
    font-size: 14px;
}

.header-account-icon
{
	font-size:16px;
	margin-right:10px;
	margin-top:3px;
}

.support
{
	float:left !important;
}

.user-sign-out
{
	  border: 1px solid #ccc;
    padding: 5px 15px !important;
    float: right;
    height: 35px;
    width: auto;
  	border-radius:5px;
  	color:#fff !important;
  	line-height:20px;
  	font-size: 14px;
	  background:#000;
}


.user-sign-out:hover
{
	background:#000;
	color:#fff !important;
}


.user-pop-ico
{
	 margin-right: 5px;
}


.username-li p
{
    float: left;
}

.switch-account-button{
	border-radius:15px;
	background:#000;
	padding:5px 10px;
	height:40px;
	text-align:center !important;
	}

.switch-account-button a{
	color:#fff !important;
	}


.switch-account-button:hover{
	color:#fff;
	background:#3b147a;
	}


  .sub-admin-wrap-outer
  {
  		background:#dd3a00;
  }

  .sub-admin-wrap
  {
  	padding:10px;
  	background:#855dc7;
  	float:left;
  	white-space: nowrap;
  	width: 242px;
  }

  .sub-admin-wrap li
  {
  	color:#fff;
  	font-size:14px;
  }

  .sub-admin-wrap .title
  {
  	font-size:18px;
  	border-bottom:1px solid #fff;
  }

  @media only screen and (max-height: 540px)
  {
  		.user-ul-outer
  		{
  				overflow-y : auto;
  				height:230px;
  		}
  }

@media only screen and (max-width: 1099px)
{
    .login-button-header, .signup-button-header
    {
        display: none;
    }

    .login-button-icon, .signup-button-icon
    {
        display: block;
    }

}


@media only screen and (max-width: 767px)
{
    .header-icon-box
    {
        position: relative;
        right: 25px;
    }

    .header-icon-box li
    {
        margin-right: 15px;
    }
}


@media only screen and (max-width: 480px)
{
    .header-icon-box li
    {
        margin-right: 12px;
    }
}
/********** Small icons on top header **************/


/*************** Notification Bell && Page *************/
.notification-box
{
	  position: relative;
    margin-top: 3px;
}

.notification-bell
{
	font-size:25px;
  color:#e8daff;
  cursor: pointer;
}

.notification-round-box
{
	  position: absolute;
    right: 0px;
    top: -5px;
    cursor: pointer;
    width: 15px;
    height: 15px;
    text-align: center;
}

.notification-round
{
	font-size: 18px;color: red;
}

.notification-count
{
    font-size: 10px;
    color:#8e69cb;
    position: absolute;
    font-weight: bold;
    cursor: pointer;
    left: 5px;
}

.notification-round-readed
{
	font-size: 18px;
  color: #e8daff;
}

.notification-div {
    min-height: 27px;
    border: 1px solid #c5c1ff;
    background-color: #e8daff;
    margin-top: 10px;
    margin-bottom: 10px;
}

.notification-div-inner
{
    float: left;
    word-break: break-all;
	  position:relative;
    padding: 10px 0px;
}

.notification-div-inner i
{
    font-size: 17px;
    width: 25px;
    height: 20px;
    text-align: center;
    position: absolute;
    color:#a065ff !important;
}

.notification-div-content
{
    padding-left: 30px;
}
/*************** Notification Bell && Page *************/


/******************* Login/Register/Forgot password/Register Success/Confirmarion Email,Recover Password Sections ********/
.login
{
      background:#b698ff;
      padding: 0px !important;
      height: 100vh;
}

.register
{
    background:#b698ff;
    padding: 0px 0px;
}

.register a{
	color:#9168d3;}

.forgot-password
{
  padding:0px;
  background:#b698ff;
  height: 100vh;
}

.normal-dialog
{
  padding:0px;
  background-color:#8861c9 !important;
  height: 100vh;
}


.login p
{
  	padding-bottom:0px;
  	color: #393f81;
    display:inline-block;
    margin: 0px 0 10px 0;
}

.login h5 {
    font-size: 1.2rem;
    text-align: left;
}

.register h5 {
    font-size: 1.2rem;
    text-align: left;
}

.forgot-password h5
{
    font-size: 1.2rem;
    text-align: left;
}

.register .form-outline
{
    position: relative;
}

.register .form-outline .icon
{
    width: 35px;
    height: 40px;
}

.register-input
{
    height: 40px;
    border-radius: 0 5px 5px 0;
    width: calc(100% - 35px);
}

.register .compulsory
{
    color: #e0112e !important;
    font-weight: 700;
    position: absolute;
    right: 0px;
    top: 0px;
}

#resend_report
{
    font-size: 14px;
    padding: 10px 0px;
    text-align: center;
    color: green;
}

.resend-loading
{
    text-align: center;
    padding-top: 10px;
    display: none;
}

.button-grad
{
	  width: 100%;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    text-align:center;
    border: none;
    background-size: 300% 100%;
	  display:block;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
	  background-image: linear-gradient(to right, #186aff, #7400ea, #7104eb, #0e58f0);
    box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
  	padding:10px;
  	margin-top:25px;
  	text-decoration:none;
}

.button-grad:hover
{
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
	  color:#FFFFFF;
}


.login-box-color, .forgot-password-color, .register-color, .normal-dialog-color
{
    background-color: #FFFFFF;
    position: relative;
}

.box-close
{
    width: 25px;
    height: 25px;
    color: #FFFFFF;
    cursor: pointer;
    position: absolute;
    top: -13px;
    right: -13px;
    background-color: #000000;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.box-close a
{
    color: #FFFFFF;
}

.dialog-popup
{
	display:block;
}

.login-submit, .forgot-password-submit, .register-submit
{
    width: 100%;
}

.dialog-popup-a h2
{
    font-weight: 700;
    font-size: 24px;
}

.btn-block
{
  	margin: 5px auto;
  	display: block;
}

.form-outline .icon
{
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    background:#3b147a;
    font-size: 20px;
    border-radius: 5px 0 0 5px;
    float: left;
	  color:#fff;
}

.login-input, .forgot-password-input
{
    height: 48px;
    border-radius: 0 5px 5px 0;
    width: calc(100% - 48px);
}
.login-register a{
	color:#b58bf7;}

.forgot-password-url
{
  	color: #b58bf7!important;
    font-size: .85rem;
  	margin-right:15px;
  	display: inline-block;
}

.checkout-result
{
    background:#b698ff;
}



#home-banner {
  width: 100%;
}

#home-banner h1{
	font-size:2.5rem;}


#home-banner p{
	font-size:16px;}


#home-banner .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media only screen and (max-width: 991px) {

  #home-banner .animated {
    -webkit-animation: none;
    animation: none;
  }
  #home-banner .home-banner-img {
    text-align: center;
  }
  #home-banner .home-banner-img img {
    width: 50%;
  }

  .flip-container h3{
  	font-size:16px !important;}

  .thumbnail img{
  	min-height:178px;}

  .front{
  	height:230px;}
}

@media only screen and (max-width: 767px) {
  #home-banner {
    height: auto;
  }

  #home-banner .home-banner-img img {
    width: 70%;
  }

  #home-banner img{
  	display:none;}
}

@media only screen and (max-width: 575px) {
  #home-banner .home-banner-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}


.btn-secondary{
	background:#FBA504;
	border-color:#FBA504;
	color:#000;
	font-weight: 600;}

.btn-secondary:hover{
	background:#000;
	border-color:#000;
	color:#fff;}

/******************* Login/Register/Forgot password/Register Success/Confirmarion Email,Recover Password Sections ********/


/**************** Section common *************/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 20px;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 25px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #fd9042;
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #2a2c39;
}

@media only screen and (max-width:767px)
{
    .section-title h2::after
    {
    	 margin-top:25px;
    }
}

@media only screen and (max-width :991px)
{
    .section-title p
    {
      	font-size:25px;
      	line-height:30px;
    }
}

@media only screen and (max-width :480px)
{
  .section-title h2::after{
  	margin-top:20px;}

  .section-title p {
      font-size: 20px;}

  .section-title h2{
  	margin-bottom:7px;}
}
/**************** Section common *************/

/***************** Header ****************/
.header-class {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: rgba(42, 44, 57, 0.9);
}

.header-class.header-transparent {
  background: transparent;
  border-bottom: 1px solid rgba(256, 256, 256, .1);
}
.header-class.header-dark {
     background-color:#000000;
	 height:70px;
}
.header-class.header-scrolled {
  background: rgba(42, 44, 57, 0.9);
}
.header-class .logo h1 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}
.header-class .logo h1 a, .header-class .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
.header-class .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
}

/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  float: right;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  padding: 5px 10px 5px 10px;
  margin-left: 5px;
  font-size: 16px;
  color: #ffffff;
  transition: 0.3s;
  border-radius: 50px;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  background: none;
    color: #fba504;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: 5px;
  top: calc(100% + 30px);
  margin: 5px 0 0 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 5px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #2a2c39;
  margin: 0px;
  font-size: 14px;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #fba504;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.mobile-nav-toggle {
  color: #FFFFFF;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.logo-desktop
{
    display: block;
}

.logo-mobile
{
    display: none;
}

@media only screen and (max-width: 1366px)
{
    .navbar .dropdown .dropdown ul
    {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul
    {
        left: -100%;
    }
}

@media only screen and (max-width:991px)
{
    .navbar a i, .navbar a:focus i
    {
      margin-left:0px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px)
{
    .home-class
    {
        display: none;
    }
}

@media only screen and (max-width: 767px)
{
    .navbar-collapse
    {
      	margin-bottom:15px;
      	margin-top:15px;
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu
    {
        position: absolute;
        z-index: 99999999;
    }

    .mobile-nav-toggle {
      display: block;
    }

    .navbar ul {
      display: none;
    }

    .navbar {
      position: fixed;
      right: 10px;
    }

    .drop-down-mob
    {
      	position:relative !important;
      	display:block;
      	width:98%;
    }

    .navbar-mobile .dropdown > .dropdown-active
    {
      	width:100% !important;
        animation: none;
    }

    .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a
    {
        background: unset;
    }

    .navbar-mobile a, .navbar-mobile a:focus
    {
        border-radius: 0px;
    }

    .logo-desktop
    {
        display: none;
    }

    .logo-mobile
    {
        display: block;
    }
}

/**
* Mobile Navigation
*/
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(20, 21, 28, 0.9);
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0px;
  right: -100%;
  padding: 45px 0 0;
  background-color: #191919;
  overflow-y: hidden;
  overflow-x: hidden;
  height: 100%;
  width: 250px;

  animation: navbar-height 0.5s ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes navbar-height {
  from {right: -100%;}
  to {right: 0px;}
}

.navbar-mobile .dropdown-item
{
    color: #FFFFFF !important;
}

.navbar-mobile  .home-class
{
    border-top: 1px rgba(255, 255, 255, 0.2) solid;
}

.navbar-mobile .navbar-height .nav-item
{
    border-bottom: 1px rgba(255, 255, 255, 0.2) solid;
    text-transform: uppercase;
}

.navbar-mobile .navbar-height .drop-down-mob
{
    margin-top: 1px;
}

.navbar-mobile .navbar-height .drop-down-mob a
{
    border-bottom: 1px rgba(255, 255, 255, 0.2) solid;
    margin-left: 0px;
    padding-left: 35px !important;
}

.navbar-mobile .dropdown-toggle::after
{
    position: absolute;
    right: 10px;
}

.navbar-mobile .fa-times
{
    font-size: 20px;
    top: 22px;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  color: #FFFFFF;

}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ffc107 ;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  padding: 0px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #191919;
  box-shadow: unset;
  border: 0px;
  margin: 0px;
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #ffffff;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


@media only screen and (max-width:576px)
{
    .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a
    {
        color: #ff7a1d;
    }

    .navbar-mobile .dropdown ul
    {
    	  width:93%;
    }

    .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a
    {
        color: #ff7a1d !important;
    }
}

@media only screen and (max-width: 420px)
{
    .header-class .logo h1
    {
        font-size: 15px;
    }
}

/***************** Header ****************/


/************** Index page about section **************/
#about-section
{
    padding-top: 80px;
}

#about-section h1
{
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 20px;
}



/*** Features Section Starts ***/

.features-wrap{
	background:#f5f5f5;}


.features-wrap h1{
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 20px;
}

.flip-container {
	perspective: 1000px;
  -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
	-webkit-perspective: 1000;
    -moz-perspective: 1000;
    -o-perspective: 1000;
}

.flip-container:hover .flipper, .flip-container.hover .flipper {
	transform: rotateY(180deg);
}

.flip-container, .front, .back {
	width: 100%;
	height: 265px;
}


.flip-container h3{
	font-size:21px;
	color:#fff;
	margin-bottom:0px;}

.flipper {
	transition: 0.6s;
	transform-style: preserve-3d;
	position: relative;
}

.front, .back {
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
    padding: 10px;}


.front {
	z-index: 2;
	transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  	background: #E5E9F1;
	max-height:265px;
	padding:0px;
}


.back {
	transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  background: #aa77ff;
    padding:60px 30px;
	color:#fff;
}


.back h3{
	color:#fff;
	margin-bottom:10px;}

.caption{
	padding: 15px;
    background: #8861c9;
    color: #fff !important;}

.thumbnail{
  background: none;
  border: none;
  overflow:hidden;
  background:#fff;
}

.thumbnail img{
	padding:15px;
	max-height:205px;
	float: none;
    margin: auto;
    display: block;}

@media only screen and (max-width:991px)
{
  .front{
  	max-height:260px;
  }
}

/*** advertiser section ***/
.advertiser-section {
    margin: 0rem 0;
    background:url(../images/blob-top-left.png), url(../images/blob-top-right.png), url(../images/blob-bottom-left.png), url(../images/blob-bottom-right.png),
        url(../images/blob-center.png);
    background-position: left 0px top 0px, right 0px top 0px, left 0px bottom 0px, right 0px bottom 0px, center center;
    background-repeat: no-repeat;
}


.advertiser-section h1{
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-top: 0px;
    margin-bottom: 20px;
}

.advertiser-section h3{
	font-size:1.5rem;
	margin-bottom:1rem;}
/*---- Publisher Section Starts -----*/

.publisher-sec-home-page{
	padding:1rem 0;}



.publisher-sec-home-page h1{
    font-weight: 400;
    font-size: 2.5rem !important;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 20px;
}


.publisher-sec-home-page h4{
    font-weight: 400;
    font-size: 1.5rem !important;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 20px;
    color:#6222cc;
}


.publisher-sec-home-page h5{
	font-size:1.25rem;}

.home-publisher-sec {
    padding: 0;
    list-style: none;
}


.home-publisher-sec li {
    position: relative;
    display: flex;
    padding-bottom: 25px;
}

.home-publisher-sec li::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 20px;
    background: var(--primary);
}

.home-publisher-sec li:last-child {
    padding-bottom: 0;
}

.home-publisher-sec li:last-child:after {
    display: none;
}

.home-publisher-sec li span {
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    z-index: 1;
	font-size:18px;
}

.home-publisher-sec li p {
    margin: 0;
}

/*------ Pricing Section Starts-----------*/


.pricing-section{
	background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url(../images/pricing-bg.jpg) fixed center center;
    background-size: cover;
    padding: 120px 0;}

.pricing-section h2{
	font-weight: 400;
    font-size: 2.5rem !important;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 20px;}

.pricing {
  width: 100%;
  display: block;
  padding: 30px;
  background: #fff;
  position: relative;
  z-index: 0;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px; }


.pricing:after {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    bottom: -20px;
    content: '';
    background: #6222cc;
    border-radius: 4px;
    z-index: -1;
    opacity: 0;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease; }



.pricing.border {
    border: 1px solid rgba(0, 0, 0, 0.1) !important; }



.pricing .icon {
    line-height: 1.3;
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px auto;
    background:#6222cc;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%; }


.pricing .icon span {
      font-size: 30px;
      color: #fff; }


.pricing .icon.icon-2 {
      width: auto;
      height: auto;
      background: transparent; }



.pricing .icon.icon-2 span {
        color: #ff8ba7; }


.pricing .media-body {
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; }

.pricing .media-body h3 {
      font-size: 22px;
      font-weight: 600; }

.pricing:hover:after {
    top: 0;
    bottom: 0;
    opacity: 1; }


.pricing:hover .icon {
    background: #fff; }


.pricing:hover .icon span {
      color: #6222cc; }


.pricing:hover .icon.icon-2 {
      background: transparent !important; }


.pricing:hover .icon.icon-2 span {
        color: #fff !important; }


.pricing:hover .media-body h3 {
    color: #fff; }


.pricing:hover .media-body p {
    color: rgba(255, 255, 255, 0.8); }


/***************** Pricing section in index page ***************/


/**************** Testimonial Section **************/

.testimonials{
	background:#f1f1f1;
}

.text-primary{
	color:#6222cc !important;}

.testimonials h1{
	font-size:2.5rem;
	line-height:2.5rem;}

.testimonials h2{
	margin: 0 0 30px 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2a2c39;
}

.testimonials h4 a{
	color:#6222cc;}

.testimonials p{
	font-size: 14px !important;
    font-weight: 400;
    padding: 0;
    line-height: 20px;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
    text-transform: none;
    color: #3e364a;}


.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
	min-height:180px;
	background:#e7d9ff !important;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #27242c;
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}
/**************** Testimonial Section **************/

/*********************** Slider Section ********************/

.customer-logos{
	padding-top: 0px;
}

.customer-logos .slide{
	float:left ;
	margin-right:10px;
}

/*********************** Slider Section ********************/


/*************** Advertiser page *******************/

/*-- Advertiser top content section*/
.advertiser-top-content{
	margin:0px;}

.advertiser-top-content p{
	margin-bottom:0px;}

.advertiser-top-content h1{
	font-size:2.2rem;}

.advertiser-top-content h4{
	font-size:1.5rem;}


/*----- Advertiser Features Section Starts ------*/
#advertiser-features-section{
	padding: 0 0 0px 0;
    position: relative;
    z-index: 3;
    background-repeat: no-repeat;
    background-size: cover !important;
    background: linear-gradient(rgb(1 49 109 / 65%), rgb(1 43 101 / 60%)), url(../images/bg_1.jpg) fixed center center;}


#advertiser-features-section h4{
	font-size:1.5rem;}

.advertiser-features-section{
    position: relative;
    text-align: center;
}

.advertiser-features-section .advertiser-features-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.advertiser-features-section .advertiser-features-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.advertiser-features-section:hover .advertiser-features-img img {
    transform: scale(1);
}

.advertiser-features-section .advertiser-features-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
	width:100%;
}

.advertiser-features-section:hover .advertiser-features-text {
    background:rgb(98, 34, 204, 0.8);
}

.advertiser-features-section .advertiser-features-text h4,
.advertiser-features-section .advertiser-features-text p {
    transition: .3;
}

.advertiser-features-section:hover .advertiser-features-text h4 {
    color: #FFFFFF;
}

.advertiser-features-section:hover .advertiser-features-text p {
    color: var(--light);
}

.advertiser-features-section .advertiser-features-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.advertiser-features-section:hover .advertiser-features-text .btn-square {
    background: var(--light);
}

.advertiser-features-section .advertiser-features-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.advertiser-features-section:hover .advertiser-features-text .btn {
    width: 112px;
}

/*--------------------------------------------------------------
# Adformat Section Starts Here
--------------------------------------------------------------*/
.adformat-section {
  background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%);
}

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

.adformat-section .section-title h2::after {
  background: rgba(255, 255, 255, 0.6);
}

.adformat-section .adformat-section-list {
  padding: 0 100px;
}

.adformat-section .adformat-section-list ul {
  padding: 0;
  list-style: none;
}

.adformat-section .adformat-section-list li+li {
  margin-top: 15px;
}

.adformat-section .adformat-section-list li {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  position: relative;
}

.adformat-section .adformat-section-list a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding:0px;
  outline: none;
  cursor: pointer;
}

.adformat-section .adformat-section-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #8577fb;
}

.adformat-section .adformat-section-list .icon-show,
.adformat-section .adformat-section-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.adformat-section .adformat-section-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.adformat-section .adformat-section-list .icon-show {
  display: none;
}

.adformat-section .adformat-section-list a.collapsed {
  color: #470599;
}

.adformat-section .adformat-section-list a.collapsed:hover {
  color: #5846f9;
}

.adformat-section .adformat-section-list a.collapsed .icon-show {
  display: inline-block;
}

.adformat-section .adformat-section-list a.collapsed .icon-close {
  display: none;
}

.adformat-section i{
	float:right;}

@media only screen and (max-width: 1200px)
{
  .adformat-section .adformat-section-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Targeting Options Section
--------------------------------------------------------------*/

.targeting-options .targeting-options-wrap {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
}


.targeting-options .targeting-options-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.targeting-options .targeting-options-wrap .targeting-options-info {
  padding: 25px 20px;
  background-color: #fff;
  position: relative;
  border-top: 1px solid #f3f3f3;
  z-index: 2;
}

.targeting-options .targeting-options-wrap .targeting-options-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.targeting-options .targeting-options-wrap .targeting-options-info h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.targeting-options .targeting-options-wrap .targeting-options-info h4 a:hover {
  color: var(--color-primary);
}

.targeting-options .targeting-options-wrap .targeting-options-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.targeting-options .targeting-options-wrap:hover img {
  transform: scale(1.1);
}

.targeting-options-details .targeting-options-details-slider img {
  width: 100%;
}

.targeting-options-details .targeting-options-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.targeting-options-details .targeting-options-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.targeting-options-details .targeting-options-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.targeting-options-details .targeting-options-description p {
  padding: 0;
}
/*************** Advertiser page *******************/


/************** Publisher page ****************/
/*--------------------------------------------------------------
# Publisher Content Section
--------------------------------------------------------------*/
.publisher-content-section {
  padding: 120px 0;
}

.publisher-content-section .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: #3c3842;
  line-height: 2.5rem;
}

.publisher-content-section .content ul {
  list-style: none;
  padding: 0;
}

.publisher-content-section .content ul li {
  padding-bottom: 10px;
}

.publisher-content-section .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5846f9;
}

.publisher-content-section .content p:last-child {
  margin-bottom: 0;
}

.publisher-content-section .content .read-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px 10px 25px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: linear-gradient(45deg, #5846f9 0%, #7b27d8 100%);
  position: relative;
}

.publisher-content-section .content .read-more:hover {
  background: linear-gradient(180deg, #5846f9 0%, #7b27d8 100%);
}

.publisher-content-section .content .read-more i {
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 12px;
}

/*--------------------------------------------------------------
# Publisher Features Section
--------------------------------------------------------------*/

.publisher-features{
	background:#f5f5f5;}

.publisher-features .icon-box {
  padding: 30px;
  position: relative;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  z-index:99;
  min-height:170px;
}

.publisher-features .icon-box:hover {
  transform: translateY(-5px);
}

.publisher-features .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.publisher-features .icon i {
  font-size: 45px;
  line-height: 1;
  transition: 0.5s;
  z-index:9999;
  padding:10px;
  border-radius:10px;
  color: #FFFFFF;
}

.publisher-features .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.publisher-features .title {
  color: #111;
}

.publisher-features .icon-box:hover .title {
  color: #8861c9;
}

.publisher-features .description {
  font-size: 16px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

/*------------- Publisher Ad Formats -----------*/
#publisher-adformat{
	background:#fff;
	}

.publisher-adformat {
  padding: 60px 0;
}

.publisher-adformat .publisher-adformat-list {
  padding: 0;
  list-style: none;
}

.publisher-adformat .publisher-adformat-list li {
  border-bottom: 1px solid #eceefe;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.publisher-adformat .publisher-adformat-list .question {
  display: block;
  position: relative;
  font-family: #3b4ef8;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0a22f6;
  transition: 0.3s;
}

.publisher-adformat .publisher-adformat-list i {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0px;
}

.publisher-adformat .publisher-adformat-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.publisher-adformat .publisher-adformat-list .icon-show {
  display: none;
}

.publisher-adformat .publisher-adformat-list .collapsed {
  color: black;
}

.publisher-adformat .publisher-adformat-list .collapsed:hover {
  color: #3b4ef8;
}

.publisher-adformat .publisher-adformat-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.publisher-adformat .publisher-adformat-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/************** Publisher page ****************/

/************** Contact us page ***************/
.info {
  padding: 30px 0px;
  width: 100%;

}
.info i {
  font-size: 20px;
  color:#fff;
  float: left;
  width: 44px;
  height: 44px;
  background:#fba504;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}
.info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #fff;
}

.info .email:hover i, .info .address:hover i, .info .phone:hover i {
  background: #2c1403;
  color: #fff;
}

.contact #contactus
{
    width: 100%;
}

.contact .contact-us-form {
  width: 100%;
  border:3px solid #e0ceff;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  font-size:16px !important;
  margin: 4.5rem 0;

}


.contact .contact-us-form .form-group {
  padding-bottom: 8px;
}

.contact .contact-us-form input, .contact .contact-us-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .contact-us-form input:focus, .contact .contact-us-form textarea:focus {
  border-color: #fbb380;
}
.contact .contact-us-form input {
  height: 44px;
}
.contact .contact-us-form textarea {
  padding: 10px 12px !important;
  height:70px !important;
}
.contact .contact-us-form button[type=submit] {
  background:#000;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  margin-top:15px;
  font-size:18px !important;
}
.contact .contact-us-form button[type=submit]:hover {
  background: #fba504;
}

@media only screen and (max-width:991px)
{
  .info i{
  	margin:1rem auto;
  	float:none;}

  .info h4{
  	padding-left:0px;}

  .info p{
  	padding-left:0px;}
}

@media only screen and (max-width:767px)
{
  .contact .contact-us-form{
  	margin:0px;}

  .info i{
  	margin:1rem auto;
  	float:none;}

  .info h4{
  	padding-left:0px;}

  .info p{
  	padding-left:0px;}
}
/************** Contact us page ***************/

/************** Cookie Policy On Footer ***************/
.cookie-class
{
	position: fixed;
	bottom: 0px;
	height: auto;
	width: 100%;
	background-color:#6222cc;
	color: #FFFFFF;
	text-align:center;
	padding-top: 10px;
	padding-bottom: 5px;
	display: none;
	z-index:99;
}


.cookie-class a
{
	color: #fba504;
}

.cookie-policy-button
{
   	color: #fff !important;
    background-color: #fba504 !important;
    border-color: #fba504 !important;
    font-weight: 700 !important;
    font-size: 12px;
    border-radius: 2px !important;
    padding: 5px 10px;
	outline: 0;
	cursor: pointer;
}
/************** Cookie Policy On Footer ***************/

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*** Footer ***/
.footer {
    margin-top: 0rem;
    padding-top: 9rem;
    background:
        url(../images/bg-top.png),
        url(../images/map.png);
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
}

.footer .h5{
	font-size:1.15rem;}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
	float:left;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
	text-decoration:none;
}



.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}


.footer .social-media-wrap{
	float:right;}

.footer .social-media-wrap i{
	float:right;
	margin-right:0px;}

.footer i{
	margin-right:5px;}

@media only screen and (max-width: 767px)
{
  .footer .social-media-wrap
  {
  	float: none;
  	margin:auto;
  	display:inline-block;
  }
}

/*-------------- Newsletter Section Starts ---------------*/

.newsletter {
  padding: 0px 0 50px;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

.newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}

.newsletter-wrap{
	padding:15px 30px;
	background-color:#8861c9;
	border-radius:10px;}

.newsletter form {

  position: relative;
  text-align: left;
}

.newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

.newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background:#3b147a;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.newsletter form input[type=submit]:hover {
  background:#242626;
}


.news_letter_button{
   background-color: #6222cc !important;
   color: #fff;
   border: none;
   padding: 4px 20px;
   outline: 0;
   transition: 1s;
   text-transform: uppercase;
   font-weight:600;
   border-radius:10px;
   cursor: pointer;
}

/************** Back to top button *************/
.back-to-top {
  position: fixed;
  display: none;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background:#8861c9;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  text-decoration: none;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #27242c;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/************** Back to top button *************/

/************** Newsletter Section *************/
#email_subscription .form-outer
{

}

#email_subscription .form-input-text
{
	width: 220px;
	margin-bottom: 5px;
	margin-right: 5px;
	float: left;

}

#email_subscription .form-input-text input[type=text]
{
    border-radius: 2px;
}

#email_subscription .news_letter_button
{
   border-radius:5px;
   padding: 7px;
	 background: #27242c;
   border-color:#27242c;
	 color:#fff;
}

@media only screen and (max-width: 767px)
{
    #email_subscription .form-input-text
    {
        width:100%;
    }

    #email_subscription .form-input-button
    {
        float:none !important;
    }
}
/************** Newsletter Section *************/

.notification
{
	font-size: 14px;
	color:#5627a3;
}

.green
{
    color: green;
}

.red
{
    color: red;
}

.testimonial-item .rounded-circle
{
    width: 80px !important;
    height: 80px !important;
}

.pricing-section h2
{
    color: #FFFFFF;
}
/******* 5189 lines *********/
.fabs {
  bottom: 50%;
  position: fixed;
  margin:0;
  right: 0;
  z-index: 2;
}

.fabs .theme-list-selected
{
    background:#fba504;
}

.fabs a:hover {
  cursor: pointer;
}

.fab {
  display: block;
    text-align: center;
    color: #000000;
    margin: 0;
    box-shadow: 0 0 4px rgb(0 0 0 / 14%), 0 4px 8px rgb(0 0 0 / 28%);
    cursor: pointer;
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
    position: relative;
    z-index: 998;
    background: #fba504;
    padding: 10px 20px 7px;
    border-radius: 60px 0px 0px 60px;
    border: none;
    border-right: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.fab .label-div
{
    display: inline;
    position: relative;
    bottom: 2px;
}

.fab a {
  color: #FFFFFF;
}

.fab:hover{
	background:#6222CC;
	color:#fff;}

.fab i{
	margin-right:5px;}

.form-label
{
    font-size: 14px;
    color: #212529;
}
