/* Fonts */
@font-face {
  font-family: roboto-medium;
  src: url(../fonts/Roboto-Medium.ttf);
}

@font-face {
  font-family: roboto;
  src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
  font-family: futura-pt;
  src: url(../fonts/futura\ medium\ bt.ttf);
}

@font-face {
  font-family: futura-pt-light;
  src: url(../fonts/futura\ light\ bt.ttf);
}

@font-face {
  font-family: futura-pt-book-italic;
  src: url(../fonts/Futura\ Book\ Italic\ font.ttf);
}

/* Global */
/* Variables */
:root {
  --white: #eee;
  --grey: #606060;
}
/* Styles */
html {
  scroll-padding-top: 50px; /* height of sticky header */
}

html::-webkit-scrollbar {
  width: 6px;
}
 
html::-webkit-scrollbar-track {
  background: black;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

html::-webkit-scrollbar-track:hover {
  background: rgb(98, 98, 98);
}
 
html::-webkit-scrollbar-thumb {
  background: radial-gradient(circle at top left, rgb(111, 0, 255), #6e00d4);
  border-radius: 12px;
}

html::-webkit-scrollbar-thumb:hover {
  background: radial-gradient(circle at top left, #8400ff, #9d00ff);
}

body {
  font-family: futura-pt;
  background-color: var(--white);
}

hr {
  height: 2px !important;
  background-color: white;
}

.section-title-black {
  text-transform: capitalize;
  font-weight: 600;
}

.section-title-white {
  font-family: roboto-medium;
  text-transform: uppercase;
  color: var(--white);
  line-height: 40px;
  letter-spacing: 0.24em;
  font-size: 32px;
}

.title {
  font-family: roboto-medium;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 38px;
  letter-spacing: 0.16em;
  text-decoration: underline;
  text-underline-offset: 1em;
}

.white {
  color: var(--white) !important;
}

.black {
  color: black !important;
}

.grey {
  color: var(--grey) !important;
}

.btn:focus, .btn:active {
  outline: none !important;
  box-shadow: none;
}

.btn-primary {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  transition: 0.3s ease;
  border-color: transparent;
  border-radius: 30px;
  background-image: radial-gradient(circle at top left, rgb(71, 0, 163), #8400ff);
  background-origin: border-box;
  box-shadow: 0 0 30px rgba(48, 0, 110, 0.5);
  z-index: 10 !important;
}

.btn-primary:hover {
  cursor: pointer;
	transform: scale(1.05) perspective(1px);
  box-shadow: 0 0 30px rgba(48, 0, 110, 0.5),
              0 0 60px rgba(48, 0, 110, 0.5)
}

.dropdown-menu {
  transform: translateX(-50%);
  transition: all .5s;
  border-radius: 12px;
  background-color: whitesmoke;
}
.dropdown:hover .dropdown-menu {
  display: block;
  visibility: visible;
  transition: all .5s;
  transform: translateX(-50%);
}

/* Media queries */
@media only screen and (min-width: 550px) and (max-width: 1199px) {
  .with-underline::after {
    width: 28rem;
  }
}

@media only screen and (max-width: 990px) {
  .dropdown-menu {
    background-color: whitesmoke;
    transform: none;
  }

  .dropdown:hover .dropdown-menu {
    transform: none;
  }

  .section-title-white {
    font-size: 24px;
  }
}

@media only screen and (max-width: 549px) {
  h1 {
    line-height: 3.5rem;
  }

  .with-underline::after {
    width: 22rem;
  }

  .section-title-white {
    font-size: 20px;
  }

  .contact-btn {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .contact-btn:hover {
    transform: translateX(-50%) translateY(1px);
  }
}

/* Navbar */
.navbar-collapse {
  font-family: roboto-medium;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.08em;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-transform: uppercase;
  margin-bottom: 0px;
  padding: 15px 30px !important;
  color: white !important;
}

.nav-link::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--white);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
  color: var(--white); 
}

.nav-dark {
  background: linear-gradient(180deg, #26242B 0%, #484551 100%);
}
/* Media queries */
@media only screen and (max-width: 990px) {
  .navbar-nav {
    background: linear-gradient(180deg, #26242B 0%, #484551 100%);
    opacity: 0.95;
    border-radius: 16px;
  }
}

/* Home */
.banner-image {
  background-image: url('../images/home-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
}

.slogan-container {
  width: 34rem;
}

.slogan {
  word-break: break-word;
  font-weight: 600;
  line-height: 4.5rem;
  letter-spacing: 0.08em;
  text-shadow: 4px 5px 3px rgba(0, 0, 0, 0.12);
}

.sub-slogan {
  font-family: futura-pt-book-italic;
}

.with-underline::after {
  content: "";
  display: block;
  border: 1px solid;
  margin-top: 0.2em;
  opacity: 0.75;
}

.lang {
  background-color: transparent;
  border: none;
}

.lang::after {
  display: none !important;
}

.lang:hover::after {
  display: none !important;
}

.lang span span {
  font-size: 10px;
  position: relative;
  bottom: 2px;
}

.lang-flag {
  width: 32px;
  padding-right: 0.5rem;
}
/* Media queries */
@media only screen and (max-width: 549px) {
  .slogan-container {
    text-align: center;
    width: 22rem;
    margin: auto
  }

  .with-underline::after {
    margin: auto;
  }
}

@media only screen and (min-width: 550px) and (max-width: 1199px) {
  .with-underline::after {
    width: 28rem;
  }
}

@media only screen and (max-width: 1200px) {
  .banner-image {
    background-image: url('../images/home-bg_small.jpg');
    background-position: center !important;
  }
}

@media only screen and (max-width: 1550px) {
  .banner-image {
    background-position: right;
  }
}

@media only screen and (min-width: 3100px) {
  .banner-image {
    background-position: center -300px;
  }
}

/* Offer */
.offer {
  background-image: url('../images/offer-bg.png'), linear-gradient(#F5F7FA 0%, #c8d6e9 100%);
  background-repeat: no-repeat;
  background-position: top right -9px, center;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
  border-radius: 0px 0px 40px 40px;
  background-color: var(--white);
  position: relative;
  z-index: 3;
}

.offer-text {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.04em;
}
/* Media queries */
@media only screen and (max-width: 1399px) {
  .offer {
    background-image: none;
    text-align: center;
    background: url('../images/offer-bg_small.jpg'), linear-gradient(#F5F7FA 0%, #c8d6e9 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .offer .title {
    font-size: 20px;
  }

  .offer-text {
    font-size: 18px;
    line-height: 26px;
  }
}

@media only screen and (min-width: 1400px) {
  .offer {
    min-height: 63rem;
  }
}

@media only screen and (min-width: 2999px) {
  .offer {
    background-position: top right 35em, top right;
  }
}

/* Transportation */
.transportation {
  background-image: url('../images/trasportation-bg_lines.png'), linear-gradient(180deg, #26242B 0%, #484551 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 0px 0px 32px 32px;
  position: relative;
  margin-top: -35px;
  z-index: 2;
  overflow: auto;
}

.transportation .title {
  font-family: futura-pt-light;
  text-decoration: none;
  text-align: center;
  color: white;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.04em;
}

.transportation-text {
  font-family: futura-pt-light;
  color: var(--white);
  font-size: 24px;
}

.img-container {
  width: 380px;
  height: 450px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.16);
  border-radius: 40px;
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: multiply;
}

.standard .img-container {
  background-image: url('../images/standard.jpg') !important;
  background-position: -300px center;
}

.joloda .img-container {
  background-image: url('../images/joloda.jpg') !important;
  background-color: rgba(0, 0, 0, 0.4);
}

.coilmulde .img-container {
  background-image: url('../images/coilmulde.jpg') !important;
  background-position: -20px 1px;
  background-color: rgba(0, 0, 0, 0.4);
}

.img-container {
  color: #e1e1e1;
}
/* Media queries */
@media only screen and (max-width: 549px) {
  .img-container .info p {
    padding-bottom: 3rem;
  }
}

@media only screen and (max-width: 993px) {
  .img-container .info {
    display: block !important;
    top: 30%;
  }

  .transportation .info {
    display: none;
  }

  .img-container {
    background-color: rgba(0, 0, 0, 0.65) !important;
    background-blend-mode: multiply;
  }
}

/* Contact */
.contact {
  background-image: url('../images/contact-bg_lines.png'), linear-gradient(#F5F7FA 0%, #c8d6e9 100%);
  background-repeat: no-repeat;
  background-position: top center;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
  background-color: var(--white);
  position: relative;
  z-index: 1;
  margin-top: -35px;
}

.contact-form {
  background: linear-gradient(180deg, #26242B 0%, #484551 100%);
  box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.16);
  border-radius: 32px;
}

.form__group {
  position: relative;
  padding: 15px 0 0;
  margin-top: 10px;
  width: 70%;
}

.form__field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 2px solid #9b9b9b;
  outline: 0;
  font-size: 1.3rem;
  color: var(--white);
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.form__field::placeholder {
  color: transparent;
}

.form__field:placeholder-shown ~ .form__label {
  font-size: 1.3rem;
  cursor: text;
  top: 20px;
}

.form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 1rem;
  color: #9b9b9b;
}

.form__field:focus {
  padding-bottom: 6px;  
  font-weight: 700;
  border-width: 3px;
  border-image: linear-gradient(to right, #11998e,#38ef7d);
  border-image-slice: 1;
}

.form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 1rem;
  color: #11998e;
  font-weight:700;    
}
/* reset input */
.form__field:required, .form__field:invalid {
  box-shadow: none;
}

textarea {
  width: 100%;
  color: var(--white);
  background: transparent;
  outline: none;
  min-height: 180px;
  font-size: 20px;
}

textarea::-webkit-resizer {
  color: var(--white);
}

.submit-btn {
  width: 40%
}
/* Map */
.contact .map iframe {
  width: 100%;
  height: 30em;
  border-radius: 16px;
  box-shadow: 8px -8px 16px rgba(0, 0, 0, 0.16), 8px 8px 16px rgba(0, 0, 0, 0.16);
}

.map-contact {
  top: 30%;
  background: linear-gradient(180deg, #26242B 0%, #484551 100%);
  box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.16);
  border-radius: 32px;
}

.map-contact h1 {
  font-family: roboto;
  letter-spacing: 0.24em;
  line-height: 40px;
  font-weight: 400;
  font-size: 2rem;
}
/* Media queries */
@media only screen and (max-width: 549px) {
  .submit-btn {
    width: 60%
  }
  .map-contact.small { 
    text-align: center;
  }
}

@media only screen and (max-width: 1399px) {
  .contact-form {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}

@media only screen and (max-width: 799px) {
  .map-contact.small {
    display: block !important;
  }

  .map-contact {
    display: none !important;
  }
}

/* Footer */
.footer {
  font-family: roboto-medium;
  word-break: break-word;
  background: linear-gradient(180deg, #26242B 0%, #484551 100%);
  color: var(--white);
}
