/* 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;
}


.list
			{
			 display: grid;
			 align-content: center;
			}

			.list p
			{
			 align-content: center;
			 display: grid;
			 grid-template-columns: max-content auto;
			}

			.list p:before
			{
			 font-family: "Font Awesome 5 Pro";
			    font-weight: 300;
			 color: var( --colour1 );
			 align-self: start;
			 content: "\f6df";
			 margin-right: 8px;
			 font-size: 16px;
			 padding-right: 8px;
			}	


/* New Button*/

/* From Uiverse.io by Creatlydev */
.button {
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: var( --colour2 );;
    /*    color: #fff;*/
    border-radius: 10rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    padding-left: 20px;
    line-height: 9px;
    letter-spacing: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 0.3s;
    /*    border: 2px solid #10342a;*/

}

.button__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: #888780;
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.button:hover {
    /*    border: 2px solid #347563;*/
    /*    color: white;*/
    background-color: #000000;
    color: #fff; 
}

.button:hover .button__icon-wrapper {
    color: #000000;
    /*    color: white;*/

}

.button__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

/* 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 #7b9362;
  background-color: #b0bf9f;
  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;
}


/*

.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);
}


/*
.colorback {

                background-color: var( --colour1 );
                margin: 90px 0;

            }

            .colorback h1 {
                color: #faf8eb;
                                padding: 0 0 0 75px;

            }

            .colorback span {
                position: absolute;
                transform: translate(-55px, 7px) scale(2.5);

            }

            .colorback p,
            .colorback li {
                color: #faf8eb;
            }

            
             .colorback .heading {

            border-bottom: 1px solid var(--colour2);
            }

            .colorback img {
                margin: -62px;
                border: 3px solid var( --colour1 );
            }

            .rotated-text {

                position: absolute;
                transform: translate(403px, 96px) scale(2.0) rotate(-90deg);
                color: #333;
                text-transform: uppercase;
                font-weight: 500;
                letter-spacing: 12px;
                font-family: 'Montserrat';
            }

            .fade {
                filter: opacity(0.7);
            }

            @media(max-width: 767px) {
                .colorback {
                    padding: 80px 0px;
                    background-color: var(--colour1);
                    color: #fff;
                    border-top: 3px solid var(--colour21);
                    border-bottom: 3px solid var(--colour2);
                }

                .colorback img {
                    margin: 0;
                }

                .rotated-text {

                    position: absolute;
                    transform: translate(403px, 96px) scale(2.0) rotate(-90deg);
                    color: #333;
                    text-transform: uppercase;
                    font-weight: 500;
                    letter-spacing: 12px;
                    font-family: 'Montserrat';
                }


            }
*/

.colorback {
    padding: 100px 0px;
    background-color: var(--colour1);
    color: #fff;
/*        border-bottom: 3px solid #cb7365;/*/
}
    
    

.colorback p,
.colorback li {
    color: #fff;
/*    font-weight: 800;*/
    
}
    
.colorback a {
    color: #fff;
/*    font-weight: 900;*/


}

.colorback b {

    color: #fff;
/*    text-transform: uppercase;*/
}




.colorback h1, .colorback h2 {

    color: #fff;
/*
     -webkit-text-stroke: 1px white;

    -webkit-text-stroke: 1px white;
    font-size: 30px;
*/
}

.imageback {
  padding: 100px 0px;
  background-image: url("../img/imageback.png");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.imageback2 {
  background-image: url("../img/hero-bg-1.jpg");
  
}


.imageback h2 {
    color: var(--colour1);
}

.imageback p {
    color: #111;
}

.white-bg {
    background-color: rgba(250, 250, 250, 0.73);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 6px #111;
    
    
}.white-bg2 {
    background-color: rgba(250, 250, 250, 0.73);
    padding: 10px 30px;
    border-radius: 10px;
}

.imageback2 {
  padding: 50px 0px;
  background-image: url("../img/imageback2.png");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.imageback2 h2 {
    color: var(--colour1);
}

.imageback2 p {
    color: #111;
}

@media(max-width: 767px) {
    .white-bg {
        padding: 60px 15px;
    }
}


@media(max-width: 767px) {
    .mobile-padding {
        padding: 0px 20px;
    }
}


.servicebutton {
  border: none;
  background: none;
  cursor: pointer;
  text-align: start;
}

.servicebutton span {
  padding-bottom: 7px;
  letter-spacing: 4px;
  font-size: 18px;
    font-weight: 500;
  padding-right: 15px;
  text-transform: uppercase;
}

@media(max-width: 767px) {
    .servicebutton span {
        font-size: 1em;
    }
}

.servicebutton svg {
  transform: translateX(-8px);
  transition: all 0.3s ease;
  fill: #fff!important;
}

.servicebutton:hover svg {
  transform: translateX(0);
}

.servicebutton:active svg {
  transform: scale(0.9);
}

.hover-underline-animation {
  position: relative;
  color: #fff;
  padding-bottom: 20px;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.servicebutton:hover .hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


.services-card {
    
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 7px #444;
  border-radius: 10px;
  padding: 40px 40px;
  min-height: 450px;
/*  align-content: flex-start;*/
    
}

/*
.services-card:hover {
    opacity: 0.6;
}
*/

.service-start {
    display: grid;
    grid-gap: 32px;
    align-content: flex-start;
}
.service-end {
    align-content: flex-end;
}

.services-card h1 {
    color: #F2F2F0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.3em;
}
.services-card p {
    color: #fff;
    font-weight: 500;
}

.services-card a {
    display: grid;
    color: #fff;
    font-weight: 500;
    align-content: flex-end;
}

.services-card1 {
    
  background-image: url("../img/services1.png");
    
}
.services-card2 {
    
  background-image: url("../img/services2.png");
    
}

.services-card3 {
    
  background-image: url("../img/services3.png");
}

.services-card4 {
    
  background-image: url("../img/services4.png");
    
}
.services-card5 {
    
  background-image: url("../img/services5.png");
    
}
.services-card6 {
    
  background-image: url("../img/services6.png");
    
}


.button-icon {
  display: flex;
  border: 3px #0B4F52 solid;
  width: fit-content;
  height: fit-content;
  cursor: pointer;
}

.icon {
  background-color: #0B4F52;
  padding: 10px 10px 5px 10px;
}

.icon svg {
  width: 25px;
  height: 25px;
}

.cube {
  transition: all 0.4s;
  transform-style: preserve-3d;
  width: 200px;
  height: 20px;
}

.button-icon:hover {
  border-color: #0B4F52;
}

.button-icon:hover .cube {
  transform: rotateX(90deg);
}

.side {
  position: absolute;
  height: 47px;
  width: 200px;
  display: flex;
  font-size: 0.8em;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: bold;
}

.top {
  background: #0B4F52;
  color: #fff;
  transform: rotateX(-90deg) translate3d(0, 13.5px, 2em);
}

.front {
  background: #32A9B1;
  color: #fff;
  transform: translate3d(0, 0, 1em);
}


#banner-cover {
    grid-row: 1;
    grid-column: 1/span 3;
    z-index: 2;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    background-color: #000;
}

.zoom {
  transition: transform .2s;
}
.zoom:hover {
  transform: scale(1.05);
}
.cardyc {
  padding: 20px;
  background-color: var(--colour1);
  border: 3px solid var(--colour2);
  border-radius: 10px;
  text-align: center;
}
.cardyc h2, .cardyc h3, .cardyc h4, .cardyc ul, .cardyc li, .cardyc p {
  color: white;
  justify-self: center;
  text-align: center;
}
/* From Uiverse.io by vikiWayne */
.custombutton {
  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;
}
.custombutton:hover {
  color: white;
  transform: scale(1.1);
  outline: 2px solid #019EE3;
  box-shadow: 4px 5px 17px -4px #268391;
}
.custombutton::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));
  }
}