:root {    
  --primary: #F28123;
  --secondary: #103a4d;    
  --contrast: #051922;
  --shade: #07212e;
  --white: #fff; 
  --black: #000;
}

body {
  font-family: "Poppins", "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  letter-spacing: 0.1px;
  line-height: 1.8em;
  color: var(--secondary);
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; 
  cursor: default;
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: var(--primary);
  text-decoration: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Poppins", "Open Sans", sans-serif;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  color: var(--secondary);
}

h1:last-child, .h1:last-child,
h2:last-child, .h2:last-child,
h3:last-child, .h3:last-child,
h4:last-child, .h4:last-child,
h5:last-child, .h5:last-child,
h6:last-child, .h6:last-child {
  margin: 0;
}

h1, .h1 {
  font-size: 4rem;
  line-height: 4rem;
}

@media only screen and (max-width: 767.96px) {
  h1, .h1 {
    font-size: 3rem;
    line-height: 3.25rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h1, .h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

h2, .h2 {
  font-size: 2.5rem;
  line-height: 2.25rem;
}

@media only screen and (max-width: 767.96px) {
  h2, .h2 {
    font-size: 2.25rem;
    line-height: 2.25rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h2, .h2 {
    font-size: 2rem;
    line-height: 2rem;
  }
}

h3, .h3 {
  font-size: 2rem;
  line-height: 2.25rem;
}

@media only screen and (max-width: 575.96px) {
  h3, .h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

h4, .h4 {
  font-size: 1.5rem;
  line-height: 1.75rem;
}

@media only screen and (max-width: 575.96px) {
  h4, .h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

h6, .h6 {
  font-size: 1rem;
  line-height: 1.5rem;
}

p {
  font-family: "Poppins", "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.135rem;
  letter-spacing: 0.1px;
  line-height: 1.8em;
  color: var(--secondary);
  margin: 0 0 1.25rem 0;
}

p:last-child {
  margin: 0;
}

:focus {outline:0 !important;box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;}

.quote{
  opacity: 0;
}

.animation-keeper{
  overflow: hidden;
}

section{
  overflow: hidden;
}

.vh-70{
  height: 70vh;
}

/* -----------------------------------------------------------------------------

# All Common Styles

----------------------------------------------------------------------------- */
.loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1111;
  background: var(--black);
  overflow-x: hidden;
}

.loader-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
}

.circle {
  width: 8vmax;
  height: 8vmax;
  border-right: 4px solid #000;
  border-radius: 50%;
  -webkit-animation: spinRight 800ms linear infinite;
  animation: spinRight 800ms linear infinite;
}

.circle:before {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #F28123;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
}

.circle:after {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #F28123;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
  width: 4vmax;
  height: 4vmax;
  top: calc(50% - 2vmax);
  left: calc(50% - 2vmax);
  border: 0;
  border-right: 2px solid #000;
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@-webkit-keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.primary-bg {
  background-color: var(--primary);
}

.secondary-bg {
  background-color: var(--secondary);
}

.transparent-bg {
  background-color: transparent;
}

.white-bg {
  background-color: var(--white);
}

.black-bg {
  background-color: var(--black);
}

.primary-color {
  color: var(--primary);
}

.secondary-color {
  color: var(--secondary);
}

.white-color {
  color: var(--white);
}

a.boxed-btn {
  background-color: var(--primary);
  padding: 10px 20px;
}

a.bordered-btn {
  
  border: 2px solid var(--primary);
  padding: 7px 20px;
}

a.boxed-btn, a.bordered-btn {
  display: inline-block;  
  color: var(--white);
  border-radius: 50px;
}

a.more-btn {
  display: inline-block;
  margin-top: 15px;
  color: var(--secondary);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}

.text-xl {
  color: var(--primary);
  font-weight: 400;
  font-size: 96px;
  line-height: 1.2em;
}

.howitworks h4 span {
  font-weight: 400;
  font-size: 1.135rem;
  display: block;
  margin-top: 10px;
  opacity: 0.8;
}

.pt-150{
  padding-top: 150px;
}

.pb-150{
  padding-bottom: 150px;
}

.pb-200{
  padding-bottom: 200px;
}

.pt-120{
  padding-top: 120px;
}

.pb-120{
  padding-bottom: 120px;
}

.pt-100{
  padding-top: 100px;
}

.pb-100{
  padding-bottom: 100px;
}

.pt-80{
  padding-top: 80px;
}

.pb-80{
  padding-bottom: 80px;
}

.fw-300{
  font-weight: 300;
}

.fw-400{
  font-weight: 400;
}

.fw-500{
  font-weight: 500;
}

.fw-600{
  font-weight: 600;
}

.fw-700{
  font-weight: 700;
}

.fw-900{
  font-weight: 900;
}

/* -----------------------------------------------------------------------------

# Header Styles

----------------------------------------------------------------------------- */

.navbar {
  position: absolute;
  top: 2.5vh;
  left: 6.5vw;
  z-index: 9999;
}

.navbar .navbar-brand {
  max-width: 150px; 
}


/* -----------------------------------------------------------------------------

# Carousel Styles

----------------------------------------------------------------------------- */

.hi-1 {
  background-image: url(/assets/img/hero/main.png);
}
.hi-2 {
  background-image: url(/assets/img/hero/jtp.png);
}
.hi-3 {
  background-image: url(/assets/img/hero/skoleni.png);
}
.hi-4 {
  background-image: url(/assets/img/hero/kemp.png);
}
.hi-5 {
  background-image: url(/assets/img/hero/rest.png);
}
.hi-6 { background-image: url(/assets/img/hero/ns.png); }
.hi-7 { background-image: url(/assets/img/hero/jtpe.png); }
.hi-8 { background-image: url(/assets/img/hero/cs.png); }
.hi-9 { background-image: url(/assets/img/hero/ae.png); }

.slider-hero {
  position: relative;  
  padding-bottom: 30px;
}

.slider-hero .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.owl-carousel {
  position: relative;
}

.owl-carousel .owl-item {
  opacity: 1;
}

.owl-carousel .owl-item.active {
  opacity: 1;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  transform: translateY(-50%);
  margin-top: 0;
  color: white !important;
  transition: 0.7s;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next {
    transition: none;
  }
}

.owl-carousel .owl-nav .owl-prev {
  left: 20px;
}

.owl-carousel .owl-nav .owl-next {
  right: 20px;
}

.owl-carousel .owl-nav .owl-prev span:before,
.owl-carousel .owl-nav .owl-next span:before {
  font-size: 30px;
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 0;
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
}

.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}

.owl-carousel .owl-dots .owl-dot:hover,
.owl-carousel .owl-dots .owl-dot:focus {
  outline: none !important;
}

.owl-carousel .owl-dots .owl-dot.active {
  background: var(--primary);
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

div.owl-controls, .owl-controls div {
  height: auto;
  top: 50%;
  color: var(--primary);
  font-size: 48px;
}

.owl-prev {
  position: absolute;
  left: 60px;
  margin-top: -30px;
}

.owl-next {
  position: absolute;
  right: 60px;
  margin-top: -30px;
}

.work {
  width: 100%;
}

.work .img {
  width: 100%;
  height: 35vw;
  min-height: 200px;
  max-height: 600px;
  position: relative;
  z-index: 0;
  overflow: hidden;  
  border-radius: 10px;
}

.work .img-shade:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  z-index: -1;
  background: #000;
  opacity: 0.2;
}

.work .text h2 {
  font-size: 60px;
  font-weight: 200;
  color: #fff;
  text-transform: uppercase;
}

.work .text span {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  font-weight: 500;
}

.thumbnail{
  list-style: none;
  padding: 0 12px;
  margin: 0;

  position: absolute;
  left: 50%;
  top: 100%;          /* kotva POD slider */
  bottom: auto;
  transform: translateX(-50%);
  z-index: 99;

  width: min(100%, 980px);

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  gap: 4px;

  margin-top: -70px;  /* fixní “přesah” do slideru (nezáleží na počtu řádků) */
}

.thumbnail li{
  display: block;
}

.thumbnail li a{
  display: block;
  margin: 0; /* gap řeší mezery */
}

.thumbnail li a img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transform: scale(0.8);
  transition: 0.3s all ease;
  box-shadow: -5px 5px 10px 0 rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.thumbnail li.active a img {
  border: 4px solid #fff;
  transform: scale(1.1);
  box-shadow: -5px 10px 20px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 1399.98px){
  .slider-hero{ padding-bottom: 90px; }
  .thumbnail{ margin-top: -55px; }
}

@media (max-width: 991.98px){
  .slider-hero{ padding-bottom: 20px; }
  .thumbnail{ margin-top: -25px; }
  .thumbnail li a img {
    width: 50px;
    height: 50px;
    object-fit: cover;
  }
}

.gallery-carousel img {
  cursor: pointer;
  max-width: 430px;
  max-height: 430px;
  object-fit: cover;  
}

.logo-carousel img {
  cursor: pointer;
}

.video-container video {
  width: 100%; 
  height: auto; 
  border-radius: 10px;
  cursor: pointer;
}


/* -----------------------------------------------------------------------------

# Footer Styles

----------------------------------------------------------------------------- */

.single-logo-item img {
  max-width: 120px;
  margin: 0 auto;
}

.logo-carousel-section {
  background-color: #f5f5f5;
}

.footer-area {
  position: relative;
  background-color: #051922;
  color: #fff;
  padding: 150px 0;
}

h2.widget-title {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  padding-bottom: 20px;
  color: #fff;
}

h2.widget-title:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: #F28123;
  content: "";
}

.footer-box img{
  max-width: 20px;
}

.footer-box p {
  color: #fff;
  opacity: 0.7;
  line-height: 1.8;
  font-size: 1rem;
}

.footer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-box ul li {
  opacity: 0.7;
  margin-bottom: 10px;
  line-height: 1.8;
}

.footer-box ul li:last-child {
  margin-bottom: 0;
}

.footer-box.subscribe form input[type=tel] {
  border: none;
  background-color: #012738;
  width: 78%;
  padding: 15px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  color: #fff;
}

.footer-box.subscribe form button {
  width: 20%;
  border: none;
  background-color: #012738;
  color: #F28123;
  padding: 14px 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  cursor: pointer;
}

.footer-box.subscribe form button:focus {
  outline: none;
}

.copyright {
  background-color: #051922;
  border-top: 1px solid #232a35;
}

.copyright p {
  margin: 0;
  color: #fff;
  opacity: 0.7;
  padding: 16px 0;
  font-size: 15px;
}

.copyright a {
  color: #F28123;
  font-weight: 700;
}

.copyright a:hover {
  color: #f59d53;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons ul li {
  display: inline-block;
}

.social-icons ul li a {
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
  padding: 16px 10px;
  display: block;
}

.footer-box ul li a {
  color: #fff;
}

.footer-box.pages ul li {
  position: relative;
  padding-left: 20px;
}

.footer-box.pages ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #F28123;
}

/* -----------------------------------------------------------------------------

# Hover Styles

----------------------------------------------------------------------------- */
a.navbar-brand, a.boxed-btn, a.bordered-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.navbar-brand:hover {
  scale: 1.05;
}

a.boxed-btn:hover {
  background-color: var(--contrast);
  color: var(--primary);
}

a.bordered-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

a.more-btn:hover {
  color: var(--primary);
}

.single-logo-item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 50%;
  margin-left: 25%;
}

.single-logo-item:hover {
  opacity: 0.7;
}

.footer-box.pages ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-box.pages ul li:hover a {
  color: var(--primary);
}

.footer-box.subscribe form button {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-box.subscribe form button:hover {
  background-color: var(--primary);
  color: var(--contrast);
}

.social-icons ul li:hover a {
  color: var(--primary);
}

.social-icons ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.social-link-team li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.social-link-team li a:hover {
  background-color: var(--contrast);
  color:  var(--primary);
}

.counter-box {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

input[type="submit"] {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px !important;
}

input[type="submit"]:hover {
  background-color: var(--contrast);
  color:  var(--primary);;
}

div.owl-controls, .owl-controls div {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

div.owl-controls div.owl-nav div:hover {
  opacity: 0.7;
}

.pagination-wrap ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.pagination-wrap ul li:hover a {
  background-color:  var(--primary);
}

.icons a i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.icons a:hover i {
  color:  var(--primary);
}


/* -----------------------------------------------------------------------------

# Hero Styles

----------------------------------------------------------------------------- */

.hero-area {
  height: 130vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-bg {
  background-image: url('/assets/img/hero/01.jpg');
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;   
}

.moto-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.moto-area h3 {
  color: var(--white);
  font-size: 3rem;
  line-height: 1.2;
}

@media only screen and (max-width: 767.96px) {
  .moto-area h3 {
    font-size: 2rem;
    line-height: 1.2;
  }
}

.moto-bg::before {
  content: ''; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/hero/19.jpg');
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  animation: scaleBackground 20s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
  z-index: -1;
}

@-webkit-keyframes scaleBackground {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes scaleBackground {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.hero-shade{
  position: relative;
  z-index: 0;
  height: 150%;
}

.hero-area:after,.hero-shade:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--shade);
  z-index: -1;
  opacity: 0.6;
} 

.hero-bg::after {
  background: repeating-linear-gradient(
    130deg,
    rgba(7, 33, 46, .9) 0px 4px,
    rgba(7, 33, 46, 1) 0px 8px
  );
  background-attachment: scroll;
  mix-blend-mode: multiply;
}

.hero-text p {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 0.9375rem;  
}

.hero-text h1 {
  line-height: 1.3;
  color: var(--white);
}

.hero-btns {
  margin-top: 35px;
}

.hero-btns a.bordered-btn {
  margin-left: 15px;
}

input[type="submit"] {
  background-color: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  border: none !important;
  cursor: pointer;
  padding: 15px 25px;
  border-radius: 3px;
}

/* -----------------------------------------------------------------------------

# Check Out Styles 

----------------------------------------------------------------------------- */

.checkout-section .order{
  font-weight: 400;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Poppins", "Open Sans", sans-serif;
  margin: 0 0 3.25rem 0;
  line-height: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkout-section .order i{  
  font-size: 1.4rem;
  margin-left: 3px;
  display: none;
}

.checkout-section .order span.ordertext:not(:last-child)::after {
  content: "";
  display: inline-flex;
  width: 44px;
  top: -7px;
  position: relative;
  border-bottom: 1px solid #666;
}

.checkout-section .order span.ordertext:not(:last-child)::after {   
  margin: 0 20px;
}

.checkout-section .order span.ordercircle {
  content: "";
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  max-width: 2rem;
  max-height: 2rem;
  border: 1px solid #666;
  border-radius: 50%;
  font-size: 1.2rem;
  position: relative;
  margin-right: .65rem;
}
.checkout-section .order span.ordercircle:first-child {
  background-color: #f28123;
  border-color: #f28123;
}

label {
  cursor: pointer;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
    font-size: 1.1rem;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #f28123;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.form-title {
  margin-bottom: 25px;
}

.form-title h2 {
  font-size: 25px;
}

.form-title p {
  font-size: 15px;
  line-height: 1.8;
}

.contact-form form p input[type=text], .contact-form form p input[type=tel], .contact-form form p input[type=email] {
  width: 49%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.contact-form form p textarea {
  border: 1px solid #ddd;
  padding: 15px;
  height: 200px;
  border-radius: 3px;
  width: 100%;
  resize: none;
}

.contact-form-wrap {
  background-color: #FBFBFB;
  padding: 45px 30px;
  border-radius: 5px;
}

.contact-form-box {
  padding-left: 40px;
  margin-bottom: 30px;
}

.contact-form-box h4 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
}

.contact-form-box h4 i {
  position: absolute;
  left: -13%;
  color: var(--primary);
  top: 2px;
}

.contact-form-box p {
  line-height: 1.8;
  opacity: 0.9;
}

.contact-form-wrap .contact-form-box:last-child {
  margin: 0;
}

.find-location p {
  color: #fff;
  font-size: 40px;
  margin: 0;
  font-weight: 600;
  padding: 95px 0;
}

.find-location p i {
  margin-right: 10px;
  color: var(--primary);
}

#form_status span {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  background: #E74C3C;
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 0px;
  border-radius: 3px;
  margin-bottom: 18px;
}

#form_status span.loading {
  color: #333;
  background: #eee;
  border-radius: 3px;
  padding: 18px 0px;
}

#form_status span.notice {
  color: yellow;
}

#form_status .success {
  color: #fff;
  text-align: center;
  background: #2ecc71;
  border-radius: 3px;
  padding: 30px 0px;
}

#form_status .success i {
  color: #fff;
  font-size: 45px;
  margin-bottom: 14px;
}

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

/* -----------------------------------------------------------------------------

# More

----------------------------------------------------------------------------- */

.underscore{
  position: relative;
}

.underscore:after {
  position: absolute;
  content: '';
  left: 0px;
  right: 0px;
  bottom: -15px;
  width: 50px;
  height: 2px;
  background-color: #F28123;
  margin: 0 auto;
}

thead {
  border-bottom: 1px solid #eee;
}

.grayline {
  width: calc(100%+30px);
  margin: 0 -15px;
  border-bottom: 1px solid #eee;
}

.tooltiptext {
	visibility: hidden;
  width: 100px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 4px;
	padding: 10px 5px;
	position: absolute;
	z-index: 1;
	top: 5px;
	left: 50%;
	margin-left: -50px;
  font-size: 0.9rem;
}

.tooltiptext:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltiptext {
  visibility: hidden;
  color: #fff;
  text-align: center;
  font-weight: 400;
}

.tooltipup:hover .tooltiptext {
  visibility: visible;
}

.strikethrough {
  position: relative;
}

.strikethrough:before {
  position: absolute;
  content: "";
  left: -5%;
  top: 45%;
  right: -5%;
  border-top: 2px solid;
  border-color: inherit;
  
  -webkit-transform:rotate(-5deg);
  -moz-transform:rotate(-5deg);
  -ms-transform:rotate(-5deg);
  -o-transform:rotate(-5deg);
  transform:rotate(-5deg);
}


.boxshadow{
  box-shadow: 0 0 20px #cacaca;  
  -webkit-box-shadow: 0 0 20px #cacaca; 
}

.boxshadow-b{
  box-shadow: 0 .1rem .5rem rgba(0,0,0,.15);  
  -webkit-box-shadow: 0 .1rem .5rem rgba(0,0,0,.15); 
}

.hide{
  display: none !important;
}

/* -----------------------------------------------------------------------------

# Dividers Styles

----------------------------------------------------------------------------- */

.relative{
  position: relative;
}

.z1{
  z-index: 1;
}

.svg-fix-bottom {  
  position: absolute;
  bottom: -0.05vw;
  left: -0.1vw;
  width: 102%;
  overflow: hidden;
  line-height: 0;
  white-space: nowrap;
}

.svg-fix-top {  
  position: absolute;
  top: -0.05vw;
  left: -0.1vw;
  width: 102%;
  overflow: hidden;
  line-height: 0;
  white-space: nowrap;
}

.csd {  
  position: absolute;
  bottom: -0.1vw;
  left: -0.2vw;
  width: 102%;
  overflow: hidden;
  line-height: 0;
  white-space: nowrap;
  scale: 1.1;
}

.csd svg {
  position: relative;
  display: inline-block;
  width: calc(100% + 1.3px);  
  height: 150px;
}

.flipX {
  transform: scaleX(-1);
}

.flipY {
  transform: scaleY(-1);
}

.flipXY {
  transform: scaleX(-1) scaleY(-1);
}

.fill-white {
  fill: #FFFFFF;
}

.fill-black{
  fill: #000;
}

#quote {
  -webkit-transform: translate3d(0, 0, 0); 
  transform: translate3d(0, 0, 0);
  margin: 50px auto;
  visibility: hidden;
}

#quote div {
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
}

.square {
  position: relative;
  background-color: transparent; 
}

.square::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0; 
  width: 100%;
  height: 100%;
  border: 5px solid #ffffff; 
  box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
}

.bl-orange{
  border-radius: 1px 0 0 1px;
  border-left: 4px solid #f18222 !important;
}
.bl-blue{
  border-radius: 1px 0 0 1px;
  border-left: 4px solid #5ab6bd !important;
}
.bl-green{
  border-radius: 1px 0 0 1px;
  border-left: 4px solid #a9d68a !important;
}

.img-bg-wecando {
  background-image: url('/assets/img/1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;  
  max-width: 1920px;
  margin: 0 auto;
}

.item-box{
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 0 20px #e4e4e4;
  box-shadow: 0 0 20px #e4e4e4;
  padding-bottom: 50px;
  padding-top: 30px;
  border-radius: 5px;
  background: white;
}

.item-box h3 a{
  color: #103a4d;
}
.item-box h3 a:hover{
  color: #F26123;
}

.item-box h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.item-box p {
  font-weight: 400;
  margin-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.4;
}

.item-box p span {
  display: block;
  font-size: 1.2rem;  
  font-weight: 700;
  margin-top: 20px;
}

.item-box img {
  border-radius: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  box-shadow: 0 0 15px #cacaca;
  -webkit-box-shadow: 0 0 15px #cacaca;
}

.item-box-img-holder {  
  padding: 30px 40px;
}

#shine a {
  overflow: hidden;
  display: block;
  position: relative;
}

#shine>a:before {
  position: absolute;
  top: 0;
  left: -120%;
  z-index: 9999;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

#shine>a:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s
}

@-webkit-keyframes shine {
  100% {
      left: 100%
  }
}

@keyframes shine {
  100% {
      left: 100%
  }
}

.foam {
  height: 200%;
  overflow: hidden;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;      
  width: 3200px;
  display: none;
}

.extras-bg{
  position: relative;
  background-color: var(--contrast);
  background-image: url('/assets/img/hero/20.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  z-index: -1;
}

.blend-text {
  position: relative;
  z-index: 2;  
  color: var(--white);
}

.blend-text h3,.blend-text p{
  color: inherit;  
}

.yourcart .cartnext .gdpr{
  color: #103a4d;
  padding-left: 15px;
  text-align: left;
  font-size: 0.8rem !important;
}

.tiltcard{
  transform-style: preserve-3d;
}

.tiltcard .js-tilt-glare {
  pointer-events: none; 
}

.tiltcard h3,.tiltcard p,.tiltcard a.boxed-btn {  
  position: relative;
  transform-style: preserve-3d;
  transform: translateZ(20px);
}

#logo {display: none !important;}

@-webkit-keyframes foamscale {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
}
@keyframes foamscale {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
}

@media (min-width: 992px) {
  .foam{
    display: block;
  }
  .foam path {    
    transform-origin: center;
    will-change: transform;    
    animation: foamscale 4s infinite;
  }
  .foam path:nth-child(1) { animation-delay: 0.1s; }
  .foam path:nth-child(2) { animation-delay: 0.4s; }
  .foam path:nth-child(3) { animation-delay: 0.6s; }
  .foam path:nth-child(4) { animation-delay: 1.0s; }
  .foam path:nth-child(5) { animation-delay: 1.5s; }
}

@media (max-width: 991.98px) {
  .hero-bg,.moto-bg::before,.extras-bg {    
    background-attachment: scroll;   
  }
  .work .text h2 {
    font-size: 40px;
  }
  .vh-70{
    height: initial;
  }
}