body {
  font-family: 'Brandon Grotesque';
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #212721;
  letter-spacing: 0.8px;
  overflow-x: hidden;
}


/** Common Class **/

.container-fluid {
  padding-left: 100px;
  padding-right: 100px;
}

a {
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  transition: .3s linear;
}

h2 {
  font-size: 41px;
  font-family: 'Brandon Grotesque';
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
}

h3 {
  font-size: 27px;
  font-family: 'Brandon Grotesque';
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  line-height: 33px;
}

h4 {
  font-size: 30px;
  color: #E394FF;
  text-transform: uppercase;
}

h6 {
  font-size: 22px;
  font-family: 'Brandon Grotesque';
  font-weight: 900;
  text-transform: uppercase;
}

p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.8px;
  display: inline-block;
}

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

.bg-black {
  background-color: #212721;
}

.violet {
  color: #E394FF;
}

.yellow {
  color: #E394FF;
}

.title.yellow h3 {
  color: #E394FF;
}


/** Common Class **/


/** Button **/
.title.bgpink h3{
  text-align: center;
  position: relative;
  font-family: 'Brandon Grotesque';
  font-size: 20px;
  line-height: 20px;
  font-weight: 900;
  min-width: 400px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  display: inline-block;
  overflow: hidden;
  padding: 13px 30px;
  border: 1px solid #E394FF;
  transition: 0.5s ease-in-out;
  color: #212721;
  background-color: #E394FF;
}
.btn-bgpink {
  position: relative;
  font-family: 'Brandon Grotesque';
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  display: inline-block;
  overflow: hidden;
  padding: 15px 30px;
  border: 1px solid #E394FF;
  transition: 0.5s ease-in-out;
  color: #212721;
  background-color: #E394FF;
}

.btn-bgpink span {
  position: relative;
  z-index: 9;
}

.btn-bgpink:before,
.btn-bgpink:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 8;
  transition: 0.5s ease-in-out;
}

.btn-bgpink:before {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.btn-bgpink:after {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.btn-bgpink:hover:before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-bgpink:hover:after {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.btn-bgpink:hover {
  color: #212721;
}

.title.bgblack h3{
  position: relative;
  text-align: center;
    font-family: 'Brandon Grotesque';
    font-size: 20px;
    line-height: 20px;
    font-weight: 900;
    min-width: 400px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    display: inline-block;
    overflow: hidden;
    padding: 13px 30px;
    border: 1px solid #212721;
    transition: 0.5s ease-in-out;
    color: #fff;
    background-color: #212721;
}
.btn-black {
    position: relative;
    font-family: 'Brandon Grotesque';
    font-size: 18px;
    line-height: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    display: inline-block;
    overflow: hidden;
    padding: 7px 30px;
    border: 1px solid #212721;
    transition: 0.5s ease-in-out;
    color: #fff;
    background-color: #212721;
}

.btn-black span {
  position: relative;
  z-index: 9;
}

.btn-black:before,
.btn-black:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 8;
  transition: 0.5s ease-in-out;
}

.btn-black:before {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.btn-black:after {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.btn-black:hover:before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-black:hover:after {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.btn-black:hover {
  color: #212721;
}
/*.btn-purple {
  position: relative;
  font-family: 'InterstateUltraBlackItalic';
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  display: inline-block;
  overflow: hidden;
  padding: 15px 30px;
  border: 1px solid #E394FF;
  transition: 0.5s ease-in-out;
  color: #E394FF;
}

.btn-purple span {
  position: relative;
  z-index: 9;
}

.btn-purple:before,
.btn-purple:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #E394FF;
  z-index: 8;
  transition: 0.5s ease-in-out;
}

.btn-purple:before {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.btn-purple:after {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.btn-purple:hover {
  color: #eae4d0;
}

.btn-purple:hover:before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-purple:hover:after {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.btn-purple:hover {
  color: #fff;
}*/
.title.bgyellow h3{
  position: relative;
  font-family: 'Brandon Grotesque';
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  font-weight: 900;
  min-width: 400px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  overflow: hidden;
  padding: 13px 30px;
  border: 1px solid #D6FF96;
  transition: 0.5s ease-in-out;
  color: #212721;
  background-color: #D6FF96;
}
.btn-bgyellow {
  position: relative;
  font-family: 'Brandon Grotesque';
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  overflow: hidden;
  padding: 15px 30px;
  border: 1px solid #D6FF96;
  transition: 0.5s ease-in-out;
  color: #212721;
  background-color: #D6FF96;
}

.btn-bgyellow span {
  position: relative;
  z-index: 9;
}

.breadcrumb-dropdown ul li a.btn-bgyellow:before,
.breadcrumb-dropdown ul li a.btn-bgyellow:after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 8;
  transition: 0.5s ease-in-out;
  height: initial;
  width: initial;
}
.breadcrumb-dropdown ul li a.btn-bgyellow:before {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.breadcrumb-dropdown ul li a.btn-bgyellow:hover:before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.breadcrumb-dropdown ul li a.btn-bgyellow:after {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.breadcrumb-dropdown ul li a.btn-bgyellow:hover:after {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.btn-bgyellow:before,
.btn-bgyellow:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 8;
  transition: 0.5s ease-in-out;
}

.btn-bgyellow:before {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.btn-bgyellow:after {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.btn-bgyellow:hover:before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-bgyellow:hover:after {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.btn-bgyellow:hover {
  color: #212721;
}
.breadcrumb-dropdown ul li a::after, section.border-box .b-box ul li a::after 
{
  display: none;
}

/** Button **/


/** Header Start **/

header.header {
  width: 100%;
  float: left;
  padding: 0px;
  background: #fff;
}

header.header.fixed-top {
  animation: smoothScroll 1s forwards;
}

header.header.fixed-top .header-top {
  display: none;
}

header .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

header.header .header-top{
  background: #D6FF96;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
}

header.header .header-top p,
header.header .header-top a{
    color: #212721;
    margin: 0;
    transition: 0.2s ease-in-out;
    font-size: 14px;
    font-weight: 600;
}

header.header .header-top a:hover{
  color: #E394FF;
}

header.header nav.navbar ul li {
  margin: 0 0 0 10px;
  position: relative;
}

header.header nav.navbar ul li a {
  text-transform: uppercase;
  color: #000;
  font-size: 14px;
  letter-spacing: 2px;
  font-family: 'Brandon Grotesque';
  font-weight: 900;
  padding: 20px 0;
}
header.header nav.navbar ul li .sub-menu li a{
  padding: 10px 0;
}

header.header nav.navbar li a:hover {
  color: #E394FF;
}

header.header .navbar-toggler span.icon-bar {
    border: 1px solid #212721;
    width: 27px;
    line-height: normal;
    margin-bottom: 6px;
    display: block;
    transition: all 500ms cubic-bezier(.19, 1, .22, 1);
    -webkit-transition: all 500ms cubic-bezier(.19, 1, .22, 1);
}

.navbar-toggler {
  outline: none !important;
}

nav.navbar li:hover .sub-menu{
  display: block;
}
.sub-menu{
  display: none;
  position: absolute;
  top: 50px;
  z-index: 999;
  width: 300px;
  background: #fff;
  padding: 10px 5px;
  padding-left: 5px;
}
.navbar{
      padding: 5px 0 0 !important;
}
.navbar-nav{
  padding: 0 !important;
}
nav ul.navbar-nav li.menu-item-has-children:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -3px;
    background: url(../images/arrowd.png);
    width: 9px;
    height: 7px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.4s ease-in-out;
}
/** Header End **/


/** Banner Start **/

section.banner {
  width: 100%;
  float: left;
  padding: 0px;
  position: relative;
}

section.banner .banner-info img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

	/** home page only **/
.home section.banner .banner-info img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
} /** end **/


section.banner .banner-info .banner-caption {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  z-index: 9;
}
section.banner .banner-info  .banner-caption img{
  max-height: 205px;
  width: auto;
}

section.banner .banner-info .banner-caption h1 {
  text-transform: uppercase;
  font-size: 47px;
  letter-spacing: 5px;
  font-family: 'Brandon Grotesque';
  line-height: 50px;
  font-weight: 900;
}

/*section.banner .banner-info .banner-caption h1.title-2{
  font-family: 'BOOWIE';
  font-weight: normal;
}*/

section.banner .banner-info .banner-caption p {
  color: #fff;
  font-size: 24px;
  font-family: 'Brandon Grotesque';
  line-height: 25px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-top: -30px;
  text-transform: uppercase;
}

section.banner .banner-info .banner-caption p:before{

}

section.banner .banner-info .banner-caption .btn-yellow span {
  color: #D6FF96;
} 
section.banner .banner-info .banner-caption .btn-yellow:hover span {
  color: #fff;
} 

/*section.banner .banner-info .banner-caption:before {
    content: "";
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 500px;
    opacity: .95;
    background: url(../images/shadow.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}*/

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}


/** Text animation **/

.title .line {
  overflow: hidden;
}

.title .line:last-child .word {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.title .word {
  opacity: 0;
  -webkit-animation: slide-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: slide-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes slide-in {
  from {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in {
  from {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}


/** Text animation **/


/** Banner End **/


/** Video Start **/

section.video-with-content {
  width: 100%;
  float: left;
  padding: 0px;
  background: #212721;
  position: relative;
  padding: 200px 0 100px 0;
}

.arrow {
  position: absolute;
  right: 30px;
  bottom: -100px;
  z-index: 9;
}

.arrow a img {
  height: 40px !important;
  width: 54px !important;
  object-fit: contain;
  object-position: center;
}

/*section.video-with-content:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100px;
  background: #fff;
  transform: translateX(-50%);
  animation: lineup 3s forwards;
}*/

@keyframes lineup {
  0% {
    height: 0px;
  }
  100% {
    height: 100px;
  }
}

section.video-with-content .image-video {
  position: absolute;
  width: 100%;
}

section.video-with-content .image-video img {
  width: 90%;
  height: 600px;
  box-shadow: 7px 10px 22px -8px rgba(0, 0, 0, 0.75);
  object-fit: cover;
  object-position: center;
}

section.video-with-content .video-content {
  padding-right: 100px;
}

section.video-with-content .video-content h3 {
  width: 80%;
}

section.video-with-content .video-content p {
  color: #fff;
  margin: 50px 0 0 0;
  width: 75%;
}


/** Video End **/


/** Img with content start  **/

section.img-with-content {
  width: 100%;
  float: left;
  padding: 110px 0 0 0;
  position: relative;
}

section.img-with-content .left-content .btn-custom {
  text-align: center;
  display: inline-block;
}

p:empty{
  display: none;
}

section.img-with-content .img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

section.img-with-content .content-btm {
  background: #212721;
}

section.img-with-content .content-btm .left-content p {
  color: #fff;
}

section.img-with-content .img-with-content-title {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section.img-with-content .img-with-content-title h2 {
  color: #E394FF;
  font-size: 75px;
  font-family: 'Brandon Grotesque';
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 auto;
  text-align: center;
}


/** Img with content end  **/


/** Left img content **/

section.left-img-content {
  position: relative;
  width: 100%;
  float: left;
  padding: 70px 0;
}

section.left-img-content .img img {
  width: 100%;
}

section.left-img-content .about-content {
  padding: 0 0 0 100px;
}

section.left-img-content .about-content h3 {
  margin: 0px;
}

section.left-img-content .about-content p {
  margin: 30px 0;
}

section.left-img-content .content h3{
  margin-bottom: 30px;
  margin-top: 1px;
}

section.left-img-content .image{
  text-align: center;
}

section.left-img-content .image img{
    border-right: 13px solid #D6FF96;
	border-left: 13px solid #D6FF96;
    border-bottom: 13px solid #D6FF96;
    border-top: 13px solid #D6FF96;
    width: 100%;
	margin-left: 50px;
	
}

section.left-img-content.right .image img{
    border-left: 13px solid #D6FF96;
    border-bottom: 13px solid #D6FF96;
    border-top: 13px solid #D6FF96;
    border-right: 13px solid #D6FF96;
    width: 100%;
	margin-left: -25px;
}

/*section.left-img-content.right b, strong {*/
/*    display: block;*/
/*}*/
 
section.left-img-content .content{
    position: relative;
    max-width: 550px;
    margin: auto;
    padding: 0 15px;
    padding-left: 50px;
    height: 90%;
    top: 5%;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
section.left-img-content.right .content{
  padding-right: 50px;
  padding-left: 0;
  text-align: right;
}

section.left-img-content.right .content:before{
    content: '';
    position: absolute;
    top: 0px;
    left: initial;
    right: 5px;
    background: url(../images/pink-asset.png);
    width: 30px;
    height: 30px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}
section.left-img-content.right .content:after{
  content: '';
  position: absolute;
  top: 37px;
  left: initial;
  right: 20px;
  background: #F895FF;
  width: 2px;
  height: 90%;
  opacity: 0.5;
  z-index: 1;
}

section.left-img-content .content:before{
    content: '';
    position: absolute;
    top: 0px;
    left: 5px;
    background: url(../images/pink-asset.png);
    width: 30px;
    height: 30px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}
section.left-img-content .content:after{
  content: '';
  position: absolute;
  top: 37px;
  left: 17px;
  background: #F895FF;
  width: 2px;
  height: 90%;
  opacity: 0.5;
  z-index: 1;
}

section.left-img-content .content h3 br{
  padding: 10px 0;
}

/** Left img content **/


/** Bg content start **/

section.bg-content {
  width: 100%;
  float: left;
  padding: 150px 0;
  background-repeat: no-repeat;
  background-size: cover;
}

section.bg-content h4 {
  text-transform: uppercase;
  color: #212721;
  text-align: center;
  width: 55%;
  margin: 0 auto;
}

section.bg-content .btn-custom {
  text-align: center;
  margin: 30px 0 0 0;
}


/** Bg content end **/


/** Specials start **/

section.specials {
  width: 100%;
  float: left;
  padding: 80px 0;
  background: #212721;
}

section.specials .item {
  border: 1px solid #E394FF;
  text-align: center;
  padding: 20px;
  margin: 1px;
  position: relative;
  overflow-y: hidden;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

section.specials .item h5 {
  color: #E394FF;
  font-size: 21px;
  text-transform: uppercase;
  font-family: 'Brandon Grotesque';
  font-weight: 900;
  letter-spacing: 1.05px;
}

section.specials .item h2 {
  color: #E394FF;
  font-size: 55px;
  letter-spacing: 2.5px;
  margin: 0px;
}

section.specials .item:hover {
  transition: .3s linear;
}

section.specials .item:before,
section.specials .item:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #E394FF;
  z-index: 8;
  transition: 0.5s ease-in-out;
}

section.specials .item:before {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

section.specials .item:after {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

section.specials .item:hover {
  color: #eae4d0;
}

section.specials .item:hover h5,
section.specials .item:hover h2,
section.specials .item:hover p {
  color: #fff !important;
  position: relative;
  z-index: 9;
}

section.specials .item:hover:before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-49%);
}
section.specials .item p{
  color: #fff;
  margin-bottom: 0;
} 
section.specials .item:hover:after {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.owl-nav button {
  border: none;
  outline: none;
}

.owl-nav button span {
  display: none;
}

.owl-nav .owl-prev {
  background: url(https://www.luxelaserpdx.com/wp-content/uploads/2020/10/arrow-diamond.png) !important;
    background-size: contain !important;
    width: 70px;
    height: 70px;
    background-repeat: no-repeat !important;
    position: absolute;
    left: -30px;
    top: 60%;
    transform: translateY(-50%);
    margin-top: 12px;
}

.owl-nav .owl-next {
  background: url(../images/arrow-diamond.png) !important;
  background-size: contain !important;
  width: 70px;
  height: 70px;
  background-repeat: no-repeat !important;
  position: absolute;
  right: -30px;
  top: 60%;
  transform: translateY(-50%);
  margin-top: 12px;
}

.owl-dots {
  display: none;
}

section.specials.white {
  background: transparent;
}

section.specials.white .item h2 {
  color: #212721;
}

section.specials.white .item p {
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.05em;
  font-family: 'Interstate-Light';
  margin: 0;
  color: #e394ff;
  text-transform: capitalize;
}

.green-line{
  margin-top: 50px;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  padding: 12px 30px;
  background-color: #D6FF96;
  text-align: center;
}
.green-line p{
  margin-bottom: 0;
  font-family: 'Brandon Grotesque';
  font-weight: 900;
  font-size: 16px;
}
/** Specials end **/


/** Footer **/

footer.footer {
  width: 100%;
  float: left;
  padding: 0;
  background: #1a1e20;
}

#footer-carousel {
    padding: 0 75px;
}

footer.footer .col-lg-4 {
  position: relative;
}

/*footer.footer .col-lg-4:before {
  content: "";
  position: absolute;
  right: 0;
  width: 2px;
  height: 100%;
  background: #394045;
}*/

footer.footer .footer-left {
  text-align: center;
  padding: 60px 0 0 0px;
      height: 100%;
    background-color: #E394FF;
}

footer.footer .footer-left .footer-logo {
  margin: 0 0 50px 0;
}

footer.footer .footer-left .quiz h5 {
  width: 80%;
  margin: 0 auto;
  font-size: 22px;
  text-transform: uppercase;
  font-family: 'Brandon Grotesque';
  font-weight: 900;
  
}

footer.footer .footer-left .quiz {
  margin: 0 0 35px 0;
}

footer.footer .footer-left .quiz a {
  text-transform: uppercase;
  margin: 10px 0 0 0;
  display: inline-block;
}

footer.footer .footer-left .quiz a i {
  font-size: 20px;
  margin: 0 0 0 5px;
  position: relative;
  top: 1px;
}

/*footer.footer .footer-left .quiz a:hover {
  color: #E394FF;
}*/

footer.footer .footer-left .quiz a:hover i {
  padding: 0 0 0 5px;
  transition: .3s linear;
}

footer.footer .footer-contact {
  text-align: center;
  padding: 60px 0 60px 0;
  height: 100%;
  background-color: #D6FF96;
}

footer.footer .footer-contact:last-child .contact-grid:last-child {
  margin: 0px;
}

footer.footer .footer-contact:last-child .contact-grid:last-child:before {
  display: none;
}

footer.footer .footer-contact .contact-grid {
  width: 100%;
  display: inline-block;
  margin: 0 0 25px 0;
  position: relative;
}

/*footer.footer .footer-contact .contact-grid:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: #E394FF;
}*/

footer.footer .footer-contact .contact-grid h5 {
  text-transform: uppercase;
  font-family: 'Brandon Grotesque';
  font-size: 18px;
  margin: 0px;
  font-weight: 900;
}

footer.footer .footer-contact .contact-grid a {
  text-transform: uppercase;
  margin: 5px 0 0 0;
  display: inline-block;
  color: #212721;
  font-size:22px;
}

footer.footer .footer-contact .contact-grid a.btn-black{
 color: #fff;
}


footer.footer .footer-contact .contact-grid a.btn-black:hover{
  color: #212721;
}

/*footer.footer .footer-contact .contact-grid a:hover {
  color: #E394FF;
}*/

footer.footer .footer-contact .contact-grid p {
  color: #212721;
  width: 80%;
  margin: 5px auto;
  text-transform: uppercase;
}

footer.footer .footer-right {
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.mt-neg-20{margin-top: -17px}

/*footer.footer .footer-right h3 {
  color: #fff;
}*/

footer.footer .footer-right ul {
  margin: 15px 0 0 0;
  padding: 0;
}

footer.footer .footer-right ul li {
  display: inline-block;
  margin: 0 5px;
}

footer.footer .footer-right ul li a {
  width: 70px;
  height: 70px;
  background: #E394FF;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  display: flex;
  padding: 7px;
  align-items: center;
  justify-content: center;
}

footer.footer .footer-right ul li a i {
  font-size: 30px;
}

footer.footer .footer-right ul li a:hover {
  background: #D6FF96;
  color: #212721;
}


footer.footer .footer-navbar {
  text-align: center;
  border-top: 2px solid #394045;
  padding: 20px 0;
  position: relative;
}

footer.footer .footer-navbar ul li {
  display: inline-block;
  margin: 10px 20px;
}

footer.footer .footer-navbar ul li a {
  color: #fff;
  text-transform: uppercase;
}

footer.footer .footer-navbar ul li a:hover {
  color: #E394FF;
}

footer.footer .footer-navbar .chat {
  width: 90px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

footer.footer .footer-navbar .chat a {
    width: 90px;
    height: 100%;
    background: #E394FF;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer.footer .footer-navbar .chat a:hover {
  background: #E394FF;
}


/** Footer **/


/** breadcrumb **/

section.breadcrumb {
  position: relative;
  float: left;
  width: 100%;
}

section.breadcrumb .bg-img {
  background-size: cover;
  min-height: 500px;
  height: auto;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

section.breadcrumb-dropdown-sec {
  position: relative;
  float: left;
  width: 100%;
  max-height: 0;
  margin-top: 0px;
  z-index: 1;
}
section.breadcrumb-dropdown-sec .col-lg-5{
  padding-top: 75px;
}
section.breadcrumb-dropdown-sec.no-black .breadcrumb-dropdown ul {
    padding: 0;
}
/*section.breadcrumb-dropdown-sec:before {
  content: '';
  background-color: #212721;
  position: absolute;
  left: 50%;
  bottom: -135px;
  transform: translateX(-50%);
  height: 140px;
  width: 1px;
  animation: lineuph 3s forwards;
}*/
@keyframes lineuph {
  0% {
    height: 0px;
  }
  100% {
    height: 140px;
  }
}
section.breadcrumb-dropdown-sec.white:before {
  background-color: #fff;
}

.breadcrumb-dropdown {
  max-width: 350px;
}

.breadcrumb-dropdown ul {
  padding: 20px 0 0;
}

.breadcrumb-dropdown ul li a {
  color: #fff;
  position: relative;
  display: inline-block;
}

.breadcrumb-dropdown ul li{
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 60px;
}

.breadcrumb-dropdown ul li a,
.breadcrumb-dropdown ul li .title {
  padding-left: 35px;
}

.breadcrumb-dropdown ul li.btn-custom {
  margin-top: 20px;
}

.breadcrumb-dropdown ul li.btn-custom a {
  text-align: center;
  position: relative;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.07em;
  line-height: 30px;
  justify-content: center;
  width: 100%;
  transition: 0.2s ease-in-out;
}

.breadcrumb-dropdown ul li a:hover {
  color: #E394FF;
}

.breadcrumb-dropdown ul li a:before,
.breadcrumb-dropdown ul li a:after {
  content: '';
  background-color: #E394FF;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: 0.5s ease-in-out;
  height: 20px;
  width: 3px;
  display: block;
}

.breadcrumb-dropdown ul li a:hover:before {
  transform: translateY(-50%) scale(1);
}
section.border-box .b-box ul li a{
  position: relative;
  margin: 5px 0;
}
section.border-box .b-box ul{
  padding-left: 0px;
}
section.border-box .b-box ul li{
  padding-right: 30px;
}
body section.border-box .b-box ul li a:after{
  bottom: 17px;
}
.breadcrumb-dropdown ul li a:after,
section.border-box .b-box ul li a:after {
  content: '»';
  background-color: transparent;
  position: absolute;
  right: -20px;
  bottom: 13px;
  height: 10px;
  width: 10px;
  font-size: 20px;
  transition: 0.2s ease-in-out;
}
.breadcrumb-dropdown ul li a:hover:after,
section.border-box .b-box ul li a:hover:after {
  right: -25px;
}


/** breadcrumb **/


/** space-with-content **/

section.space-with-content {
  position: relative;
  float: left;
  width: 100%;
  padding: 80px 0;
}

section.space-with-content .row {
    width: calc(100% - 400px);
    float: none;
    z-index: 1;
    margin: auto;
}

section.space-with-content .row .title.violet {
  color: #212721;
}

section.space-with-content .content {
    justify-content: flex-start;
    padding-left: 40px;
}

section.space-with-content .content:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 5px;
    background: url(../images/pink-asset.png);
    width: 30px;
    height: 30px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}

section.space-with-content .content:after {
    content: '';
    position: absolute;
    top: 37px;
    left: 17px;
    background: #F895FF;
    width: 2px;
    height: 95%;
    opacity: 0.5;
    z-index: 1;
}

section.space-with-content .content h4 {
  font-size: 18px;
}

section.space-with-content .content h3 {
  font-size: 20px;
}

section.space-with-content .content .row {
  border-top: 1px solid #E394FF;
}

section.space-with-content .content .row.pb-4 {
  border-bottom: 1px solid #E394FF;
  border-top: 0;
}

section.space-with-content .content .row ul {
  padding-left: 0;
}

section.space-with-content .content .text {
  padding: 20px 0 30px;
}

.list-style li {
  position: relative;
  padding-left: 20px;
}

.list-style li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0px;
    background: url(../images/pink-asset.png);
    width: 20px;
    height: 20px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}

.pink li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0px;
    background: url(../images/pink-asset.png);
    width: 20px;
    height: 20px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}

.green li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0px;
    background: url(../images/green-asset.png);
    width: 20px;
    height: 20px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}

.list-style li a{
  color: #E394FF;
}

.list-style li a:hover{
  color:#212721;
  font-weight: bold;
}

.list-bullet li {
    position: relative;
    padding-left: 15px;
    margin-top: 5px;
}

.list-bullet li:before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0px;
    background: #E394FF;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}
/** space-with-content **/


/** before-after **/

section.before-after {
  position: relative;
  float: left;
  width: 100%;
  z-index: -1;
  padding: 30px 0 0;
}

.content-top {
  min-height: 340px;
  text-align: center;
  padding: 90px 0 0px;
  position: relative;
}

.before-after-carousel {
  max-width: 900px;
  margin: auto;
  padding: 0 90px;
}


.before-after-carousel .owl-nav .owl-prev {
  left: 15px;
  top: 50%;
}

.before-after-carousel .owl-nav .owl-next {
  right: 15px;
  top: 50%;
}

.before-after-carousel .content-top .title {
  z-index: 9;
  position: relative;
  right: 19px;
}

.before-after-carousel .content-top .title img {
  height: 40px;
  width: auto;
}

.before-after-carousel .content-top:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  background: #2e3337;
  width: 50%;
  height: 100%;
}

.hours b {
    font-weight: bolder;
    display: contents;
}

.before-after-carousel .bg-img {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: 10px solid #d6ff96;
}
.before-after-carousel .bg-img img {
    display: block;
    width: 100%;
    height: 100%;
}

.before-after-carousel .content-down {
  position: relative;
  top: -140px;
}

.moreval{
  font-size: 11px;
    line-height: 28px;
    letter-spacing: 0.8px;
        color: #E394FF;
}
.moretag {
    position: absolute;
    top: 68.9%;
    font-size: 12px;
    left: 49.5%;
    transform: translateX(-50%);
}


/** before-after **/


/** general-container **/

section.general-container {
  position: relative;
  float: left;
  width: 100%;
  color: #fff;
  padding: 80px 0;
}
section.general-container.other {
  color: #212721;
}
section.cards-contents,
section.body-parts {
  position: relative;
  float: left;
  width: 100%;
  color: #fff;
  padding: 40px 0 80px;
  margin-top: -1px;
}

.body-parts {
  color: #fff;
}

.laser-card {
  display: flex;
  margin: 15px 0;
  transition: 0.3s ease-in-out;
}

.laser-card:hover{
  box-shadow: 0px 0px 40px 0px #444;
}

.laser-card img {
  height: 200px;
  width: 250px;
  object-fit: cover;
  object-position: center;
}

.laser-card .content {
  width: 100%;
  padding-left: 50px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.laser-card .content h3 {
  color: #fff;
}

.laser-card .content p {
  font-size: 32px;
  color: #E394FF;
}

.title.violet p {
  color: #fff;
}

.title.violet span {
  opacity: 0.4;
  color: #fff;
}

.title.violet span span {
  color: #E394FF;
  opacity: 1;
}

.laser-content .content {
    /*background: #2e3337;*/
    height: 15px;
    display: flex;
    padding: 0 5px;
    margin: 15px 0;
    transition: 0.3s ease-in-out;
    align-items: center;
}
.laser-content .content h6 {
  margin-bottom: 0;
      font-size: 20px;
}
.laser-content .content:hover{
  /*box-shadow: 0px 0px 40px 0px #444;*/
}

.laser-content .content p {
  margin: 0;
  font-size: 24px;
  color: #E394FF;
  padding-left: 20px;
}


/*----accordian----*/

#accordion {
  padding-top: 50px;
  max-width: 900px;
  margin: auto;
}

#accordion .card {
  border: 0;
  background-color: transparent;
}

#accordion .card .card-header {
    background: #231F20;
    border: 0;
    padding: 15px 40px 15px 30px;
    margin: 15px 0 0;
    position: relative;
}

#accordion .card .card-header .card-title,
#accordion .card .card-header.collapsed .card-title:hover{
  color: #E394FF;
}

#accordion .card .card-header.collapsed .card-title{
  color: #fff;
  transition: 0.2s ease-in-out;
}

#accordion .card .card-header a {
    line-height: 30px;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    /* font-style: italic; */
    font-size: 18px;
}

#accordion .card .card-body {
  background: #2e3337e0;
}

.accordion .card-header:after {
  font-family: 'FontAwesome';
  content: "\f077";
  float: right;
  color: #E394FF;
  font-weight: 400;
  top: 18px;
  right: 15px;
  position: absolute;
}

.accordion .card-header.collapsed:after {
  content: "\f078";
  color: #E394FF;
  font-weight: 400;
  top: 18px;
  right: 15px;
  position: absolute;
}

.accordion .card-body {
  padding: 30px 60px 30px 60px;
}


/** skin-care **/

section.skin-care {
  position: relative;
  float: left;
  width: 100%;
  padding: 80px 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.skin-care-content .img {
  position: relative;
  text-align: center;
  margin: 20px 0;
  color: #fff;
}

.skin-care-content p {
  margin: 0;
}

.skin-care-content .img h3 {
  color: #fff;
}

section.skin-care.abt .skin-care-content .img h3 {
  color: #E394FF;
}

.skin-care-content .img p {
  margin: 0;
}

.skin-care-content .inner-img {
  height: 250px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: auto;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
.skin-care-content h3 {
    font-size: 35px;
    line-height: 45px;
    letter-spacing: 0.1em;
}
.skin-care-content h4{
    color: #d6ff96;
    font-weight: 600;
}
.skin-care-content p {
    font-size: 20px;
    line-height: 22px;
}
.skin-care-content .inner-img:hover{
  opacity: 0.5;
}
/*
.skin-care-content .inner-img:before {
  content: "";
  position: absolute;
  background: url(../images/care-asset.png);
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin: auto;
  height: 30%;
  margin: auto;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.skin-care-content .inner-img:after {
  content: "";
  position: absolute;
  background: url(../images/care-asset.png);
  bottom: 0px;
  left: 50%;
  width: 100%;
  margin: auto;
  height: 30%;
  margin: auto;
  background-repeat: no-repeat;
  transform: translateX(-50%) rotate(180deg);
  background-size: cover;
  z-index: -1;
}
*/
section.skin-care.abt .skin-care-content .text {
  position: relative;
  top: initial;
  left: initial;
  transform: translate(0, 0);
  max-width: 600px;
  margin: 20px auto 40px;
}

section.skin-care.abt .skin-care-content .text p{
}

.less-widths .img{
    max-width: 500px;
    margin: auto;
}

.skin-care-content .text.bg-black {
  position: relative;
  padding: 30px 20px 30px;
  margin-top: 5px;
  min-height: 160px
}

.skin-care-content .img .text.bg-black h3 {
    color: #E394FF;
}
.treatment {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 40px 0 0;
}

.treatment .text {
  position: relative;
  width: calc(100% - 30%);
  max-width: 600px;
  color: #212721;
  left: initial;
  transform: translateX(0);
  top: initial;
  text-align: center;
  margin-right: 100px;
}


/** skin-care **/


/** choose **/

section.choose {
  position: relative;
  width: 100%;
  float: left;
  padding-top: 80px;
  
}

section.choose .title p {
  color: #212721;
}

section.choose .img-card {
  text-align: center;
   margin: 0 10px;
}
section.choose .img-card .bg-black{
  min-height: 290px;
}
section.choose .img-card .breadcrumb-dropdown.bg-black{
  /*min-height: auto;*/
  margin-bottom: 0px;
  width: 100%;
  max-width: 100%;
}
section.choose .img-card .breadcrumb-dropdown {
position: relative;
top: 0;
left: 0px;
background: #212721;
}

section.choose .img-card .breadcrumb-dropdown {
  padding: 0;
}

section.choose .img-card .breadcrumb-dropdown ul li{
  min-height: 30px;
  padding: 6px 0;
}
section.choose .img-card .breadcrumb-dropdown ul {
  padding: 10px;
}
/*section.choose .img-card .breadcrumb-dropdown ul li h6{
  margin-bottom: 10px;
}*/

section.choose h4 {
  color: #E394FF;
  margin-bottom: 30px;
}

/*section.choose .breadcrumb-dropdown ul li,
section.choose .breadcrumb-dropdown ul li a {
  justify-content: flex-start;
}*/
body section.choose h6 {
   text-transform: uppercase;
   font-size: 28px;
}
section.choose .breadcrumb-dropdown ul li a,
section.choose h6 {
  padding-left: 15px;
  margin-right: 50px;
  text-transform: capitalize;
}

section.choose h6 {
  color: #E394FF;
  margin: 0;
}

section.choose .owl-nav .owl-prev {
  left: 0;
  background: url(https://www.luxelaserpdx.com/wp-content/uploads/2020/10/left-arrow.png) !important;
    background-size: contain !important;
    width: 70px;
    height: 40px;
    background-repeat: no-repeat !important;
    margin: 0;
}

section.choose .owl-nav .owl-next {
  right: 0;
  background: url(https://www.luxelaserpdx.com/wp-content/uploads/2020/10/right-arrow.png) !important;
    background-size: contain !important;
    width: 70px;
    height: 40px;
    background-repeat: no-repeat !important;
    margin: 0;
}

section.choose .title {
  max-width: 950px;
  margin: auto;
}


/** choose **/


/** border-box **/

section.border-box {
  position: relative;
  float: left;
  width: 100%;
  padding: 30px 0 70px;
}

section.border-box .b-box {
  border: 1.5px solid #E394FF;
  padding: 70px 20px 50px;
  position: relative;
}

section.border-box .title {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

section.border-box .title h4 {
  background-color: #fff;
  padding: 20px 30px;
  display: inline-block;
}

section.border-box ul li a {
  font-size: 21px;
  color: #E394FF;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

section.border-box ul li {
  display: inline-block;
  width: 49%;
}


/** border-box **/


/** map-with-content **/

section.map-with-content {
  position: relative;
  width: 100%;
  float: left;
  padding: 100px 0;
 /* background: url(../images/contact-bg.jpg);*/
}

.map.image iframe {
  height: 400px;
  width: 100%;
}

section.map-with-content .yellow h3 {
  color: #E394FF;
}

section.map-with-content .text {
  padding: 10px 0 10px 0px;
}

section.map-with-content p {
  position: relative;
  margin-bottom: 5px;
}

section.map-with-content .add p:before {
  content: '';
  position: absolute;
  top: 2px;
  left: -36px;
  height: 25px;
  width: 24px;
 /* background-image: url(../images/map.png); */
  background-size: contain;
  background-repeat: no-repeat;
}

section.map-with-content .text a {
  margin: 0;
  display: inline-block;
  color: #E394FF;
  transition: 0.3s ease-in-out;
}

section.map-with-content .text a:hover {
  color: #121822;
}

section.map-with-content .text .add a {
  text-decoration: underline;
  color: #E394FF;
  margin: 10px 0 20px;
}

section.map-with-content .text .add a:hover {
  color: #121822;
  font-weight: bold;
}

.hours span{
  display: inline-flex;
}

.wpcf7-list-item-label,
.wpcf7-list-item-label a:hover{
  color: #fff;
}

.wpcf7-list-item-label a{
  color: #E394FF;
}


/** map-with-content **/


/** contact-form **/

.wpcf7 form.sent .wpcf7-response-output {
    background: #fff;
}

section.contact-form {
  position: relative;
  width: 100%;
  float: left;
  padding: 100px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.get-in-touch {
  max-width: 900px;
  margin: auto;
  margin-left: 48px;

}

section.contact-form .yellow p {
  color: #fff;
}

section.contact-form .form-field {
  padding: 5px 5px;
}

section.contact-form .form-control {
  height: 60px;
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.3) !important;
  border: 0;
  text-transform: capitalize;
  border-radius: 0;
  letter-spacing: 0.02em;
}

section.contact-form .get-in-touch input:-internal-autofill-selected {
  background-color: rgba(255, 255, 255, 0.4) !important;
}

section.contact-form #message.form-control {
  height: 100px;
}

::placeholder {
  color: #fff !important;
}

section.contact-form .btn-yellow {
  padding: 13px 40px;
  max-width: 250px;
  margin: 40px auto 0;
  cursor: pointer;
  display: flex;
  letter-spacing: 0.07em;
  justify-content: center;
  align-items: center;
}

section.contact-form .submit-btn {
    text-transform: uppercase;
    background: #fff;
  background-color:#fff;
    border: 0;
    padding: 10px 20px;
    font-size: 18px;
    outline: none;
    color: #000;
    position: relative;
    z-index: 9;
    width: 100%;
    height: 100%;
  opacity:1;
}

section.contact-form .submit-btn:hover {
    background: #e394ff;
    color: #fff;
}

div.wpcf7 .ajax-loader {
    position: absolute;
    right: 5px;
}

div.wpcf7 .wpcf7-submit:disabled {
    cursor: pointer !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    color: #f00;
    border: none !important;
}
/** contact-form **/
.two-buttons {
    padding: 30px 0;
    text-align: center;
}
.two-buttons p {
    padding: 30px;
}
.title.violet.pb-3.text-center {
    padding-top: 25px;
}
.modal {
    top: 40px;
}
.modal-backdrop.fade.show {
    display: none;
}
.read-bio
{
  margin-top: 20px;
}
.breadcrumb-dropdown ul li.m-only
{
  display: none;
}
header.header nav.navbar ul li.current-menu-item a{
 color: #E394FF;
}
header.header nav.navbar ul li.current-menu-item .sub-menu a{
  color: #999999;
}
header.header nav.navbar ul li.current-menu-item .sub-menu a:hover{
  color: #E394FF;
}
.breadcrumb-dropdown ul li a.active {
    color: #E394FF;
}
.breadcrumb-dropdown ul li a.active:before {
content: "" !important;
transform: translateY(-50%) scale(1) !important;
}

/** grid **/
.grid .col-md-6,
.grid .col-md-12{
  position: relative;
  /*max-height: 400px;*/
  margin-bottom: 30px;
}
.grid .image{
  height: 100%;
}
.grid .image.half.first{
      margin-bottom: 20%;
}
.grid .image.half{
  height: 46%;
  width: 100%;
  display: inline-flex;
}
.grid .image img{
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}
.equipment-imgwith-title-gridfi{
  position: relative;
  float: left;
  width: 100%;
  padding: 80px 0;
  overflow-x: hidden;
}
.equipment-imgwith-title-gridf {
  margin-bottom: 40px;
}
.equipment-imgwith-title-gridf img{
  height: 300px;
  width: 100%;
  max-width: 500px;
  object-fit: cover;
      border: 10px solid #d6ff96;
  object-position: center;
}
.equipment-imgwith-title-gridfi img{
      border: 10px solid #d6ff96;
}
.equipment-imgwith-title-gridf h6,
.equipment-imgwith-title-gridfi h6{
  font-size: 22px;
  line-height: 40px;
  text-align: center;
  margin-top: 10px;
}
.imgall{
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-gap: 30px;
  padding-left: 0;
  text-align: center;
  margin-bottom: 40px;
}
.imgall img{
  height: 300px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/** two-images **/
.two-images{
  position: relative;
  float: left;
  width: 100%;
  padding: 80px 0;
  background-color: #212721;
}
.two-images .title h2,
.grid .title h2,
.skin-care.abt h2,
.cards-contents .title h3 {
    color: #fff;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    padding: 0 80px;
}
.cards-contents .title h3 {
  color: #ff9bff;
}
.grid .title h2{
  color: #212721;
}
.two-images .title h2:before,
.grid .title h2:before,
.skin-care.abt h2:before,
.cards-contents .title h3:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0px;
    background: url(../images/pink-asset.png);
    width: 30px;
    height: 30px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}
.two-images .title h2:after,
.grid .title h2:after,
.skin-care.abt h2:after,
.cards-contents .title h3:after {
    content: '';
    position: absolute;
    top: 10px;
    right: 0px;
    background: url(../images/pink-asset.png);
    width: 30px;
    height: 30px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}
.cards-contents .title h3:after,
.cards-contents .title h3:before{
  top: 0;
}
.our-technology-laser {
  text-align: center;
}
.our-technology-laser .title {
  position: relative;
  display: inline-block;
  padding: 0 50px;
}
.our-technology-laser .grid .title h2:before {
    background: url(https://www.luxelaserpdx.com/wp-content/uploads/2020/10/arrow-diamond.png);
    top: 5px;
    width: 55px;
    height: 55px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}
.our-technology-laser .grid .title h2:after {
    background: url(../images/arrow-diamond.png);
    top: 5px;
    width: 55px;
    height: 55px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}
.our-technology-laser .title:before {
  display: none;
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    background: url(../images/pink-asset.png);
    width: 30px;
    height: 30px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}
.our-technology-laser .title:after {
  display: none;
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    background: url(../images/pink-asset.png);
    width: 30px;
    height: 30px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}
.two-images .img-card{
    max-width: 500px;
    margin: auto;
    margin-bottom: 30px;
    text-align: center;
}
.two-images .img-card h2{
  margin-top: 30px;
}
.two-images .img-card p{
  color: #fff;
}
.two-images .pink h2{
  color: #E394FF;
}
.two-images .green h2{
  color: #D6FF96;
}
/** black-sec **/
section.black-sec{
  position: relative;
  float: left;
  width: 100%;
  padding: 80px 0;
  background-color: #231f20;
  color: #fff;
}
section.black-sec h2{
  color: #fff;
}
section.black-sec .text span{
  padding-bottom: 20px;
  display: inline-block;
}
section.black-sec .text{
  margin-bottom: 50px;
}
section.black-sec ul {
  margin-top: 20px;
  padding-left: 0;
  text-align:left; 
}
section.black-sec ul li span{
  opacity: 0.7;
}
section.black-sec ul li{
  position: relative;
  padding: 10px 0 10px 30px;
  text-align:left;
  text-transform: uppercase;
  font-size: 20px;
}
section.black-sec ul li a{
  color: #fff;
}
section.black-sec ul li a:hover{
  text-decoration: underline;
}
section.black-sec ul.green li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 90px;
    background: url(../images/green-asset.png);
    width: 20px;
    height: 20px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}
section.black-sec ul.pink li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0px;
    background: url(../images/pink-asset.png);
    width: 20px;
    height: 20px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}
section.black-sec .text.links-comp {
  margin-bottom: 0;
  margin-left: 170px;
}
.links-comp ul{
  margin-bottom: 0;
  margin-top: 20px;
}
.links-comp li{
  width: 49%;
  display: inline-block;
}
.links-comp li a{
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
}
.links-comp li a:hover{
  color: #D6FF96;
}
.black-sec .btn-custom{
  margin-bottom: 15px;
}

.ba-slieder-abt .before-after-carousel .owl-nav{
  display: none;
}
.ba-slieder-abt .before-after-carousel {
  max-width: 90%;
  padding: 0 30px 0 0;
}
.ba-slieder-abt .before-after-carousel .bg-img{
  border-left: 10;
}
.ba-slieder-abt .before-after-carousel .bg-img {
    min-height: 500px;
}
section.left-img-content.ba-slieder-abt .content {
    justify-content: flex-start; 
}
section.left-img-content.ba-slieder-abt .content h3 {
    margin-bottom: 30px;
    padding-top: 50px;
}
p:empty{
  display: none;
}
.moretext {
    display: none;
}
.moreless-button{
  color: #D6FF96 !important;
  text-align: left;
}
/*=============================================================*/

/*Deepak kumar CSS*/
.sicon ul li {
    padding: 6px;
}
.hero-cta-content h1 {
    font-weight: 600;
        margin-bottom: 30px;
}
.hero-cta-content{
    margin-left: 27px;
    margin-top: 71px;

}
.title.violet.pb-3.text-center row{
    margin-left:0px !important;
    margin-left:0px !important;
}
.row{
     margin-left:0px !important;
    margin-left:0px !important;
    
}
section.choose .title p {
    color: #212721;
    font-size: 21px;
}
ul.text-left li a {
    font-size: 18px;
}
.text p {
    font-size: 21px;
}
.content.pl-0.pl-lg-4.pt-4.pt-lg-0 {
    margin-top: -162px;
}

.content.pl-0.pl-lg-4.pt-4.pt-lg-0.jerryclass {
    margin-top: 1px;
    margin-left: 21px;

}

.col-sm.noise h6 {
    text-align: right;
}






