@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto&display=swap");

body, html {
    overflow-x: clip;
	margin: 0;
	padding: 0;
	background: #ffffff;
	background-color: #ffffff;
	scroll-behavior: smooth;
	line-height: 1.4 !important;
    font-weight: 400;
}
a, a:hover {
	text-decoration: none !important;
    display: inline-block;
    font-weight: 400;
}
ol, 
ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	margin-bottom: 0;
}
.align-center {
	align-items: center;
}
.text-right {
	text-align: right;
}
.text-left {
    text-align: letf;
}
.text-center {
    text-align: center;
}
.overflow-hidden {
    overflow: hidden;
}
.relative {
    position: relative;
}
.section {
    padding: 70px 0;
}
.container {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}
/*.animated {
    opacity: 0;
    transition: all 1.5s all;
}
.animated.slideInUp,
.animated.flipInY {
    opacity: 1;
    transition: all 1.5s all;
}
*/

:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
}

/*Keyframes*/
/* ---------*/
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.50deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/* Animations*/
[data-animation] {
  opacity: 0;
  animation-timing-function: var(--animation-timing-function);
  animation-fill-mode: both;
  animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}


.animations-disabled[data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

/*Slide Animations*/
.slideInUp {
  animation-name: slideInUp;
}
.slideInDown {
  animation-name: slideInDown;
}
.slideInLeft {
  animation-name: slideInleft;
}
.slideInRight {
  animation-name: slideInRight;
}

/*Fade Animations*/
.fadeIn {
  animation-name: fadeIn;
}

/* Zoom Animations*/
.zoomIn {
  animation-name: zoomIn;
}
.zoomReverseIn {
  animation-name: zoomReverseIn;
}

/* Flip Animations*/
.flipInY {
  animation-name: flipInY;
}
.flipOutY {
  animation-name: flipInY;
  animation-direction: reverse;
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

/* start main style */

#preloader {
    background: #fff;
    height: 100%;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: none;
}
#preloader .ctn-preloader {
    padding-left: 15px;
    padding-right: 15px;
}
#preloader .round_spinner {
    border-width: 1px;
    border-color: rgb(238, 243, 244);
    border-style: solid;
    border-radius: 50%;
    background-color: rgb(24, 23, 30);
    background-image: url(https://promo-theme.com/luxa/wp-content/uploads/2019/03/bg-body1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 0 100px 0 rgba(4, 46, 56, 0.14);
    width: 248px;
    height: 248px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: auto;
}
#preloader .spinner {
    animation: spinner 3s infinite linear;
    border-radius: 50%;
    border: 3px solid #f1f6f8;
    border-left-color: rgb(24, 23, 30);
    border-top-color: rgb(24, 23, 30);
    margin: 0 auto 0em auto;
    position: absolute;
    left: -40px;
    right: -40px;
    bottom: -40px;
    top: -40px;
}
#preloader .spinner:before {
    content: "";
    width: 20px;
    height: 20px;
    border: 6px solid #fff;
    box-shadow: 0 0 20px 0 rgba(4, 46, 56, 0.2);
    background: rgb(24, 23, 30);
    position: absolute;
    right: 31px;
    top: 41px;
    border-radius: 50%;
}
#preloader .text img {
    height: 35px;
}



.header .header-nav {
    background: rgb(24, 23, 30);
    background-image: url(https://promo-theme.com/luxa/wp-content/uploads/2019/03/bg-body1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 0;
    box-shadow: 0 1px rgb(24, 23, 30);
}
.header-nav .navbar {
    padding: 0;
}
.header-nav .navbar-brand {
    margin: 0;
    padding: 0;
}
.header-nav .navbar-brand .logo {
    height: 35px;
}
.header-nav .navbar-nav {
    margin-left: auto !important;
    margin-right: auto !important;
}
.header-nav .navbar-nav .nav-item:not(:last-child) {
    margin-right: 30px;
}
.header-nav .navbar-nav .nav-item a {
    color: #fff;
    padding: 0;
    padding-bottom: 3px;
    position: relative;
}
.header-nav .navbar-nav .nav-item a:hover,
.header-nav .navbar-nav .nav-item a.active {
    color: #fff;
}
.header-nav .navbar-nav .nav-item a:after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s;
}
.header-nav .navbar-nav .nav-item a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}
.header-nav .login-nav li a {
    margin: 0;
    padding: 7px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
}
.header-nav .login-nav li a:before {
    background: #d4af37;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 0;
    border-radius: 50px;
    opacity: 0;
    content: "";
    z-index: -1;
    transform: scale(1.0) rotateX(45deg);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.header-nav .login-nav li a:hover:before {
    opacity: 1;
    width: 100%;
    transform: scale(1.0) rotateX(0);
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}
.header-nav .login-nav li a:hover {
    color: #000;
    border: 1px solid #d4af37;
}
.header-nav .navbar button.navbar-toggler {
    padding: 0;
    border: none;
    box-shadow: none;
    width: 28px;
    height: 28px;
    position: relative;
}
.header-nav .navbar button.navbar-toggler:before, 
.header-nav .navbar button.navbar-toggler:after {
    content: "";
    position: absolute;
    display: block;
    border-top-width: 2px;
    border-top-style: solid;
    left: 0;
    right: 0;
    top: 14%;
    -webkit-transition: 300ms ease all;
    -moz-transition: 300ms ease all;
    transition: 300ms ease all;
    -webkit-transform-origin: 50% 1px;
    -moz-transform-origin: 50% 1px;
    -ms-transform-origin: 50% 1px;
    transform-origin: 50% 1px;
    border-top-color: #fff;
    -webkit-transition: all 280ms ease;
    -moz-transition: all 280ms ease;
    transition: all 280ms ease;
}
.header-nav .navbar button.navbar-toggler span:before {
    content: "";
    position: absolute;
    display: block;
    border-top-width: 2px;
    border-top-style: solid;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -1px;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    border-top-color: #fff;
    -webkit-transition: all 280ms ease;
    -moz-transition: all 280ms ease;
    transition: all 280ms ease;
}
.header-nav .navbar button.navbar-toggler:after {
    top: auto;
    bottom: 14%;
}
.header-nav .navbar button.navbar-toggler span {
    background-image: none;
    width: auto;
    height: auto;
}
.header-nav .navbar button.navbar-toggler[aria-expanded="true"]:before, 
.header-nav .navbar button.navbar-toggler[aria-expanded="true"]:after {
    top: -webkit-calc(50% - 1px);
    top: -moz-calc(50% - 1px);
    top: calc(50% - 1px);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.header-nav .navbar button.navbar-toggler[aria-expanded="true"] span:before {
    -webkit-transform: scaleX(0) !important;
    -moz-transform: scaleX(0) !important;
    -ms-transform: scaleX(0) !important;
    transform: scaleX(0) !important;
}
.header-nav .navbar button.navbar-toggler[aria-expanded="true"]:after {
    bottom: -webkit-calc(50% - 1px);
    bottom: -moz-calc(50% - 1px);
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


.hero-section {
    background: rgb(24, 23, 30);
    background-image: url(https://promo-theme.com/luxa/wp-content/uploads/2019/03/bg-body1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
}
.hero-section .hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 50%;
    object-fit: cover;
    object-position: left;
}
.hero-section .overlay {
   position: absolute; 
   right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: 0.4;
    z-index: 0;
}
.hero-section .content {
    z-index: 1;
    text-align: center;
}
.hero-section .content .sub-title {
    font-family: 'Roboto', sans-serif;
    color: rgb(255,255,255);
    margin: 16px 0px;
    margin-top: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}
.hero-section .content .title {
    margin: auto;
    width: 60%;
    margin-bottom: 32px;
    margin-top: 32px;
    line-height: 1.2;
    font-size: 64px;
    font-weight: 800;
    text-transform: capitalize;
    font-family: math;
    color: rgb(255,255,255);
}
.hero-section .content .button-group .button {
    color: #000;
    background: #d4af37;
    font-size: 13px;
    letter-spacing: 2px;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    width: 150px;
    line-height: 42px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: 0px 3px 20px 0px rgba(13, 21, 75, 0.3);
}
.hero-section .content .button-group .button:not(:last-child) {
    margin-right: 20px;
}
.hero-section .content .button-group .button:before {
    background: rgb(24, 23, 30);
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 0;
    border-radius: 50px;
    opacity: 0;
    content: "";
    z-index: -1;
    transform: scale(1.0) rotateX(45deg);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.hero-section .content .button-group .button:hover:before {
    opacity: 0.1;
    width: 100%;
    transform: scale(1.0) rotateX(0);
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}
.our-products-section {
    background: #fff;
}
.our-products-section .content .sub-title {
    font-family: 'Roboto', sans-serif;
    margin: 16px 0px;
    margin-top: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgb(24, 23, 30);
    text-align: center;
    font-style: normal;
}
.our-products-section .content .title {
    margin-bottom: 40px;
    margin-top: 24px;
    line-height: 1.2;
    font-size: 44px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: math;
    color: rgb(24, 23, 30);
    text-align: center;
    font-style: normal;
}
.our-products-section .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px 25px;
}
.our-products-section .product-box {
        padding: 0;
    padding-bottom: 30px;
    margin: 0 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px 0px;
}
.our-products-section .product-box img {
    width: 100%;
    margin-bottom: 24px;
    height: 255px;
    object-fit: contain;
    object-position: center;
    cursor: pointer;
    background: #f2f2f2;
    padding: 20px 0;
}
.our-products-section .product-box .product-slider {
    overflow: hidden;
}
.our-products-section .product-box .product-slider .owl-dots,
.our-products-section .product-box .product-slider .owl-nav button span {
    display: none;
}
.our-products-section .product-box .product-slider .owl-nav {
    margin: 0;
    position: absolute;
    top: 0;
    bottom: 25px;
    width: 100%;
    display: block;
}
.our-products-section .product-box .product-slider .owl-nav button {
    margin: 0;
    top: 45%;
    position: relative;
    overflow: hidden;
    transition: all .4s;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d4af37 !important;
    color: rgb(24, 23, 30) !important;
    opacity: 0;
    visibility: hidden;
}
.our-products-section .product-box .product-slider .owl-nav button.owl-prev {
    float: left;
    transform: translateX(-50px);
}
.our-products-section .product-box .product-slider .owl-nav button.owl-next {
    float: right;
    transform: translateX(50px);
}
.our-products-section .product-box .product-slider:hover .owl-nav button {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}
.our-products-section .product-box .product-slider .owl-nav button.owl-prev:before {
    content: "\f060";
    font-family: 'FontAwesome';
}
.our-products-section .product-box .product-slider .owl-nav button.owl-next:before {
    content: "\f061";
    font-family: 'FontAwesome';
}
.our-products-section .product-box .product-slider .owl-nav button.owl-prev:hover:before {
    animation: 1s ease 0s 1 normal none running moveleftArrow;
}
.our-products-section .product-box .product-slider .owl-nav button.owl-next:hover:before {
    animation: 1s ease 0s 1 normal none running moverightArrow;
}
.our-products-section .product-box .product-item-title {
    line-height: 1.2;
    font-size: 20px;
    font-weight: 600;
    font-family: math;
    margin: 8px 0px;
    margin-top: 0;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: rgb(24, 23, 30);
    text-align: center;
    font-style: normal;
    display: block;
}
.our-products-section .filter-btn {
    text-align: center;
    margin-bottom: 50px;
}
.our-products-section .filter-btn .title {
    line-height: 1.2;
    font-size: 20px;
    font-weight: 600;
    font-family: math;
    margin-top: -5px;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: rgb(24, 23, 30);
    text-align: center;
    font-style: normal;
    display: block;
}
.our-products-section .filter-btn a {
    color: #000;
    background: #d4af37;
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    width: 150px;
    line-height: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: 0px 3px 20px 0px rgba(13, 21, 75, 0.3);
}
.our-products-section .filter-btn a:not(:last-child) {
    margin-right: 20px;
}
.our-products-section .product-box .cate-id {
    color: rgba(36, 38, 41, 0.7);
    text-align: center;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    margin: 10px 0px;
    margin-top: 0px;
}
.our-products-section .product-box .product-price {
    font-family: 'Roboto', sans-serif;
    margin: 20px 0px;
    margin-top: 0;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 1px;
    color: red;
    text-align: center;
    font-style: normal;
    display: block;
}
.our-products-section .product-box .button-group {
    text-align: center;
}
.our-products-section .product-box .button-group a {
    color: #000;
    background: #d4af37;
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    width: 150px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: 0px 3px 20px 0px rgba(13, 21, 75, 0.3);
}
.our-products-section .product-box .button-group a:before {
    background: rgb(24, 23, 30);
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 0;
    border-radius: 50px;
    opacity: 0;
    content: "";
    z-index: -1;
    transform: scale(1.0) rotateX(45deg);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.our-products-section .product-box .button-group a:hover:before {
    opacity: 0.1;
    width: 100%;
    transform: scale(1.0) rotateX(0);
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}

.how-it-work-section {
    background: rgb(24, 23, 30);
    background-image: url(https://promo-theme.com/luxa/wp-content/uploads/2019/03/bg-body1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.how-it-work-section .content .sub-title {
    font-family: 'Roboto', sans-serif;
    margin: 16px 0px;
    margin-top: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: #d4af37;
    text-align: center;
    font-style: normal;
}
.how-it-work-section .content .title {
    margin-bottom: 0px;
    margin-top: 24px;
    line-height: 1.2;
    font-size: 44px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: math;
    color: #d4af37;
    text-align: center;
    font-style: normal;
}
.how-it-work-section .content-group {
    margin-top: 60px;
    padding: 60px 0;
}
.how-it-work-section .content-group:before {
    left: 0;
    right: auto;
    height: 100%;
    width: 35%;
    top: 0;
    position: absolute;
    content: "";
    background: #d4af37;
    z-index: 0;
}
.how-it-work-section .content-group .row {
    z-index: 1;
    position: relative;
    align-items: center;
}
.how-it-work-section .content-group .video-area video {
    box-shadow: 0px 3px 20px 0px rgba(13, 21, 75, 0.3); 
}
.how-it-work-section .working-process-tabs {
    padding: 0 80px;
}
.how-it-work-section .working-process-tabs .tabs-content .tabs-all-content {
    display: none;
    text-align: center;
}
.how-it-work-section .working-process-tabs .tabs-content .tabs-all-content.active {
    display: block;
}
.how-it-work-section .working-process-tabs .tabs-all-content .sub-title {
    font-family: 'Roboto', sans-serif;
    margin: 16px 0px;
    margin-top: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: #d4af37;
    text-align: center;
    font-style: normal;
}
.how-it-work-section .working-process-tabs .tabs-all-content .title {
    margin-bottom: 30px;
    margin-top: 24px;
    line-height: 1.2;
    font-size: 36px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: math;
    color: #d4af37;
    text-align: center;
    font-style: normal;
}
.how-it-work-section .working-process-tabs .tabs-all-content p {
    color: rgb(255,255,255);
    font-family: 'Roboto', sans-serif;
    line-height: 28px;
    margin: 0;
    margin-bottom: 20px;
    font-size: 15px;
    letter-spacing: 0.5px;
}
.how-it-work-section .working-process-tabs .tabs-all-content .btn-seeall {
    color: #000;
    margin-top: 15px;
    background: #d4af37;
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    width: 190px;
    line-height: 45px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: 0px 3px 20px 0px rgba(13, 21, 75, 0.3);
}
.how-it-work-section .working-process-tabs .tabs-all-content .btn-seeall:before {
    background: rgb(24, 23, 30);
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 0;
    border-radius: 50px;
    opacity: 0;
    content: "";
    z-index: -1;
    transform: scale(1.0) rotateX(45deg);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.how-it-work-section .working-process-tabs .tabs-all-content .btn-seeall:hover:before {
    opacity: 0.1;
    width: 100%;
    transform: scale(1.0) rotateX(0);
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}
.how-it-work-section .working-process-tabs .tabs {
    text-align: center;
    margin-top: 40px !important;
}
.how-it-work-section .working-process-tabs .tabs li {
    display: inline-block;
}
.how-it-work-section .working-process-tabs .tabs li:not(:last-child) {
    margin-right: 25px;
}
.how-it-work-section .working-process-tabs .tabs li a {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: #d4af37;
    text-align: center;
    font-style: normal;
    padding: 0;
    cursor: pointer;
    position: relative;
}
.how-it-work-section .working-process-tabs .tabs li a:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-bottom: 16px;
    background: #d4af37;
    opacity: 0.2;
}
.how-it-work-section .working-process-tabs .tabs li a:after {
    content: "";
    display: block;
    width: 30%;
    height: 2px;
    left: 0;
    margin-bottom: 16px;
    background: #d4af37;
    opacity: 1;
    top: 0;
    position: absolute;
}

.we-make-section {
    background: #fff;
}
.we-make-section .content .sub-title {
    font-family: 'Roboto', sans-serif;
    margin: 16px 0px;
    margin-top: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgb(24, 23, 30);
    text-align: center;
    font-style: normal;
}
.we-make-section .content .title {
    margin-bottom: 24px;
    margin-top: 24px;
    line-height: 1.2;
    font-size: 44px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: math;
    color: rgb(24, 23, 30);
    text-align: center;
    font-style: normal;
}
.we-make-section .content p {
    color: rgb(24, 23, 30);
    font-family: 'Roboto', sans-serif;
    line-height: 24px;
    width: 60%;
    margin: auto;
    margin-bottom: 55px;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-align: center;
}
.we-make-section .steps-grid {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px 25px;
    margin: 0 110px;
}
.we-make-section .steps-box {
    text-align: center;
    padding: 0 20px;
}
.we-make-section .steps-box .img-area {
    margin-bottom: 25px;
}
.we-make-section .steps-box .img-area img {
    height: 240px;
}
.we-make-section .steps-box .title {
    margin-bottom: 10px;
    line-height: 1.2;
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: math;
    color: rgb(24, 23, 30);
    text-align: center;
    font-style: normal;
}
.we-make-section .steps-box .content-box p {
    color: rgb(24, 23, 30);
    font-family: 'Roboto', sans-serif;
    line-height: 24px;
    margin: 0;
    margin-bottom: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}


.sample-templates-section {
    background: rgb(24, 23, 30);
    background-image: url(https://promo-theme.com/luxa/wp-content/uploads/2019/03/bg-body1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.sample-templates-section .content .sub-title {
    font-family: 'Roboto', sans-serif;
    margin: 16px 0px;
    margin-top: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: #d4af37;
    text-align: center;
    font-style: normal;
}
.sample-templates-section .content .title {
    margin: auto;
    margin-bottom: 50px;
    margin-top: 24px;
    line-height: 1.2;
    font-size: 44px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: math;
    color: #d4af37;
    text-align: center;
    font-style: normal;
    width: 50%;
}
.sample-templates-section .sample-templates-slider {
    height: 39em;
    position: relative;
}
.sample-templates-section .sample-templates-slider .template-img img {
    transition: all 500ms ease;
        -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    width: 100%;
}
.sample-templates-section .sample-templates-slider .active.center {
    transition: all 500ms ease;
        -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.sample-templates-section .sample-templates-slider.owl-theme .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.sample-templates-section .sample-templates-slider.owl-theme .owl-dots .owl-dot span {
    background: #9E9E9E;
    width: 8px;
    height: 8px;
    cursor: pointer;
    transition: all 500ms ease;
}
.sample-templates-section .sample-templates-slider.owl-theme .owl-dots .owl-dot.active span {
    background: #d4af37;
    height: 25px;
}

.partners-section {
    background: #fff;
}
.partners-section .content .sub-title {
    font-family: 'Roboto', sans-serif;
    margin: 16px 0px;
    margin-top: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgb(24, 23, 30);
    text-align: center;
    font-style: normal;
}
.partners-section .content .title {
    margin-bottom: 60px;
    margin-top: 24px;
    line-height: 1.2;
    font-size: 44px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: math;
    color: rgb(24, 23, 30);
    text-align: center;
    font-style: normal;
}
.partners-section .logos-area {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 40px;
    margin: 0 100px;
}
.partners-section .logos-area .logo-img img {
    width: 100%;
}

.our-work-section {
    background: rgb(24, 23, 30);
    background-image: url(https://promo-theme.com/luxa/wp-content/uploads/2019/03/bg-body1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.our-work-section .content .sub-title {
    font-family: 'Roboto', sans-serif;
    margin: 16px 0px;
    margin-top: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: #d4af37;
    text-align: center;
    font-style: normal;
}
.our-work-section .content .title {
    margin: auto;
    margin-bottom: 50px;
    margin-top: 24px;
    line-height: 1.2;
    font-size: 44px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: math;
    color: #d4af37;
    text-align: center;
    font-style: normal;
}
.our-work-section .our-work-slider {
   margin-left: 180px;
   position: relative;
}
.our-work-section .our-work-slider .item {
    position: relative;
    overflow: hidden;
}
.our-work-section .our-work-slider .work-img {
    position: relative;
}
.our-work-section .our-work-slider .work-img:before {
    content: "";
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    background: #181818;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.our-work-section .our-work-slider .item:hover .work-img:before {
    opacity: .7;
    visibility: visible;
}
.our-work-section .our-work-slider .work-img img {
    width: 100%;
}
.our-work-section .our-work-slide .item:hover .work-content {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}
.our-work-section .our-work-slider .owl-nav {
    margin: 0;
    position: absolute;
    bottom: 40%;
    right: 20.2%;
}
.our-work-section .our-work-slider .owl-nav button {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30PX;
    transition: color .2s ease-in-out;
    pointer-events: auto;
    overflow: hidden;
        background: #d4af37 !important;
    color: rgb(24, 23, 30) !important;
    margin: 0;
    position: relative;
}
.our-work-section .our-work-slider .owl-nav button.owl-prev {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 1px solid rgb(24, 23, 30);
}
.our-work-section .our-work-slider .owl-nav button.owl-next {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.our-work-section .our-work-slider .owl-nav button span {
    display: none;
}
.our-work-section .our-work-slider .owl-nav button.owl-prev:before {
    content: "\f060";
        font-family: 'FontAwesome';
        margin-top: 4px;
}
.our-work-section .our-work-slider .owl-nav button.owl-next:before {
    content: "\f061";
    font-family: 'FontAwesome';
    margin-top: -4px;
}
.our-work-section .our-work-slider .owl-nav button.owl-prev:hover:before {
    animation: 1s ease 0s 1 normal none running moveleftArrow;
}
@keyframes moveleftArrow {
    0%, 55% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }

    25% {
        opacity: 0;
        transform: translateX(-13px) scale(0.9);
    }

    26% {
        opacity: 0;
        transform: translateX(13px) scale(0.9);
    }
}
.our-work-section .our-work-slider .owl-nav button.owl-next:hover:before {
    animation: 1s ease 0s 1 normal none running moverightArrow;
}
@keyframes moverightArrow {
    0%, 55% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }

    25% {
        opacity: 0;
        transform: translateX(13px) scale(0.9);
    }

    26% {
        opacity: 0;
        transform: translateX(-13px) scale(0.9);
    }
}

.our-work-section .our-work-slider .owl-dots {
    text-align: justify;
    margin-top: 15px;
    pointer-events: none;
    position: relative;
    width: 79.7%;
}
.our-work-section .our-work-slider .owl-dots:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #d4af37;
    opacity: 0.2;
    position: absolute;
    bottom: 6px;
}
.our-work-section .our-work-slider .owl-dots button {
    display: inline-block;
    zoom: 1;
    height: 2px;
    width: 10%;
    transition: all 500ms ease;
}
.our-work-section .our-work-slider .owl-dots button.active {
    background: #d4af37;
    transition: all 500ms ease;
}
.our-work-section .our-work-slider .owl-dots button span {
    width: 168px;
    height: 2px;
    margin: 0;
    background: #d4af37;
    opacity: 0;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 0;
    transition: all 500ms ease;
    display: none;
}

.faq-section {
    background: #fff;
}
.faq-section .content .sub-title {
    font-family: 'Roboto', sans-serif;
    margin: 16px 0px;
    margin-top: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgb(24, 23, 30);
    text-align: center;
    font-style: normal;
}
.faq-section .content .title {
    margin-bottom: 60px;
    margin-top: 24px;
    line-height: 1.2;
    font-size: 44px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: math;
    color: rgb(24, 23, 30);
    text-align: center;
    font-style: normal;
}
.faq-section .accordion {
    margin: 0 150px;
}
.faq-section .accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 10px;
}
.faq-section .accordion .accordion-button {
    outline: none;
    border: none;
    box-shadow: none;
    padding: 12px 20px;
    border-radius: 5px;
    background: #eff2f7;
}
.faq-section .accordion .accordion-item .accordion-header {
    display: block;
    overflow: visible;
}
.faq-section .accordion .accordion-button .main-title {
    color: rgb(24, 23, 30);
    font-size: 16px;
    font-weight: 500;
}
.faq-section .accordion .accordion-button:after {
    color: rgb(24, 23, 30);
    font-weight: 500;
    font-size: 16px;
    content: "\f078";
    background: none;
    font-family: 'FontAwesome';
}
/*.footer {
    background: rgb(24, 23, 30);
    background-image: url(https://promo-theme.com/luxa/wp-content/uploads/2019/03/bg-body1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 95px 0px 0px 0px;
}
.footer .container {
    max-width: 1320px;
}
.footer .logo-content {
    padding-right: 20px;
}
.footer .logo-content .logo-img {
    margin-bottom: 30px;
}
.footer .logo-content .logo-img img {
    height: 35px;
}
.footer .logo-content p {
    color: rgb(255,255,255);
    font-family: 'Roboto', sans-serif;
    line-height: 28px;
    margin: 0;
    margin-bottom: 25px;
    font-size: 15px;
    letter-spacing: 0.5px;
}
.footer .content .main-title {
    text-transform: capitalize;
    font-family: math;
    color: rgb(255,255,255);
    font-size: 22px;
    margin-bottom: 30px;
}
.footer .social-media li {
    display: inline-block;
}
.footer .social-media li:not(:last-child) {
    margin-right: 10px;
}
.footer .social-media li a {
    height: 35px;
    width: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d4af37;
    border-radius: 10%;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
}
.footer .social-media li a:before {
    color: rgb(24, 23, 30);
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    font-family: 'FontAwesome';
}
.footer .social-media li .fb:before {
    content: "\f39e";
}
.footer .social-media li .insta:before {
    content: "\f16d";
}
.footer .social-media li .twiter:before {
    content: "\f099";
}
.footer .social-media li .youtube:before {
    content: "\f167";
}
.footer .content .quick-links li:not(:last-child) {
    margin-bottom: 12px;
}
.footer .content .quick-links li a {
    color: rgb(255,255,255);
    line-height: 28px;
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 25px;
    display: flex;
    align-items: center;
}
.footer .content .quick-links li a:before {
    content: "\f061";
    color: rgb(255,255,255);
    font-size: 14px;
    line-height: 14px;
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    margin-top: 2px;
}
.footer .content .post-content {
        padding-right: 20px;
}
.footer .content .post-content .post-box {
    display: flex;
    align-items: center;
}
.footer .content .post-content .post-box:not(:last-child) {
    border-bottom: 2px solid rgb(232 234 239 / 15%);
    padding-bottom: 18px;
    margin-bottom: 18px;
}
.footer .content .post-content .post-box .post-img {
    margin-right: 20px;
}
.footer .content .post-content .post-box .post-img img {
    border-radius: 10%;
    height: 85px;
}
.footer .content .post-content .post-box .post-title {
    color: rgb(255,255,255);
    line-height: 24px;
    margin: 0;
    margin-bottom: 10px;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    font-weight: 500;
}
.footer .content .post-content .post-box .date {
    color: #d4af37;
    font-size: 15px;
}
.footer .contact-content .contact-box {
    padding-left: 45px;
    
}
.footer .contact-content .contact-box:not(:last-child) {
    margin-bottom: 20px;
}
.footer .contact-content .contact-title {
    color: rgb(255,255,255);
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.footer .contact-content .contact-box a {
    color: #d4af37;
    font-size: 16px;
}
.footer .contact-content .contact-box:before {
    color: rgb(24, 23, 30);
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    font-family: 'FontAwesome';
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d4af37;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
}
.footer .contact-content .contact-box.location:before {
    content: "\f3c5";
}
.footer .contact-content .contact-box.email:before {
    content: "\f0e0";
}
.footer .contact-content .contact-box.phone:before {
    content: "\f095";
}
.footer-bottom {
    border-top: 2px solid #d4af3724;
    margin-top: 60px;
    padding: 20px 0;
}
.footer-bottom p {
    color: rgb(255,255,255);
    font-family: 'Roboto', sans-serif;
    line-height: 28px;
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.5px;
}
.footer-bottom li {
    display: inline-block;
}
.footer-bottom li:not(:last-child) {
        margin-right: 40px;
}
.footer-bottom a {
    color: rgb(255,255,255);
    font-family: 'Roboto', sans-serif;
    line-height: 28px;
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.5px;
}*/

/*.product-view-section {
    padding: 70px 0;
    background: #fff;
}

.product-view-section .form-area {
    padding: 40px;
    margin: 0 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px 0px;
}
.product-view-section .form-area .title-area {
    margin-bottom: 15px;
}
.product-view-section .form-area .title-area .title {
    margin-bottom: 0;
    line-height: 26px;
    font-size: 26px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: math;
    color: rgb(24, 23, 30);
    font-style: normal;
    display: inline-block;
}
.product-view-section .form-area .title-area span {
    float: right;
    color: #000;
    padding: 0 15px;
    line-height: 25px;
    background: #d4af37;
    font-size: 10px;
    letter-spacing: 2px;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: 0px 3px 20px 0px rgba(13, 21, 75, 0.3);
}
.product-view-section .form-area .product-price {
    font-family: 'Roboto', sans-serif;
    margin: 20px 0px;
    margin-top: 0;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 1px;
    color: red;
    font-style: normal;
    display: block;
}
.product-view-section .form-area p {
    color: rgb(24, 23, 30);
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    margin: 0;
}
.product-view-section .form-area form {
    padding-top: 25px;
}
.product-view-section form .form-input-box:not(:last-child) {
    margin-bottom: 20px;
}
.product-view-section form .form-input-box .form-label {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #6a6a6a;
    font-style: normal;
    width: 100%;
}
.product-view-section form .form-input-box .form-control {
    width: 100%;
    border: 1px solid #d0d0d0;
    padding: 10px;
    font-size: 15px;
    outline: none;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
.product-view-section form .form-btn-box {
        text-align: right;
    padding-top: 15px;
}
.product-view-section form .addToCartButton {
    color: #000;
    background: #d4af37;
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    width: 140px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: 0px 3px 20px 0px rgba(13, 21, 75, 0.3);
}
.product-view-section form .addToCartButton:before {
    background: rgb(24, 23, 30);
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 0;
    border-radius: 5px;
    opacity: 0;
    content: "";
    z-index: -1;
    transform: scale(1.0) rotateX(45deg);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.product-view-section form .addToCartButton:hover:before {
    opacity: 0.1;
    width: 100%;
    transform: scale(1.0) rotateX(0);
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}
.product-view-section .product-img-tabs .tabs-content .tabs-all-content {
    display: none;
    text-align: center;
    padding-bottom: 70px;
}
.product-view-section .product-img-tabs .tabs-content .tabs-all-content.active {
    display: block;
}
.product-view-section .product-img-tabs .tabs-content .tabs-all-content img {
    width: 60%;
}
.product-view-section .product-img-tabs .tabs {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    width: fit-content;
    margin: auto !important;
}
.product-view-section .product-img-tabs .tabs li {
    border: 2px solid #fff;
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    background: #f3f3f3;
    padding: 15px 22px;
    transition: all .3s;
}
.product-view-section .product-img-tabs .tabs li.active {
    border: 2px solid #d4af37;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    background: #fff;
}
.product-view-section .product-img-tabs .tabs li img {
        height: 65px;
}*/

/*.chechout-section {
    padding: 60px 0;
    background: #fff;
}
.chechout-section .title-area .title {
    margin-bottom: 15px;
    line-height: 1.2;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: math;
    color: rgb(24, 23, 30);
    font-style: normal;
}
.chechout-section .title-area .title.shipping-text {
    margin-top: 30px;
}
.chechout-section form .form-input-box {
    margin-bottom: 20px;
}
.chechout-section form .form-input-box .form-label {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgb(106, 106, 106);
    font-style: normal;
    width: 100%;
    margin-bottom: 0.5rem;
}
.chechout-section form .form-input-box .form-control {
    width: 100%;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(208, 208, 208);
    border-image: initial;
    padding: 10px;
    outline: none;
    border-radius: 5px;
}
.chechout-section form .cart-details-box {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px 0px;
    padding: 40px;
    margin: 0px 15px;
    border-radius: 10px;
    overflow: hidden;
}
.chechout-section form .cart-details-box .cart-img .img-box {
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
    border-radius: 12px;
    background: rgb(243, 243, 243);
    padding: 10px 30px;
    transition: all 0.3s ease 0s;
    width: fit-content;
    margin-bottom: 15px;
}
.chechout-section form .cart-details-box .cart-img .img-box img {
    height: 70px;
}
.chechout-section form .cart-details-box .cart-img .cart-pro-title {
        line-height: 1.2;
    font-size: 18px;
    font-weight: 600;
    font-family: math;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: rgb(24, 23, 30);
    font-style: normal;
    display: block;
    margin-bottom: 8px;
}
.chechout-section form .cart-details-box .cart-img .product-price {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 1px;
    color: red;
    font-style: normal;
    display: block;
    margin: 0;
}
.chechout-section form .cart-details-box p {
    font-family: 'Roboto', sans-serif;
    line-height: 28px;
    margin: 0;
    margin-bottom: 5px;
    font-size: 15px;
    letter-spacing: 0.5px;
}
.chechout-section form .cart-details-box p span {
    color: rgb(106, 106, 106);
}
.chechout-section form .cart-details-box .btn-area {
    padding-top: 25px;
}
.chechout-section form .cart-details-box .btn-area a {
    float: right;
    color: rgb(0, 0, 0);
    line-height: 25px;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    font-family: Roboto, sans-serif;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    box-shadow: rgba(13, 21, 75, 0.3) 0px 3px 20px 0px;
    padding: 0px 15px;
    background: rgb(212, 175, 55);
    border-radius: 5px;
    overflow: hidden;
}
.chechout-section form .cart-total-area {
    padding: 10px 0;
    margin-top: 20px;
    border-bottom: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
}
.chechout-section form .grand-total-area {
        padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}
.chechout-section form .place-btn {
    padding-top: 35px;
    text-align: right;
}
.chechout-section form .place-btn button {
    color: #000;
    background: #d4af37;
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    width: 140px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: 0px 3px 20px 0px rgba(13, 21, 75, 0.3);
}
.chechout-section form .place-btn button:before {
    background: rgb(24, 23, 30);
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 0;
    border-radius: 5px;
    opacity: 0;
    content: "";
    z-index: -1;
    transform: scale(1.0) rotateX(45deg);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.chechout-section form .place-btn button:hover:before {
    opacity: 0.1;
    width: 100%;
    transform: scale(1.0) rotateX(0);
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}*/