/*reset css */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

body {
    font-family: 'Lucida Sans Regular', 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: #4D4B49;
    color: #4D4B49;
    overflow-x: hidden;
}

/* Header */
header {
    /*background-image: url(headerbg1.jpg);*/
    background-position: center;
    height: 84px;
    width: 100%;
    background-color: white;
    position: fixed;
    z-index: 19;
    transition: all 1s;
}

.header-fixed {
    position: fixed;
    height: 60px;
    box-shadow: 0px 3px 5px rgb(0, 0, 0);
}
.logo {
    height:72px;
    width: 75%;
    max-width: 350px;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    margin-top: 6px;
    padding-right: 16px;
    transition: all 1s;
}

.logo-dis {
    opacity: 0;
}

.logo-shrink {
    height: 50px;
    transition: all ease-in-out .5s;
}

.logo2 {
    position: absolute;
    opacity: 0;
    transition: all 1s;
    left: 1%;
    transform: translate(0);
    width: 200px;
    height: 56px;
    margin-top: 2px;
}


.disablelink {
    pointer-events: none;
}

.logo-app {
    opacity: 1;
    
}
.headernav {
    height: 36px;
    width: 75%;
    color: black;
    visibility: hidden;
    display: flex;
    flex-flow: row;
    justify-content:flex-end;
    align-items: center;
    z-index: 2;
    position: fixed;
    right: 10px;
    top: 26px;
    transition: all 0.5s; 
    opacity: 0; 
}
.headernav-left {
    opacity: 1;
    visibility: visible;
    transition: all 2s; 
}
.headernav a {
    color: #4D4B49;
    text-decoration: none;
    font-size: 1rem;
    
}

.socials {
    position: fixed;
    left: 10px;
    top: 4px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s;
}

.phonetop {
    position: fixed;
    right: 10px;
    top: 4px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s;
}

.phonetop img {
    height: 100% !important;
}
.phonetop a {
    height: 100% !important;
}

.socialsgone {
    opacity: 0;
}

.socials img {
    height: 100% !important;
    margin-left: 12px;
}

.socials a {
    height: 95% !important;
}

.menubtn {
    position: absolute;
    left: -64px;
    top: 15px;
    transition: all 1s;
}

.phonebtn {
    position: absolute;
    right: -56px;
    top: 15px;
    transition: all 1s;
}

.menubtn-in {
    position: absolute;
    left: -18px;
    top: 15px;
}

.phonebtn-in {
    right: -18px;
    top: 15px;
}
 .header-space {
     height: 110px;
 }

/* Navigation */

nav {
    height: 36px;
    width: 100%;
    background-color: white;
    color: white;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 3px 10px 0px rgb(26, 21, 21);
    z-index: 20;
    position: fixed;
    margin-top: 84px;
    transition: all 1s;  
}

.nav-fixed {
    position: fixed;
    margin-top: 60px;
    height: 0px;
    overflow-y: hidden;
    opacity: 0;
}


.links {
    width: 50%;
    min-width: 600px;
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    align-items: center;
}

@media screen and (max-width: 850px) {
    .headernav a {
        font-size: 0.9rem;
    }

    .links {
        min-width: 500px;
    }
}

.links img {
    width: 70%;
    position: relative;
    left: -2px;
}

.link {
    display: flex;
    flex-flow: column;
}



nav a {
    color: #4D4B49;
    text-decoration: none;
    font-size: 1rem;
}

.more {
    display: none;
}

a.middle
{
    position: relative;
}

a.middle:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -2px;
  left: 0;
  background-color: #2FA794;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.5s ease-out;
}

a.middle:hover:before {
    visibility: visible;
    transform: scaleX(1);
  }
nav .more {
    color: #4D4B49;
    text-decoration: none;
    font-size: 1rem;
}
.dropdown2 a {
    color: #4D4B49;
    text-decoration: none;
    font-size: 1rem;
}
  div.middle
  {
      position: relative;
  }
  
  div.middle:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0px;
    bottom: -2px;
    left: 0;
    background-color: #2FA794;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.5s ease-out;
  }
  
  div.middle:hover:before {
      visibility: visible;
      transform: scaleX(1);
    }
  
.dropdown {
    width: 50vw;
    height: 0px;
    background-color:#ffffff;
    position: fixed;
    right: 0px;
    top: 120px;
    visibility: hidden;
    z-index: -10;
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    transition: all 0.5s ease-out;
    overflow: hidden;
    box-shadow: -3px 5px 4px rgba(34, 30, 30, 0.459);
}

.dropdown .middle {
    margin-left: 10px;
    border-bottom: 1px solid #267D6A;
}

.dropdown2 {
    width: 50vw;
    height: 0px;
    background-color:#ffffff;
    position: fixed;
    left: 0px;
    top: 60px;
    visibility: hidden;
    z-index: -10;
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    transition: all 0.5s ease-out;
    overflow: hidden;
    box-shadow: 3px 5px 4px rgba(34, 30, 30, 0.459);
}

.dropdown2 .middle {
    margin-left: 10px;
    border-bottom: 1px solid #267D6A;
}

.dropdownclicked {
    height: 200px;
    transition: all 0.8s ease-out;
    visibility: visible;
}

  

#green-down {
    transform: rotate(90deg) translate(3px,-12px);
    height: 15px;

}



@media only screen and (max-width: 690px) {
    .mlink {
      display: none;
    }
    .more {
        display: flex;
        flex-flow: row;
    }
    .links {
        width: 85%;
        min-width: 85%;
        display: flex;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;
    }
    .socials {
        display: none;
    }

    .phonetop {
        display: none;
    }

    .logo2 {
        display: none;
    }
  }


  


/* Hero */

.hero {
    overflow-y: hidden;
    overflow-x: hidden;
   position: relative;
   top: 110px;
   z-index: 2;
   
}

.hero-img-container {
    overflow: hidden;
}
.hero-img {
    width: 100%;
    max-height: 600px;
    min-height: 400px;
    min-width: 867px;
    vertical-align: middle; /* remove the vertical gap under inline level elements */
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    box-shadow: inset 0 -5px 6px rgb(0 0 0), inset 1px 14px 6px rgb(0 0 0);
}

.t-overlay {
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.hero-textbtn {
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    position: absolute;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
}

.hero-btn-txt {
    font-size: 1.5rem;
    text-shadow: 3px 5px 4px rgba(34, 30, 30, 0.459);
    position: relative;
    right: 15px;
}

.hero-text {
    /*position: absolute;*/
    display: block;
    top: 35%;
    color: #ffffff;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    
    z-index: 2;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes revealWidth {
    0% {
       max-width: 0px;
    }
    100% {
        max-width: 1000px;
        min-width: 315px;
    }
}

@keyframes revealHeight {
    0% {
       max-height: 0px;
    }
    100% {
        height: fit-content;
        max-height: calc((0.052 * 100vw) + 250px);
    }
}
/*max-height: calc((0.052 * 100vw) + 140px)*/

.hero-title-cont {
    max-width: 0px;
    animation: 1.5s ease-in-out 0.2s 1 revealWidth forwards;
    background-color: #2b9a82c5;
    width: calc(42vw + 150px);
    margin: 0 auto;
    font-size: calc(3.6vw + 12px);
    text-shadow: (3px 5px 4px rgba(34, 30, 30, 0.459));
    overflow: hidden;
    display: flex;
    flex-flow: row;
    justify-content: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    white-space: nowrap;
    text-align: center;
}

.hero-text-cont {
    max-height: 0px;
    max-width: 0px;
    animation: 1.5s ease-in-out 0.2s 1 revealWidth forwards, 2s ease-in-out 0.5s 1 revealHeight forwards;
    background-color: #ffffffcc;
    width: calc(42vw + 150px);
    margin: 0 auto;
    color: #196051;
    overflow: hidden;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    
    box-shadow: 0 3px 6px rgba(0, 0, 0);
}

.hero-getquote-cont {
    position: relative;
    margin-top: 16px;
    margin-bottom: 16px;
}
/*.hero-getquote Green Button {
    color: #ffffff;
    box-shadow: 3px 5px 4px rgba(34, 30, 30, 0.459);
    width: 40%;
    min-width: 160px;
    max-width: 180px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Tw Cen MT';
    background-image: linear-gradient(to right, rgb(47, 172, 145, 0.6) , rgb(18, 116, 107, 0.6));
    cursor: pointer;
    border-radius: 29px;
    outline:1px #fff solid;
    outline-offset:-4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}*/
.hero-getquote /*White Button*/ {
    color: rgb(41, 128, 109);
    width: 40%;
    min-width: 160px;
    max-width: 180px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Tw Cen MT';
    cursor: pointer;
    border-radius: 20px;
    outline:1px rgb(47, 172, 145) solid;
    outline-offset:-4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.hero-getquote-text {
    font-size: calc(1vw + 14px);
    font-weight: normal;
    margin-left: 10%;
}

@media only screen and (min-width: 1100px) {
    .hero-getquote-text {
        font-size: 19.5px;
    }
}


.hero-arrow {
    filter: drop-shadow(3px 5px 4px rgba(34, 30, 30, 0.459));
}

.arrow-height {
    height: 10px;
}

.hero-text-cont h2 {
    font-size: calc(1.9vw + 12px);
    padding-top: 10px;
}

.hero-covering {
    font-size: calc(1vw + 7px);
}

.hero-cd {
    font-size: calc(1.3vw + 8px);
    font-weight: lighter;
}
.hero-text h2 {
    font-family: 'Tw Cen MT', Nobel;
    font-weight: normal;
}


    .brsmall {
        display: block;
        margin-top: -25px;
        content: "";
    }
    @media only screen and (max-width: 1400px) {
      .brsmall {
        display: block;
        margin-top: -8px;
        content: "";
    }
    }

    @media only screen and (max-width: 680px) {
    .hero-covering {
        font-size: calc(1vw + 8px);
    }
    .hero-cd {
        font-size: calc(1.3vw + 9px);
        font-weight: lighter;
    }
    }

    .hero-text h1 {
        font-weight: normal;
        margin-top: 10px;
    }

   

.btn {
    background-image: linear-gradient(to right, rgb(151 160 158) , rgb(158 177 175));
    width: 185px;
    cursor: pointer;
    height: 48px;
    border-radius: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;

}

.btn-inner {
    width: 170px;
    height: 34px;
    border-radius: 26.26px;
    border: white 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-text {
    color: #ffffff;
    margin-left: 32px;
    text-decoration: none;
}

.btnlink {
    text-decoration: none;
}

.btn-arrow {
    padding-left: 22px;
}

.fom {
    margin-left: 10px;
    padding-left: 0;
}

.hero-btn {
    position: absolute;
    width: 260px;
    max-width: 300px;
    min-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn-inner {
    width: 244px;
}

@media only screen and (max-width: 500px) {
    .btn {
        width: 174px;
        height: 34px;
        border-radius: 26.1px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    
    .btn-inner {
        width: 163.6px;
        height: 25.7px;
        border-radius: 23.63px;
        border: white 1px solid;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-text {
        color: #ffffff;
        text-transform: uppercase;
        font-size: 0.8em;
    }
    
    .hero-btn {
        width: 234px;
        max-width: 270px;
        min-width: 200px;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btn-inner {
        width: 219.6px;
    }
}

/* welcome section */
.welcome {
    width: 100%;
    background-color:#ffffff;
    padding-bottom: 40px;
    box-shadow: 0px 3px 5px rgb(0, 0, 0);
    position: relative;
    z-index: 1;
}

.welcome-inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    width: 95%;
    margin: 0 auto;
    max-width: 1500px;
    padding-top: 170px;
    text-align: center;
}

.welcome-text {
    width: 80%;
    max-width: 1400px;
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    margin: 0 10px;
}

.welcometo {
    color:rgb(77, 75, 73);
    font-size: calc(12px + 0.5vw);
    margin-bottom: 5px;
    margin-left: 0;
    margin-right: auto;
}

.welcometonwb {
    width: 90%;
    max-width: 90vw;
    margin: 0 auto;
}

.viswelcome {
    font-size: calc(34px + 0.5vw);
    color:rgb(34, 129, 121);
    margin-bottom: 20px;
}

@media only screen and (max-width: 440px) {
    .viswelcome {
        font-size: 28px;
    }
}
@media only screen and (max-width: 370px) {
    .viswelcome {
        font-size: 24px;
    }
}

.inviswelcome {
    font-size: calc(34px + 0.5vw);
    opacity: 0;
}

.welcome-text-p {
    font-size: calc(13px + 0.3vw);
    line-height: 24px;
    margin-top: 10px;
    padding-bottom: 20px;
}

.welcome-title-text {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    margin: 0 5px;
}
.welcome-img{
    width: 45%;
    margin: 0 10px;
    
}

.welcome-img2 {
    box-shadow: 10px 10px #888888;
}

.welcome-img img {
    width: 100%;
    
}

.welcome-btns {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 10px;
    margin: 20px auto 0;
    width: 60%;
    min-width: 198px;
    
}

.btn:hover {
    background-image: linear-gradient(to right, rgb(111, 123, 121) , rgb(99, 132, 130));
    transition: 0.5s all;
}

.welcome-btn {
    margin: auto;
}

.flame {
    height: 80px;
    width: 60px;
    margin: 0 auto;
    margin-top: 25px;
}

.accreditations {
    margin-top: 60px;
    margin-bottom: 20px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    overflow: hidden;
}

.accreditation-img {
    height: 100px;
}

.accreditation-img img {
    height: 100%;
}

#aphc {
    height: 80px;
    margin: 10px 0;
}

#gassafe {
    height: 90px;
    margin: 5px 0;
}

#aphcdiv {
    text-align: right;
}

#gasdiv {
    text-align: right;
}

@media only screen and (max-width: 650px) {
    .accreditation-img {
        max-width: 40vw;
    }
    .accreditations {
        justify-content: space-between;
    }
}
@media only screen and (min-width:510px) and (max-width: 630px) {
    .accreditations {
        width: 80%;
        margin: 60px auto;
    }
}
@media only screen and (max-width: 340px) {
    .accreditations {
       width: 95%;
       overflow: visible;
    }
}

.accreditations h3 {
    flex-basis: 100%;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}
@media only screen and (max-width: 1070px) {
    .welcome-inner {
        flex-flow: column;
        padding-top: 140px;
    }
    .welcome-text {
        width: 90%;
        margin: 0 auto;
    }

    .welcome-img {
        margin: 15px auto;
        width: 80%;
        max-width: 600px;
        min-width: 300px;
    }
    .welcome-img2 {
        box-shadow: 5px 5px #888888;
    }
}
@media only screen and (max-width: 750px) {
.welcome-btns {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
}


/* Testimonials and info */

.testimonials {
    background-color:rgb(60, 106, 112,0);
    height: 330px; 
    position: relative; 
    box-shadow: 0 5px 4px rgba(34, 30, 30, 0.459);
    width: 100%;
    overflow: hidden;
}

.tes-bg-img {
    width: auto;
    max-height: 600px;
    min-height: 330px;
    min-width: 100%;
    vertical-align: middle;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.tes-title {
    color: #ffffff;
    font-style: italic;
    font-weight: bold;
    font-size: 1.3em;
    text-shadow: 0 5px 4px rgba(34, 30, 30, 0.459);
    padding-left: 7%;
    padding-top: 10px;
    padding-bottom: 8px;
    margin-bottom: 15px;
    max-width: 1500px;
    width: 11%;
    min-width: 160px;
    background-color: #2b9a82;
    position: relative;
    z-index: 9;
    border-bottom-right-radius: 25px;
}

.tes-work {
    color: #ffffff;
    font-size: 1.1em;
    text-shadow: 0 5px 4px rgba(34, 30, 30, 0.459);
    padding-top: 10px;
    padding-bottom: 8px;
    padding-right: 8%;
    min-width: 160px;
    width: 11%;
    position:absolute;
    text-align: right;
    right: 0px;
    bottom: 0px;
    background-color: #2b9a82;
    cursor: pointer;
    z-index: 9;
    border-top-left-radius: 25px;
}
.tes-arrow {
    position: absolute;
    bottom: 8px;
    transform: translateX(5px);
    filter: drop-shadow(3px 5px 4px rgba(34, 30, 30, 0.459));
}

.tes-div {
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
}

.tes-tile {
    height: 180px;
    width: 21%;
    max-width: 400px;
    min-width: 300px;
    margin-right: 10px;
    background-color: #ffffffe5;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    z-index: 10;
    position: relative;
    border-radius: 10px;
}

.tes-tile:before {
    display: block;
  text-align: center;
  line-height: 200px;
  font-size: 80px;
  color: white;
}

.tes-text {
    padding: 5px;
    text-align: center;
}

.tes-img {
    height: 40px;
    width: auto;
    position: absolute;
    bottom: 15px;
    left: 15px;
}

a.no-style-link {
  text-decoration: none; /* removes underline */
  color: inherit;         /* inherits text color from parent */
}

a.no-style-link div {
  color: inherit;
}



/* STATS */
.stats {
    width: 100%;
    height: 500px;
    background-color: #ffffff;
    
    padding-top: 20px;
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    z-index: 5;
}

.stats-cont {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 3px 6px rgba(0, 0, 0), 0 -1px 4px rgba(0, 0, 0);
    z-index: 5;
    position: relative;
}

.stats h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.stat-imgs {
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    max-width: 1500px;
    width: 100%;
}

.stat-img-cont {
    width: 400px;
    margin: 0 50px;
}

.stat-img {
    height: 80px;
    display: block;
    margin: auto;
    margin-bottom: 15px;
}

.stat-texts {
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    max-width: 1500px;
    width: 100%;
}

.stat-btn {
    margin-top: 40px;
}

.stat-text {
    display: flex;
    flex-flow: column;
    height: 150px;
    width: 400px;
    text-align: center;
    margin: 0 50px;
}

.stat-text h3 {
    font-size: 1.15rem;
}
.stat-text p {
    margin-top: 15px;
}

.why-bio {
    font-size: 1.5rem;
    text-align: center;
}
@media only screen and (max-width: 1250px) and (min-width: 945px) {
    .stat-img-cont {
        margin: 0 50px;
    }
    .stat-text {
        font-size: 0.9em;
        margin: 0 50px;
    }
    
    .stat-text h3 {
        font-size: 1.1rem;
    }
    .stat-text p {
        margin-top: 15px;
    }
    .stat {
        width: 350px;
        margin: 5px;
    }
}

@media only screen and (max-width: 945px) {
    .stat-imgs {
        display: flex;
        flex-flow: column;
        justify-content: space-evenly;
        align-items:center;
        width: auto;
    }
    .stat-img {
        width: 80px;
        margin:0;
    }
    .stat-img1 {
        margin-left: 10px;
    }
    .stat-texts {
        display: flex;
        flex-flow: column;
        justify-content: space-evenly;
        width: auto;
    }
    .stats {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-around;
        height: 650px;
        width: 430px;
        max-width: 95%;
        margin: 0 auto;
        overflow: hidden;
        padding: 20px 0;
    }
    
    .stat-btn {
        margin-top: 40px;
        flex-basis: 100%;
        display: flex;
        flex-flow: row;
        justify-content: center;
    }
    .stat-text {
        width: 100%;
        max-width: 230px;
        height: 180px;
        margin: 0;
        justify-content: center;
    }
    .stat-text p {
        font-size: 14.4px;
        margin-top: 5px;
    }
    .stat-text h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .stat-img-cont {
        width: 100px;
        height: 180px;
        display: flex;
        flex-flow: column;
        justify-content: center;
        margin: 0;
    }
    .why-bio {
        flex-basis: 100%;
        font-size: 1.5rem;
        text-align: center;
    }
}

@media only screen and (max-width: 350px) {
    .stat-img {
        width: 60px;
        margin:0;
    }
    .stat-img-cont {
        width: 65px;
    }
}
@media only screen and (max-width: 316px) {
    .stat-text p {
        font-size: 11px;
        margin-top: 5px;
    }
}


/* What is biomass? */

.whatisbio {
    background-image: url("treebackground.jpg");
    background-size: cover;
    background-position: center;
    flex-flow: column;
    justify-content: space-evenly;
}

.what-text-cont {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
}

.what-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 30px 0 30px 0;
    margin-top: calc(3vh*10vw);
    margin-bottom: 3vh;
}

.what-text {
    font-size: 1.1rem;
    margin: 15px 0;
    }

.biocyc {
    object-fit: contain;
    width: 100%;
    height: 400px;
}

@media only screen and (max-width: 690px) {
    .what-text {
        font-size: 1rem;
        margin: 2vh 5%;
        }
    .what-text-cont {
        height: 90%;
        width: 100%;
        padding-top: 30px;
    }
    .what-title {
        font-size: 1.7rem;
        margin: 2vh 5%;
    }
    .biocyc {
        object-fit: contain;
        width: 96%;
        height: 330px;
        margin: -20px 2%;
        position: relative;
        top: -20px;
    }
    }


/* Contact form on home page*/
      .hp-contact {
        width: 100%;
        background: #ffffff;
        display: flex;
        flex-flow: row;
        justify-content: center;
        position: relative;
        box-shadow: 0 2px 4px rgba(0, 0, 0), 0 -2px 4px rgba(0, 0, 0);
        z-index: 10;
        overflow-x: hidden;
      }
      .cont-h1 {
      margin: 20px auto 20px;
      text-align: center;
      font-weight: 400;
      font-size: 2.5rem;
      }
      .cont-p {
      margin: 0 0 5px;
      }
      .title-form-div {
          display: flex;
          flex-flow: column;
          align-items: center;
          box-shadow: 0 2px 5px #f5f5f5; 
          background: #ffffff; 
          width: 100%;
          min-height: 100%;
          padding: 25px;
          background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("logo-cut.jpg");
          background-repeat: no-repeat;
          background-position: bottom right;
          background-size: 300px;
      }

      .form-tel-cont {
      margin: 25px;
      display: flex;
      flex-flow: row wrap;
      justify-content: space-evenly;
      max-width: 1000px;
      
      }

      .form {
        width: 40%;
        min-width: 250px;
        position: relative;
      }
      
      input, textarea, select {
      width: calc(100% - 18px);
      padding: 8px;
      margin-bottom: 20px;
      border: 2px solid rgb(18, 116, 107);
      outline: none;
      background: #f5f5f5c5; 
      resize: none;
      }

      #msg {
        width: calc(100% - 18px);
        padding: 8px;
        margin-bottom: 20px;
        border: 2px solid rgb(18, 116, 107);
        outline: none;
        background: #f5f5f5c5; 
        resize: none;
        height: 80px;
      }

      input::placeholder {
      color: #666;
      }
     .submit {
      width: 100%;
      padding: 10px;
      border: none;
      background: #267D6A;
      font-size: 16px;
      font-weight: 400;
      color: #fff;
      transition: 0.5s all;
      cursor: pointer;
      }
      .submit:hover {
      background: rgb(130, 168, 164);
      transition: 0.5s all;
      }    
     
      .phone-div {
          border: 3px solid rgb(18, 116, 107);
          height: 130px;
          width: 250px;
          text-align: center;
          display: flex;
          flex-flow: column;
          justify-content: center;
      }

      .phone {
          font-size: 1.4rem;
      }

      .email-div {
        border: 3px solid rgb(18, 116, 107);
        height: 130px;
        width: 250px;
        text-align: center;
        display: flex;
        flex-flow: column;
        justify-content: center;
    }

    .email {
        font-size: 1.3rem;
    }

    .email-phone-div {
        display: flex;
        flex-flow: column;
        justify-content: space-between;
    }

    .email-phone-div a {
        text-decoration: none;
        color: #4D4B49;
    }

    .phonesym {
        height: 40px;
    }

    .emailsym {
        height: 34px;
    }

    .phone-div {
        display: flex;
        flex-flow: column;
        justify-content: space-evenly;
    }

    .email-div {
        display: flex;
        flex-flow: column;
        justify-content: space-evenly;
    }

    @media only screen and (max-width: 800px) {
        .email {
            font-size: 1rem;
        }
        
        .phone {
            font-size: 1rem;
        }
    }


    @media only screen and (max-width: 500px) {
    .title-form-div {
        padding: 15px 0;
    }
    .phone-div {
        margin-top: 20px;
    }
    .email-div {
        margin-top:20px; 
    }

    .cont-h1 {
        margin-bottom: 0px;
        font-size: 28px;
    }

    input, textarea {
        padding: 5px;
        margin-bottom: 9px;
    }
    .email-phone-div {
        display: flex;
        flex-flow: row;
        justify-content: space-evenly;    
    }

    .phone-div {
        width: 160px;
        margin-right: 4px;
    }

    .email-div {
        width: 160px;
        margin-left: 4px;
    }

    .phone {
        font-size: 0.9em;
    }
    .email {
        font-size: 0.85em;
    }
    }
    @media only screen and (max-width: 340px) {
        .phone-div {
            width: 150px;
            margin-right: 3px;
        }
    
        .email-div {
            width: 150px;
            margin-left: 3px;
        }
    
        .phone {
            font-size: 0.8em;
        }
        .email {
            font-size: 0.8em;
        }
    }
    /* area covered */
    .area-covered {
        background-color: #ddebe8;
        padding-top: 60px;
        overflow-x: hidden;
    }

    .lists {
        display: flex;
        flex-flow: row;
        justify-content: space-evenly;
        max-width: 1300px;
        margin: 0 auto;
    }
    .list-box {
        width: 30%;
        max-width: 300px;
    }

    .areas-title {
        padding-left: 50px;
    }
    
    .list-box h4 {
        font-size: 1.3rem;
        color: #2b9a82;
        margin-bottom: 20px;
        position: relative;
        z-index : 1;
    }
    .list-box h4:before {
        content : "";
        position: absolute;
        left    : 0px;
        bottom  : -5px;
        height  : 1px;
        width   : 90px;  /* or 100px */
        border-bottom:4px solid #7c8781;
      }
      .areas-title:before {
        left    : 50px !important; 
      }
    .areas-list  {
        padding-left: 50px;
    }

    .list li{
        margin: 0;
        padding: 6px 0 6px 40px;
        list-style: none;
        background-image: url("tick.svg");
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 18px;
    }

    @media only screen and (max-width: 650px) {
        .lists {
            flex-flow: row wrap;
            justify-content: space-between;
            max-width: 98%;
        }
        .list-box {
            max-width: 500px;
            width: 45%;
            margin: 0 2%;
        }
        .nwb-box {
            width: 95%;
            margin-bottom: 20px;
        }

        

        .areas-title {
            padding-left: 0px;
        }
        .areas-title:before {
            left: 0px !important; 
          }
          .areas-list  {
            padding-left: 0px;
        }
    }

    .areas-small {
        font-size: 0.8rem;
        text-align: center;
        width: 80%;
        max-width: 1200px;
        margin: 30px auto;
    }


    /* About us page */
    .content {
        position: relative;
        top: 110px;
        z-index: 2;
        background-color: #ffffff;
        padding-top: 60px;
        margin-bottom: 80px;
        padding-bottom: 20px;
    }

    .about-us-content {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-evenly;
        max-width: 1500px;
        margin: 0 auto 50px;
    }

    .about-us-text {
        display: flex;
        flex-flow: column;
        width: 550px;
        max-width: 95%;
        padding: 0 40px;
    }
    .about-us-text h1 {
        margin-bottom: 25px;
        font-size: 1.6rem;
    }

    .about-us-img {
        height: 400px;
        max-width: 95%;
        margin: 0 40px;
        box-shadow: 4px 4px 4px 1px rgb(0, 0, 0, 0.6) ;
    }

    .about-btn {
        margin-top: 25px;
    }
    @media only screen and (max-width: 1200px) {

    .about-us-text {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 500px) {

    .about-us-img {
        height: auto;
        max-width: 95%;
        margin: 0 40px;
    }
}



    /* Our work page */

    .work-title {
        font-size: 1.6rem;
        max-width: 1400px;
        margin: 0 auto 0 50px;
    }
    .work-gallery {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-evenly;
        max-width: 1400px;
        margin: 0 auto;
    }

    .work-tile {
        display: flex;
        flex-flow: column;
        justify-content: space-evenly;
        width: 22vw;
        min-width: 340px;
        margin: 20px 0;
        list-style: none;
        box-shadow: 3px 3px 3px rgb(0, 0, 0, 0.2);
        background: radial-gradient(ellipse at left top,rgb(239, 239, 239) 0%, rgb(255, 255, 255) 85%, rgba(43,154,130,1) 100%);
    }

    .work-tile-last {
        margin-right: auto;
    }

    .work-tile h2 {
        padding: 8px;
        font-size: 1.6rem;
        color: #2b9a82;
    }

    .work-tile h3 {
        padding: 0px 0px 6px 8px;
        font-size: 1.1rem;
    }


    .work-img {
        width: 100%;
        height: 230px;
    }

    
    .work-tile p {
        padding: 8px;
    }

    .work-btn {
        width: 150px;
        cursor: pointer;
        height: 35px;
        border-radius: 29px;
        border: #267D6A 2px solid;
        color: #267D6A;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        margin: 15px 45px 15px auto;
    }

    .work-arrow {
        height: 15px;
        padding-left: 10px;
    }



    /* Services page */
    .service-content {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-evenly;
        max-width: 1500px;
        padding-bottom: 100px;
        margin: 0 auto 50px;
    }

    .services-content h1 {
        margin-bottom: 25px;
        margin-left: 60px;
        font-size: 1.6rem;
    }

    .service-text {
        display: flex;
        flex-flow: column;
        justify-content: space-evenly;
        width: 550px;
        max-width: 95%;
        padding: 0 40px;
        line-height: 1.4;
    }

    .service-text h2 {
        font-size: 1.35rem;
        margin-bottom: 25px;
    }

    .service-text h1 {
        margin-bottom: 25px;
        font-size: 1.6rem;
    }

    .service-text-p {
        font-size: 1.05rem;
    }

    .service-img {
        height: 350px;
        max-width: 95%;
        margin: 0 40px;
        box-shadow: 4px 4px 4px 1px rgb(0, 0, 0, 0.6) ;
    }

    .service-btn {
        margin: 0 auto;
        margin-top: auto;
    }

    @media only screen and (max-width: 1140px) {

        .service-btn {
            margin-bottom: 30px;
            margin-top: 30px;
        }
        .service-content {
            padding-bottom: 0;
        }
        .serv2 {
            display: none;
        }
        
    }

    
    

    .supply-content1 {
        display: flex;
        flex-flow: column;
        justify-content: space-evenly;
        max-width: 1500px;
        padding-bottom: 100px;
        margin: 0 auto 50px;
        min-height: 150px;
    }

    .supply-content h1 {
        margin-bottom: 25px;
        margin-left: 60px;
        font-size: 1.6rem;
    }

    .supply-content p {
        margin-left: 15px;
    }

    .formNone {
        display: none;
    }


    .close-dropdown {
        position: fixed;
        width: 100vw;
        height: 100vh;
        z-index: -10;
        display: none;
    }

    .close-dropdown-disp {
        display: block;
    }

    /* Form Styles */
    /*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);


/*form styles*/
#msform {
	min-width: 320px;
    width: 80%;
    max-width: 700px;
	margin: 50px auto;
	text-align: center;
	position: relative;
}
#msform fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	box-sizing: border-box;
	width: 80%;
    min-width: 320px;
    margin: 0 5%;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#msform input, #msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
    width: auto !important;
	border-radius: 3px;
	margin-bottom: 10px;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 16px;
   
    }
#msform select {
    padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: auto;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 16px;
}

/*buttons*/
#msform .action-button {
	width: 100pxpx;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 40px 5px 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: #267D6A;
	text-transform: uppercase;
	font-size: 9px;
	width: 33.33%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: #267D6A;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: #27AE60;
	color: #ffffff;
}

.heat-loss-form {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    max-width: 1500px;
    min-height: 100vh;
    margin: 0 auto 50px;
}


.confirmation-div {
    height: 100vh;
    text-align: center;
}



.wrapper{
  display: inline-flex;
  background: #fff;
  height: 100px;
  width: 300px;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 5px;
}
.wrapper .option{
  background: #fff;
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 10px;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 10px;
  border: 2px solid lightgrey;
  transition: all 0.3s ease;
}
.wrapper .option .dot{
  height: 18px;
  width: 28px;
  background: #d9d9d9;
  border-radius: 10px;
  position: relative;
}
.wrapper .option .dot::before{
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #000000;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
.radio-styled {
  display: none;
}
#sameAddress:checked:checked ~ .sameAddress,
#diffAddress:checked:checked ~ .diffAddress{
  border-color: #ebebeb;
  background: #36b599;
}
#sameAddress:checked:checked ~ .sameAddress .dot,
#diffAddress:checked:checked ~ .diffAddress .dot{
  background: #fff;
}
#sameAddress:checked:checked ~ .sameAddress .dot::before,
#diffAddress:checked:checked ~ .diffAddress .dot::before{
  opacity: 1;
  transform: scale(1);
}
.wrapper .option span{
  font-size: 16px;
  color: #808080;
}
#sameAddress:checked:checked ~ .sameAddress span,
#diffAddress:checked:checked ~ .diffAddress span{
  color: #fff;
}



.hide-add-form {
    display: none;
}

.show-add-form {
    display: block;
}

.floor-hide {
    display: none;
}

.display-floor {
    display: inline-block !important;
}

.room {
    width: auto !important;
}

.radio-group {
    text-align: left;
}

.widthinput {
    width: 100px !important;
}

label {
    display: inline-block;
    margin-bottom: 5px;
    margin-top: 10px;
    margin: 10px 0 5px auto;
    text-align:start !important;
}

.radio-width {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
}

.room-div {
    border: #267D6A 1px solid;
    padding: 5px;
    min-height: 40px;
}

.showhide {
    float: right;
    background: #359983;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 5px 15px;
}



.none {
    display: none !important;
}

.block {
    display: block  !important;
}

.addroom-btn {
    width: 100px;
    background: #359983;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    margin-left: auto;
    margin-right: 0;
}

.room-inner {
    margin-top: 40px;
}

#floorname1, #floorname2, #floorname3, #floorname4, #floorname5 {
    font-weight: bold;
    font-size: 1.1rem;
}

fieldset{
    text-align: left !important;
}

fieldset label {
    width: 48%;
    margin:  20px 0;
}

fieldset select {
    display: inline-block;
    width: 46% !important;
    margin:  20px 0;
}

fieldset input {
    width: 46% !important;
}

fieldset textarea {
    margin: 20px 0;
}

.text-center {
    text-align: center;
}

.floorname {
    width: 100%;
    font-weight: bold;
    font-size: 1.1rem;
}

.sub, .next {
    float: right;
}


.work-message {
    display: flex;
    flex-flow: row;
    justify-content: center;
    margin: 25px 2px;
    font-size: 1.15rem;
    padding-bottom: 25px;
}

.msgsent {
    background: #f5f5f5;
    
    color: rgb(77, 75, 73);
    height: 0px;
    transition: all 1s;
    width: 100%;
    position:absolute;
    overflow: hidden;
    text-align: center;
    z-index: 10;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.info {
    position: relative;
}
.sentshow {
    height:100%;
    border: 3px solid rgb(18, 116, 107);
}

/*WORK PAGES*/

.workpage-content {
    position: relative;
    top: 40px;
    z-index: 2;
    background-color: #ffffff;
    padding-top: 20px;
    margin: 0 auto 24px;
    height: 750px;
}

@media only screen and (min-width: 1200px) {
.workpage-height1200 {
    height: 1000px !important;
}
}


.workpage-text {
    display: flex;
    position: absolute;
    top: 60px;
    left: 30px;
    background-color: #ffffff;
    flex-flow: column;
    width: 550px;
    max-width: 95%;
    padding: 10px 20px;
}

.workpage-text2 {
    top: 100px;
}

.workpage-text h1 {
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.workpage-text p {
    font-size: 0.95rem;
    line-height: 1.4rem;
}

.workpage-img {
    height: 400px;
    max-width: 95%;
    margin: 0 40px;
    box-shadow: 4px 4px 4px 1px rgb(0, 0, 0, 0.6) ;
}

@media only screen and (max-width: 1200px) {
    .workpage-img {
        display: none;
    }
.workpage-text {
    margin-bottom: 30px;
}
}

@media only screen and (max-width: 500px) {

.workpage-img {
    height: auto;
    max-width: 95%;
    margin: 0 40px;
    display: none;
}

.workpage-text p {
    font-size: 0.9rem;
    line-height: 1.2rem;
}
}


.slideshow-container {box-sizing:border-box}

/* Slideshow container */


/* Next & previous buttons */
.prev, .next1 {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease-in-out;
  border-radius: 0 3px 3px 0;
  user-select: none;
  margin-right: -10px;
  margin-left: -10px;
}

.nextprev {
    position: fixed;
    width: 150px;
    height: 100px;
    bottom: 0;
    right: 30%;
}

/* Position the "next button" to the right */
.next1 {
  right: 0;
  border-radius: 3px 0 0 3px;
  z-index: 10;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next1:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot2 {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot2:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .8}
  to {opacity: 1}
}

.slideshow-container-outer {
    position: relative;
    width: 100%;
    height: 750px;
    right: 0;
    margin: auto;
  }

.slideshow-container {
    position: fixed;
    width: 100%;
    max-height: 90vh;
    height: 750px;
    right: 0;
    margin: auto;
    z-index: -1;
  }
  
  
  /* Hide the images by default */
  .mySlides {
    display: none;
    height: 100%;
    overflow: hidden;
    
  }

  .slide-img1 {
    position: absolute;
    max-height: 75vh;
    height: 750px;
    margin-left: 20vw;
    object-fit: contain;
  }

  .slide-img1 img {
    max-height: 90vh;
    height: 750px;
    min-width: 1584px;
  }

  .slide-img2 {
    display: none;
    position: absolute;
    max-height: 750px;
    margin-left: 20vw;
    object-fit: contain;
  }

  .gradient-left {
    background-image: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0) 24%);
  position: absolute;
  top: 0;
  margin-left: 20vw;
  height: 750px;
  min-width: 1584px;
}

.totheback {
    z-index: -4;
}

.workp-btn {
    margin-top: 30px;
    margin-bottom: 30px;
}

@media screen and (min-width: 1500px) {
    .slide-img1 {
        right: 0;
      }

      .gradient-left {
        right: 0;
      }

      .slide-img1 img {
        max-height: 750px;
        min-width: 80vw;
      }
}

@media screen and (min-height: 830px) {
    .nextprev {
        position: fixed;
        width: 150px;
        height: 100px;
        top: 715px;
        right: 30%;
    }
}

@media screen and (max-width: 1150px) {
    .workpage-text {
        width: 95vw;
        left: auto;
        background-color: #ffffff00;
        position: relative;
        z-index: -3;
        
        top: 43vh;
        padding: 0;
        margin: auto;
        margin-bottom: 44vh;
    }
    .workpage-content{
        height: auto;
    }

    .slideshow-container-outer {
        position: relative;
        width: 100%;
        height: 0px;
        right: 0;
        margin: auto;
      }
    .slideshow-container {
        position: absolute;
    }
    .workpage-text h1 {
    }
    .workpage-text p {
        font-size: 0.9rem;
        
        width: 95vw;
    }

    .gradient-bot-text {
        background-image: linear-gradient(to top, rgba(255, 255, 255, 0), rgb(255, 255, 255));
      position: fixed;
      top: calc(40vh + 60px);
      margin-left: 0;
      height: 5vh;
      width: 1333px;
      z-index: -1;
    }


    .slide-img1 {
        position: fixed;
        top: 60px;
        max-height: 40vh;
        margin-left: 0;
        min-width: 100%;
        background-color: #7e7e7e;
        display: flex;
        flex-flow: row;
        justify-content: center;
      }

      .slide-img1 img {
        max-height: 40vh;
        min-width: auto;
      }
      .gradient-left {
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 85%,  rgb(255, 255, 255));
      position: fixed;
      top: 0;
      margin-left: 0;
      height: calc(40vh + 60px);
      width: 1333px;
    }

    .nextprev {
        position: fixed;
        width: 100vw;
        height: 100px;
        top: 20vh;
        right: 50%;
        transform: translate(50%);
    }

    .next1 {
    }
}
  