/* custom styles */
body,
html {
  margin: 0;
  padding: 0;
}
.txt_heading {
  color: #bf703f;
  font-weight: 500;
  margin-bottom: 2rem;
}
.img_logo {
  height: 50px;
  margin-top: 4px;
  width: 110px;
}
.icon_menu,
.txt_menu {
  color: #bf703f;
  font-weight: 500;
}
.txt_menu:hover {
  background-color: #faf3ef;
}
.btn_call {
  background-color: #bf703f;
  width: 180px;
  border-radius: 2rem;
  cursor: pointer;
}
.btn_call:hover {
  background-color: #faf3ef;
  color: #bf703f;
}
.txt_cnt {
  text-align: end;
  cursor: pointer;
}
.bulletin_btn {
  color: #bf703f;
  border: 1px solid #bf703f;
  border-radius: 2rem;
  background: white;
}
.bulletin_list {
  border-radius: 0.5rem;
}
.bulletin_list li a {
  color: #bf703f;
}
.bulletin_list li a:hover {
  color: #bf703f;
  background-color: #f5e9e1;
}
.bulletin_btn:hover {
  background-color: #bf703f;
  color: white;
}
.btn_s_call {
  background-color: #bf703f;
  cursor: pointer;
  color: #faf3ef;
}
.btn_s_call:hover {
  background-color: #faf3ef;
  color: #bf703f;
}
.btn_company {
  background-color: #bf703f;
  width: 180px;
  border-radius: 2rem;
  cursor: pointer;
  margin-top: 2rem;
}
.btn_company:hover {
  background-color: #faf3ef;
  color: #bf703f;
}
.slide_img {
  opacity: 0.5;
}
.us {
  padding-top: 4rem;
  padding-bottom: 6rem;
}
.cnt_services {
  border: 1px solid #bf703f;
  padding: 1rem 3rem;
  border-radius: 2%;
  text-align: justify;
  .txt_services {
    color: #854e2c;
    text-transform: uppercase;
    margin-right: 1rem;
    font-weight: 800;
    font-size: small;
  }
  .header_card {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .descriptions {
    color: #bf703f;
    text-align: center;
  }
  .view_modal {
    margin-top: 2rem;
    align-items: center;
    width: 100%;
    text-align: center;
    color: #bf703f;
    font-weight: 600;
    font-size: small;
  }
}
.box {
  padding-top: 4rem;
  padding-bottom: 6rem;
}
.decor_list_sub {
  list-style-type: square;
  color: #bf703f;
}
/* footer bulletin */
.blt {
  position: relative;
  top: 100px;
}
.blt_btn {
  color: #faf3ef;
  border: 1px solid #faf3ef;
  border-radius: 2rem;
  background: #bf703f;
  width: 145px;
}
.blt_list {
  border-radius: 0.5rem;
}
.blt_list li a {
  color: #faf3ef;
}
.blt_list li a:hover {
  color: #f5e9e1;
  background-color: #bf703f;
}
.blt_btn:hover {
  background-color: #f5e9e1;
  color: #bf703f;
}
/* Table Subscriptions */
table {
  width: 750px;
  border-collapse: collapse;
  margin: 25px auto;
}
th {
  background: #bf703f;
  color: white;
  font-weight: 500;
}
td,
th {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: left;
  font-size: 16px;
}
/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media only screen and (max-width: 760px),
  (min-device-width: 768px) and (max-device-width: 1024px) {
  table {
    width: 100%;
  }
  /* Force table to not be like tables anymore */
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }
  /* Hide table headers (but not display: none;, for accessibility) */
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  tr {
    border: 1px solid #ccc;
  }
  td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }
  td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    /* Label the data */
    content: attr(data-column);
    color: #bf703f;
    font-weight: bold;
  }
}
