@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,300');

:root {
  --main: #e32a8d;
  --offset: #5c58a3;
  --background-image: url('/images/bg.jpg');
}



body {
  padding-top: 70px;
  background-image: var(--background-image);
  font-family: 'Roboto Condensed', sans-serif;
  height: 100%;
  background-position: center;
  background-repeat: repeat-y;
  background-size: cover;
}
.navbar {
  background-color: var(--main);
  padding: 1em 2em;
}

.navbar a {
  color: white !important;
  text-align: right;
}
a.nav-link {
  margin: 0 1em 0 0;
  letter-spacing: 1px;
  padding: 0.5em 1em !important;
}
.nav-item > a.active,
.nav-item > a:hover 
{
  background-color: white;
  transition: 0.2s;
  transition-timing-function: ease-in-out;
  
}

.nav-item > a.active,
.nav-item > a:hover{
  color: var(--main) !important;
}

.logo-holder {
  margin-bottom: 0.5em;
}

.tagline {
  color: black;
  font-size: 2em
}

.navbar-nav li {
  color: white;
}

footer {
    max-height: 60px;
    background-color: var(--main);
}

.index-text-holder {
  background-color: rgba(255, 255, 255, 0.2);
  text-align: justify;
  font-size: 18px;
}

.title {
  color: var(--main);
  margin-bottom: 3em;
  text-align: center;
}

.title h3 {
  font-size: 4.5em;
}

.new-product-item {
  margin-bottom: 2em;
}

img.lazy {
  width: 200px;
  height:200px;
  padding:10px 10px 10px 10px;
  background-image: url('/images/loading.gif');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin:10px 10px 10px 10px;
}

.product-list {
  margin-top: 2em;
}
.product-list > * > tr > * {
  font-size: 1.4em !important;
}

.product-list > * > tr > * > a {
  color: var(--main);
  display: block;
  width: 100%;
  height: 100%;
  font-weight: 600;
}
.product-list > * > tr > * > a:hover {
  text-decoration: none;
}

.product-list-items > * > tr:nth-child(odd) > td {
  background-color: var(--main);
  font-weight: 600;
  color: white;
}

.product-list-items > * > tr:nth-child(even) > td {
  font-weight: 600;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
 }
 
 .carousel-control-next-icon {
   background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
 }

 .carousel-indicators li {
   background-color: black;
 }

 .jumbotron p {
  color: black;
  font-weight: 400;
}

 .text-info {
   font-size: 1.2rem;
 }

.services {
  padding: 2em 0;
}

.service-item {
  width: 100%;
  height: 200px;
  margin: 0 10px;
  margin-bottom: 10px;
  text-align: center;
  border: 5px solid var(--main);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  background: black;
}

.service-item:hover {
  border-color: var(--offset);
}

.service-item .icon-holder {
  position: relative;
  top: 30px;
  display: inline-block;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100%;
  color: #fff;
  font-size: 3em;
}

.service-item .description {
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -ms-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0); 
  transform: scale(0);
  color: #9e9e9e;
}

.service-item:hover .description {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1); 
  transform: scale(1);
}

.service-item:hover .icon-holder {
  top: 20px;
}

.service-item .name {
  position: relative;
  top: 10px;
  margin-top: 10px;
  -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -ms-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: var(--main);
  font-size: 1.4em;
  opacity: 1;
}

.service-item:hover .name {
  margin-top: 0px;
  top: -10px;
}

a.service-item {
  text-decoration: none;
}

.input-group {
  margin-bottom: 20px;
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
  display: table-cell;
  border-collapse: separate;
}

.input-group>.form-control{
  width: 100%;
}

.in-gp-tb {
  padding-right: 0;
  float: left;
}

form {
  margin-bottom: 2em;
}

.gallery-category-options {
  list-style-type: none;
}
.gallery-category-options > li {
  margin-bottom: 1em;
}

#map-container {
  overflow:hidden;
  padding-bottom:56.25%;
  position:relative;
  height:0;
  margin-bottom: 3em;
}

#map {
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
}

#numDistri {
  font-weight: 600 !important;
  color: black !important;
}