/* Custom CSS */
.centered {
  display: grid;
  justify-self: center;
  justify-content: center;
  text-align: center;
}
.centered h1, .centered h2, .centered h3, .centered h4, .centered p, .centered a {
  justify-self: center;
  text-align: center;
}
.overflow {
  overflow-wrap: anywhere;
}
ul li::marker {
  color: var( --colour1 );
}
.quote {
  background-color: #fff;
  padding: 40px 0;
  border-left: solid 5px var(--colour1);
  padding-left: 15px;
}
.quote .element {
  padding: 10px;
}
/* New testimonials */ 


.wbhd-testimonial-container {
  margin-top: 50px;
  background-color: #fff;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 12px;
  display: grid;
  width: 100%;
  align-content: center;
  justify-content: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.wbhd-testimonial-inner {
  border: solid 2px var( --colour2 );
  background-color: var( --colour1 );
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 24px;
  display: grid;
  grid-gap: 12px;
  width: 100%;
  align-self: center;
  justify-self: center;
}
.wbhd-testimonial-container h1 {
  color: #fff;
  margin: 0;
}
.wbhd-testimonial-container h2 {
  color: #fff;
  margin: 0;
}
.wbhd-testimonial-container p {
  color: #fff;
  margin: 0;
}
.wbhd-testimonial-img {
  width: 100%;
  margin-top: -85px;
}
/* Testimonials */
.container {
  margin: 0 auto;
  display: grid;
  grid-gap: 20px;
  box-sizing: border-box;
  padding: 20px;
}
.container .box {
  position: relative;
  padding: 80px 40px 40px;
  transition: 0.5s;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}
.container .box:hover {
  background-color: #009AC0;
}
.container .box p {
  margin: 0;
  padding: 0;
  transition: 0.5s;
}
.container .box h4 {
  margin: 20px 0 0;
  padding: 0;
  transition: 0.5s;
  font-size: 18px;
  color: #009AC0;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  text-align: left;
}
.container .box h4 span {
  font-weight: 600;
  font-size: 14px;
  color: #c5c5c5;
  transition: 0.5s;
}
.container .box h3 {
  color: #444;
  text-align: center;
  justify-self: center;
}
.container .box:hover p, .container .box:hover h3, .container .box:hover h4, .container .box:hover h4 span {
  color: #fff;
}
.container .box .imgBox {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translate(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}
.container .box:before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: url("../img/quotes.png");
  background-size: cover;
  opacity: 0.02;
  pointer-events: none;
  transition: 0.5s;
}
.container .box:hover:before {
  transform: translateY(-60px);
  opacity: 1;
}
.container .box:after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  background: url("../img/quotes.png");
  background-size: cover;
  opacity: 0.02;
  pointer-events: none;
  transition: 0.5s;
  transform: rotate(180deg) translateY(0px);
}
.container .box:hover:after {
  transform: rotate(180deg) translateY(-60px);
  opacity: 1;
}
button {
  padding: 0.8em 0em;
  /*        width:350px;*/
  background: #DAC1C4;
  border-radius: 15px;
  border: 0;
  color: #333;
  font-size: 1.2em;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  cursor: pointer;
  margin: 1em 2em;
  text-transform: uppercase;
  box-shadow: 0px 0px 9px #888;
}
.light {
  background: -moz-linear-gradient(-45deg, #DAC1C4 0%, #DAC1C4 40%, #ffffff 50%, #DAC1C4 60%, #DAC1C4 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #DAC1C4), color-stop(40%, #DAC1C4), color-stop(50%, #ffffff), color-stop(60%, #DAC1C4), color-stop(100%, #DAC1C4));
  background: -webkit-linear-gradient(-45deg, #DAC1C4 0%, #DAC1C4 40%, #ffffff 50%, #DAC1C4 60%, #DAC1C4 100%);
  background: -o-linear-gradient(-45deg, #DAC1C4 0%, #DAC1C4 40%, #ffffff 50%, #DAC1C4 60%, #DAC1C4 100%);
  background: -ms-linear-gradient(-45deg, #DAC1C4 0%, #DAC1C4 40%, #ffffff 50%, #DAC1C4 60%, #DAC1C4 100%);
  background: linear-gradient(135deg, #DAC1C4 0%, #DAC1C4 40%, #ffffff 50%, #DAC1C4 60%, #DAC1C4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#DAC1C4', endColorstr='#DAC1C4', GradientType=1);
  background-repeat: no-repeat;
  background-position: 0px;
  background-size: 300%;
}
.light:hover {
  animation: light 1s;
  -webkit-animation: light 1s;
}
@keyframes light {
  0% {
    background-position: -600px;
  }
  100% {
    background-position: 0px;
  }
}
@-webkit-keyframes light {
  0% {
    background-position: -600px;
  }
  100% {
    background-position: 0px;
  }
}
.bounce:hover {
  animation: bounce 1s;
  -webkit-animation: bounce 1s;
}
/*
.frame {
    background-color: white;
    padding: 10px;
    border: 8px ridge goldenrod;
}
*/
/*
.box {
    background: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    color: #444;
    padding: 40px 20px;
    box-shadow: inset #5D7E71 0 0 0 5px, 
    inset #66866E 0 0 0 1px, 
    inset #6B8A6C 0 0 0 10px, 
    inset #73916A 0 0 0 11px, 
    inset #789667 0 0 0 16px, 
    inset #7F9B65 0 0 0 17px, 
    inset #829D64 0 0 0 21px, 
    inset #839F64 0 0 0 22px;
}
*/
.shineytext {
  background: linear-gradient(to right, #84673D, #C0965F, #84673D);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.title {
  font-size: 1.3em;
  font-weight: 400;
  color: var( --colour1 );
}
.imageback {
  padding: 50px 0px;
  background-image: url("../img/background-image.png");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.imageback p, .colorback p {
    color: white;
    font-weight: 500;
}
.imageback strong, .colorback strong {
    color: aliceblue;
    font-weight: 800;
}

.colorback {
    background-color: #126CE9;
    padding: 60px 0;
}

.zoom {
  transition: transform .2s;
}
.zoom:hover {
  transform: scale(1.05);
}
.cardyc {
  padding: 20px;
  background-color: #D42E3B;
  border: 3px solid #191919;
  border-radius: 10px;
  text-align: center;
}
.cardyc h2, .cardyc h3, .cardyc h4, .cardyc ul, .cardyc li {
  color: white;
  justify-self: center;
  text-align: center;
}
/* From Uiverse.io by vikiWayne */
.button {
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  background-color: #019EE3;
  outline: 2px solid navy;
}
.button:hover {
  color: white;
  transform: scale(1.1);
  outline: 2px solid #019EE3;
  box-shadow: 4px 5px 17px -4px #268391;
}
.button::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: navy;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}
.button:hover::before {
  width: 250%;
}
.custom-shape-divider-top-1724236774 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotateY(180deg);
}
.custom-shape-divider-top-1724236774 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 148px;
}
.custom-shape-divider-top-1724236774 .shape-fill {
  fill: #000080;
}
.custom-shape-divider-bottom-1724237009 {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.custom-shape-divider-bottom-1724237009 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 148px;
}
.custom-shape-divider-bottom-1724237009 .shape-fill {
  fill: #000080;
}
.custom-shape-divider-bottom-17242370092 {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.custom-shape-divider-bottom-17242370092 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 148px;
}
.custom-shape-divider-bottom-17242370092 .shape-fill {
  fill: #111111;
}
@media(max-width: 760px) {
  .testimonial-arrow {
    display: none;
  }
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media(max-width:768px) {
  .caret {
    display: none;
  }
}
@media(max-width:768px) {
  .cent-drop {
    justify-self: center;
  }
}
@media(max-width: 768px) {
  .dropdown-container p {
    justify-self: center;
    text-align: center;
  }
}
hr {
  background: url("../img/hr.png") no-repeat top center;
  background-size: contain;
  display: block;
  height: 50px;
  border: 0;
  position: relative;
}
hr:before, hr:after {
  content: '';
  display: block;
  position: absolute;
  background: var( --colour1 );
  height: 1px;
  top: 22px;
}
hr:before {
  left: 0;
  right: 60%;
  margin-right: 10px;
  margin-left: 70px;
}
hr:after {
  right: 0;
  left: 60%;
  margin-left: 10px;
  margin-right: 70px;
}
/*Button 82 */
/* CSS */
.button-82-pushable {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.button-82-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition:
    transform 600ms cubic-bezier(.3, .7, .4, 1);
}
.button-82-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(to left, hsl(340deg 100% 16%) 0%, hsl(340deg 100% 32%) 8%, hsl(340deg 100% 32%) 92%, hsl(340deg 100% 16%) 100%);
}
.button-82-front {
  display: block;
  position: relative;
  padding: 12px 27px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: white;
  background: hsl(345deg 100% 47%);
  will-change: transform;
  transform: translateY(-4px);
  transition:
    transform 600ms cubic-bezier(.3, .7, .4, 1);
}
@media (min-width: 768px) {
  .button-82-front {
    font-size: 1.25rem;
    padding: 12px 42px;
  }
}
.button-82-pushable:hover {
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
}
.button-82-pushable:hover .button-82-front {
  transform: translateY(-6px);
  transition:
    transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}
.button-82-pushable:active .button-82-front {
  transform: translateY(-2px);
  transition: transform 34ms;
}
.button-82-pushable:hover .button-82-shadow {
  transform: translateY(4px);
  transition:
    transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}
.button-82-pushable:active .button-82-shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}
.button-82-pushable:focus:not(:focus-visible) {
  outline: none;
}
/* new button */
.button-56 {
  align-items: center;
  background-color: #808080;
  border: 2px solid #111;
  border-radius: 8px;
  box-sizing: border-box;
  color: #fff !important;
  cursor: pointer;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 16px;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  max-width: 100%;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.button-56:after {
  background-color: #111;
  border-radius: 8px;
  content: "";
  display: block;
  height: 48px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(8px, 8px);
  transition: transform .2s ease-out;
  z-index: -1;
}
.button-56 a {
  color: #fff;
}
.button-56:hover:after {
  transform: translate(0, 0);
}
.button-56:active {
  background-color: #ffdeda;
  outline: 0;
}
.button-56:hover {
  outline: 0;
}
@media (min-width: 768px) {
  .button-56 {
    padding: 0 40px;
  }
}
/* - Table - */
.w100 {
  width: 100%;
}
.elem-table {
  border: 1px solid #fff;
  background-color: #fff;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
thead {
  background-color: #8AA2D2;
  border-bottom: 2px solid #fff;
}
th {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
  border-left: 2px solid #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: solid 1px;
  height: 20px;
}
th h1 {
  font-size: 14px;
  color: white;
}
tr:nth-child(2n) {
  background: rgba(222, 222, 222, 0.30);
}
/*** TABLE STYLING ***/
table {
  border: 1px solid #fff;
  background-color: #fff;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table td, table th {
  border: 1px solid #fff;
  padding: 10px 10px;
}
table tbody td {
  font-size: 13px;
}
table thead th:first-child {
  border-left: none;
}
table tfoot td {
  font-size: 14px;
}
table tfoot .links {
  text-align: right;
}
/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}
/* Style the buttons inside the tab */
.tab button {
  background-color: black;
  border: 1px solid orange;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color: #ff9101;
}
/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #444;
}
/* Create an active/current tablink class */
.tab button.active {
  background-color: orange;
  color: black;
}
/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}
.tabcontent {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}
/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.box2 {
  display: grid;
  box-shadow: inset 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  border: 5px ridge gold;
  padding: 30px;
  justify-content: center;
  align-items: center;
}
.show {
  overflow: visible;
}
.card {
  position: relative;
  display: -ms-flexbox;
  display: grid;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: 0.25rem;
  box-shadow: 0px 0px 7px #444;
}
.card p {
  color: #000000;
}
.card-img-top {
  width: 100%;
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
}
.card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}
.card-title {
  color: #526B98;
  font-size: 1.2em;
  margin-left: 3%;
}
/* Conveyor */
.conveyor {
  display: flex;
  height: auto;
  margin: auto;
  overflow: hidden;
  align-items: center;
}
.conveyor:before {
  position: absolute;
  z-index: 1;
  left: 0;
  content: "";
  width: 23.958%;
  height: 210px; /* originally 110px */
  background: linear-gradient(-90deg, hsla(0, 0%, 96.9%, 0), #FFF7E5); /* Last colour code is the shading the image fades to, match to page background colour */
}
.conveyor:after {
  position: absolute;
  right: 0;
  content: "";
  width: 23.958%;
  height: 210px; /* originally 110px */
  background: linear-gradient(90deg, hsla(0, 0%, 96.9%, 0), hsla(0, 0%, 96.9%, 0.99) 99%);
}
.conveyor .conveyor-belt {
  display: flex;
  animation: scroll 35s linear infinite;
  -webkit-animation: scroll 35s linear infinite;
  width: calc(240px * 10);
}
.conveyor .package {
  display: flex;
}
.conveyor .package img {
  width: 180px;
  height: 180px; /* originally 80px */
  padding: 10px;
  background-color: white;
  cursor: pointer;
  margin: 20px;
  border-radius: 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-240px * 5));
    transform: translate((calc(-240px * 5));
  }
}