// CSS File for the Refractech Website on all pages

/* LINKS */

a {
  text-decoration:none;
}

a:link {
  color:#ec2a33;
  text-decoration:none;
}

a:visited {
  color:#ec2a33;
  text-decoration:none;
}

a:hover {
  color:#40bbfc;
  text-decoration:none;
}

a:active {
  color:#ec2a33;
  text-decoration:none;
}

/* SLIDESHOW */

* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: auto;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 500px;
  position: relative;
  margin: auto;
  overflow: hidden;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* BUTTONS */

.button {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: white;
  color: black;
  border: 2px solid #ec2a33;
}

.button1:hover {
  background-color: #ec2a33;
  color: white;
}

/* IMAGES */

.responsive {
  height: 100%;
  max-height: 400px;
  width: auto;
  max-width: 95vw;
  margin: auto;
}

/* TEXT */

.text {
  padding-top: 100px;
  width:80%;
  height:auto;
}

.para {
  text-align: justify;
}

.text2 {
  padding-left:5%;
  width:80%;
  height:auto;
}

.text3 {
  padding-left:20%;
  width:80%;
  height:auto;
}

.text4 {
  padding-left:10%;
  width:90%;
  height:auto;
}

/* OTHER */

.menu {
  background-color: #ffffff;
  padding: 15px;
}

hr {
  height:5px;
  border-width:0;
  color:#ec2a33;
  background-color:#ec2a33
}
//img {height:400px;width:500px;}

.solid {
  border-style: solid;
  border-color: #ec2a33;
  max-width:50vw;
}

/* W3 CODE */

* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

.header {
  background-color: #ffffff;
  color: #000000;
  padding: 30px;
}

.aside {
  background-color: #ffffff;
  padding: 15px;
  color: #000000;
  text-align: justify;
}

.footer {
  background-color: #ffffff;
  color: #000000;
  padding: 15px;
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}