* {
    margin: 0;
}

body {
    background-color: #fff;
    font-family: 'Verdana', sans-serif;
    font-size: 16px;
    word-wrap: break-word;
    height: 100%;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: stretch;
}

header {
    overflow: auto;
    border-bottom: 2px solid #f2f2f2;
    justify-content: center;
    text-align: center;
}

header .logo {
    margin: auto;
    width: 200px;
    height: 133px;
    background-image: url("../images/logo.png");
	-webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

nav {
    margin: auto;
    justify-content: center;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

nav ul li {
    display: inline-block;
}

nav a {
    display: block;
    padding: 0 5px;
    color: #212121;
    line-height: 40px;
    text-decoration: none;
}

nav a:hover {
    color: #fff;
    background-color: #1e5cb3;
}

.img {
    background-image: url("../images/background.jpg");
    background-size: cover;
    background-position: 10% 40%;
    height: 150px;
    border-top: 2px solid #f2f2f2;
    border-bottom: 2px solid #f2f2f2;
}

content p {
    line-height: 20px;
    padding-bottom: 10px;
}

content row {
    width: 100%;
    padding-top: 20px;
    display: flex;
    gap: 10px;
}

content row grow {
    flex-grow: 1;
    font-size: 15px;
}

content row grow ul {
    list-style: none;
}

content row grow ul li:before {
    content: "\2022";
    color: #0057b9;
    display: inline-block;
    font-weight: bold;
    width: 1em;
    margin-left: -1em;
}


footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 2px solid #f2f2f2;
    background-color: #fff;
}

footer .content {
    margin: auto;
    width: 780px;
    padding: 10px;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

footer ul li {
    display: inline-block;
}

footer a {
    display: block;
    padding: 0 5px;
    color: #212121;
    font-size: 12px;
    line-height: 20px;
    text-decoration: none;
    border-right: 1px solid #f2f2f2;
}

footer a:hover {
    color: #0057b9;
}

.extra-bottom-padding {
    padding-bottom: 50px;
}

/**
 * ----------------------------------------
 * Content Links
 * ----------------------------------------
 */

content a:link {
    font-size: 16px;
    color: #5e5e5e;
    text-decoration: none;
}

content a:hover, content a:focus, content a:active, content a:visited:hover {
    color: #1e5cb3;
}

content a:visited {
    color: #5e5e5e;
}

/**
 * ----------------------------------------
 * Heading
 * ----------------------------------------
 */

 content h1 {
    font-size: 16px;
    font-weight: bold;
    color: #5e5e5e;
    padding-bottom: 15px;
}

 content h4 {
    font-size: 16px;
    font-weight: bold;
    color: #5e5e5e;
    padding-bottom: 10px;
 }

 content h5 {
    font-size: 10px;
    font-weight: bold;
    color: #5e5e5e;
    padding-bottom: 10px;
}

content strong {
    color: #5e5e5e;
    line-height: 30px;
}

/**
 * ----------------------------------------
 * Table
 * ----------------------------------------
 */

 content table {
    width: 100%;
    table-layout: fixed;
    border: 1px solid #f2f2f2;
    border-collapse: collapse;
 }

 content table th {
    background-color: #f2f2f2;
    border: 1px solid #f2f2f2;
 }

 content table td {
    border: 1px solid #f2f2f2;
 }

 content table th:nth-child(1) {
    width: 20%
 }

 content table th:nth-child(2) {
    width: 60%
 }

 content table th:nth-child(3) {
    width: 20%
 }

/**
 * ----------------------------------------
 * fade-in animation
 * ----------------------------------------
 */

@-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /**
 * ----------------------------------------
 * Screen Sizes
 * ----------------------------------------
 */

@media screen and (min-width: 600px) {
    content {
        overflow: auto;
        margin-top: 20px;
        justify-content: center;
    }

    content left {
        width: 100%;
    }

    content right {
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    content {
        overflow: auto;
        margin: auto;
        padding-top: 20px;
        width: 800px;
        justify-content: center;
    }

    content left {
        float: left;
        width: 400px;
    }

    content right {
        float: right;
        width: 400px;
    }
}
