/* Home */

body {
  height: 100%;
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
}

p {
    line-height: 1.6;
}

/* Fold */

 #fold {
   width:100vw; 
   height:100vh; 
   background-image: url("main_fold_desk.png");
     background-repeat:no-repeat;
     -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    background-position:center;
} 

#fold img {
    display: block;
}

#fold .TL {
    position: absolute;
    top: 0;
    left: 0;
    width: 27%;
    height: auto;
}

#fold .BR {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28%;
    height: auto;
}

.tri-down {
    position: absolute;
    bottom: 30px;
    left: 48%;
    padding: 5px;
    font-size: 4rem;
    text-shadow: 2px 2px 4px #000000;
}

.tri-down:hover {
    cursor: pointer;
    transform: scale(1.1,1.1);
    -webkit-transform:scale(1.1,1.1);
    -moz-transform:scale(1.1,1.1);
}

/* Menu */

#menu {
    margin: 100px 15%;
    color: white;
}

#menu h2 {
    font-size: 2rem;
}

#menu .herbal {
    height: 50px;
    width: auto;
}

.defOb {
    display: inline-block;
    width: 34vw;
    height: 250px;
    padding: 50px 40px;
    text-align: center;
    background-color: #548235;
    box-sizing: border-box;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.obServOp {
    margin-top: 20px;
}

.defServ {
    display: inline-block;
    float: right;
    width: 34vw;
    height: 250px;
    padding: 50px 40px;
    text-align: center;
    background-color: #824c35;
    box-sizing: border-box;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.servOp {
    margin-left: 36vw;
    float: none;
}

.servObOp {
    margin-top: 20px;
    float: none;
}

.defCont {
    display: inline-block;
    width: 34vw;
    margin-left: 17vw;
    margin-top: 20px;
    height: 250px;
    padding: 50px 40px;
    text-align: center;
    background-color: #7e7e82;
    box-sizing: border-box;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.contOp {
        margin-left: 0px;
        transition: all 2.4s ease;
}

.contPostOp {
    margin-left: 17vw;
    transition: all 2.4s ease;
}

.contObOp {
    margin-left: 0px;
    float: right;
}

.contServOp {
    margin-left: 0px;
    float: right;
}

.tile:hover {
    cursor: pointer;
    transform: scale(1.02,1.02);
    -webkit-transform:scale(1.02,1.02);
    -moz-transform:scale(1.02,1.02);
    transition: all .2s ease-in-out;
}

/* Nos Objectifs */

.ob {
    background: url(ob_bg.jpg) center no-repeat;
     -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    position: relative;
    padding: 60px;
    z-index: 0;
}

.obOverlay {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(84, 130, 53, 0.85);
}

.obcopy {
    z-index: 1;
    /* column-count: 2;
    column-gap: 40px;
    column-rule: solid 1px white; */
}

.obcopy table {
    border-collapse: collapse;
    width: 100%;
}

.obcopy thead {
    font-weight: bold;
}
.obcopy th, td {
    border: 1px solid white;
    padding: 15px;
    text-align: center;
    
}
.close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2.5rem;
}

.close:hover {
    cursor: pointer;
    transform: scale(1.1,1.1);
    -webkit-transform:scale(1.1,1.1);
    -moz-transform:scale(1.1,1.1);
}

/* Nos Services */

.serv {
    background: url(serv_bg.jpg) center no-repeat;
     -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    position: relative;
    padding: 60px;
    padding-bottom: 100px;
    z-index: 0;
}

.intro {
    font-style: italic;
    padding-bottom: 30px;
}

.servOverlay {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(130, 76, 53, 0.7);
}

.servcopy {
    z-index: 1;
}

.fig {
    background: white;
    border-radius:180px;
    padding: 8px 20px;
    color: rgba(130, 76, 53, 0.7);
    
}

.servFloatHead {
    margin-top: 80px;
}

.rightTitle {
    text-align: right;
}

.pair {
    float: right;
}

.serv p {
    padding: 10px 0;
}

.serv button {
	height:40px;
	border-radius:15px;
    background-color: white;
    color: rgba(130, 76, 53, 0.7);
	border: solid 1px transparent;
	transition: background 500ms ease;
    font-weight: bold;
    font-size: 0.8rem;
}

.serv button:hover {
    cursor: pointer;
    background-color: rgba(130, 76, 53, 0.7);
    color: white;
	border: solid 1px white;
	transition: background 500ms ease;
    
}

/* Contact */

.cont {
    background: url(cont_bg.jpg) center no-repeat;
     -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    position: relative;
    padding: 60px;
    padding-bottom: 100px;
    z-index: 0;
}

.contOverlay {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(126, 126, 130, 0.7);
}

.contcopy {
    z-index: 1;
}

.contcopy h3 {
    font-size: 1.6rem;
}

.contcopy h4 {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 10px;
}

.contcopy a {
    color: white;
}

.contcopy ul {
    list-style-type: none;
    padding-left: 0;
}

.address {
    width: 100%;
    border-top: solid 3px white;
    padding-top: 20px;
}

/* Map */

#ad {
    display: inline-block;
    width: 40%;
    margin-right: 20%;
}

#map {
    height: auto;
    width: 40%;
    display: inline-block;
    float: right;
}

/* Footer */

.footer {
	display: grid;
	grid-template-areas: 'sd bbp';
	padding: 50px 30px;
    color: white;
	background-color: #548235;
}

.sd {
	grid-area: sd;
	padding: 10px;
    text-align: left;
}

.sd a {
    color: white;
    text-decoration: none;
}

.sd a:hover {
    color: white;
    text-decoration: underline;
}

.bbp {
	grid-area: bbp;
	padding: 10px;
    text-align: right;
}

/* Page smaller than medium screens */

@media screen and (max-width: 805px) {
    
        #menu {
        margin: 50px 15%;
        height: auto;
        color: white;
    }   

        #objectifs {
        display: block !important;
        width: 70vw !important;
        margin-top: 20px !important;
        height: 250px !important;
        padding: 50px 40px !important;
        text-align: center !important;
        background-color: #548235 !important;
        box-sizing: border-box !important;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    #services {
        display: block !important;
        float: none !important;
        width: 70vw !important;
        margin-top: 20px !important;
        margin-left: 0px !important;
        height: 250px !important;
        padding: 50px 40px;
        text-align: center;
        background-color: #824c35;
        box-sizing: border-box !important;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }



    #contact {
        width: 70vw !important;
        margin-top: 20px !important;
        margin-left: 0 !important;
        height: 250px !important;
        float: none !important;
        padding: 50px 40px ;
        text-align: center;
        background-color: #7e7e82;
        box-sizing: border-box !important;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    #menu .serv h2 {
        font-size: 4vw;
    }
    
    .servHead {
        margin-top: 50px;
    }
    
    .servFloatHead {
        margin-top: 100px;
    }
    
    #ad {
    display: block;
    width: 100%;
    }

    #map {
        height: auto;
        width: 100%;
        display: block;
        margin: 30px 0;
    }

}

/* Page smaller than small screens */

@media screen and (max-width: 600px) {
 
        #menu {
        margin: 50px 5%;
        height: auto;
        color: white;
    }   

        #objectifs {
        display: block !important;
        width: 90vw !important;
        margin-top: 20px !important;
        height: 250px !important;
        padding: 30px 40px !important;
        text-align: center !important;
        background-color: #548235 !important;
        box-sizing: border-box !important;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    
    .ob {
        padding: 60px 15px 100px 15px;
    }

    #services {
        display: block !important;
        float: none !important;
        width: 90vw !important;
        margin-top: 20px !important;
        margin-left: 0px !important;
        height: 250px !important;
        padding: 30px 40px;
        text-align: center;
        background-color: #824c35;
        box-sizing: border-box !important;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    
    .serv {
        padding: 60px 15px 100px 15px;
    }



    #contact {
        width: 90vw !important;
        margin-top: 20px !important;
        margin-left: 0 !important;
        height: 250px !important;
        float: none !important;
        padding: 30px 40px ;
        text-align: center;
        background-color: #7e7e82;
        box-sizing: border-box !important;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    
    .cont {
        padding: 60px 15px 100px 15px;
    }

    
    #ad {
    display: block;
    width: 100%;
    }

    #map {
        height: auto;
        width: 100%;
        display: block;
        margin: 30px 0;
    }
    
    .footer {
	display: grid;
	grid-template-areas: 'sd' 'bbp';
	padding: 50px 30px;
    color: white;
	background-color: #548235;
}
    .sd {
        text-align: center;
    }
    
    .bbp {
        text-align: center;
    }
    
    .tri-down {
    position: absolute;
    bottom: 30px;
    left: 45%;
    padding: 5px;
    font-size: 4rem;
    text-shadow: 2px 2px 4px #000000;
}
    .wrapper {
  min-height: calc(100vh - 500px);
}
    
    
}

/* Catalogue */

#main .home img {
    width: 150px;
    position: relative;
    top:20px;
    left:40px;
}

.construction {
    padding-top: 6%;
    padding-right: 30px;
    padding-left: 30px;
}

#main .construction {
    text-align: center;
}

#main .construction h1 {
    font-size: 5rem;
    color: #548235;
}

#main .construction h2 {
    font-size: 2rem;
    color: #7e7e82;
}

#main .construction img {
    height: 12px;
    width: auto;
    margin-left: 5px;
}

.wrapper {
  min-height: calc(100vh - 175px);
}
