.boxed {
    background-color: #fff;
}
/*# sourceMappingURL=width-full.css.map */

/* --- heading with horizontal line --- */

.lightgraybox100 {
    background-color: #913C39;
    width: 100%;
    height:40px;
    padding-top: 10px;
}
.over-rule h4 {
    position: relative;
    margin-top: 20px;
    text-align:center;
	color: #FEFEFE;
	
	font-weight: bold;
}
.over-rule h4.one {
    margin-top: 0;
  }
.over-rule h4.one:before {
    content: "";
    display: block;
    border-top: solid 1px #FEFEFE;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    z-index: 1;
  }
.over-rule h4.one span {
    background: #913C39;
    padding: 0 20px;
    position: relative;
    z-index: 5;
  }

/* This is the code for the css pop-up box ----------------------------- */
.anchor-btn {
  position:relative;
margin-top: 12px;
 margin-left: 45%;
  width: 100px;
  height: 100px;
  background-color: #009AED;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  border-radius: 10%;
  font-size: 36px;
  color: white;
  text-align: center;
  vertical-align: middle;
  line-height: 2.0;
  transition: box-shadow 250ms ease;
}
.anchor-btn:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.modal-btn {
  position: relative;

 margin-left: 45%;
  width: 100px;
  height: 100px;
  background-color: #009AED;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  border-radius: 10%;
  font-size: 36px;
  color: white;
  text-align: center;
  line-height: 2.75;
  transition: box-shadow 250ms ease;
}
.modal-btn:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.modal-bg {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
  visibility: hidden;
  transition: background-color 250ms linear;
}

.modal-content {
  position: relative;
    top: 0;
 bottom: -10%;
  left: 50%;
  width: 50%;
  height: auto;
  margin-top: -50%;
  margin-left: -25%;
  padding: 30px;
  background-color: white;
 color: #111111;
  border-radius: 4px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  transform: scale(0);
  transition: transform 250ms ease;
  visibility: hidden;
  z-index: 20;
}
.modal-content .close {
  position: relative;
  float: right;
  font-size: 18px;
  transition: transform 500ms ease;
  z-index: 11;
}
.modal-content .close:hover {
  color: #3498db;
  transform: rotate(540deg);
}
.modal-content header {
  position: relative;
  display: block;
  border-bottom: 1px solid #eee;
}
.modal-content header h2 {
  margin: 0 0 10px;
  padding: 0;
  font-size: 28px;
	color: #00C0ED;
}
.modal-content article {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.75;
}
.modal-content footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin: 0;
  padding: 10px 0 0;
}
.modal-content footer .button {
  position: relative;
  padding: 10px 30px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  overflow: hidden;
}
.modal-content footer .button:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 250ms ease;
  z-index: 0;
}
.modal-content footer .button:hover:before {
  width: 100%;
}
.modal-content footer .button.success {
  margin-right: 5px;
  background-color: #2ecc71;
}
.modal-content footer .button.danger {
  background-color: #e74c3c;
}

#modal {
  display: none;
}
#modal:checked ~ .modal-bg {
  visibility: visible;
  background-color: black;
  opacity: 0.1;
  transition: background-color 250ms linear;
}
#modal:checked ~ .modal-content {
  visibility: visible;
  transform: scale(1);
  transition: transform 250ms ease;
  z-index: 111;
}

/* code for 5 columns */

.col-xs-1-10,
.col-sm-1-10 {
  position: relative;
  min-height: 1px;
}

.col-xs-1-5 {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-1-5 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-1-5 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-1-5 {
    width: 20%;
    float: left;
  }
}