/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box; }

video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

@media (min-width: 320px) {
  /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */ }
@media (min-width: 480px) {
  /* smartphones, Android phones, landscape iPhone */ }
@media (min-width: 600px) {
  /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ }
@media (min-width: 801px) {
  /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media (min-width: 1025px) {
  /* big landscape tablets, laptops, and desktops */ }
@media (min-width: 1281px) {
  /* hi-res laptops and desktops */ }
/*=====================================
================MAIN MENU==============
========================================*/
/*========================
=========icon burger======
==========================*/
.menu-btn {
  position: absolute;
  z-index: 1;
  right: 1rem;
  top: 1rem;
  height: 20px;
  width: 28px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  z-index: 10; }
  .menu-btn__burger {
    position: absolute;
    right: 0;
    top: 0.5rem;
    width: 28px;
    height: 3px;
    background: #000;
    transition: all 0.5s ease-in-out; }
    .menu-btn__burger::before {
      content: '';
      position: absolute;
      top: -8px;
      width: 28px;
      height: 3px;
      background: #000;
      transition: all 0.5s ease-in-out; }
    .menu-btn__burger::after {
      content: '';
      position: absolute;
      top: 8px;
      width: 20px;
      height: 3px;
      background: #000;
      transition: all 0.5s ease-in-out; }
    .menu-btn__burger.open {
      transform: rotate(720deg);
      background: transparent; }
      .menu-btn__burger.open::before {
        transform: rotate(45deg) translate(5px, 8px); }
      .menu-btn__burger.open::after {
        width: 28px;
        transform: rotate(-45deg) translate(3px, -7px); }

/*=========================
  =========main nav========
  =========================*/
header {
  background-color: #FFF;
  height: 56px;
  position: fixed;
  z-index: 2;
  width: 100%; }

.nav {
  width: 100vw;
  visibility: hidden;
  opacity: 0.97;
  z-index: 5; }
  .nav.open {
    visibility: visible; }
  .nav .menu-nav {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    background: #66747d;
    list-style-type: none;
    padding-right: 1rem;
    transform: translateY(-100%);
    transition: all 0.5s ease-in-out; }
    .nav .menu-nav.open {
      transform: translateY(0); }
    .nav .menu-nav__item {
      transform: translateX(100vw);
      transition: all 0.5s ease-in-out; }
      .nav .menu-nav__item.open {
        transform: translateX(0); }
      .nav .menu-nav__item.active > a {
        color: #2ba27c; }
    .nav .menu-nav__link {
      display: inline-block;
      font-size: 1.6rem;
      text-transform: uppercase;
      padding: 1.2rem 0;
      font-weight: 300;
      transition: all 0.5s ease-in-out; }
      .nav .menu-nav__link:hover {
        background-color: #000;
        color: #FFF; }

.menu-nav__item:nth-child(1) {
  transition-delay: 0.25s; }

.menu-nav__item:nth-child(2) {
  transition-delay: 0.35s; }

.menu-nav__item:nth-child(3) {
  transition-delay: 0.45s; }

.menu-nav__item:nth-child(4) {
  transition-delay: 0.55s; }

.menu-nav__item:nth-child(5) {
  transition-delay: 0.65s; }

.menu-nav__item:nth-child(6) {
  transition-delay: 0.75s; }

@media screen and (min-width: 768px) {
  .menu-btn {
    visibility: hidden; }

  header {
    background-color: #FFF;
    height: 56; }
    header .nav {
      display: flex;
      visibility: visible;
      margin-left: 50px; }
      header .nav .menu-nav {
        display: block;
        transform: translateY(0);
        height: 100%;
        text-align: left;
        background-color: rgba(255, 255, 255, 0); }
        header .nav .menu-nav__item {
          display: inline;
          padding-right: 1.5rem; }
        header .nav .menu-nav__link {
          font-size: 1.1rem; } }
/*======================================
==================BANNER================
========================================*/
.banner-home {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 450px;
  grid-column-gap: 0;
  grid-row-gap: 0;
  align-content: center;
  justify-content: center; }

.banner-image {
  grid-area: 1 / 1 / 2 / 2; }
  .banner-image img {
    display: grid;
    min-width: 350px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden; }

.banner-overlay {
  grid-area: 1 / 1 / 2 / 2;
  display: grid;
  max-width: 100%;
  background-color: #000;
  background: linear-gradient(60deg, rgba(0, 0, 0, 0.7777485994) 30%, rgba(255, 255, 255, 0) 100%); }

.banner-hero-text {
  grid-area: 1 / 1 / 2 / 2;
  display: grid;
  align-items: center;
  margin-left: 50px;
  margin-right: 15px; }
  .banner-hero-text .text-h1 {
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    font-family: 'Jura', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFF;
    margin-top: 20px; }
  .banner-hero-text .text-body {
    font-size: 1.4rem;
    color: #FFF;
    text-decoration: none;
    margin: 1rem 0 2rem; }

.banner-pages {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 400px;
  grid-column-gap: 0;
  grid-row-gap: 0;
  align-content: center;
  justify-content: center; }

@media screen and (min-width: 768px) {
  .text-h1 {
    font-size: 1.8rem; }

  .text-body {
    font-size: 1.2rem; } }
.maintenance-banner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 370px;
  grid-column-gap: 0;
  grid-row-gap: 0;
  align-content: center;
  justify-content: center;
  background: url("../images/banners/maintenance-banner.jpg") no-repeat center bottom;
  background-attachment: fixed;
  background-size: cover;
  width: 100vw; }
  .maintenance-banner .overlay {
    grid-area: 1 / 1 / 2 / 2;
    display: grid;
    max-width: 100%;
    background-color: rgba(1, 1, 1, 0.49); }
  .maintenance-banner .item {
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    margin: auto;
    line-height: 40px;
    width: 80%;
    text-transform: uppercase; }
    .maintenance-banner .item h4 {
      font-size: calc(1rem + 1vw);
      letter-spacing: 0.05em;
      font-family: 'Jura', sans-serif;
      letter-spacing: 4px;
      color: #FFF;
      text-align: center; }
    .maintenance-banner .item p {
      margin-left: 1em;
      color: #FFF; }

.banner-body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 370px;
  grid-column-gap: 0;
  grid-row-gap: 0;
  align-content: center;
  justify-content: center;
  background: url("../images/banners/banner-body.jpg") no-repeat center bottom;
  background-attachment: fixed;
  background-size: cover;
  width: 100vw; }
  .banner-body .overlay {
    grid-area: 1 / 1 / 2 / 2;
    display: grid;
    max-width: 100%;
    background-color: rgba(1, 1, 1, 0.49); }
  .banner-body .item {
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    margin: auto;
    line-height: 40px;
    width: 80%;
    text-transform: uppercase; }
    .banner-body .item h4 {
      font-size: calc(1rem + 1vw);
      letter-spacing: 0.05em;
      font-family: 'Jura', sans-serif;
      letter-spacing: 4px;
      color: #FFF;
      text-align: center; }
    .banner-body .item p {
      color: #FFF; }

/*======================================
================PARTS MENU==============
========================================*/
nav.bottom {
  width: 100%;
  height: 100%;
  height: 60px;
  background: #122936;
  z-index: 1; }

nav.bottom .navbar {
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 50px; }

nav.bottom .navbar .nav-links {
  line-height: 60px;
  height: 100%; }

nav.bottom .navbar .links {
  display: flex; }

nav.bottom .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px; }

nav.bottom .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500; }

/*========================
=======up down arrow======
==========================*/
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg); }

nav.bottom .navbar .links li .arrow {
  height: 100%;
  width: 32px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease; }

/*========================
========dropdowns=========
==========================*/
nav.bottom .navbar .links li .sub-menu {
  position: absolute;
  top: 60px;
  left: 0;
  line-height: 40px;
  background: #3E8DA8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 2; }

nav.bottom .navbar .links li:hover .htmlCss-sub-menu,
nav.bottom .navbar .links li:hover .js-sub-menu {
  display: block; }

.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.navbar .links li .sub-menu a {
  color: #fff;
  font-size: .9rem;
  font-weight: 500; }

.navbar .links li .sub-menu .more-arrow {
  line-height: 40px; }

.navbar .links li .htmlCss-more-sub-menu {
  /* line-height: 40px; */ }

.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none; }

.links li .sub-menu .more:hover .more-sub-menu {
  display: block; }

/*========================
========search box========
==========================*/
.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px; }

.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease; }

.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 60px;
  opacity: 0;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  pointer-events: none;
  transition: all 0.4s ease; }

.navbar.showInput .search-box .input-box {
  top: 60px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8; }

.search-box .input-box::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg); }

.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 1.2rem;
  border: none; }

.navbar .bx-menu {
  display: none; }

@media screen and (max-width: 480px) {
  nav.bottom .navbar .links li a {
    font-size: 1.2rem; }

  .navbar .search-box .input-box {
    top: 70px;
    height: 50px;
    width: 250px; }

  .search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 235px;
    padding: 0 10px;
    font-size: 1rem; } }
/*======================================
===================PAGES================
========================================*/
.home2 .grid img {
  width: 40%; }
.home2 .grid h3 {
  margin-top: 1em; }
.home2 .grid p {
  margin-bottom: 1em; }

.home4 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 370px;
  grid-column-gap: 0;
  grid-row-gap: 0;
  align-content: center;
  justify-content: center;
  background: url("../images/banners/temp/home-banner.jpg") no-repeat center bottom;
  background-attachment: fixed;
  background-size: cover;
  width: 100vw; }
  .home4 .overlay {
    grid-area: 1 / 1 / 2 / 2;
    display: grid;
    max-width: 100%;
    background-color: rgba(1, 1, 1, 0.49); }
  .home4 .item {
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    margin: auto;
    line-height: 40px;
    width: 80%;
    text-transform: uppercase; }
    .home4 .item h4 {
      font-size: calc(1rem + 1vw);
      letter-spacing: 0.05em;
      font-family: 'Jura', sans-serif;
      letter-spacing: 4px;
      color: #FFF;
      text-align: center; }

.home6 ul {
  line-height: 35px; }
  .home6 ul li {
    font-size: 1.2rem; }
    .home6 ul li span {
      padding-right: 10px; }

@media screen and (max-width: 768px) {
  .home2 .grid:nth-child(2) {
    margin-top: 2em;
    margin-bottom: 2em; }

  .home5 .grid:nth-child(2) {
    margin-top: 2em;
    margin-bottom: 2em; }

  .home6 .grid:nth-child(2) {
    margin-top: 2em; } }
/*-----------about----------*/
.about3 {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 0 3em;
  text-align: center; }
  .about3 h3 {
    padding-bottom: 0 !important;
    margin: 0; }

/*-----------service----------*/
.service1 .text {
  padding: 0 15px; }
.service1 .grid1 {
  grid-area: 1 / 2 / 2 / 3; }
.service1 .grid2 {
  grid-area: 1 / 1 / 2 / 2; }

@media screen and (max-width: 768px) {
  .service1 {
    margin-top: 5em; }
    .service1 h2 {
      padding-top: 1em; } }
/*-----------vehicle----------*/
@media screen and (min-width: 768px) {
  .vehicle1 {
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-template-rows: repeat(7, 1fr);
    grid-column-gap: 6em;
    grid-row-gap: 4em; } }
/*------------CONTACT-----------*/
.contact-textarea input[type="text"] {
  width: 90%;
  color: #999;
  outline: none;
  font-size: 16px;
  padding: 20px 16px;
  border: none;
  margin-bottom: 1em;
  -webkit-appearance: none;
  background: none;
  border: 1px solid #c8c8c8;
  border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  -o-border-radius: 0.5em;
  -ms-border-radius: 0.5em; }

.contact-textarea textarea {
  resize: none;
  width: 100%;
  color: #999;
  font-size: 16px;
  outline: none;
  padding: 20px 16px;
  border: none;
  min-height: 12em;
  -webkit-appearance: none;
  background: none;
  border: 1px solid #c8c8c8;
  border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  -o-border-radius: 0.5em;
  -ms-border-radius: 0.5em; }

.contact-textarea input[type="submit"] {
  border: none;
  outline: none;
  color: #fff;
  background-color: #2ba27c;
  width: 50%;
  padding: 16px 0px;
  font-size: 18px;
  margin: 10px 8px 0px 0px;
  -webkit-appearance: none;
  border-radius: 0.3em;
  -webkit-border-radius: 0.3em;
  -moz-border-radius: 0.3em;
  -o-border-radius: 0.3em;
  -ms-border-radius: 0.3em; }

.contact-textarea input[type="submit"]:hover {
  background: #008000;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all; }

.contact-textarea input[type="reset"] {
  border: none;
  outline: none;
  color: #fff;
  background: gray;
  width: 47%;
  padding: 16px 0px;
  font-size: 18px;
  margin: 10px 0px 0px 0px;
  -webkit-appearance: none;
  border-radius: 0.3em;
  -webkit-border-radius: 0.3em;
  -moz-border-radius: 0.3em;
  -o-border-radius: 0.3em;
  -ms-border-radius: 0.3em;
  cursor: pointer; }

.contact-textarea input[type="reset"]:hover {
  background: #CCC;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all; }

/*-----------parts----------*/
.parts-grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 0 3em; }
  .parts-grid aside .parts-image {
    width: 100%; }
    .parts-grid aside .parts-image img {
      width: 100%; }
  .parts-grid aside .parts-text {
    text-align: center;
    line-height: 30px; }

/* Pagination */
.pagination {
  width: 40%;
  margin: 1em auto; }

.pagination span {
  display: inline-block; }

.pagination a {
  display: inline-block;
  text-decoration: none;
  color: #555555;
  padding: 10px; }

.pagination span.selected {
  font-weight: bold;
  color: #FFF;
  background-color: #FF0000;
  padding: 3px 10px; }

@media screen and (max-width: 825px) {
  div.parts_grid_4 {
    width: 33.3333333%; } }
@media screen and (max-width: 760px) {
  .pagination {
    width: 60%; } }
@media screen and (max-width: 625px) {
  div.parts_grid_4 {
    width: 60%; }

  .pagination {
    width: auto; } }
@media screen and (max-width: 425px) {
  div.parts_grid_4 {
    width: 100%;
    float: none; } }
aside.prod-grid-2 {
  width: 50%;
  float: left; }

.prod-gallery {
  display: flex;
  flex-flow: column wrap;
  height: 500px;
  width: 95%; }

.prod-gallery section {
  display: none;
  margin-left: 20px;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0; }

.prod-gallery section img {
  height: auto;
  width: 82%; }

.prod-gallery input {
  display: none; }

.prod-gallery label {
  opacity: 0.5;
  width: 20%; }

.prod-gallery label:hover {
  cursor: pointer;
  opacity: 1; }

.prod-gallery label img {
  height: auto;
  width: 100%; }

.prod-gallery input:checked + label {
  opacity: 1; }

.prod-gallery #tab1:checked ~ #content1, .prod-gallery #tab2:checked ~ #content2,
.prod-gallery #tab3:checked ~ #content3,
.prod-gallery #tab4:checked ~ #content4 {
  display: block; }

.prod-text {
  padding-left: 40px;
  text-align: left; }

.prod-text h2 {
  text-align: left;
  padding-bottom: 20px; }

.prod-text p {
  font-size: 1em;
  padding-bottom: 15px; }

.prod-text .prod-price h4 {
  font-weight: bold; }

.prod-text .button {
  margin: 30px 0; }

@media screen and (max-width: 760px) {
  aside.prod-grid-2 {
    width: 90%;
    float: none;
    margin: 0 auto; }

  .prod-gallery {
    height: 600px; }

  .prod-text {
    padding-left: 0px; } }
@media screen and (max-width: 625px) {
  .prod-gallery {
    height: 440px; } }
.rating {
  margin: 20px 0; }

.rating {
  line-height: 18px;
  display: inline-block; }

.starRating:not(old) {
  display: inline-block;
  height: 18px;
  width: 100px;
  overflow: hidden; }

.starRating:not(old) > input {
  margin-right: -100%;
  opacity: 0; }

.starRating:not(old) > label {
  float: right;
  background: url("../images/icons/star.png");
  background-size: contain;
  margin-right: 2px; }

.starRating:not(old) > label:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: url("../images/icons/star1.png");
  background-size: contain;
  opacity: 0;
  transition: opacity 0.2s linear; }

.starRating:not(old) > label:hover:before, .starRating:not(old) > label:hover ~ label:before, .starRating:not(:hover) > :checked ~ label:before {
  opacity: 1; }

.single-top-right i.fa {
  margin-right: 5px; }

ul.social-icons li {
  display: inline-block;
  margin: 0 5px; }

.social ul.social-icons li a {
  font-size: 30px;
  color: #000; }

ul.social-icons li a.facebook:hover {
  color: #3b5998; }

ul.social-icons li a.twitter:hover {
  color: #1dcaff; }

ul.social-icons li a.googleplus:hover {
  color: #d34836; }

ul.social-icons li a.instagram:hover {
  color: #517fa4; }

ul.social-icons li a.youtube:hover {
  color: #bb0000; }

/* Style the tab */
.tab {
  overflow: hidden;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  background-color: #ccc; }

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px; }

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ccc; }

/* Create an active/current tablink class */
.tab button.active {
  background-color: #fff; }

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 20px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-top: none; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1;
  box-sizing: border-box;
  color: #374A44; }

.container-lg {
  display: grid;
  margin: auto;
  max-width: 1250px;
  padding: 0 20px; }

/*TEXT*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Jura', sans-serif;
  letter-spacing: 2px;
  color: #000;
  padding-bottom: 1em; }

h1 {
  font-size: 2.3rem; }

h2 {
  font-size: 2rem; }

h3 {
  font-size: 1.5rem; }

h4 {
  font-size: 1.5rem; }

h5 {
  font-size: 2.3rem; }

h6 {
  font-size: 2.3rem; }

p {
  color: #1b262d;
  line-height: 40px;
  font-size: 1.25rem;
  font-weight: 100; }

a {
  color: #000;
  text-decoration: none; }

img {
  width: 100%; }

.center-h1 {
  display: grid;
  justify-content: center; }

.uline {
  text-align: center;
  font-weight: 300;
  display: inline-block;
  padding-bottom: 30px;
  position: relative; }

.uline:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  bottom: 0;
  left: 25%;
  border-bottom: 1px solid #3c87b3; }

.g1 {
  display: grid;
  grid-template-columns: minmax(auto, 1250px);
  justify-content: center;
  padding: 20px; }

/*.g3{display:grid;grid-gap:20px;grid-template-columns:repeat(3, 1fr);margin:2rem auto 0;}
@include media-md {
	.g3{display:block}
}*/
@media screen and (min-width: 768px) {
  .g2 {
    display: grid;
    grid-gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1250px;
    margin: 4rem auto 0; }

  .g3 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1250px;
    margin: 4rem auto 0; }

  .g4 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1250px;
    margin: 5rem auto 0; } }
.button {
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  background-color: #2ba27c;
  padding: 0.25em 0.75em;
  min-width: 10ch;
  min-height: 44px;
  text-align: center;
  line-height: 1.1;
  transition: 220ms all ease-in-out;
  border: none; }
  .button a {
    color: #FFF; }
  .button:hover, .button:active {
    background-color: #228263; }
  .button:focus {
    outline-style: solid;
    outline-color: transparent;
    box-shadow: 0 0 0 4px #b7ecdb; }

.social-icons {
  position: fixed;
  bottom: 50%;
  right: .5rem;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr; }
  .social-icons a {
    color: #2ba27c;
    padding: 0.4rem;
    transition: all 0.5s ease-in-out; }
    .social-icons a:hover {
      color: #306c8f; }

.pt1 {
  padding-top: 1em; }

.pt2 {
  padding-top: 2em; }

.pt3 {
  padding-top: 3em; }

.pt4 {
  padding-top: 4em; }

.pt5 {
  padding-top: 5em; }

.pb1 {
  padding-bottom: 1em; }

.pb2 {
  padding-bottom: 2em; }

.pb3 {
  padding-bottom: 3em; }

.pb4 {
  padding-bottom: 4em; }

.pb5 {
  padding-bottom: 5em; }

.mt1 {
  margin-top: 1em; }

.mt2 {
  margin-top: 2em; }

.mt3 {
  margin-top: 3em; }

.mt4 {
  margin-top: 4em; }

.mt5 {
  margin-top: 5em; }

.mb1 {
  margin-bottom: 1em; }

.mb2 {
  margin-bottom: 2em; }

.mb3 {
  margin-bottom: 3em; }

.mb4 {
  margin-bottom: 4em; }

.mb5 {
  margin-bottom: 5em; }

.pl3 {
  padding-left: 3em; }

.fr {
  float: right; }

.fl {
  float: left; }

footer .footer-top {
  text-align: center; }
footer .allrights {
  font-size: calc(.2rem + 1vw);
  background-color: #122936;
  color: #FFF;
  text-align: center;
  padding: 20px 0; }

.cf::after {
  content: "";
  clear: both;
  display: table; }
