@font-face {
    font-family: 'Franklin Gothic Demi';
    src: url('./../Fonts/framdit.woff2') format('woff2');

}

@font-face {
    font-family: 'AdobeStdR';
    src: url('./../Fonts/AdobeStdR.woff2') format('woff2');

}

*{
  padding: 0;
  margin: 0;
  font-family: 'Franklin Gothic Demi';

}
a{
  text-decoration: none;
}
.g-with-1280{
  max-width:1280px;
  width: 100%;
}

.g-flex{
  display: flex;
}
.g-flex-row{
  flex-direction: row;
}
.g-flex-column{
  flex-direction: column;
}
.g-flex-between{
  justify-content: space-between;
}
.g-flex-around{
  justify-content: space-around;
}
.g-flex-v-center{
  align-items: center;
}
.g-flex-end{
  justify-content: flex-end;
}
.g-flex-v-end{
  align-items: flex-end;
}
.g-flex-1{
  flex: 1;
}
.g-flex-2{
  flex: 2;
}
.g-flex-3{
  flex: 3;
}
.g-flex-center{
  justify-content: center;
}
.g-flex-wrap{
  flex-wrap: wrap;
}
.g-flex-r-reverse{
  flex-direction: row-reverse;
}

.ellipsis-2-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.g-relative{
  position:relative;
}

.g-absolute{
  position: absolute;
}
