.wrapper {
    width: 100%;
    margin: 0 auto;
}

.content-box {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding-left:5%;
    padding-right:5%;
}

/* HALF BANNER ON TOP   with flex START */

.half-banner-top {
    /* height: 177px; */
    /* border-bottom: 2px solid #0640c8; */
    display: flex;
    justify-content: center;
    align-content: center
}

.half-banner-top h1 {
    font-size: 36px;
    font-weight: bold;
    color: rgb(64, 64, 64);
    align-self: center;
    margin-top: 36px;
    margin-bottom: 36px;
}

/* HALF BANNER ON TOP   with flex STOP */

/* CONTACT START */

.adress-box {
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    margin-bottom: 36px;
}

address {
    margin-right: 100px;
}

.adress-box__img img {
    min-height: 200px;
    box-shadow: 0 5px 10px black;
}

.adress-box-text {
    margin-top: 14px;
}

.adress-box-map {
    /* flex-grow: 1; */
    width: 450px;
    align-content: stretch;
    z-index: 1;
    box-shadow: 0 5px 10px black;
    background: url(../images/contact-map.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.adress-box-text address {
    font-style: normal;
    font-size: 16px;
}

.email-box {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.email-box:not(:last-child) {
    padding-bottom: 10px;
}

.email-box:last-child {
    margin-bottom: 36px;
}

.email-box a {
    color: #006940;
    text-decoration: none;
}

.email-box a:hover {
    color: #408c40;
}


.adress-box .adress-box-map{
    width:50%;
  }
      .adress-box address{
        margin-right:36px;
      }
  

@media (max-width: 780px) {
    .adress-box {
        flex-direction: column;
    }
    address {
        display: flex;
        margin-bottom: 36px;
        margin-right: 0;
    }
    .adress-box__img img {
        margin-right: 36px;
    }
    .adress-box-map {
        height: 300px;
        width: 100%;
    }

    .adress-box .adress-box-map{
        width:100%;
      }
}

 
  

@media (max-width: 768px) {
    .adress-box-map {
        min-height: 200px;
        margin-top: 20px;
    }
}

@media (max-width: 595px) {
    .adress-box__img {
        flex-direction: column;
    }
    .adress-box__img img {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 36px;
    }
    .adress-box-map {
        margin-top: 0;
    }
    .adress-box-text {
        margin-top: 0;
    }
}

/* CONTACT STOP */

/* CUSTOM CYLINDERS START */

/* Main title on start */

.products-main-banner {
    /* padding-bottom: 36px; */
    /* padding-top: 36px; */
}

.products-main-banner h1 {
    color: rgb(64, 64, 64);
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 36px ;
    margin: 0;
    animation: moveIn 1s ease-in-out;
}

.products-main-banner h2 {
    font-size: 26px;
    text-align: center;
}

/* Main section  of the page */

.main-heading {
    text-align: center;
    font-size: 36px;
    margin-top: 36px;
    margin-bottom: 36px;
    font-weight: bold;
}

main {
    display: flex;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 80px;
}

/* LEFT side of the main section */

main aside {
    margin-top: 2px;
    margin-right: 60px;
    min-width: 260px;
}

main aside li {
    list-style-type: none;
    text-decoration: none;
}

main aside li:not(:last-of-type) {
    border-bottom: 1px solid rgba(0, 105, 64, .2);
}

main aside li:hover a,
main aside li:hover a::after {
    color:white;
    background: #00a86b;
    text-decoration: none;
}

main aside a {
    color: #006940;
    background: rgb(242, 242, 242);
    font-size: 14px;
    line-height: 20px;
    position: relative;
    display: block;
    padding: 5px 30px 5px 10px;
    text-decoration: none;
}

main aside a::after {
    content: "\003e";
    position: absolute;
    display: inline-block;
    right: 2px;
    top: 2px;
    color: white;
}

/* Section with  cards for every item  */

/* ONLY VISIBLE IN PC mode */

.products-main-box {
    display: flex;
    flex-grow: 1;
    align-content: stretch;
    align-items: flex-start;
    flex-wrap: wrap;
}
.products-main-box .item a{
    text-decoration: none;
    width:100% !important;
    
}
/* card /item */

.products-main-box .item {
    border: 1px solid black;
    margin: 15px;
    min-width: 230px;
    /* min-height:244px; */
    flex: 0 0 20%;
}

.products-main-box img {
    height: 110px;
    width: auto;
    padding: 15px 25px;
    
}

.products-main-box .item:hover {
    box-shadow: 0 0 5px 5px #00a86b;
}

/* upper part of the card/item */

.products-main-box .item-part1 {
    display: flex;
    justify-content: center;
}
.products-main-box .item-part1 a{
    width:100% !important;
    text-align: center;
}

/* lower part of the card/item */

.products-main-box .item-part2 {
    min-height: 78px;
    transition: .3s;
}

.products-main-box .item-part2 {
    background: rgb(242, 242, 242);
    /* padding: 18px; */
}

.products-main-box .item-part2 a {
    color: #006940;
    transition: .3s;
}

.products-main-box .item:hover .item-part2 {
    background: #00a86b;
}

.products-main-box .item:hover .item-part2 a {
    color: white;
    /* background: rgb(0, 95, 58); */
}

/* FOOTER adjustments */

/* Adding blue line above footer  */

#conf-section {
    border-top: 2px solid #0640c8;
}

/* Spare Parts START */

.repairParts {
    display: block;
    min-height: 60vh;
}

.repairParts h1 {
    color: rgb(64, 64, 64);
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 36px;
}

.repairParts__text {
    display: block;
}

.repairParts__text p {
    font-size: 18px;
    line-height: 22px;
    text-align: center;
}

.repairParts__list {
    font-weight: bold;
    font-size: 18px;
    width: 400px;
    margin: 36px auto;
}

.repairParts__list ul {
    list-style: none;
}

.repairParts__list li {
    padding-bottom: 10px;
}

.repairParts__list a {
    display: inline-block;
    color: #006940;
    width: 35%;
    font-size: 18px;
    text-decoration: none;
}

.repairParts__list a:hover {
    color: #408C40;
}

/* INDUSTRIES SERVED */

.u-unavailable-file {
    color: black !important;
    cursor: no-drop !important;
}

.pdf-box {
    min-width: 230px;
    position: relative;
}
.pdf-box>i{
    /* display: none !important; */
    position: absolute;
    top:-10px;
    right:0;
}

.industries-served {
    display: block;
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    min-height: 60vh;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 1px;
    margin-bottom: 72px;
}

.industries-served h1 {
    color: rgb(64, 64, 64);
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 36px;
    margin-top: 36px;
}

.industries-served-ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 31px;
}

.industries-served-ul li {
    list-style: none;
    width: 23.98%;
    margin: 5px;
    border:none;
  background: #006940;
  border-radius:5px;
    text-align: center;
    /* border-radius: 10px; */
    overflow: hidden;
}
.industries-served-ul li>a:focus{
    outline:none !important;
    background: #00a86b;
    color: white;
}

.industries-served-ul li a,
.industries-served-ul li a:visited {
    width: 100%;
    color: white;
    background: #006940;
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.industries-served-ul li:hover a {
    background: #00a86b;
    color:white;
    
}

.singular-industries-box .industries-pure-text {
    width: 50%;
    /* margin-right:70px; */
}

.singular-industries-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 300px;
}

.singular-industries-box img {
    box-shadow: 0 10px 15px rgba(0, 0, 0, .5);
    margin-top: 0 !important;
    width: 300px;
}

.singular-industries-box>*:not(:last-child) {
    margin-right: 40px;
}

.active-link {
    background: #00a86b  !important;
    color:white !important;
}

@media(max-width:920px) {
    .industries-served-ul li {
        width: 48%;
    }
    .singular-industries-box {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .singular-industries-box .industries-pure-text {
        order: 2;
        width: 100%;
        margin-top: 36px;
        margin-right: 0;
    }
}

@media(max-width:620px) {
   
    .singular-industries-box img{
       margin-right: 0;
       margin-bottom:36px;
        
    }
    
}


@media(max-width:560px) {
    .industries-served-ul li {
        width: 100%;
        margin: 2px;
    }
    .singular-industries-box img {
        /* width:60%; */
    }
    .singular-industries-box .pdf-box {
        justify-self: center;
        margin-top: 36px;
    }
}

@media(max-width:520px) {
    .singular-industries-box img {
        margin-right: 0 !important;
        width: 90%;
        justify-self: center;
    }
}

.tab-title-box {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 36px;
}

.tab-title {
    /* margin-right:50px; */
}

.tab-pdf-links {
    position: relative;
    color: #006940;
    list-style: none;
    max-width: 173px;
}

.tab-pdf-links li {
    margin-bottom: 5px;
    min-width:250px;
}

.pdf-box {
    display: flex;
}

.fa-file-pdf-o {
    color: red;
    margin-right: 15px;
    opacity: 0;
    animation: dissolveIn 2s ease-out forwards;
    -webkit-animation: dissolveIn 2s ease-out forwards;
}

@keyframes dissolveIn {
    0% {
        opacity: 0;
        transform: scale(0);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
    }
    80% {
        opacity: 1;
        transform: scale(1.3);
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        opacity: 1;
    }
}

.tab-pdf-links a {
    color: #006940;
    text-decoration: none;
    font-weight: bold;
}

.display-pdf-box {
    width: 100%;
    height: 900px;
    background: orange;
    box-shadow: 0 10px 20px black;
}




.youtube-video-box {
    margin-top: 7.2rem;
    margin-bottom: 7.2rem;
    text-align: center;
}

.youtube-video-box h1,
.youtube-video-box h2 {
    font-weight: bold;

}

.youtube-video-box h2 {
    margin-bottom: 1.8rem;
}

.youtube-video-box iframe {
    width: 100%;
    height: 300px;
    max-width: 550px;

}

@media(max-width:1000px) {
    .youtube-video-box iframe {}
}

@media(max-width:530px) {
    .youtube-video-box iframe {
        width: 100%;
        height: 250px;

    }
}

@media(max-width:420px) {
    .youtube-video-box iframe {
        width: 100%;
        height: 200px;

    }
}

#sb-wrapper {
    top: 20px !important;
}

#sb-title {
    display: block;
    min-height: 95px !important;
    position: absolute !important;
    bottom: 0px !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 2 !important;
    text-align: center;
}

#sb-title-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    background: #1345ac;
    height: 95px !important;
    font-size: 1.7rem !important;
    padding: 5px;
}


#sb-title-inner span {
    display: block;
    max-width: 70ch;
}

.filtr-item {
    pointer-events: initial;
}

.filtr-item.filteredOut {
    pointer-events: none
}

#sb-info {
    top: 20px;
}

.gal-title {
    font-size: 2.2rem;
    color: white;
    font-weight: normal;
}

.gal-subtitle {
    font-size: 1.5rem;
    color: white;
    font-weight: normal;
}

@media(max-width:700px) {
    #sb-title {
        min-height: 135px !important;
        bottom: 135px;
    }


    #sb-title-inner {
        height: 135px !important;
    }

    .gal-title {
        font-size: 1.8rem;
        color: white;
        font-weight: normal;
    }

    .gal-subtitle {
        font-size: 1.3rem;
        color: white;
        font-weight: normal;
    }

    #sb-info {
        top: 135px;
    }
}

@media(max-width:450px) {
    #sb-title {
        bottom: -115px !important;
        min-height: 135px !important;
    }

    #sb-title-inner {
        height: 135px !important;
    }

    .gal-title {
        font-size: 1.6rem;
        color: white;
        font-weight: normal;
    }

    .gal-subtitle {
        font-size: 1.1rem;
        color: white;
        font-weight: normal;
    }

    #sb-info {
        top: 135px;
    }
}
/* industries served v2 changes */

.specific-content-box {
    width: 100%;
}

.specific-content-box h2 {
    margin-bottom: 36px;
    font-weight: bold;
}

.specific-content-box img {
    margin-top: 36px;
}

.not-found {
    text-align: center;
    font-weight: bold;
}

/* MEDIA */

@media(max-width:768px) {
    .repairParts h1 {
        margin-top: 36px;
    }
    .repairParts__text {
        padding: 20px;
    }
    .repairParts__text p {
        text-align: justify;
    }
    .tab-title-box {
        flex-direction: column;
    }
    .tab-title {
        margin-bottom: 20px;
    }
    .tab-title h2 {
        text-align: center;
    }
    .specific-content-box img {
        width: 288px;
        height: auto;
    }
}

@media(max-width:425px) {
    .repairParts__list {
        margin-left: 50px;
    }
    .repairParts__list a {
        display: block;
    }
}



/* Spare Parts STOP */

/* MEADIA QUERIES  START*/

@media(max-width:1050px) {
    .products-main-box .item {
        margin: 13px;
    }
}

@media(max-width:1024px) {
    main {
        width: 95%;
        margin: 0 auto;
    }
    main aside {
        margin-right: 30px;
    }
}

@media(max-width:1000px) {
    .item {
        height: 220px;
    }
}

@media(max-width:768px) {
    .products-main-banner h1 {
        /* margin-top:100px; */
    }
    main {
        flex-direction: column;
        align-items: center;
    }
    main aside {
        margin-right: 0;
        min-width: 245px;
    }
    .products-main-box .item-part2 {
        min-height: 74px;
        padding: 15px;
    }
    .products-main-box {
        margin-top: 36px;
        display: none;
    }
}

@media(max-width:425px) {
    .products-main-banner h1 {
        font-size: 25px;
    }
    .products-main-banner h2 {
        font-size: 18px;
    }
    .products-main-box {
        display: none;
    }
}

/* MEADIA QUERIES  STOP*/

/* ANIMATION START */

@keyframes moveIn {
    0% {
        opacity: 0;
        transform: translateX(20%);
    }
    80% {
        transform: translateX(-80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ANIMATION STOP */

/* CUSTOM CYLINDERS STOP */

.rer {
    flex-direction: column;
    align-items: center;
}




