:root {
    --blue-1: #1F7AC1;
    --blue-2: #5FAAE5;
    --blue-3: #042C4B;
    --blue-4: #178CD9;
    --blue-5: #16578B;
    --grey-1: #f2f2f2;
    --grey-2: #DEDEDE;
    --grey-3: #AAAAAA;
    --orange-1: #DBB95E;
    --color-adv: #D8B33B;
    --body-article-size: 20px;
}

/* FONTELLO */
@font-face {
    font-family: 'fontello';
    src: url('../fonts/fontello.eot?84849089');
    src: url('../fonts/fontello.eot?84849089#iefix') format('embedded-opentype'),
         url('../fonts/fontello.woff2?84849089') format('woff2'),
         url('../fonts/fontello.woff?84849089') format('woff'),
         url('../fonts/fontello.ttf?84849089') format('truetype'),
         url('../fonts/fontello.svg?84849089#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
  }
  /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
  /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
  /*
  @media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
      font-family: 'fontello';
      src: url('../font/fontello.svg?84849089#fontello') format('svg');
    }
  }
  */
   
   [class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
   
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
   
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
   
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
   
    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;
   
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
   
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
   
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  }
   
  .icon-twitter:before { content: '\f099'; } /* '' */
  .icon-facebook:before { content: '\f09a'; } /* '' */
  .icon-linkedin:before { content: '\f0e1'; } /* '' */
  .icon-youtube-play:before { content: '\f16a'; } /* '' */
  .icon-instagram:before { content: '\f16d'; } /* '' */

/* FONTELLO */

/* PADDING */
.pb-0, .py-0 {
    padding-bottom: 0!important;
}
.pt-0, .py-0 {
    padding-top: 0!important;
}
.pb-10, .py-10 {
    padding-bottom: 10px!important;
}
.pt-10, .py-10 {
    padding-top: 10px!important;
}

/* FONTS */
body,
.ff-primary {
    font-family: 'Inter', sans-serif;
}
.ff-secondary {
    font-family: 'Meta Serif Pro', serif;
}
.ff-third {
    font-family: 'PT Serif', serif;
}
.ff-fourth {
    font-family: 'PT Sans', sans-serif;
}
.fs-12 {
    font-size: 12px!important;
}
.fs-14 {
    font-size: 14px!important;
}
.fs-16 {
    font-size: 16px!important;
}
/* FONTS */

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

.position-relative {
    position: relative;
}

.btn-primary-outline {
    font-family: 'Inter';
    color: var(--blue-1,#1F7AC1);
    background-color: #fff;
    border-color: var(--blue-1,#1F7AC1);
}
.btn-primary-outline:hover {
    color: var(--blue-1,#1F7AC1);
    background-color: #eee;
    border-color: var(--blue-1,#1F7AC1);
}
.btn-primary--2 {
    color: #fff;
    background-color: var(--blue-4);
    border-color: var(--blue-4);
}
.btn-default--dark {
    color: #333;
    border-color: #333;
}
.btn-bold {
    font-weight: bold;
    border-width: 2px;
}

.bordered {
    border: 1px solid var(--grey-2,#DEDEDE);
}
.border-bottom {
    border-bottom: 1px solid var(--grey-2,#DEDEDE);
}
.rounded-top {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.rounded-left {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.no-border {
    border: none;
}
.bl-0 {
    border-left: 0;
}
.br-radius-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.bl-radius-0 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.rounded {
    border-radius: 5px!important;
}
.circle {
    border-radius: 50%;
}

.mt-20, .my-20 {
    margin-top: 20px!important;
}
.mb-20, .my-20 {
    margin-bottom: 20px!important;
}

.nowrap {
    white-space: nowrap;
}

.text-gray {
    color: #aaa;
}
.text-red {
    color: #FF0000;
}
.tdn,
.text-decoration-none {
    text-decoration: none!important;
}

.h-100 {
    height: 100%;
}

.flex-75 {
    flex: 0 0 75px;
}
.flex-100 {
    flex: 0 0 100px;
}
.flex-120 {
    flex: 0 0 120px;
}
.flex-140 {
    flex: 0 0 140px;
}