@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
  font-size: 100%;
}
body {
  font-family: "Barlow", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #282828;
  line-height: 22px;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

/* clear */
.clear:before,
.clear:after {
  content: " ";
  display: table;
}
.clear:after {
  clear: both;
}

.clear {
  *zoom: 1;
  clear: both;
}

img {
  max-width: 100%;
}

a {
  color: #0177d7;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: 0;
  text-decoration: none;
}

a:hover,
a:active {
  outline: 0;
}

input:focus,
textarea:focus,
button:focus {
  outline: 0;
  border: 0;
}

.text-blue {
  color: #0177d7;
}

/*------------------------------------*\
            HEADER & FOOTER
\*------------------------------------*/
.container {
  max-width: 1560px;
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.footer {
  background: #000000;
  color: #ffffff;
}

/*------------------------------------*\
            PAGE
\*------------------------------------*/

.banner {
  background-image: url(../img/banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.locations {
  margin-top: -80px;
}

.location-item {
  background: #f1f4f4;
  border: 1px solid #a3a3a3;
  border-radius: 3px;
  clip-path: polygon(79% 0, 84% 8%, 100% 8%, 100% 100%, 0 100%, 0 0);
}

.location-map {
  width: 100%;
  height: 425px;
  object-fit: cover;
}

/*------------------------------------*\
                RESPONSIVE
\*------------------------------------*/

@media (min-width: 992px) {
  .fs-19 {
    font-size: 19px;
    line-height: 25px;
  }
  .fs-20 {
    font-size: 20px;
    line-height: 26px;
  }
  .fs-22 {
    font-size: 22px;
    line-height: 26px;
  }
  .fs-25 {
    font-size: 25px;
    line-height: 30px;
  }
  .fs-28 {
    font-size: 28px;
    line-height: 32px;
  }
  .fs-30 {
    font-size: 30px;
    line-height: 36px;
  }
  .banner h1 {
    font-size: 75px;
    line-height: 85px;
  }

  .banner h2 {
    font-size: 40px;
    line-height: 46px;
  }
}

@media (max-width: 991px) {
    .header-info img{
        height: 15px;
    }
    .header-info span{
        font-weight: 700;
        font-size: 12px;
    }
    .header-info a{
        font-weight: medium;
    }
    .banner {
        background-size: 219%;
        background-position: center;
        
    }

    .banner h1 {
        font-size: 25px;
        line-height: 30px;
    }
    
    .banner h2 {
        font-size: 16px;
        line-height: 20px;
    }

    .fs-30{
        font-size: 17px;
        line-height: 22px;
    }

    .fs-19{
        font-size: 10px;
        line-height: 14px;
    }

    .location-map{
        height: 300px;
    }

    .footer-logo img{
        max-width: 150px;
    }
}