@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Work+Sans:400,600');
body {
	margin: 0;
	background: #222;
	font-family: 'Work Sans', sans-serif;
	font-weight: 800;
}

.container {
	width: 80%;
	margin: 0 auto;
}

header {
  background:#FF9D30;
}

header::after {
  content: '';
  display: table;
  clear: both;
}

.logo {
  float: left;
  padding: px 0;
}

nav {
  float: right;
  padding-top: 20px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  display: inline-block;
  margin-left: 70px;
  padding-top: 23px;

  position: relative;
}

nav a {
  color: #444;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

nav a:hover {
  color: #000;
}

nav a::before {
  content: '';
  display: block;
  height: 5px;
  background-color: #444;

  position: absolute;
  top: 0;
  width: 0%;

  transition: all ease-in-out 250ms;
}

nav a:hover::before {
  width: 100%;
}
.slider-holder
        {
            width: 1280px;
            height: 640px;
            background-color: yellow;
            margin-left: auto;
            margin-right: auto;
            margin-top: 0px;
            text-align: center;
            overflow: hidden;
        }
       
        .image-holder
        {
            width: 3840px;
            background-color: red;
            height: 640px;
            clear: both;
            position: relative;
           
            -webkit-transition: left 2s;
            -moz-transition: left 2s;
            -o-transition: left 2s;
            transition: left 2s;
        }
       
        .slider-image
        {
            float: left;
            margin: 0px;
            padding: 0px;
            position: relative;
        }
       
        #slider-image-1:target ~ .image-holder
        {
            left: 0px;
        }
       
        #slider-image-2:target ~ .image-holder
        {
            left: -1280px;
        }
       
        #slider-image-3:target ~ .image-holder
        {
            left: -2560px;
        }
       
        .button-holder
        {
            position: relative;
            top: -20px;
        }
       
        .slider-change
        {
            display: inline-block;
            height: 10px;
            width: 10px;
            border-radius: 5px;
            background-color: blanchedalmond;
        }
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.center{
	display: flex;
	height: 30vh;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.center ul .text {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: #FFA108;
	color:black;
	line-height: 50px;
	border-radius: 50px;
	font-size: 20px;
	pointer-events: none;
	transition: opacity .5s .75s ease-out;
}
.center ul:hover .text {
	opacity: 0;
	transition: opacity .5s .125s ease-out;
	
}
.center ul{
	list-style: none;
	position: relative;
	display: inline-block;
}
.center ul li{
	display: inline-block;
	height: 50px;
	width: 50px;
	background: #FFA108;
	line-height: 55px;
	margin: 0 -16px;
	cursor: pointer;
	border-radius: 0px;
	transition: background-color .5s ease-out,
		        border-radius .5s .25s ease-out,
	            margin .5s .25s	ease-out;
}
.center ul li:hover{
	background: #333333;
}
.center ul li i{
	color:black;
	font-size: 22px;
	opacity: 0;
	transition: opacity 1.7s;
}
.center ul:hover li i{
	opacity: 1;
}
.center ul li:nth-child(1){
	border-bottom-left-radius: 25px;
	border-top-left-radius: 25px;
}
.center ul li:nth-child(3){
	border-bottom-right-radius: 25px;
	border-top-right-radius: 25px;
}
.center ul:hover li{
	border-radius: 50px;
	margin: 0 3px;
}
.column {
  float:left;
  width: 25%;
  padding-left: 50px;
  align-content: center;
	justify-content: center;
  background-color: black;
}
.row::after {
  content:"";
  clear: both;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  height: 30px;
}
footer {
        padding: 10px 20px;
        background: #FFA108;
        color: black;
      }









