:root {
  --font-primary: 'Eurostile-Reg', sans-serif;
  --font-secondary: 'Eurostile-Med', sans-serif;
  --font-default: 'Eurostile-Bol', sans-serif;
}

html,
body {
	height: 100%;
	font-family: 'Eurostile-Med', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #242424;
	font-weight: 700;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 13px;
	color: #242424;
	line-height: 2;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

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

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

/*---------------------
Helper CSS
 -----------------------*/

.section-title {
	text-align: center;
}

.section-title h2 {
	font-size: 36px;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 105px;
	padding-bottom: 105px;
}

/*---------------------
Commom elements
 -----------------------*/


.element h3 {
	color: #242424;
    font-family: 'Eurostile-Reg', sans-serif;
    letter-spacing: 0.4px;
    margin-bottom: 50px;
    font-size: 1.6vw;
}
.element .single-feature-style-one {
    margin-bottom: 20px;
}
.features h4, .photo h4 .laser h4, .documentation h4, .price h4 {
	color: #242424;
    font-family: 'Eurostile-Reg', sans-serif;
    font-size: 20px;
    letter-spacing: 0.4px;
    line-height: 22px;
    margin-bottom: 15px;
    margin-top: 0px;
    padding-top: 0px;
}
.features p, .photo p, .laser p, .documentation p, .price p {
	color: #242424;
    font-size: 0.8vw;
    font-family: 'Eurostile-Med', sans-serif;
    line-height: 1.2em;
}
.element-img {
    width: 100%
}
.video {
    background-color: #242424;
    padding: 80px 60px 50px 60px;
    margin-bottom: 70px;
    background-image: #242424;
	background-repeat: no-repeat;
    background-size: cover;
}
.video h2 {
	color: #fff;
    font-family: 'Eurostile-Reg', sans-serif;
    letter-spacing: 0.4px;
    font-size: 1.6vw;
}
.video h4 {
	color: #fff;
    font-family: 'Eurostile-Reg', sans-serif;
    letter-spacing: 0.4px;
    font-size: 1vw;
    font-weight: 500;
    margin-top: 10px;
}
.features {
    background-color: #f1f1f1;
    padding: 80px 60px 60px 60px;
}
.photo {
    background-color: #f1f1f1;
    padding: 0px;
}
.specifications, .laser {
    background-color: #fff;
    padding: 20px 60px 60px 60px;
}
.documentation {
    background-color: #fff;
    padding: 50px 60px;
}
.price {
    background-color: #fff;
    padding: 80px 0px 0px 0px;
}
.blog {
    background-color: #242424;
    padding: 80px 60px 80px 60px;
}
.accessories {
    background-color: #f1f1f1;
    padding: 80px 60px 80px 60px;
}

/* buttons */

.mb-warp .btn-1 {
  text-align: center;
  display: inline-block;
  padding: 15px 80px;
  border: 1px solid #242424;
  cursor: pointer;
  letter-spacing: 0px;
  position:relative;
  overflow:hidden;
  text-transform: uppercase;
  color: #fff;
  background: #242424;
}
.mb-warp .btn-1:before {
  content: "";
  position: absolute;
  height: 150px;
  width: 50px;
  background: #d9d9d9;
  left: -55px;
  top: -40px;
  transform: rotate(37deg);
  transition: all .3s;
  opacity: 0.3;
}
.mb-warp .btn-1:hover:before {
  left:95%;
}
.mb-warp .btn-1 a {
  text-decoration: none;
  outline: none;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.4px;
}

.documentation button {
  text-align: center;
  display: inline-block;
  padding: 18px 40px;
  border: 1px solid #908ccd;
  cursor: pointer;
  letter-spacing: 0px;
  position:relative;
  overflow:hidden;
  text-transform: none;
  color: #242424;
  background: #908ccd;
}
.documentation button:before {
  content: "";
  position: absolute;
  height: 150px;
  width: 50px;
  background: #fff;
  left: -55px;
  top: -40px;
  transform: rotate(37deg);
  transition: all .3s;
  opacity: 0.3;
}
.documentation button:hover:before {
  left:95%;
}
.documentation button a {
  text-decoration: none;
  outline: none;
  color: #fff;
  font-size: 18px;
}


/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/* Accordion */

.accordion-area {
   margin-top: 20px;
}
.accordion-area .panel {
	margin-bottom: 18px;
}

.accordion-area .panel-header.active .panel-link {
	color: #fff;
	background-color: #242424;
	border-color: #000;
}

.accordion-area .panel-header.active .panel-link.collapsed {
	color: #242424;
	background-color: transparent;
	border-color: #e1e1e1;
}

.accordion-area .panel-link:after {
	content: "";
	position: absolute;
	width: 20px;
	height: 10px;
	right: 19px;
	top: 50%;
	margin-top: -5px;
	margin-left: -4px;
	background-image: url("../img/arrow-down.png");
	background-repeat: no-repeat;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.accordion-area .panel-header.active .panel-link:after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.accordion-area .panel-header.active .panel-link.collapsed:after {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.accordion-area .panel-link {
	text-align: left;
	background-color: transparent;
	position: relative;
	width: 100%;
	padding: 17px 40px;
	padding-left: 30px;
	font-size: 18px;
	text-transform: none;
	color: #242424;
	font-family: 'Eurostile-Med', sans-serif;
	line-height: 1.3;
	cursor: pointer;
	display: block;
	border: 2px solid #e1e1e1;
	-webkit-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.accordion-area .panel-body p {
	margin-bottom: 0;
	padding-top: 20px;
}

.accordion-area .panel-body {
	padding: 0 5px;
}

/* Tab specifications */

.specifications .tab-element .nav-tabs,
.case .tab-element .nav-tabs {
	border-bottom: none;
	margin-bottom: 40px;
    justify-content: center;
}
.specifications .tab-element .nav-item,
.case .tab-element .nav-item {
	margin-right: 10px;
	margin-bottom: 10px;
}
.specifications .tab-element .nav-tabs .nav-link,
.case .tab-element .nav-tabs .nav-link {
	border: 2px solid #e1e1e1;
	text-align: center;
	background-color: transparent;
    font-family: 'Eurostile-Med', sans-serif;
	border-radius: 0;
	position: relative;
	width: 100%;
	padding: 17px 30px;
	font-size: 16px;
	text-transform: none;
	color: #242424;
	font-weight: 500;
	line-height: 18px;
	cursor: pointer;
    transition: 0.3s;
}
.specifications .tab-element .nav-tabs .nav-item:last-child,
.case .tab-element .nav-tabs .nav-item:last-child {
	margin-right: 0;
    transition: 0.3s;
}
.specifications .tab-element .nav-tabs .nav-link.active,
.case .tab-element .nav-tabs .nav-link.active {
	background: #908ccd;
	color: #fff;
	border-color: #908ccd;
}
.specifications .tab-element .tab-pane p ,
.case .tab-element .tab-pane p {
	margin-bottom: 0;
}

table td, table th {
    padding: 0.5rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
    font-size: 0.9vw;
    line-height: 1.3em;
}




/* circle progress  */

.circle-item-warp {
	margin-bottom: 30px;
	overflow: hidden;
}

.circle-progress {
	float: left;
	margin-right: 10px;
}

.circle-progress canvas {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.circle-progress .circle-warp {
	float: left;
	margin-right: 20px;
}

.circle-progress h2 {
	padding-bottom: 18px;
	overflow: hidden;
	font-size: 72px;
	line-height: 1;
	font-weight: 900;
	position: relative;
}

.circle-progress h2 span {
	font-size: 40px;
	position: relative;
	top: -30px;
}

.circle-progress-text {
	padding-top: 15px;
}

.circle-progress-text h5 {
	font-weight: 700;
}

.circle-progress-text p {
	margin-bottom: 0;
	color: #828282;
}

/* Icons box  */

.icon-box {
	margin-bottom: 10px;
}

.icon-box .ib-head {
	overflow: hidden;
	display: block;
	margin-bottom: 20px;
}

.icon-box .ib-icon {
	float: left;
	width: 64px;
}

.icon-box h5 {
	padding-top: 5px;
	overflow: hidden;
}

/*------------------
Main Site warp
 ---------------------*/

.main-site-warp {
	height: 100%;
	width: 100%;
	position: relative;
}

.main-site-warp.push-side {
	overflow: hidden;
}

.main-site-warp.push-side .header-section {
	-webkit-transform: translateX(614px);
	transform: translateX(614px);
}

.main-site-warp.push-side .site-content-warp {
	-webkit-transform: translateX(614px);
	transform: translateX(614px);
}

.main-site-warp.push-side .site-menu-warp {
	left: 0;
}

.main-site-warp.push-side .nav-switch {
	opacity: 0;
	visibility: hidden;
}

body.push-side {
	overflow: hidden;
}
body.push-side .nicescroll-rails.nicescroll-rails-hr,
body.push-side #ascrail2000-hr {
	-webkit-transform: translateX(614px);
	transform: translateX(614px);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.site-menu-warp {
	position: fixed;
	width: 614px;
	height: 100%;
	left: -620px;
	top: 0;
	background: #908ccd;
	overflow-y: auto;
	z-index: 9999;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.close-menu {
	font-size: 30px;
	color: #fff;
	margin-left: 48px;
	padding-top: 20px;
	cursor: pointer;
    width: 24px;
	height: 24px;
}
.site-menu {
	list-style: none;
	padding-left: 185px;
	padding-top: 160px;
}
.site-menu li {
	display: block;
}
.site-menu li a {
	display: block;
	font-size: 30px;
	color: #fff;
	padding-bottom: 5px;
	margin-bottom: 20px;
	position: relative;
}
.site-menu li a:after {
	position: absolute;
	content: "";
	width: 0;
	height: 3px;
	left: 0;
	bottom: 0;
	background: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.site-menu li a:hover:after,
.site-menu li a.active:after {
	width: 30px;
}
.menu-social {
	padding-left: 185px;
	padding-top: 50px;
}
.menu-social a {
	display: inline-block;
	color: #fff;
	font-size: 22px;
	margin-right: 30px;
	padding: 5px;
	margin-bottom: 20px;
    transition: 0.4s;
}
.menu-social a:hover {
	transform: scale(1.5);
}

/* Header section */

.header-section {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	padding: 27px 45px;
	z-index: 999;
	background: #fff;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.nav-switch {
	float: left;
	font-size: 28px;
	color: #242424;
	line-height: 0;
	cursor: pointer;
	opacity: 1;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.header-social {
	float: right;
}
.header-social a {
	display: inline-block;
	color: #242424;
	font-size: 22px;
	margin-right: 30px;
	padding: 5px;
    transition: 0.4s;
}
.header-social a:hover {
	transform: scale(1.5);
    color: #908ccd;
}
.site-content-warp {
	position: relative;
	height: 100%;
	padding-top: 91px;
	padding-left: 614px;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

/* Left Side section */

.main-sidebar {
	position: absolute;
	width: 614px;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 99;
}
.main-sidebar .mb-warp {
	padding: 150px 95px 100px 145px;
}
.site-logo {
	display: block;
	margin-bottom: 30px;
}
.site-logo img {
	width: 120px;
    margin-bottom: 150px;
}
.site-logo h1 {
    font-family: 'Eurostile-Bol', sans-serif;
	font-size: 158px;
	text-transform: none;
	font-weight: 600;
	letter-spacing: -3px;
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 10px;
}
.site-logo h2 {
	font-size: 2.2vw;
    line-height: 1.1em;
	text-transform: none;
	font-weight: 600;
	letter-spacing: 0.01px;
    margin-bottom: 10px;
    margin-top: 50px;
}
.site-logo p {
	font-size: 15px;
	text-transform: uppercase;
	color: #aaaaaa;
	letter-spacing: 4px;
}
.contact-info {
	list-style: none;
	margin-bottom: 65px;
	position: relative;
    margin-top: 40px;
}
.contact-info:after {
	position: absolute;
	content: "";
	width: 26px;
	height: 32px;
	left: -36px;
	top: 0px;
	background: url("../img/icons/place.svg") no-repeat;
}
.contact-info li {
	font-size: 14px;
	color: #8a8a8a;
	margin-bottom: 5px;
    line-height: 18px;
}
.contact-info .tel {
	font-size: 18px;
    color: #908ccd;
    margin: 4px 0px;
}
.contact-info .numbers {
     margin: 10px 0px;
}
.contact-info li a {
	color: #8a8a8a;
}
.copyright {
	font-size: 13px;
	color: rgba(130, 130, 130, 0.29);
	position: fixed;
	height: 80px;
	width: 614px;
	left: 0;
	bottom: 0;
	background: #fff;
	padding-left: 145px;
	padding-top: 20px;
}
.copyright p {
    color: #a0a0a0;
    line-height: 16px;
    font-family: 'Eurostile-Reg', sans-serif;
}
.copyright a {
	color: rgba(130, 130, 130, 0.29);
	text-decoration: underline;
}
.copyright i {
	color: rgba(204, 17, 17, 0.29);
}



/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/


.contact-section {
	height: 100%;
	padding-right: 70px;
}
.contact-section .row {
	height: 100%;
}
.map {
	height: 500px;
	position: relative;
}
.map iframe {
	position: absolute;
	width: 100%;
	height: 500px;
	left: 0;
	top: 0;
}
.contact-text-warp {
	padding-left: 15px;
    padding-bottom: 20px;
    margin-top: 30px;
}
.contact-text-warp .line {
    border-top: 1px solid #d9d9d9;
    padding-top: 20px;
}
.contact-text-warp h6 {
	font-size: 16px;
    line-height: 20px;
}
.contact-text-warp p {
	font-size: 16px;
    line-height: 22px;
}
.contact-text {
	max-width: 570px;
	margin-bottom: 20px;
	padding-top: 0px;
}
.contact-text h2 {
    color: #242424;
    margin-bottom: 40px;
}
.contact-text h4 {
	margin-bottom: 22px;
    color: #242424;
    line-height: 1.1em;
    font-size: 1.3vw;
}

/*------------------
Hero section
 ---------------------*/

.hero-track {
	padding-bottom: 50px;
	overflow: hidden;
}

.hs-item {
	height: 750px;
	float: left;
	margin-right: 50px;
	position: relative;
}

.hs-item:last-child {
	margin-right: 0;
}

.hs-item .hs-info {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 280px;
	padding: 44px 0 10px 0;
	background: #fff;
	z-index: 1;
}

.hs-item .hs-info a {
    color: #242424;
    transition: 0.4s;
    text-decoration: none;
	outline: none;
}
.hs-item .hs-info a:focus,
.hs-item .hs-info a:hover {
    color: #908ccd;
    transition: 0.4s;
    text-decoration: none;
	outline: none;
}
.hs-item .hs-info p {
	margin-bottom: 5px;
    font-size: 18px;
    color: #242424;
}
.hs-item .hs-info i {
    font-size: 22px;
    color: #d9d9d9;
    transition: right ease 0.7s;
    right: 0;
    position: relative;
}
.hs-item .hs-info i:hover {
    right: -10px;
    color: #bfbfbf;
}
.nicescroll-rails.nicescroll-rails-hr,
#ascrail2000-hr {
	max-width: calc(100% - 717px);
	overflow: hidden;
}

/* --------------
 =================
Other pages
 =================
 -----------------*/

.page-section {
	height: 100%;
    background-color: #fff;
    padding: 0px 50px;
}

/* ----------------
About Page
 ---------------------*/

.about-section {
	height: 100%;
	padding-right: 30px;
}

.video-section {
	height: calc(100% - 235px);
	margin-bottom: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.video-play-btn {
	display: block;
	width: 159px;
	height: 69px;
	text-align: center;
	padding-top: 16px;
	font-size: 22px;
	color: #fff;
	border-radius: 27px;
	background: rgba(255, 255, 255, 0.43);
}

.video-play-btn:hover {
	color: #fff;
}

.milestones {
	padding-top: 30px;
}

.milestone {
	margin-bottom: 30px;
}

.milestone h2 {
	font-family: "Playfair Display", serif;
	font-weight: 900;
	font-size: 72px;
	float: left;
	margin-right: 15px;
	line-height: 1;
}

.milestone .milestone-info {
	overflow: hidden;
	padding-top: 23px;
}

.milestone .milestone-info h5 {
	font-weight: 700;
}

.milestone .milestone-info p {
	margin-bottom: 0;
}

/* ----------------
Blog page
 ---------------------*/


.blog img {
	width: 100%;
    text-align: center;
}
.blog .blog-content {
    margin-top: 80px;
}
.blog .blog-content h2 {
    color: #fff;
    font-size: 4vw;
    margin-bottom: 10px;
    line-height: 1em;
}
.blog .blog-content span {
    color: #ff000b;
    font-size: 4vw;
}
.blog .blog-content h3 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 1.2vw;
    line-height: 1.2em;
    font-family: 'Eurostile-Reg', sans-serif;
}
.blog .blog-content p {
    color: #9a9a9a;
    margin-bottom: 30px;
    font-size: 1vw;
    line-height: 1.2em;
}




/*--------------------------------------------------------------
# accessories
--------------------------------------------------------------*/
.accessories h4 {
    color: #242424;
    margin-bottom: 50px;
}

.media-29101 {
  margin-bottom: 20px;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  text-align: center;
}
.media-29101 img {
  width: 100%;
  padding: 20px;
}

.media-29101 h3 {
  font-size: 0.8vw;
  line-height: 1.3em;
  font-weight: 900 !important;
  color: #242424;
}
.media-29101 h3 a {
  color: #242424;
}
.media-29101 p {
  font-size: 0.8vw;
  color: #8a8a8a;
}
.owl-2-style .owl-nav {
  display: none; }

.owl-2-style .owl-dots {
display: none;
}

.owl-2-style .owl-dots .owl-dot {
    display: none;
}
.owl-2-style .owl-dots .owl-dot span {
      display: none;
}
.owl-2-style .owl-dots .owl-dot.active span {
       display: none;
}
.owl-2-style .owl-dots .owl-dot:active,
.owl-2-style .owl-dots .owl-dot:focus {
       display: none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
 display: none;
    
}



/* ----------------
.about-page gallery-soft
 ---------------------*/

.about-page .gallery-soft {
  margin-top: 40px;
}
.about-page .gallery-soft .row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 40px;
}
.about-page .text-box .row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
}
.about-page .img-box-soft {
  position: relative;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .gallery-soft .img-box {
  position: relative;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.about-page .gallery-soft .img-box > img {
  width: 260px;
  vertical-align: middle;
}
.about-page .gallery-soft .img-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.about-page .gallery-soft .text-box {
  padding: 30px;
  border-bottom: 1px solid #d9d9d9;
  vertical-align: middle;
}
.about-page .gallery-soft .text-box h2 {
  font-size: 24px;
  letter-spacing: 0;
  line-height: 28px; 
}
.about-page .gallery-soft .text-box h2:active,
.about-page .gallery-soft .text-box h2:hover  {
  font-size: 24px;
  letter-spacing: 0;
  line-height: 28px; 
}
.about-page .gallery-soft .text-box h3 {
  font-size: 18px;
  color: #8a8a8a;
  letter-spacing: 0;
  margin: 0;
  line-height: 20px;
  font-family: 'Eurostile-Reg', sans-serif;
}
.about-page .gallery-soft .text-box p {
  font-size: 16px;
  line-height: 20px;
  color: #000;
  letter-spacing: 0;
  margin: 0;
  margin-top: 24px;
}
.about-page .gallery-soft .text-box .meta-info {
  position: relative;
  margin-top: 10px;
  padding-bottom: 20px;
}
.about-page .gallery-soft .text-box .meta-info:after {
  content: '';
  background: #ff000b;
  width: 40px;
  height: 3px;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.about-page .gallery-soft .text-box a {
  text-decoration: none;
  outline: none;
  color: #908ccd;
  transition: 0.4s;
}
.about-page .gallery-soft .text-box a:hover,
.about-page .gallery-soft .text-box a:focus {
  text-decoration: none;
  outline: none;
  color: #ff000b;
  transition: 0.4s;
}
.about-page .gallery-soft .text-box img {
  vertical-align: middle;
  margin: 20px 20px 0px 0px;
  width: 100px;
}
.about-page h5 {
  font-size: 20px;
  color: #000;
  letter-spacing: 0;
  line-height: 24px;
  font-family: 'Eurostile-Reg', sans-serif;
  margin-bottom: 10px;  
}
.about-page span {
  color: #ff000b; 
}
.about-page .text {
  font-size: 16px;
  color: #8a8a8a;
  letter-spacing: 0;
  line-height: 20px;
  font-family: 'Eurostile-Med', sans-serif;
  margin-bottom: 20px;
}
.about-page .panel-body h5 {
  font-size: 20px;
  color: #000;
  letter-spacing: 0;
  line-height: 24px;
  font-family: 'Eurostile-Reg', sans-serif;
  margin-bottom: 0px;
  margin-top: 20px; 
}
.about-page .panel-body .text {
  font-size: 16px;
  color: #000;
  letter-spacing: 0;
  line-height: 20px;
  font-family: 'Eurostile-Med', sans-serif;
}
.about-page li {
  line-height: 20px;
  font-size: 16px;
}
.about-page .box {
  padding: 30px 40px;
}
.about-page .box a {
  text-decoration: none;
  outline: none;
  color: #ff000b;
  transition: 0.4s;
  font-size: 14px;
  font-family: 'Eurostile-Med', sans-serif;  
}
.about-page .box a:hover,
.about-page .box a:focus {
  text-decoration: underline;
  outline: none;
  color: #ff000b;
  transition: 0.5s; 
}
.about-page .box-bg {
  padding: 30px 50px;
}
.about-page .video-box {
  margin-top: 50px;   
}
.about-page .video-box .video-1,
.about-page .video-box .video-2 {
  margin-bottom: 30px;   
}
.about-page .video-box .video-1 h6,
.about-page .video-box .video-2 h6 {
  color: #000;
  letter-spacing: 0;
  line-height: 24px;
  font-family: 'Eurostile-Med', sans-serif;
  font-size: 16px; 
}
.about-page .row-1 {
    display: flex;
    flex-wrap: wrap;
}
.about-page .col-1 {
    max-width: 50%;
}
/* ----------------
.about-page gallery-soft
 ---------------------*/

.gallery-soft {
  margin-top: 40px;
}
.gallery-soft .row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.gallery-soft .img-box {
  position: relative;
  text-align: right;
}
.gallery-soft .img-box > img {
  width: 250px;
  vertical-align: middle;
}
.gallery-soft .img-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.gallery-soft .text-box {
  padding: 30px;
  vertical-align: middle;
}
.gallery-soft .text-box h1 {
  font-size: 3vw;
  letter-spacing: 0;
  line-height: 1.1em;
  color: #242424;
  transition: 0.4s;
  margin-bottom: 30px;  
}
.gallery-soft .text-box span {
  color: #ff000b;  
}
.gallery-soft .text-box h2 {
  font-size: 26px;
  letter-spacing: 0;
  line-height: 28px;
  color: #242424;
  transition: 0.4s;
}
.gallery-soft .text-box h2:focus, 
.gallery-soft .text-box h2:hover {
  font-size: 26px;
  letter-spacing: 0;
  line-height: 28px;
  color: #908ccd;
  transition: 0.4s;
}
.gallery-soft .text-box .meta-info h3 {
  font-size: 20px;
  color: #8a8a8a;
  letter-spacing: 0;
  margin: 0;
  line-height: 22px;
  font-family: 'Eurostile-Reg', sans-serif;
  font-weight: normal;
}
.gallery-soft .text-box p {
  font-size: 16px;
  line-height: 20px;
  color: #000;
  letter-spacing: 0;
  margin: 0;
  margin-top: 24px;
}
.gallery-soft .text-box .meta-info {
  position: relative;
  margin-top: 10px;
  padding-bottom: 20px;
}
.gallery-soft .text-box .meta-info:after {
  content: '';
  background: #ff000b;
  width: 40px;
  height: 3px;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.gallery-soft .text-box a {
  text-decoration: none;
  outline: none;
}
.gallery-soft .text-box a:hover,
.gallery-soft .text-box a:focus {
  text-decoration: none;
  outline: none;
}



/* ----------------
gallery-price
 ---------------------*/

.gallery-price {
  margin-top: 0px;
}
.gallery-price .row {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #d9d9d9;
  padding: 20px 0px;
}
.gallery-price .row-last {
  border-bottom: 0px;
}
.gallery-price .img-box {
  position: relative;
  text-align: right;
}
.gallery-price .img-box > img {
  width: 100%x;
  vertical-align: middle;
}
.gallery-price .img-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.gallery-price .text-box {
  padding: 30px 0px;
  vertical-align: middle;
}
.gallery-price .text-box h2 {
  font-size: 1.4vw;
  line-height: 1.2em;
  letter-spacing: 0;
  color: #242424;
}
.gallery-price .text-box .meta-info span {
  font-size: 26px;
  color: #908ccd;
  letter-spacing: 0;
  margin: 0;
  line-height: 28px;
  font-family: 'Eurostile-Med', sans-serif;
  font-weight: 500;
}
.gallery-price .text-box .meta-info h3 {
  font-size: 16px;
  color: #242424;
  letter-spacing: 0;
  margin: 0;
  line-height: 20px;
  font-family: 'Eurostile-Med', sans-serif;
  font-weight: 500;
}
.gallery-price .text-box .meta-info p {
  font-size: 0.8vw;
  color: #8a8a8a;
  letter-spacing: 0;
  margin: 0;
  margin-top: 24px;
}
.gallery-price .text-box .meta-info {
  position: relative;
  margin-top: 20px;
  padding-bottom: 10px;
}
.gallery-price .text-box .meta-info:after {
  content: '';
  background: #ff000b;
  width: 40px;
  height: 3px;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.gallery-price .text-box a {
  text-decoration: none;
  outline: none;
}
.gallery-price .text-box a:hover,
.gallery-price .text-box a:focus {
  text-decoration: none;
  outline: none;
}
.gallery-price .text-box .meta-complete {
  margin-top: 30px;
}

.gallery-price .text-box .meta-complete p {
  font-size: 0.8vw;
  line-height: 1.3em;
  color: #242424;
  letter-spacing: 0;
  margin: 0;
  vertical-align: top;
}


/* ----------------
gallery-box
 ---------------------*/

.laser .gallery-box {
   text-align: center; 
}

.laser .gallery-box li a {
    width: 240px;
    height: 240px;
    display: block;
    margin: 20px;
    position: relative;
}
.laser .gallery-box li a:before {
  top: 0;
  left: 0;
  width: 0%;
  content: "";
  height: 100%;
  position: absolute;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  background-color: #908ccd;
}
.laser .gallery-box li .rtc360:after {
  left: 0;
  right: 0;
  top: 40%;
  opacity: 0;
  font-size: 20px;
  content: "RTC360";
  color: #fff;
  padding-top: 8px; 
  font-weight: 500;
  text-align: center;
  position: absolute;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.laser .gallery-box li .blk360-g2:after {
  left: 0;
  right: 0;
  top: 40%;
  opacity: 0;
  font-size: 20px;
  padding-top: 8px;
  content: "BLK360 G2";
  color: #fff;
  font-weight: 500;
  text-align: center;
  position: absolute;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.laser .gallery-box li .blk360-g1:after {
  left: 0;
  right: 0;
  top: 40%;
  opacity: 0;
  font-size: 20px;
  padding-top: 8px;
  content: "BLK360 G1";
  color: #fff;
  font-weight: 500;
  text-align: center;
  position: absolute;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.laser .gallery-box li .p50:after {
  left: 0;
  right: 0;
  top: 40%;
  opacity: 0;
  font-size: 20px;
  padding-top: 8px;
  content: "ScanStation P50";
  color: #fff;
  font-weight: 500;
  text-align: center;
  position: absolute;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.laser .gallery-box li .p40:after {
  left: 0;
  right: 0;
  top: 40%;
  opacity: 0;
  font-size: 20px;
  padding-top: 8px;
  content: "ScanStation P40";
  color: #fff;
  font-weight: 500;
  text-align: center;
  position: absolute;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.laser .gallery-box li .p30:after {
  left: 0;
  right: 0;
  top: 40%;
  opacity: 0;
  font-size: 20px;
  padding-top: 8px;
  content: "ScanStation P30";
  color: #fff;
  font-weight: 500;
  text-align: center;
  position: absolute;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.laser .gallery-box .leica-text {
  font-size: 18px;
  color: #908ccd;
  padding: 0px;
  margin: 0px;
  display: none;  
}
.laser .gallery-box li a:hover:before {
  width: 100%;
}
.laser .gallery-box li a:hover:after {
  top: 50%;
  opacity: 1;
}
.laser .gallery-box img {
  width: 240px;
  height: 240px;
}
.laser .ul-li ul {
  margin: 20px;
  padding: 0;
}
.laser .ul-li ul li {
  list-style: none;
  display: inline-block;
}




