root{
  --theme-yellow:#fdd066;
  --theme-blue:#35558b;
  --white:#fff;
  --black:#000000;
}



#slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    /*background-image: url("../images/bg.jpg");*/
}

#slider #line {
    height: 1px;
    background: var(--theme-blue);
    z-index: 1;
    position: absolute;
    bottom: 20px;
    right: 0;
}

#slider #dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 36px;
    display: flex;
    justify-content: center;
}

#slider #dots li {
    transition: 0.3s;
    list-style-type: none;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: var(--theme-blue);
    margin: 0 0.25em;
    cursor: pointer;
}

#slider #dots li:hover,
#slider #dots li.active {
    background: var(--theme-yellow);
}

@keyframes line {

    0% {width: 0%;}
    100% {width: 100%;}

}

#slider #back,
#slider #forword {
    width: 6%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    color: var(--theme-blue);
    font-weight: 700;
    font-size: 5rem;
    background: -moz-linear-gradient(left,  rgba(255,255,255,0.75) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(left,  rgba(255,255,255,0.75) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to right,  rgba(255,255,255,0.75) 0%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bfffffff', endColorstr='#00ffffff',GradientType=1 );
}

#slider #forword {
    left: auto;
    right: 0;
    background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.75) 100%);
    background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.75) 100%);
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.75) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#bfffffff',GradientType=1 );
}

#slider:hover #back,
#slider:hover #forword {
    opacity: 0.7;
}

ul#move {
    margin-top: 138px !important;
    padding: 0;
    display: flex;
    width: 100%;
    /*background-image: url("../images/layer.png");*/
    margin-right: 100%;
}
@media (min-width: 320px) {
    ul#move {
        margin-top: 200px;
    }
}
@media (min-width: 320px){
  .hero {
    display: none;
}
}
ul#move li {
    transition: 0.6s;
    min-width: 100%;
    color: white;
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul#move li img {
    width: 100%;
    /*height:  vh;
*/}

ul#move li:nth-child(1) {
    /* background: #657765; */
}

ul#move li:nth-child(2) {
    background: #456174;
}

ul#move li:nth-child(3) {
    background: #984;
}

ul#move li:nth-child(4) {
    background: #445566;
}

ul#move li:nth-child(5) {
    background: #744674;
}
ul#move li:nth-child(6) {
    background: #744674;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}