/* text colors */
.text-primary {
  color: #2972b9;
}

.text-secondary {
  color: #0284d0;
}

.btn{
  cursor: pointer;
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
  background-color: #333;
  border: none;
  border-radius: 10px;
  opacity: 0.7;
}

.btn:hover{
  background-color: #a3e3e4;
  color: #333;
}

.btn-primary{
  background: #a3e3e4;
  color: #fff;
}
.btn-secondary{
  background: #2a9c9e;
  color: #fff;
}
.btn-dark{
  background: #333;
  color: #fff;
}
.btn-light {
  background: #f4f4f4;
  color: #333;
}

/* backgrounds */
.bg-primary{
  background: #a3e3e4;
  color: #333;
}
.bg-secondary{
  background: #2a9c9e;
  color: #fff;
}
.bg-dark{
  background: #333;
  color: #fff
}
.bg-light {
  background: #f4f4f4;
  color: #333;
}

.bg-white{
  background: #fff;
  color: #2a9c9e;
}


/*container */
.container {
  margin: auto;
  max-width: 1300px;
  overflow: auto;
  padding: 0 20px;
}


/* flex items */
.flex-columns.flex-reverse .row {
flex-direction: row-reverse;
}

.flex-items {
  display: flex;
  text-align: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
  
}
/* direct div child */
.flex-items > div {
  padding: 20px; 
  min-width: 25vw;
}

/* flex-column */
.flex-columns .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.flex-columns .column {
  display: flex;
  flex-direction: column;
  flex-basis: 100;
  flex: 1;
  height: 60vh;
}

/* za kontakt */
.contact .flex-columns .column{
  display: flex;
  flex-direction: column;
  flex-basis: 100;
  flex: 1;
  height: 70vh;
}

/* za proizvode */
.proizvodi.flex-columns img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proizvodi.flex-columns{
  padding: 10px 50px;
}

.proizvodi .column-1 {
  flex-basis: 30%;
}

.flex-columns .column .column-1,
.flex-columns .column .column-2 {
  height: 100%;
}

.flex-columns img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flex-columns .column-2{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
}

.flex-columns h2{
  font-size: 40px;
  font-weight: 100;
}

.flex-columns h4{
  margin-bottom: 10px;
}

.flex-columns p {
  margin: 20px 0px;
}

/* section header */
.section-header{
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-header h2{
  font-size: 40px;
  margin: 20px 0px;
}

.section-padding{
  padding: 20px 20px 40px;
}

/* flex grid */
.flex-grid .row {
  display: flex;
  flex-wrap: wrap;
  padding: 0px 4px;
}

.flex-grid .column {
  flex: 20%;
  max-width: 20%;
  padding: 0px 4px;
}


#contact, #proizvodi, #about {
background: #fff;
}