@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;500;800&display=swap');

body {
  margin-top: 75px;
  font-family: 'Montserrat', sans-serif;
}
.no-margin {
  margin-top: 0 !important;
}

/* Admin Styles */
.accessdenied,
.incorrect,
.noaccountfound {
  background-color: #ffb9b9;
}
.loggedout {
  background-color: #bbffb9;
}
.passwordupdated,
.passwordreset {
  background-color: #ffe882;
}
#admin-grid {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: min-content auto min-content;
  grid-template-areas:
    "admin-nav"
    "main"
    "admin-footer";
  height: 100vh;
}
#admin-grid-2-top-bar {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: min-content min-content auto min-content;
  grid-template-areas:
    "admin-nav"
    "buttons"
    "main"
    "admin-footer";
  height: 100vh;
}
#sidebar {
  display: none;
  grid-area: sidebar;
  background-color: #484848;
  overflow-y: auto;
}
#buttons {
  background-color: #efefef;
  border-radius: 0.5rem;
  padding: 0.5rem;
  border: 1px solid rgb(206, 212, 218);
  margin-left: auto;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
#main {
  grid-area: main;
  padding: 1rem;
  overflow-y: auto;
}
#admin-nav {
  grid-area: admin-nav;
}
#admin-footer {
  grid-area: admin-footer;
}

/* MCE */
.mce-fullscreen {
  z-index: 1050 !important;
}

/* Carousel Logo placement */
.mini-logo {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 25%;
  z-index: 100;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.74);
}

/* General Stuff */
.vh-100{
  height: 100vh!important; /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100)!important;
}
a {
  text-decoration: none;
}
.img-left {
  float: left;
  max-width: 50%;
  padding: 10px 10px 10px 0px;
  height: auto;
}
.img-right {
  float: right;
  max-width: 50%;
  padding: 10px 0px 10px 10px;
  height: auto;
}

/* Toasty! */
#liveToast.show{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1021;
}
.toast{
  width: 300px;
  margin-left: auto;
  margin-right: 5rem;
  margin-top: 5rem;
}

/* Gallery stuff */
.galpreview{
  overflow:hidden;
  height: 10rem;
  background-repeat: no-repeat;
  background-size:cover;
  background-position:center;
}

/* Table stuff */
table.dataTable tbody td {
  vertical-align: middle;
}

/* Sidebar nav styling */
.sidebar-nav > a.list-group-item.list-group-item-action {
  background-color: #484848;
  border-color: #909090;
  color: white;
}

.sidebar-nav > a.list-group-item.list-group-item-action:focus,
.sidebar-nav > a.list-group-item.list-group-item-action:hover {
  background-color: #000000;
  border-color: #909090;
  color: white;
}
.sidebar-nav > a.list-group-item.list-group-item-action.active {
  background-color: #bbbbbb;
  color: black;
  border-color: #909090;
}

/* Testimonial stuff */
.testimonial-panel{
  width: 100%;
  min-height: 350px;
  background-color: #dddddd;
}
@media only screen and (max-width: 576px) {
  .testimonial-panel{
    min-height:600px;
  }
  footer .text-start, footer .text-end{
    text-align: center!important;
  }
}
.testimonial-overlay {
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.testimonial-overlay .blockquote{
  font-size: 22px;
  line-height: 1.67;
  color: black;
  font-style: italic;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonial-overlay .blockquote-footer{
  font-size: 18px;
  line-height: 1.67;
  font-weight: bold;
}
.testimonial-overlay cite{
  font-style: normal;
}
.fade {
  transition: opacity 0.4s linear !important;
}
.show {
  opacity: 1!important;
}
.hide {
  opacity: 0!important;
}
@media (min-width: 768px) {
  #admin-grid {
    grid-template-columns: 12rem auto;
    grid-template-rows: min-content auto min-content;
    grid-template-areas:
      "admin-nav admin-nav"
      "sidebar main"
      "admin-footer admin-footer";
  }
  #admin-grid-2-top-bar {
    grid-template-columns: 12rem auto;
    grid-template-rows: min-content min-content auto min-content;
    grid-template-areas:
      "admin-nav admin-nav"
      "sidebar main"
      "admin-footer admin-footer";
  }
  #sidebar {
    display: grid;
    grid-template-rows: min-content auto min-content;
  }
}




.fullscreen-block {
  min-height: 100%;
}
.cross-bar {
  padding: 50px 0px;
}
.line-div {
  margin: 20px auto 25px auto;
  max-height: 4px; 
  max-width: 8%; 
}
.trans-text {
  opacity: 80%;
}
.title-text {
  font-weight: 800;
  line-height: 1;
  font-size: 6rem;
}
.semi-title-text {
  font-weight: 800;
  line-height: 1;
  font-size: 4.2rem;
}
@media (max-width: 481px) {
  .title-text {
    font-weight: 800;
    line-height: 1;
    font-size: 3.6rem;
  }
  .semi-title-text {
    font-weight: 800;
    line-height: 1;
    font-size: 2.6rem;
  }
}
.page-title {
  font-weight: 600;
  font-size: 3rem !important;
}
.mini-title {
  font-size: 1.2rem;
  font-weight: 500;
}
.mini-text {
  font-size: 0.8rem;
  font-weight: 500;
}
.footer-title {
  font-weight: 800;
  font-size: 1.1rem;
}
.custom-title-container {
  padding: 0 0 50px 20%;
}

.ex-pad {
  padding-top: 125px;
  padding-bottom: 50px;
}
.foot-pad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.thin-title {
  font-size: 2rem;
  font-weight: 100;
}

.sale-block {
  width: 100%;
  height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.sale-block1 {
  background-image: url('/images/products/5kg-gaslight.png');
}
.sale-block2 {
  background-image: url('/images/products/10kg-gaslight.png');
}
.sale-block3 {
  background-image: url('/images/products/6kg-leisure-gas-1.png');
}
.sale-block4 {
  background-image: url('/images/products/11kg-leisure-gas.png');
}
.sale-block5 {
  background-image: url('/images/products/propane-gas-3-9kg-cylinder-screw-fit.png');
}
.sale-block6 {
  background-image: url('/images/products/propane-gas-6kg-cylinder-screw-fit.png');
}
.sale-block7 {
  background-image: url('/images/products/propane-gas-11kg-cylinder-screw-fit.png');
}
.sale-block8 {
  background-image: url('/images/products/propane-gas-flt-11kg-cylinder-screw-fit.png');
}
.sale-block9 {
  background-image: url('/images/products/propane-gas-flt-18kg-cylinder-screw-fit.png');
}
.sale-block10 {
  background-image: url('/images/products/propane-gas-19kg-cylinder-screw-fit.png');
}
.sale-block11 {
  background-image: url('/images/products/propane-gas-47kg-cylinder-screw-fit.png');
}
.sale-block12 {
  background-image: url('/images/products/Butane-Gas-Cylinder-4.5kg-21mm-Clip-on-Regulator.png');
}
.sale-block13 {
  background-image: url('/images/products/Butane-Gas-Cylinder-7kg-21mm-Clip-on-Regulator.png');
}
.sale-block14 {
  background-image: url('/images/products/Butane-Gas-Cylinder-13kg-21mm-Clip-on-Regulator.png');
}
.sale-block15 {
  background-image: url('/images/products/campingaz.jpg');
}


.bg-image {
  background-image: url('https://picsum.photos/1920/1080?grayscale');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.bg-image-overlay {
  background-color: #000000a8;
  width: 100%;
  height: 100%;
}
.hero-bg-image {
  background-image: url('/images/hero_inner_page.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(100%);
  background-attachment: fixed;
}
.hero-size {
  min-height: 350px;
}
@media (max-width: 991px) {
  .hero-size {
    padding-top: 50px;
    min-height: 1% !important;
    text-align: center;
  }
}
.d-shadow {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60); 
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60);
}
.hero-bg-image-overlay {
  background-color: #2424249c;
  width: 100%;
  height: 100%;
}
.footer-bg-image {
  background-image: url('/images/background-footer.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.footer-bg-image-overlay {
  background-color: #18181856;
  width: 100%;
  height: 100%;
}
.main-bg-image {
  background-image: url('/images/crane-5-scaled_grey.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.main-bg-image-overlay {
  background-color: #1f1f1fb6;
  width: 100%;
  height: 100%;
}
.engineer-bg-image {
  background-image: url('/images/background_2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.shred-block {
  width: 100%;
  height: 300px;
}
.shred-block-bg1 {
  background-image: url('/images/home-shred-1.png');
}
.shred-block-bg2 {
  background-image: url('/images/home-shred-2.png');
}
.shred-block-bg3 {
  background-image: url('/images/home-shred-3.png');
}

.br-5 {
  border-radius: 5px !important;
}

.carousel-indicators {
  margin-bottom: -1rem;
}
.carousel-size {
  height: 650px;
}


.custom-container {
  width: 1150px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  .custom-container {
    width: 90%;
  }
}




.nav-position
{
position: fixed;
left: 0;
right: 0;
transform: translateY(-100px);
transition: 0.2s;
z-index: 99999;
}

.shownav {
  transform: translateY(0px);
  transition: 0.2s;
}

.portfolio-image {
  margin-bottom: 4px; 
  height: 200px; 
  object-fit: cover;
}
.blackout-hov {
  background-color: #00000000;
  height: 100%;
  width: 100%;
}
.blackout:hover .blackout-hov {
  background-color: #0000008f;
}

.portfolio-bg1 {
  background-image: url(/images/portfolio/bucket/IMG_2214.jpeg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.portfolio-bg2 {
  background-image: url(/images/portfolio/tooth/IMG_3822.jpeg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.portfolio-bg3 {
  background-image: url(/images/portfolio/belt/IMG_2087.jpeg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}