html {
    color: #3D3D3D;
    font-family: 'Raleway', sans-serif;
}

body {
    background-color: #E1E1E1;
}

.clickable-image img {
    transition: all 0.35s ease-in-out;  
}

.clickable-image img:hover {
    transform: scale(1.03);
    box-shadow: 0px 5px 20px #3D3D3D;
}



/* NAVIGATION BAR */
.navbar {
    background-color: #FAF3F3;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    padding: 15px 0;
    font-size: 16px;
}

.navbar a {
    color: #8E7F65;
    letter-spacing: 1px;
}

.navbar a:hover, .navbar a.active {
    text-decoration: solid underline #3D3D3D 3px;
}


.navbar .nav-item {
    padding-right: 15px;
}

.dropdown-menu {
    border-radius: 0%;
    border: none;
    outline: none;
    margin-top: 4px;
    background-color: #FAF3F3;
}

.dropdown-item {
    float: none;
    padding-left: 7px;
    padding: 4px 0px 4px 7px;
    font-weight: 700;

}

.dropdown-menu a.dropdown-item:hover {
    background-color: transparent;
}
.dropdown-menu a.dropdown-item.active {
    color: #3D3D3D;
    background-color: transparent;
    font-weight: 700;
    text-decoration: solid underline #3D3D3D 3px;
}



/* HOME PAGE */
.landing{
    position: relative;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    top: 0;
    left: 0;
    background-image: url(images/banner_image.png);
    background-size: cover;
    background-repeat: no-repeat;
}

#wrapper {
    position: absolute;
    z-index: 0;
    top: 35%;
    left: 50%;
    max-width: 420px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    transform: translate(-50%) translateY(-50%);  
}

.banner-title{
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 45px;
    width: 800px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #3D3D3D;
}

.side #what-is-sefl {
    position: absolute;
    width: 331px;
    height: 441.5px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto 0 auto auto;
    border-radius: 20px;
}

.banner-video video {
    position: absolute;
    width: 100%;
    z-index: 1;
}



/* SKILLS AREA */
table.skills {
    border: 2px solid #3d3d3d;
    border-collapse: collapse;
    width: 50%;
    margin: 0 auto;
    margin-bottom: 50px;
    background-color: white;
}

table.skills thead {
    text-align: center;
    background-color: #FAF3F3;
}

table.skills th,
table.skills td {
    border: 2px solid #3d3d3d;
    padding: 5px;
    vertical-align: top;
}

table.skills th {
    width: 20%;
    font-weight: 700;
}

img.skills {
    width: 45%;
    margin: calc(10%/8);
}

img.skills:nth-of-type(2n+1) {
    margin-left: 2.75%;
}




/* LEARN MORE FORM */
form {
    margin: 0 auto;
    max-width: 50%;
    margin-top: 5%;
    padding: 15px;
}

.mb-3, #submit-button, #submit-button input, form h2 {
    color: #3D3D3D;
    max-width: 85%;
    font-weight: 600;
    margin: 0 auto;
    text-transform: uppercase; 
}

form h2 {
font-size: 35px;
font-weight: 700;
margin-bottom: 25px;
text-transform: capitalize;
}

.mb-3 input, #submit-button input, .mb-3 textarea {
    border-radius: 0;
    border: 2px solid #8E7F65;
}

#submit-button input {
    padding: 15px 40px;
    color: #FAF3F3;
    background-color: #8E7F65;
}

#submit-button input:hover {
    background-color: #5F5440;
    border-color: #5F5440;
}

.mb-3 span.asterisk {
    color: red;
}



/* 4TH INDUSTRIAL REVOLUTION, OUR MISSION, WHO WE ARE, OUR FARM  */
  .container img {
      width: 100%;
  }

  .container.rev .indus_rev {
    padding-top: 8%;
  }

.container .row .col:first-of-type {
    border-left: 0;
}

.container .col {
    border-left: 2px solid #3D3D3D;
}
  .container .col p {
      line-height: 20px;
      font-weight: 500;
      text-indent: 40px;
  }

  .container figcaption {
    font-style: italic;
    font-size: 13px;
    text-align: end;
  }

  .rev .col h1, .article-section h1 {
      padding-bottom: 10px;
      font-weight: 700;
      font-size: 18px;
  }

  .rev .col span {
      font-weight: 700;
  }
  
  .article-section {
      margin-left: 20px;
      margin-top: 20px;
  }

  .article-section h1{
      padding-bottom: 0;
      border-bottom: 1px solid #3D3D3D;
      width: 80%;
      margin-bottom: 5px;
  }

.mission-video video{
    width: 100%
}



/* FOOTER */
.clear {
    clear: both;
    height: 60px;
}
.footer-low .footer-low-content {
   display: flex;
   justify-content: center;
   align-items: center;
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   font-weight: 400;
   font-size: 13px;
   background-color: #FAF3F3;
   padding: 5px 0;
}

.footer-low-content li {
    padding: 0 10px;
    border-right: 1px solid #3D3D3D;
}

.footer-low-content li:last-child {
    border-right: none;
}

.footer-low-content li, .footer-low-content a {
    text-decoration: none;
    color: #3D3D3D;
}

.footer-low-content li a:hover, .footer-low-content a.active {
    text-decoration: underline;
}
