@font-face{
    font-family: "LinLibertine_R";
    src: url("../fonts/linux_libertine/LinLibertine_R.ttf");
}

@font-face{
    font-family: "LinLibertine_RB";
    src: url("../fonts/linux_libertine/LinLibertine_RB.ttf");
}

@font-face{
    font-family: "Quicksand_Book";
    src: url("../fonts/quicksand/Quicksand_Book.otf");
}

@font-face{
    font-family: "Quicksand_Bold";
    src: url("../fonts/quicksand/Quicksand_Bold.otf");
}

@font-face{
    font-family: "Quicksand_Book_Oblique";
    src: url("../fonts/quicksand/Quicksand_Book_Oblique.otf");
}

@font-face{
    font-family: "Quicksand_Light_Oblique";
    src: url("../fonts/quicksand/Quicksand_Light_Oblique.otf")
}

@font-face{
  font-family: "Quicksand_Bold_Oblique";
  src: url("../fonts/quicksand/Quicksand_Bold_Oblique.otf");
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  
}

#opt
{
  text-decoration: none;
  color:#CCCCCC;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
 
}

#opt:hover
{
   color:#59431B;
  text-decoration: none;
  
}



#menuToggle
{
  display: block;
  position: fixed;
  top: 60px;
  right: 7%;
  
  z-index: 2;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: white;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */


#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #584219;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
.menu-check:checked ~ .menu-box{
  display:block;
  visibility: visible;
  -webkit-transition: opacity 600ms, visibility 600ms;
  transition: opacity 600ms, visibility 600ms;
}
.menu-box{
  display:none;
  visibility: hidden
}
#menu
{
  position: absolute;
  width: 500px;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 150px;
  
  right: -140px;
  height:105vh;
  
  background: #E6E6E6;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  overflow-x: hidden;
  
  
}

#menu li
{
  padding: 10px 0;
  font-size:calc(16pt + (26 - 16) * ((100vw - 300px) / (1600 - 300)));
  font-family:"LinLibertine_RB";
  padding-left:30px;
  
}
#menu img{
  width:15%;
}
/*
 * And let's fade it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: scale(1.0, 1.0);
  opacity: 1;
}

#img img{
  padding-left:25px;  
}

.imglogo {
    display: block;
  position: absolute;
  top: 50px;
  left: 7%;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
  
}
.imglogo img{
    width:40px;
    height:40px;
}

ul{
  list-style-type: none;
}

ul li ul {
  visibility: hidden;
  opacity: 0;
  position: relative;
  transition: all 0.5s ease;
  
  display: none;
}

ul li:hover > ul,
ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}

ul li ul li {
  clear: both;
  width: 100%;
}

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: none; 
    
    height:100%;
}
#return-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: rgb(119, 161, 64);
    background: rgba(119, 161, 64, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index:99999999999999999999999999;
}

.hide{
  visibility:hidden;
}

.show{
  display:block;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(119, 161, 64, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

body{
    background-color:white;
}

.container-fluid{
    margin:0;
}
/*Head Section*/
.Head-Section{
    margin: 0;
    padding: 0;
    background: url("../img/ind-item-1.png");
    background-repeat:no-repeat;
    background-size:cover;
    background-position: center;
    width:100%;
    height:90vh;
    position:relative;
    overflow-x: hidden;
    
}

#sub-head-cont{
    position:relative;
    margin-left:7%;
    margin-right:7%;
}

#sub-head-cont .row{
    margin-top:7%;
    margin-bottom:7%;
}

#content-h-sub p{
    font-family: "Quicksand_Book";
    font-size:calc(10pt + (16 - 10) * ((100vw - 300px) / (1600 - 300)));
    text-align:justify;
    color:#4D4C4D;
}

.head-slide{
  position:relative;
}

.highlight-content{
  padding-top:5%;
  
  background-color:#E6E6E6;

}





#title-hightlight {
  margin-right:7%;
  margin-left:7%;
}

#title-hightlight p{
  font-family: "Quicksand_Book";
  font-size:calc(10pt + (16 - 10) * ((100vw - 300px) / (1600 - 300)));
  color:#4ABB90; text-align:center;
}

#content-hightlight{
  margin-right:7%;
  margin-left:7%;
}



#cont-h #h-cont{
  position:relative;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#h-cont:hover {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-box-shadow: 3px 3px 5px 6px #ccc;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow:    3px 3px 5px 6px #ccc;  /* Firefox 3.5 - 3.6 */
    box-shadow:         3px 3px 5px 6px #ccc;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

#content-hightlight p{
    font-family: "Quicksand_Book";
    font-size:calc(10pt + (16 - 10) * ((100vw - 300px) / (1600 - 300)));
    
   
}

#h-cont{
  margin-bottom:10%;
  display:block;
  margin-left: auto;
  margin-right: auto;
  position:relative;
  
  
  
}

.img-h-1 img{
  display:block;
  margin-left: auto;
  margin-right: auto;
  width:100%;
  height:auto;
  position:relative;
}


.cont-h-1 p{
    margin-top:30px;
    display: block;
    margin-left: auto;
    margin-right: auto;  
    width:85%;
    font-family: "Quicksand_Book";
    color:#B7B7B7;
  
    font-size:calc(10pt + (18 - 10) * ((100vw - 300px) / (1600 - 300)));
    
}

.cont-h-1 h3{
  display: block;
    margin-left: auto;
    margin-right: auto;  
    width:85%;
    font-family: "LinLibertine_RB";
    color:black;
    
    font-size:calc(12pt + (24 - 12) * ((100vw - 300px) / (1600 - 300)));
     
}

.center-text{
  position: absolute;
  top: 0;
  left:0;
  padding-top:2%;
  padding-bottom:2%;
  width:100%;
}

.center-text p{
  margin-top:30px;
    display: block;
    margin-left: auto;
    margin-right: auto;  
    width:85%;
    font-family: "Quicksand_Book";
    color:white;
    
    font-size:calc(10pt + (18 - 10) * ((100vw - 300px) / (1600 - 300)));
}

.center-text h3{
  display: block;
    margin-left: auto;
    margin-right: auto;  
    width:85%;
    font-family: "LinLibertine_RB";
    color:white;
    
    font-size:calc(12pt + (50 - 12) * ((100vw - 300px) / (1600 - 300)));
}

.share-link{
  position:absolute;
  bottom:10px;
  width:100%;
}

.share-link p{
  
  
  display: block;
  margin-left: auto;
    margin-right: auto;
    width:85%;
  font-family: "Quicksand_Book";
  
  text-align: justify;
  font-size:calc(10pt + (18 - 10) * ((100vw - 300px) / (1600 - 300)));
}

.share-link h3{
  display: block;
    margin-left: auto;
    margin-right: auto;  
    width:85%;
    font-family: "LinLibertine_RB";
    color:white;
    
    font-size:calc(12pt + (60 - 12) * ((100vw - 300px) / (1600 - 300)));
}

.arrow-button img{
  position:absolute;
  bottom:20%;
  right:0;
  -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  width:142px;
  height:auto;
  margin:0;
}

.arrow-button:hover img{

  right:-3%;
  -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

}

.arrow-button p{
  font-family: "Quicksand_Bold_Oblique";
  font-size:calc(8pt + (12 - 8) * ((100vw - 300px) / (1600 - 300)));
  color:black;
  -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position:absolute;
  bottom:20%;
  right:3%;
}

.arrow-button:hover p{
  right:5%;
  -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.footer{
    background-color: black;
    margin:0;
    padding:0;
    
}

#footer-content {
    background-color: black;
}

#footer-1 p{
    color:white;
    font-family: "Quicksand_Book";
    font-size:calc(5pt + (12 - 7) * ((100vw - 300px) / (1600 - 300)));
    display:inline-block;
    padding: 0 20px;
}

#footer-1 {
    
    margin-left:0;
    margin-right:0;
    padding-top:5px;
    padding-bottom:5px;
    display: flex;
    flex-wrap: wrap;
}

.first-col img {
    position: relative;
    top: 30px;
}

.second-col {
    align-self: flex-end;
    text-align: right;
}

.second-col img {
    width: 20px;
}

.footer-copy {
    text-align: right;
}

#footer-1 .footer-copy .last {
    padding-right: 0px;
}

pre{
    width:5px;
    height:2px;
    display:inline-block;
    visibility: hidden;
}

.logo-foot{
     
    float:right;
}

#footlink{
  text-decoration: none;
  color:white;
}

/*** SUBSCRIBE FOOTER ***/

#footer-2 {
    margin: 0;
    background-color: #CFD1D2;
}

#subscribe {
    text-align: center;
    padding: 3% 0;
}

#subscribe p {
    vertical-align: middle;
}

p.sub-title {
    color: #231F20;
    font-family: 'Quicksand_Bold_Oblique';
    font-size: calc(7pt + (12 - 7) * ((100vw - 300px) / (1600 - 300)));
    display: inline-block;
    padding: 0 20px;
}

p.sub-email,
p.sub-name,
p.sub-submit {
    font-family: 'Quicksand_Bold_Oblique';
    font-size: calc(7pt + (12 - 7) * ((100vw - 300px) / (1600 - 300)));
    display: inline-block;
    padding: 0 5px;
}

#subemail,
#subname {
    background-color: #EDEDEE;
    border: 0;
    text-align: center;
    padding: 10px 0;
}

button.sub-btn-submit {
    background-color: #565759;
    border: 0;
    text-align: center;
    padding: 10px 50px;
    color: #fff;
}

/*** MAILCHIMP SUBSCRIBE FORM ***/
body #mc_embed_signup form {
    padding-left: 0;
    text-align: center;
    padding-top: 3%;
    padding-bottom: 3%;
    background-color: #CFD1D2;
}

body #mc_embed_signup h2 {
    color: #231F20;
    font-family: 'Quicksand_Bold';
    font-size: calc(7pt + (12 - 7) * ((100vw - 300px) / (1600 - 300)));
    display: inline-block;
    padding: 0 20px;
}

body #mc_embed_signup input {
    background-color: #EDEDEE;
    border: 0;
    text-align: center;
    padding: 10px 5px;
    font-family: 'Quicksand_Bold';
    font-size: calc(7pt + (12 - 7) * ((100vw - 300px) / (1600 - 300)));
    display: inline-block;
    border-radius: 0;
}

body #mc_embed_signup .button {
    background-color: #565759;
    border: 0;
    text-align: center;
    padding: 10px 50px;
    color: #fff;
    margin: 0 5px;
    font-family: 'Quicksand_Bold';
    font-size: calc(7pt + (12 - 7) * ((100vw - 300px) / (1600 - 300)));
    display: inline-block;
    text-transform: uppercase;
    vertical-align: middle;
    line-height: normal;
    border-radius: 0;
    height: auto;
    position: relative;
    top: -2px;
}

body #mc_embed_signup div.response {
    width: 100%;
    padding-right: 0;
    font-family: 'Quicksand_Bold';
}

body #mc_embed_signup div#mce-responses {
    float: none;
    margin: 0 auto;
    width: auto;
    font-family: 'Quicksand_Bold';
}

body #mc_embed_signup #mce-error-response {
    display: block;
    padding: 0;
    float: none;
    width: auto;
    color: red;
    font-family: 'Quicksand_Bold';
}

body #mc_embed_signup #mce-success-response {
    font-family: 'Quicksand_Bold';
    color: #565759;
}

@media (max-width: 699px) {
    body #mc_embed_signup input {
        display: block !important;
        margin: 10px auto !important;
    }
    body #mc_embed_signup .button {
        padding: 10px 39px;
    }
}

@media (max-width: 575.98px) {
  #menu li
  {

      padding-left:10px;

  }
  
    #About-content img{
        margin: auto; display:block; width:75%; height:auto;
    }

    #row-cont-1{
        margin-left:7%; 
        margin-right:7%;
    }

    .content-om{
        margin-left:7%; 
        margin-right:7%;
    }

    .content-info{
        margin-right:7%;
        margin-left:7%;
    }

    #footer-1 p{
        
        display:inline-block;
    }
    pre{
        
        display:inline-block;
        
    }

    .logo-foot{
     
        float:right;
    }

    #menu{
        width:315px;
        right:-50px;
        
    }
    #menuToggle
    {
        right:25px;
    }

    .imglogo {
      
     
      left: 25px;
      
      
    }

    #sub-head-cont{
      padding-bottom:50px;
    }

    .arrow-button img{
      margin:0;
      bottom:10%;
      width:30%;
      height:auto;
    }

    .arrow-button p{
      margin:0;
      bottom:11%;
      right:5%;
    }
    
    .footer-copy {
        text-align: center;
    }
    
    #footer-1 {

        margin-right: 7%;
        margin-left: 7%;
    }

#footer-1 .footer-copy .last {
        padding-right: 20px;
    }

    .first-col img {
        margin: 0 auto;
        top: unset;
    }

    .second-col {
        text-align: center;
    }
    
    p.sub-email,
    p.sub-name,
    p.sub-submit {
        display: block;
    }

}