@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

[class*="col-"] {
     float: left;
     padding: 3px;
     border: 0px solid red;
}

#company-name {
   font-size: 60px;
}

.row::after {
     content: "";
     clear: both;
     display: table;
}

body {
   font-family: "Nova Flat", serif;
   background-image: url("images/page-background-01.webp");
	background-repeat: no-repeat; 
	background-attachment: fixed; 
}

h1 {
   font-size: 55px;
}

h2 {
   font-size: 30px;
}

p, li {
   font-size: 25px;
}

li {
   margin-left: 35px;
}

.btn {
   background-color: brown; 
   color: white; 
   font-size: 30px; 
   font-family: 'Nova Flat', serif;
   padding: 10px;
   border-radius: 10px;
   box-shadow: 5px 5px 9px black;
   border: solid black 1px;
}

.btn:hover {
   cursor: pointer;
   background-color: green;
   border: solid white 1px;
}

#mainarea {
   background-color: blanchedalmond;
   border: solid brown 8px;
   border-radius: 30px;
   box-shadow: 10px 10px 20px black;
   margin: 15px 0px;
}

.padlock {
   display: inline;
}

.topnav {
  overflow: hidden;
  background-color: brown;
  padding: 10px 0px;
  margin-top: 10px;
}

.topnav a {
  float: none;
  display: inline;
  color: white;
  text-align: center;
  padding: 24px 16px;
  text-decoration: none;
  font-size: 20px;
  font-weight: normal;
   font-family: "Nova Flat", serif;
}

.topnav a:hover {
  background-color: black;
  color: white;
}


.topnav .icon {
  display: none;
  font-size: 25px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0px;
}

.flex-container > div {
   margin: 10px;
   text-align: center;
   padding: 10px;
   width: 40%;
   background-color: white;
   color: black;
   border: dotted 1px black;
   border-radius: 0px;
}

.flex-container > div:hover {
     box-shadow: 0px 0px 26px black;
     /*cursor: pointer;*/
}

.flex-container-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0px;
}

.flex-container-3 > div {
   margin: 10px;
   text-align: center;
   padding: 10px;
   width: 30%;
   background-color: white;
   color: black;
   border: dotted 1px black;
   border-radius: 0px;
}

.flex-container-3 > div:hover {
     box-shadow: 0px 0px 26px black;
     /*cursor: pointer;*/
}

.flex-container-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0px;
}

.flex-container-2 > div {
   margin: 10px;
   text-align: center;
   padding: 10px;
   width: 45%;
   background-color: white;
   color: black;
   border: dotted 1px black;
   border-radius: 0px;
}

.flex-container-2 > div:hover {
     box-shadow: 0px 0px 26px black;
     /*cursor: pointer;*/
}

.safes {
   width: 50%;
}

@media only screen and (max-width: 900px) {
     /* For mobile phones: */
     [class*="col-"] {
     width: 100%;
     }

   
body {
   background-image: none;
	background-color: brown;
}

   #company-name {
      font-size: 40px;
   }
   
   h1 {
      font-size: 40px;
   }
   
   h2 {
      font-size: 20px;
   }
   
   p, li {
      font-size: 20px;
   }
 
   .padlock {
      display: none;
      }
   
     .topnav {
       padding: 0px;
       font-size: 24px;
     }
     
     .topnav a:not(:first-child) {
          display: none;
     }
     
     .topnav a.icon {
          float: right;
          display: block;
     }
     
     .topnav.responsive {
          position: relative;
     }
     
     .topnav.responsive .icon {
          position: absolute;
          right: 0;
          top: 0;
     }
     
     .topnav.responsive a {
          float: none;
          display: block;
          text-align: left;
     }
     
     .topnav a {
          float: left;
          font-size: 24px;
          line-height: 0px;
     }

   .flex-container-3 > div {
      width: 90%;
   }

   .flex-container-2 > div {
      width: 90%;
   }
   
   .flex-container > div {
      width: 90%;
   }
   
   li {
      margin-left: 0px;
   }
   
   .safes {
      width: 90%;
   }
   
}