
/* Reset */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    width: 100%;
    height: 300%;
    margin: 0;
    padding: 0;
    font-family: poppins, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    background: #fff;
    color: #000;
    scroll-behavior: smooth;
}

h1{
  font-size: 36px;

}

h2{

}

h3{

}

 p{

}

header{
    width: 100%;
}

nav{
    width: 100%;
}
section{
	width: 100%
}

#banner{
  width: 100%;
}

.banner{
    width: 100%;
}

.container{
    width: 100%;
}
aside{
  width: 100%;
}

main{
    width: 100%;
}
article{
	width: 100%;
}

.billboard{
  width: 100%;
}

footer{
    width: 100%;
}

/* Layout */

body{
    font-family:poppins, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    width: 100%;
    height: 500%;
    background: #fff;
    color: #000;
    margin: 0;
    padding: 0;
}

.banner{
    width: 100%;
    height: 50px;
    background:#ccc;
    text-align: center;
    position: fixed;
    top: 0;
    z-index: 100;
}

header{

    width: 100%;
    height: 125px;
    text-align: center;
    position: fixed;
    top: 50px;
    z-index: 100;
    background: #ccc;
}


#searchBar{
    border: 1px solid #000;
    border-right: none;
    font-size: 16px;
    padding: 15px;
    outline: none;
    width: 200px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#searchBtn{
    border: 1px solid #000;
    font-size: 16px;
    padding: 15px;
    background: #f1d829;
    font-weight: bold;
    cursor: pointer;
    outline:none;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-right: 10px;
    -moz-border-radius-bottomright: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#searchBtn:hover {
    background: #f6e049;
  }


  #banner{
    width: 100%;
    height: 85vh;
    text-align: center;
    background: url("images/car-repair.png")
	no-repeat 50% 50%;
    background-size: cover;
	background-position: center center;
    background-repeat: no-repeat;
    margin-top: 50px;
    justify-content: center;
    margin-top: 100px;
    padding: 10px;
    opacity: .7;
}

.banner-text{
	text-align: center;
	color: #fff;
	padding-top: 180px;
}

.banner-text h2{
	font-family: 'Kaushan Script', cursive;
	font-size: 34px;

}

.banner-text p{
	font-size: 20px;
	font-style: italic;
}

.banner-btn{
	margin: 70px auto 0;
}

.banner-btn a{
	width: 150px;
	text-decoration: none;
	display: inline-block;
	margin: 0 10px;
	padding: 12px 0;
	color: #fff;
	border: .5px solid #fff;
	position: relative;
	z-index: 1;
	transition: color 0.5s;

}

.banner-btn a span{
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	z-index: -1;
	transition: 0.5s;
}

.banner-btn a:hover span{
	width: 100%;
}

.banner-btn a:hover{
	color: red;
}

.toggler{
    display: none;
}

.site-logo{
display: flex;
flex-direction: row;
text-align: center;
margin:  5px;
font: 900 60px/1 'Raleway', serif;
letter-spacing: -.065em;
position: absolute;
color: #008ccb;
display: inline-block;
}

strong{
    position: absolute;
    top: 69%;
    left: 50%;
    @include rotate(-10deg);
    font-weight: normal;
    letter-spacing: normal;
    font-size: .4em;
    padding: 7px 7px;
    color: #fff;
    border-radius: 8px;
    border: 3px solid white;
    text-shadow: 0 4px 1px rgba(0,0,0,.65);
    box-shadow: inset 0 0 3px rgba(0,0,0,.8);
    background: #005da6;
    @include background-image(radial-gradient(#005da7 0%, #283991 85%));
}

nav ul{
    position: fixed;
    width: 100%;
    height: 360px;
    padding: 16px;
    background: #585858;
    left: -100%;
    transition: all .5s;
    list-style: none;
    margin: 90px;
    margin-left: 0;
}
/*
nav ul{
    position: fixed;
    width: 100%;
    height: 50%;
    padding: 18px;
    background: #585858;
    left: -100%;
    transition: all .5s;
    list-style: none;
    margin: 20px;
}
*/

nav li{
    margin-bottom: 16px;
    margin-left: 16px;
}

nav a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    text-shadow: 2px 2px 4px rgba(31, 31, 31, 0.658);
    text-transform: uppercase;
}

nav a:hover{
    color: rgb(91, 180, 253);
    transform: ease-in .1s;
}

.toggler:checked ~ nav ul{
    left: 0;
}


.burger{
    position: absolute;
    font-size: 35px;
    color: white;
    text-shadow: 2px 2px 4px rgba(31, 31, 31, 0.658);
    top: -10px;
    right: 0;
    margin-right: 16px;
    height: 100%;
    display: flex;
    align-items: center;
}

.container{
    display:flex;
    flex-direction: row;
    margin: 4px;
    justify-content: center;
    margin-top: 10px;
}

aside{
    width: 25%;
    height: 700px;
    background: skyblue;
    margin-top: 10px;
    padding: 5px;
    text-align: center;
}

main{
    width: 75%;
    height: 700px;
    background: lime;
    margin-top: 10px;
    text-align: center;
    padding: 10px;
}

  .billboard{
      width: 100%;
      margin-top: 10px;
      padding-left: 25px;
      padding-right: 25px;
  }

  .row{
      display: flex;
      flex-direction: row;
      align-items: center;
      flex-wrap: wrap;
      justify-content: space-around;
      margin: 25px 25px;
  }

  .btn{
      display: inline-block;
      background:  #ff523b;
      color: #fff;
      padding: 8px 30px;
      margin: 30px 0;
      border-radius: 30px;
      transition: background 0.5s;
  }

  .btn:hover{
      background: #563434;
  }

  .col-2{
      flex-basis: 50%;
      min-width: 300px;
  }

  .col-2 img{
      max-width: 100%;
      padding: 50px 0 ;
  }

  .col-2 h1{
      font-size: 50px;
      line-height: 60px;
  }


article{
  width: 100%;
  height: 2250px;
  background: skyblue;
  text-align: center;

}
/*

.center{
    text-align: center;
    margin: 0 auto;
}

.grid-1{
    display: grid;
    grid-template-columns: 1fr;
}
.grid-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.grid-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (min-width: 320px){

    .grid-1{
        display: grid;
        grid-template-columns: 1fr;
    }
    .grid-2{
        display: grid;
        grid-template-columns: 1fr;
    }
    .grid-3{
        display: grid;
        grid-template-columns: 1fr;
    }

    .center{
        text-align: center;
        margin-top: 10px;
    }

span{
    color: white;
}

}

@media screen and (min-width: 768px){

    .grid-1{
        display: grid;
        grid-template-columns: repeat(1, 1fr);

    }
    .grid-2{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .grid-3{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
    }
    .center{
        text-align: center;
    }
}
*/

  @media screen and (min-width: 768px){

    .burger{
        display: none;
    }

    header{
        display: grid;
        grid-template-columns: 1fr auto minMax(700px, 3fr);
    }

    nav{
        display: flex;
        grid-column: 3/4;
        justify-content: flex-end;
        align-items: center;
    }

    nav ul{
        all: unset;
        list-style-type: none;
        display: flex;
        flex-direction: row;
    }

    nav ul li{
        margin-bottom: 0;
        margin-right: 16px;
    }

    #searchBar{
        border: 1px solid #000;
        border-right: none;
        font-size: 16px;
        padding: 15px;
        outline: none;
        width: 500px;
        -webkit-border-top-left-radius: 10px;
        -webkit-border-bottom-left-radius: 10px;
        -moz-border-radius-topleft: 10px;
        -moz-border-radius-bottomleft: 10px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    #searchBtn{
        border: 1px solid #000;
        font-size: 16px;
        padding: 15px;
        background: #f1d829;
        font-weight: bold;
        cursor: pointer;
        outline:none;
        -webkit-border-top-right-radius: 10px;
        -webkit-border-bottom-right-radius: 10px;
        -moz-border-radius-right: 10px;
        -moz-border-radius-bottomright: 10px;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    #searchBtn:hover {
        background: #f6e049;
      }

}




footer{
    background: #ccc;
    width: 100%;
    height: 125px;
    position: fixed;
    bottom: 0px;
    text-align: center;
    z-index: 1;
    padding:  30px;
}
