body {
  margin: 0;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}


/* Container
 * class defines the bounds of the website. Can be configured
 * with styles which manifest outside the boundaries of the
 * content, such as backgrounds or animations
 */
.container {
  width: 100%;
  display: table;
}

/* Row
 * defines a full-width row of elements to be used as the main
 * container of all website's content;
 * it is centered and has a defined maximum width which adapts
 * to the screen size to occupy most of it.
 */
.row {
  width: 100%;
  max-width: 900px;
  padding: 15px 10px 5px 10px;
  box-sizing: border-box;
  margin: 0 auto;
  display: table;
}

/* for single-column parts of the site, add the same padding as
 * the columns in the column layouts
 */
.filler {
  display: inline-block;
  padding: 10px;
  box-sizing: border-box;
  margin: 0;

}

/* Column-based layout
 * responsive two-column layout
 */
.col-1-of-2 {
  display: inline-block;
  padding: 10px;
  box-sizing: border-box;
  margin: 0;
  vertical-align: top;
}

@media screen and (max-width: 499px) {
  .col-1-of-2 {
    width: 100%;
  }
}
@media screen and (min-width: 500px) {
  .col-1-of-2 {
    width: 49.5%;
  }
}


/* Column-based layout
 * responsive three-column layout
 */
.col-1-of-3, .col-2-of-3 {
  display: inline-block;
  padding: 10px;
  box-sizing: border-box;
  margin: 0;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .col-1-of-3 {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .col-1-of-3 {
    width: 32.5%;
  }
}

.col-1-of-3.last-1-of-2 {
  margin-left: 8.5%;
  margin-right: 8.5%;
}
.col-1-of-3.last-1-of-1 {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .col-2-of-3 {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .col-2-of-3 {
    width: 66%;
  }
}


/* Column-based layout
 * responsive four-column layout
 */
.col-1-of-4, .col-2-of-4, .col-3-of-4 {
  display: inline-block;
  padding: 10px;
  box-sizing: border-box;
  margin: 0;
  vertical-align: top;
}

@media screen and (max-width: 499px) {
  .col-1-of-4 {
    width: 100%;
  }
}
@media screen and (min-width: 500px) and (max-width: 1023px) {
  .col-1-of-4 {
    width: 49.5%;
  }
}
@media screen and (min-width: 1024px) {
  .col-1-of-4 {
    width: 24.5%;
  }
}

@media screen and (max-width: 1023px) {
  .col-2-of-4 {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .col-2-of-4 {
    width: 49.5%;
  }
}
@media screen and (max-width: 1023px) {
  .col-3-of-4 {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .col-3-of-4 {
    width: 74.5%;
  }
}

/* Images */
img {
  max-width: 100%;
  max-height: 50%;
  margin: 0;
}

/* Left-right-centered
 * classes used to configure the elements and text layout
 */
.left {
  display: block;
  float: left;
}

.right {
  display: block;
  float: right;
}

.center {
  display: block;
  margin: 0 auto;
}

.full-width {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.text-left, .text-left a {
  text-align: left;
}

.text-right, .text-right a {
  text-align: right;
}

.text-center, .text-center a {
  text-align: center;
}

.text-justify, .text-justify a {
  text-align: justify;
}

@media screen and (max-width: 480px) {
  .text-center-xs {
    text-align: center;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .text-center-sm {
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .text-center-md {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .text-center-lg {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .text-center-xl {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .text-justify-xs {
    text-align: center;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .text-justify-sm {
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .text-justify-md {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .text-justify-lg {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .text-justify-xl {
    text-align: center;
  }
}

/* Hide
 * classes used to hide elements in general or at specific
 * screen sizes
 */
.hide {
  display: none;
}

@media screen and (max-width: 480px) {
  .hide-xs {
    display: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .hide-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .hide-md {
    display: none;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .hide-lg {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .hide-xl {
    display: none;
  }
}

/*
 * Fixed elements
 */
.fixed>div, .fixed>img {
    position: fixed;
}

/* Menu
 * Configure list elements as floating menu
 */

ul.menu {
  display: block;
  padding-inline-start: 0;
}

ul.menu li {
  display: inline-block;
  padding: 6px 10px;
}


/* Configure list elements as tower menu
 */
ul.footer-menu {
  display: block;
  padding-inline-start: 0;
}

ul.footer-menu li {
  display: block;
  padding: 2px;
  list-style-type: none;
}


/* tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table td {
  padding: 4px 16px;
}
table tr:nth-child(2n) {
  background-color: #f4f7f7;
}

@media screen and (max-width: 599px) {
  .table-col-1, .table-col-2 {
    display: block;
  }
}


/*
 * Media
 * Iframes and Videos embed
 */
.video {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 10%;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/*
 * Inputs and buttons
 */
a.button, input.button, button {
  display: block;
  width: 200px;
  margin: 30px auto 70px auto;
  min-height: 40px;
  text-decoration: none;
}

a.button-lg, input.button-lg {
  max-width: 400px;
  width: 100%;
}

form input[type="text"],
form input[type="email"],
form input[type="phone"],
form textarea {
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
  border: 0;
  border-radius: 5px;
  margin-top: 8px;
  padding-left: 5px;
}

input[type="checkbox"] {
  display: inline-block;
}



