@font-face {
  font-family: 'Aeroport';
  src: url('../fonts/Aeroport.woff2') format('woff2'),
       url('../fonts/Aeroport.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Aeroport';
  src: url('../fonts/Aeroport Italic.woff2') format('woff2'),
       url('../fonts/Aeroport Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Aeroport';
  src: url('../fonts/Aeroport Light.woff2') format('woff2'),
       url('../fonts/Aeroport Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Aeroport';
  src: url('../fonts/Aeroport Light Italic.woff2') format('woff2'),
       url('../fonts/Aeroport Light Italic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Aeroport';
  src: url('../fonts/Aeroport Medium.woff2') format('woff2'),
       url('../fonts/Aeroport Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Aeroport';
  src: url('../fonts/Aeroport Bold.woff2') format('woff2'),
       url('../fonts/Aeroport Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Aeroport';
  src: url('../fonts/Aeroport Bold Italic.woff2') format('woff2'),
       url('../fonts/Aeroport Bold Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

html, body {
    font-family: 'Aeroport', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

p{
    font-family: 'Aeroport', sans-serif;
    font-size: 20px;
    font-weight: 400;
}    



.white{
    color:#ffffff;
}
.black{
    color:#000000;
}
.dark{
    color:#414042;
}
.red{
    color: #b4172b;
}
.gold-bg{
    color:#bc8b2c;
}
.gold{
    color:#bc8b2c;
}
.blue{
    color:#0e2b63;
}
.white-bg{
    background-color:#ffffff;
}
.blue-bg{
    background-color:#0e2b63;
}
.green-bg{
    background-color: #4ab957;
}
.yellow-bg{
background-color: #fbeec3;
}
.header-title, .title {
    font-family: 'Aeroport', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1em;
}

.header-subtitle {
    font-family: 'Aeroport', sans-serif;
    font-size: 26px;
    line-height: 1.1em;
}


.body-text{
    font-size: 17px;
    line-height: 1.4em;
}


/*  end */


.logo{
    height: 60px;
}




.menu-button{
    border: 1px solid #000000;
    border-radius: 3px 3px;
    font-family: "Calibri", Sans-serif;
    font-size: 20px;
    font-weight: 700;
}
.menu-button:hover{
    background-color: #008144;
    color:#ffffff;
    border: 1px solid #008144;
}

.title-line{ position: relative; }

.title-line::before{
   content: "";
   position: absolute;
   left: -44px;
   top: 2px;
   transform: translateY(14px);
   height: 7px;
   width: 36px;
   display: block;
   background-image: linear-gradient(#da1f3c, #da1f3c), linear-gradient(#008144, #008144);
   background-size: 50% 100%, 50% 100%;
   background-position: left top, right top;
   background-repeat: no-repeat;
}

.subtitle{
  font-family: 'Aeroport', sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.subtitle2{
    font-family: 'Aeroport', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25em;
    color: #414042;
}

/* Desktop only */
@media (min-width: 1025px) and (max-width: 99999px){


}


/* Tablet only */
@media (min-width: 768px) and (max-width: 1024px){
    .logo{
        height: 50px;   
    }

    h1{
      font-size: 34px;
      line-height: 1.1em;
    }

    .header-title, .title {
        font-size: 34px;
    }


    .subtitle{
      font-size: 28px;
    }

    .subtitle2{
        font-size: 20px;
    }

    p{
        font-size: 18px;
    }    
}

/* Mobile only */
@media (min-width: 0px) and (max-width: 767px){
    .logo{
        height: 40px;
    }

    h1{
        font-size: 25px;
        line-height: 1.1em;
    }

    .header-title, .title {
        font-size: 25px;
    }


    .subtitle{
      font-size: 24px;
    }

    .subtitle2{
        font-size: 16px;
    }

    p{
        font-size: 17px;
    }    
}




/*back to top */

.ez-btt{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;

  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  background: #022a68;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.ez-btt.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ez-btt:hover{
  background: #b4172bCC;
}

.ez-btt svg{
  width: 26px;
  height: 26px;
  fill: #fff;
}

.ez-btt img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


footer {
   
}
footer p{ margin: 0px 0px; padding-bottom:20px; font-size:14px; }

@media (max-width: 1025px) {

footer p{ line-height: 1em; font-size:13px;}
footer {   }
   
}

@media (max-width: 767px) { 

footer p{ line-height: 1em; font-size:12px;}
footer {    }

}
