/* ALL ZELMAD WEBSITE PAGES*/
body{
    background-image: url("white-abstract-background-with-hexagon-pattern-style-seamless-concept_7505-2044.avif")
}

/* Master Styles*/

body {
    margin: 0px;
}
.container {
    display: grid;
    grid-template-columns: 1fr;
}
/*nav styles */

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 40px;
}
.left-side {
    display: flex;
}
.nav-wrapper > .left-side > div {
    margin-right: 25px;
    font-size: 0.9em;
    text-transform: uppercase;
}
.nav-link-wrapper {
    height: 24px;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.6s;
}
.nav-link-wrapper a {
    color: #1a1db1;
    text-decoration: none;
    transition: 0.6s;
}
.nav-link-wrapper:hover {
    border-bottom: 2px solid yellowgreen;
}
.nav-link-wrapper a:hover {
    color: gray;
}
.active-nav-link {
    border-bottom: 2px solid black;
}
.active-nav-link a {
    color: black !important;
}
.Section a h1 {
    color: crimson; position: central;
}

/* ZELMAD top right icon */

.right-side {
    display: flex;
}

.brand {
    color: orangered;
    font-size: 40px;
}

/* HOME PAGE */
*{
    box-sizing: border-box;
}
.column {
    float: left;
    width: 25%;
    padding: 5px;
}

.row:after {
    content: "";
    clear: both;
    display: table;
}
/* Services PAGE */
h1 {
    text-align: center;
    text-indent: 40px;
    color: black;
}

p, h2, h3, h4 {
    text-indent:  15px;
    text-align: left;
    color: black;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

*{
box-sizing: border-box;
}
  
/* Create four equal columns that floats next to each other */
.column {
    float: left;
    width: 25%;
    padding: 10px;
    height: 100px; /* Should be removed. Only for demonstration */
}
  
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* ABOUT PAGE */

.about h1 {
    text-align: center;
    color: purple;
}

.about p {
    text-align: left;
    color: black;
    text-indent: 40px;
    font-size: 25px;
}

/* CONTACT PAGE */

.contact h2 {
    text-indent: 40px;
    color: brown;
}

.contact p {
    color: blue;
    text-align: left;
    text-indent: 40px;
    font-size: 20px;
}

/* Style inputs with type="text", select elements and textareas */

input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  
  /* Style the submit button with a specific background colour etc */
  input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* When moving the mouse over the submit button, add a darker green colour */
  input[type=submit]:hover {
    background-color: #45a049;
  }
  
  /* Add a background colour and some padding around the form */
  .container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}