

/*--- General site layout + default styling ---*/

body {
    margin: 0;
    min-height: 100vh;
    display: flex; /* Vertical layout of main elements */
    flex-direction: column;
    align-items: center;
    line-height: 1.5; /* Make default line height more accessible */
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    font-family: sans-serif; 
}

* {
    box-sizing: border-box;
}

 main {
    width: 100%;
    max-width: 960px;
    padding-left: 2em;
    padding-right: 2em;
}

header {
    border-bottom: 1px solid #424953;
    margin-bottom: 0.5em;
    align-items:center;
    align-self: stretch;
}

footer {
    margin-top: auto;
    background-color: #ffffff;
    align-self: stretch;
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
}

h1 {
    color: #000000;
    margin-top: 1em;
    margin-bottom: 0.3em;
    font-weight: bold;
    
}

h2,h4,h5,h6 {
    color: #1A3D6D;
    margin-top: 1em;
    margin-bottom: 0.3em;
    font-weight: normal;
}

h2{
    background-color:#ffffff1a
}

h3{
    color:#202945 ;
    font-weight: normal;
}

p {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    background-color: #ffffff1a;
}

li{
    background-color: #ffffff1a;
}

.site-header {
    display: flex;
    align-items: center;
    min-height: 7em;
    background-color:#ffffffce;

}

.site-logo {
    color: #000000;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: auto;
    font-size: 2em;
    font-weight: bold;
}

.navigation {
    display: flex;
}

.navigation-link {
    color: #1A3D6D;
    padding: 0.7em;
    text-decoration: none;
    font-weight: bold;
    transition: ease-in, 0.6s;
}

.navigation-link:hover {
    color: #000000;
}

/* Table styling */

table {
    margin: 2em 0;
    border-collapse: collapse;
    box-shadow: 10px 10px 5px #0000008e;
}

thead {
    background-color: #000000;
    font-weight: bold;
}

th, td {
    border: 1px solid #d7d7d7;
    padding: 0.5em 0.8em;
    text-align: left;
}

thead.service-head{
    background-color: #000000;
}


/* Form styling */

form {
    max-width: 40em;
    border: 1px solid #000000;
    /* background-color: #f3f3f3; */
    padding: 1.5em;
    margin: 2em 0;
    background-color: #ffffffce;
}

h2.blue {
    color: #000000;
}

label {
    font-size: 0.9em;
}

input[type='text'], input[type='email'], textarea {
    border-style: solid;
    border-width: 1px;
    border-color: #000000;
    width: 100%;
    margin-bottom: 1em;
    padding: 0.3em;
}

input[type='radio'] {
    display: inline;
    margin-right: 0.5em;
}

textarea {
    resize: none;
}

input[type='submit'] {
    width: auto;
    padding: 0.5em 2em;
    background-color: #202945;
    color: white;
    border-style: none;
    border-radius: 0.3em;
    margin: 1.5em 0 0 0;
}

.form-header {
    margin-top: 0;
}

.form-description {
    margin-bottom: 1.5em;
}





ol{
    list-style-type: none;
}

.Why-Choose-Us{
    text-decoration: none;    
}

body.index{
    background-image: url(images/Savana.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: scroll;
}

body.services{
    background-image: url(images/Eagle.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: scroll;
    
}

body.contact{
    background-image: url(images/Greece.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: scroll;
}

tr:nth-child(even) {
background-color: #f8f8f8;
}
tr:nth-child(odd) {
background-color: #ffffff;
}

tr:first-child {
    background-color: #ffffff;
}

th{
    background-color: #ffffff
}

