/* *{
  box-sizing: border-box;
}

body{
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: darkcyan;
  text-align: center;

} */


.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  position: relative;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}

/* *,
*::before,
*::after {
  box-sizing: inherit;
} */
.container::before,
.container::after,
.row::before,
.row::after {
  content: '';
  display: table;
}

.container::after,
.row::after {
  clear: both;
}

[class*='col-'] {
  width: 100%;
  float: left;
  min-height: 1px;
}

.col {
  background-color: #fff;
  padding: 1rem;
  margin: 8px 0;
  color: turquoise;
  border-radius: 5px;
}
.col-wd-1, .col-wd-10, .col-wd-11, .col-wd-12, .col-wd-2, .col-wd-3, .col-wd-4,
.col-wd-5, .col-wd-6, .col-wd-7, .col-wd-8, .col-wd-9, .col-md-1, .col-md-10,
.col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-sm-1,.col-sm-10, .col-sm-11, .col-sm-12,
.col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8,
.col-sm-9{
padding-left: 15px;
padding-right: 15px;
}


@media only screen and (min-width:320px) {
  .col-wd-1 {width: 8.33333%;}
  .col-wd-2 {width: 16.66667%;}
  .col-wd-3 {width: 25%;}
  .col-wd-4 {width: 33.33333%;}
  .col-wd-5 {width: 41.66667%;}
  .col-wd-6 {width: 50%;}
  .col-wd-7 {width: 58.33333%;}
  .col-wd-8 {width: 66.66667%;}
  .col-wd-9 {width: 75%;}
  .col-wd-10 {width: 83.33333%;}
  .col-wd-11 {width: 91.66667%;}
  .col-wd-12 {width: 100%;}
}
@media only screen and (min-width:768px) {
  .col-sm-1 {width: 8.33333%;}
  .col-sm-2 {width: 16.66667%;}
  .col-sm-3 {width: 25%;}
  .col-sm-4 {width: 33.33333%;}
  .col-sm-5 {width: 41.66667%;}
  .col-sm-6 {width: 50%;}
  .col-sm-7 {width: 58.33333%;}
  .col-sm-8 {width: 66.66667%;}
  .col-sm-9 {width: 75%;}
  .col-sm-10 {width: 83.33333%;}
  .col-sm-11 {width: 91.66667%;}
  .col-sm-12 {width: 100%;}
}
@media only screen and (min-width:992px) {
  .col-md-1 {width: 8.33333%;}
  .col-md-2 {width: 16.66667%;}
  .col-md-3 {width: 25%;}
  .col-md-4 {width: 33.33333%;}
  .col-md-5 {width: 41.66667%;}
  .col-md-6 {width: 50%;}
  .col-md-7 {width: 58.33333%;}
  .col-md-8 {width: 66.66667%;}
  .col-md-9 {width: 75%;}
  .col-md-10 {width: 83.33333%;}
  .col-md-11 {width: 91.66667%;}
  .col-md-12 {width: 100%;}
}
