@import 'fonts.css';
@import 'custom-vm.css';

:root {
  --primary: #1CB5A3;
  --h-primary: #157f73;
  --secondary: #F07C00;
  --white: #fff;
  --white-75: rgba(255,255,255,.7);
  --shadow: 0px 10px 50px 10px rgba(0, 0, 0, 0.10);
  --h-shadow: 0px 10px 50px 10px rgba(0, 0, 0, 0.25);
  --border-radius: 10px;

}

/* UI */
.s-bg-muted-trans {
  background: linear-gradient(180deg, #F8F8F8 0%, rgba(248, 248, 248, 0.00) 100%);
}

.s-bg-white-muted {
  background: linear-gradient(180deg, #fff, #F8F8F8);
}

.uk-border-rounded {
  border-radius: var(--border-radius);
}

.uk-card-default,
.uk-slideshow {
  box-shadow: var(--shadow); 
  border-radius: var(--border-radius);
  overflow: hidden;
}

.uk-box-shadow-medium {
  box-shadow: var(--shadow); 
}

.uk-card-default:hover {
  box-shadow: var(--h-shadow);
}

.uk-slider-container {
  overflow: visible;
}

body.p-home .tm-header .uk-navbar-right {
  margin-right: auto;
}


@media(max-width: 640px) {
  .uk-text-lead {
    font-size: 1rem;
  }
  .c-button-1-1 .uk-child-width-auto>*,
  .c-button-1-1 .uk-button {
    width: 100%;
  }
}

@media(min-width:960px){
  .uk-section {
    padding-top: 70px;
    padding-bottom: 90px;
  }
  .s-top .uk-section {
    padding-top: 100px;
  }
}


/* PROMO */
@media(max-width: 640px) {
  .s-promo>.uk-section {
    background-position: -40px;
  }

}

/* MENUBAR */
.m-shipment-menu {
  padding: 40px 20px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
  overflow-x: scroll;
  user-select: none;
  margin-right:20px;
}

.m-shipment-menu .uk-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
}

.m-shipment-menu .uk-nav>li>a {
  white-space: nowrap;
}


@media(max-width:1200px) {
  .m-shipment-menu .uk-nav {
    gap: 15px;
  }
  .m-shipment-menu {
    overflow-x: scroll;
    margin: 0 15px;
    padding: 15px 0;
  }
  .m-shipment-menu .uk-nav>li>a {
    font-size: 1rem;
  }
  .m-shipment-menu .uk-nav {
  justify-content: flex-start;
  }
}

.m-shipment-menu::-webkit-scrollbar-thumb {
  background: var(--primary);
}

/* width */
.m-shipment-menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
.m-shipment-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Handle */
.m-shipment-menu::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* Handle on hover */
.m-shipment-menu::-webkit-scrollbar-thumb:hover {
  background: var(--h-primary);
}

@media(min-width:1600px) {
  .m-shipment-menu .uk-nav {
 justify-content: center;
}


/* news */
.s-news>.uk-section {
  background-position: calc(50% - 600px) -500px;
}

/* ABOUT */
@media(max-width: 960px){
  .s-about>.uk-section {
    background-position-x: 75%;
  }
}