:root {
  --blue: #007bff;
  --indigo: #E19600;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #FFA500;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --padding-horizontal-main: 4rem;
}

* {
  font-family: "Nunito Sans", Arial, sans-serif;;
  line-height: 1.15;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "Nunito Sans", Arial, sans-serif;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
}

main {
  width: 100%;
}

.container {
  max-width: 1140px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}


.px-main {
  padding-left: var(--padding-horizontal-main);
  padding-right: var(--padding-horizontal-main);
}

.cta a {
  background-color: var(--primary);
  color: black;
  font-size: 18px;
  padding: 1rem;
  border-radius: 24px;
  text-decoration: none;
  display: inline-block;
}

.cta a:hover {
  background-color: var(--indigo);
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

a.btn {
  display: inline-block;
  font-size: 18px;
  padding: 1rem;
  border-radius: 24px;
  text-decoration: none;
  text-transform: uppercase;
}

a.btn-dark {
  background-color: rgb(13, 17, 40);
  color: #fff;
}

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

a.btn-light {
  background-color: white;
  color: rgb(13, 17, 40);
}

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

section.navbar-top .container{
  display: flex;
  align-items: center;
  height: 100px;
}

section.navbar-top .logo-container {
  height: 100%;
}

section.navbar-top .logo-container img {
  height: 100%;
}

section.navbar-top .contacts-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  flex-wrap: wrap;
  /*font-size: 14px;*/
  margin-left: auto;
}

section.navbar-top .navbar-top-item {
  margin-right: 1rem;
}

section.navbar-top .navbar-top-item.cta{
  display: flex;
}

section.navbar-top .navbar-top-item.cta .number{
  display: none;
}

@media screen and (max-width: 600px) {
  section.navbar-top .navbar-top-item.cta .number{
    display: inline-block;
  }
  
  section.navbar-top .navbar-top-item.cta .text{
    display: none;
  }
}

@media screen and (max-width: 800px) {
  div.contact-container.email {
    display: none;
  }
}

div.contact-container {
  display: flex;
  padding-top: 1rem;
}

@media screen and (max-width: 600px) {
  div.contact-container {
    display: none;
  }
}

div.contact-container .contact-title {
  font-weight: 700;
  font-size: 15px;
}

div.contact-container .contact-desc {
  font-size: 15px;
}

div.contact-container .contact-icon-container {
  display: flex;
  font-size: 32px;
  margin-right: .4rem;
  height: 100%;
  align-items: center;
}

i.contact-icon {
  color: var(--primary);
}

section.navbar-main, section.navbar-mobile {
  display: flex;
  background: #0d1128;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

section.navbar-mobile {
  display: none;
  position: relative;
  overflow: hidden;
  /*background-color: #333;*/
  position: relative;
  padding-bottom: 2.5rem;

}

section.navbar-mobile #hamburger-links {
  display: none;
  margin-top: 1.5rem;
}

section.navbar-mobile #hamburger-links a {
  display: block;
  padding-right: 2rem;
  color: #fff;
  text-decoration: none;
}

section.navbar-mobile #hamburger-links a.active {
  color: var(--primary);
}

section.navbar-mobile #hamburger-links a:hover {
  background: #333;
}

.navbar-mobile a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  /*font-size: 17px;*/
  display: block;
}

.navbar-mobile a.icon {
  /*background: black;*/
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
}

@media screen and (max-width: 700px) {
  section.navbar-mobile {
    display: block;
  }

  section.navbar-main {
    display: none;
  }
}

.navbar-main nav ul {
  list-style-type: none;
}


.navbar-main nav ul li {
  display: inline;
  float: left;
  margin-right: 2rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.navbar-main nav ul li a {
  display: block;
  padding-right: 2rem;
  color: #fff;
  text-decoration: none;
}

.navbar-main nav ul li a.active {
  color: var(--primary);
}

.navbar-main nav ul li a:hover {
  color: var(--cyan);
}

section.banner-main .background {
  background: url(../img/tow-truck-unsplash.jpg); 
  background-size:     cover;
  background-repeat:   no-repeat;
  background-position: center center; 
  width:100%; 
  height:500px;
}

@media screen and (max-width: 1000px) {
  section.banner-main .background {
    height:500px;
  }
}

@media screen and (max-width: 700px) {
  section.banner-main .background {
    height:700px;
  }
}

@media screen and (max-width: 600px) {
  section.banner-main .background {
    height:800px;
  }
}

@media screen and (max-width: 440px) {
  section.banner-main .background {
    height:850px;
  }
}

@media screen and (max-width: 406px) {
  section.banner-main .background {
    height:900px;
  }
}

@media screen and (max-width: 400px) {
  section.banner-main .background {
    height:1000px;
  }
}

@media screen and (max-width: 340px) {
  section.banner-main .background {
    height:1200px;
  }
}

section.banner-main .background .layer {
  background-color:rgba(193,219,255,0.7); 
  width:100%; 
  height:100%;
}

section.banner-main .background .layer .container {
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}


section.banner-main .background .layer .container .title {
  font-weight: 900;
  font-size: 48px;
  text-align: center;
}

section.banner-main .background .layer .container .text {
  text-transform: uppercase;
  margin: 0 auto;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
}

section.banner-main .background .layer .container .text p {
  background: rgba(255, 255, 255, 0.6);
  /*border-radius: 24px;*/
  padding: 12px;
  /*font-weight: 900;*/
  line-height: 1.5;
}

section.banner-main .background .layer .container ul {
  margin-top: 2rem;
  font-size: 1.5rem;
  list-style-type: none;

  background: rgba(255, 255, 255, 0.6);
  /*border-radius: 24px;*/
  padding: 12px;
}

section.banner-main .background .layer .container ul li {
  margin-top: 1rem;
  
}

section.banner-main .background .layer .container .cta {
  display: flex;
  justify-content: center;
  font-weight: 600;
  margin-top: 2rem;
}

section.services {
  padding-bottom: 2rem;
}

.services-title,
.about-title {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 2rem;
  text-transform: uppercase;
}

section.services .services-items-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

section.services .services-items-container .service {
  /*border-radius: 50%;*/
  padding: 2rem;
  width: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section.services .services-items-container .service .background {
  width:300px; 
  height:300px;
  /*border-radius: 50%;*/
}

section.services .services-items-container .service .layer {
  background-color:rgba(255,255,255,0.2); 
  width:100%; 
  height:100%;
  /*border-radius: 50%;*/
  position: relative;
}

section.services .services-items-container .service .background.car {
  background:url(../img/bmw-pixabay.jpg); 
  background-size:     cover;
  background-repeat:   no-repeat;
  background-position: center center; 
}

section.services .services-items-container .service .background.bike {
  background:url(../img/bike-pixabay.jpg); 
  background-size:     cover;
  background-repeat:   no-repeat;
  background-position: center center; 
}

section.services .services-items-container .service .background.van {
  background:url(../img/van-pixabay.png); 
  background-size:     cover;
  background-repeat:   no-repeat;
  background-position: center center; 
}

section.services .services-items-container .service .background.truck {
  background:url(../img/truck-pixabay.png); 
  background-size:     cover;
  background-repeat:   no-repeat;
  background-position: center center; 
}

section.services .services-items-container .service .background.goods {
  background:url(../img/goods-pixabay.jpg); 
  background-size:     cover;
  background-repeat:   no-repeat;
  background-position: center center; 
}

section.services .services-items-container .service .background.machines {
  background:url(../img/machines-pixabay.png); 
  background-size:     cover;
  background-repeat:   no-repeat;
  background-position: center center; 
}

section.services .services-items-container .service .layer .title {
  position: absolute;
  bottom: 0px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(0, 123, 255, 0.8);
  text-align: center;
  width: 100%;
  padding: .7rem .5rem;
  color: white;
}

section.services .services-items-container .service .text {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
  width: 100%;
}

section.services .services-items-container .service .text.bike {
  line-height: 1.5;
}

section.services .services-items-container .service .text.van {
  line-height: 2;
}

section.about {
  background: var(--primary);
  background: rgb(13, 17, 40);
  color: white;
  padding-bottom: 2rem;
}




section.about .container {
  
}

section.about .container .about-title {
  margin-top: 0;
  padding-top: 2rem;
}

section.about .container .about-text {
  margin-top: 2rem;
  font-size: 1.5rem;
  text-align: center;
}

section.about .container .about-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding-bottom: 2rem;
}

section.about .container .about-sections .section {
  width: 40%;
  margin-top: 1rem;
  text-align: center;
}

@media screen and (max-width: 700px) {
  section.about .container .about-sections .section {
    width: 100%;
  }
}

@media screen and (min-width: 700px) {
  section.about .container .about-sections .section .section-title.support {
    line-height: 2.2;
  }
}

section.about .container .about-sections .section .section-icon {
  font-size: 100px;
  text-align: center;
}

section.about .container .about-sections .section .section-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
}

section.about .container .about-sections .section .section-text {
  margin-top: 1rem;
  font-size: 1.2rem;
}

section.about .container .about-sections .section .section-text a {
  color: var(--primary);
}

footer.footer {
  background: #232323;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: white;
}

footer.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer.footer .container .footer-info-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

footer.footer .container .footer-info {
  background: rgba(200, 200, 200, 0.2);
  margin: 1rem;
}

footer.footer .container .footer-info .info-item {
  padding: 1.5rem;
}

footer.footer .container .footer-info .info-item i {
  margin-right: .5rem;  
}

div.cta-sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: center;
}

div.cta-sticky a {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: var(--primary);
  color: black;
  width: 100%;
  text-align: center;
  font-weight: bold;
}

section.description-container {
  font-size: 1.5rem;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 2;
}

section.description-container .container .cta {
  display: flex;
  justify-content: center;
  font-weight: 600;
  margin-top: 2rem;
  text-transform: uppercase;
}

section.description-text {
  margin-top: 1.5rem;
}

.pricing-description-container {
  text-align: left;
}

.pricing-description-container div.pricing-title {
  margin-top: 1rem;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
}

section.services .services-items-container .service .price-background {
  font-size: 250px;
}

section.services .services-items-container .service div.text {
  text-align: left;
}

section.services .services-items-container .service div.text ul {
  list-style-type: auto;
}

.pricing.cta {
  display: flex;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.contact-page-container .contact-info {
font-size: 1.5rem;
}

.contact-page-container .contact-info .title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-page-container .contact-info .working-time {
  margin-bottom: 2rem;
}

.services-items-container.pricing {
  align-items: baseline;
}


* {
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.container-gallery {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}