h1 {
    font-size: 25px;
    margin: 0;
    margin-bottom: 20px;
}

h2 {
    font-size: 22px;
    margin: 0;
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
    margin: 0;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin: 0;
    margin-bottom: 20px;
}

#header {
    background: #3C6593;
}

#header, #header .navbar-section {
    height: auto;
}

#header .logo {
    width: 140px;
}

#header .desktop-menu {
    padding: 10px;
    border-radius: 0 0 10px 10px;
    width: 80%;
}

#header a, .dropmenu ul li a.active, .dropmenu ul li a:focus, .dropmenu ul li a:hover {
    color: white !important;
}

#header .logo img, #header .logo svg {
    height: 100px;
}

.wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.left {
    width: 60%;
}

.table {
    border: 1px solid #124D84;
    width: 40%;
}

.table h2 {
    background: #124D84;
    color: white;
    padding: 10px;
}

.table .tds {
    display: flex;
    gap: 10px;
}

.table .tds, .table h3, .table p {
    padding: 0 10px;
}

.table p {
    color: #124D84;
}

.table .tds p {
    padding: 0;
    color: black;
}

.other h1 {
    border-bottom: 1px solid #C3B883;
}

.other h2 {
    background-color: #EBE8D8;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #C3B883;
    font-weight: bold;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #C3B883;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    color: #0D487F;
}

.dropmenu ul {
    flex-wrap: wrap;
}

.navbar .navbar-section {
    flex: auto;
}

@media(max-width: 768px) {
    .wrapper {
        flex-wrap: wrap;
    }

    .left, .table {
        width: 100%;
    }
}