.list-reset {
  list-style: none;
  padding: 0;
}

//Text aligns
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}


//Rounded images
.entry-media{
  text-align: center;
}
.entry-media img{
  object-fit: cover;
  width: 100%;
}
.entry-media-rounded img,
.toucan-rounded {
  border-radius: 50%;
}

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

// Widths

.w-100 {
  width: 100% !important;
}


// Heights
.h-100 {
  height: 100%;
}

.h-50 {
  height: 50%;
}

.h-gutter {
  height: 50px;
}

.h-auto {
  height: auto;
}

// Overflow

.overflow-hidden {
  overflow: hidden;
}

.overflow-reset {
  overflow: initial;
}

// Opacity 

.opacity-03 {
  opacity: 0.3;
}

.opacity-05 {
  opacity: 0.5;
}

.opacity-08 {
  opacity: 0.8;
}


// Border radiuses 

.border-radius-4{
  img{
      border-radius: 4px;
  }
  .entry-image:after,
  &:after{
      border-radius: 4px;
  }
}
.border-radius-5{
  img{
      border-radius: 5px;
  }
  .entry-image:after{
      border-radius: 5px;
  }
}

// Separators 

.separator-1{
  opacity: 0.1;
  height: 1px;
  width: 100%;
  display: block;
}
.separator-small{
  display: block;
  background-color:#414141;
  opacity: .25;

  width:30px;
  height:1px;  
  margin-bottom: 20px;  
  @include mq('md') {
    margin-bottom: 30px;  
  }
  @include mq('lg') {
    margin-bottom: 40px;  
  }
}