/* ##################### CSS RESET ##################### */
*, *::before, *::after {
    box-sizing: border-box;
}
html, .root {
    font-size:16px;
    line-height: 1.5;
    font-family: "Arial", sans-serif;
    color: #000000;
}
html, body {
    margin: 0;
    padding: 0;
    background-color: #F5F5F5;
}
html {
    scroll-behavior: smooth;
}
a {
    color: #0d1b2a;
    cursor: pointer;
    text-decoration: none;
}
a:hover {
    color: #244d3c;
    text-decoration: underline;
}
img {
    display: block;
}
/* ##################### Typography Defaults ##################### */
h1, .h1 {
    font-size: 2.8333333rem;
    line-height: 1.4;
    margin:0;
    text-align: center;
}
h2, .h2 {
    font-size: 2rem;
    line-height: 1.5;
    margin: 1.5rem 0 1.5rem 0;
}
h3, .h3 {
    font-size: 1.3888889rem;
    line-height: 1.5;
    margin: 1.5rem 0 0 0;
}
h4, .h4 {
    font-size: 1rem;
    line-height: 1.5;
    margin: 1.5rem 0 0 0;
}
h5, .h5 {
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
    font-weight: 600;
    margin: 1.5rem 0 0 0;
}
p {
    font-size: 1rem;
    line-height: 1.5;
}
p, pre, table, blockquote {
    margin: 0 0 1.5rem 0;
}
ul, ol {
    margin: 1rem 0 1.5rem 0;
}
ul ul, ol ol, ul ol, ol ul {
    margin: 0;
}

hr, .hr {
    border: 1px solid;
    width: 100%;
    margin: 0;
}
  
a, b, i, strong, em, small, code {
    line-height: inherit;
}
  
sub, sup {
    line-height: inherit;
    position: relative;
    vertical-align: baseline;
}
  
sup {
    top: -0.5em;
}
  
sub {
    bottom: -0.25em;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, p {
    overflow-wrap: normal;
    word-wrap: normal;
}

h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
    font-weight: 700;
}

p, ul li, ol li, .txt {
    word-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
            hyphens: auto;
    white-space: normal;
}
/* ##################### Main Styles ##################### */
header {
  padding: 9rem 3rem;
  background: linear-gradient(270deg, #0d1b2a, #244d3c, #4b254a, #6c1e1e);
  background-size: 800% 800%;
  animation: darkGradientAnimation 9s ease infinite;
  color: #f0f0f0;
}

@keyframes darkGradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1.5rem;
    max-width: 1400px;
    width: 92%;
    margin: 0 auto;
    padding: 6rem 0;
}

.tb-cnts {
    position: sticky;
    top: 3rem;
    font-size: 1.3888889rem;
    font-weight: 600;
    background-color: #fff;
    padding: 2rem;
    width: fit-content;
    border-radius: 0.6rem;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
}

.tb-cnts ul {
    list-style: none;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

.tb-cnts ul li {
    margin-top: 0.75rem;
}

section h2:first-of-type {
  margin-top: -0.65rem;
}

section p:last-of-type {
  margin-bottom: -0.45rem;
}

@media (max-width: 1180px) {
    header {
        padding: 6rem 1.5rem;
    }
    main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .tb-cnts {
        width: 100%;
    }
}

.lnks-container {
    max-width: 1400px;
    width: 92%;
    margin: 0 auto;
    padding: 0 0 6rem;
}

.lnks-container ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lnks-container ul li {
    margin: 0;
}

.lnks-container ul li a {
    display: block;
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.6rem;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
}

footer {
    padding: 3rem;
    text-align: center;
    background-color: #0d1b2a;
    color: #f0f0f0;
}