@charset "utf-8";
@font-face {
    font-family: 'Mukta';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/mukta-v13-latin-300.eot');
    src: local(''),
        url('../fonts/mukta-v13-latin-300.eot?#iefix') format('embedded-opentype'),
        url('../fonts/mukta-v13-latin-300.woff2') format('woff2'),
        url('../fonts/mukta-v13-latin-300.woff') format('woff'),
        url('../fonts/mukta-v13-latin-300.ttf') format('truetype'),
        url('../fonts/mukta-v13-latin-300.svg#Mukta') format('svg');
}
@font-face {
    font-family: 'Mukta';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/mukta-v13-latin-500.eot');
    src: local(''),
        url('../fonts/mukta-v13-latin-500.eot?#iefix') format('embedded-opentype'),
        url('../fonts/mukta-v13-latin-500.woff2') format('woff2'),
        url('../fonts/mukta-v13-latin-500.woff') format('woff'),
        url('../fonts/mukta-v13-latin-500.ttf') format('truetype'),
        url('../fonts/mukta-v13-latin-500.svg#Mukta') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 300 1em/1.3em 'Mukta', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 905px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 0 2rem 1rem;
}
:is(h1, h2, strong) {
    font-weight: 500;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1.5rem;
}
h1, h2, .color {
    color: #205AA5;
}
h1 {
    margin: 0 0 2rem;
    font-size: 2.5em;
    line-height: 1.1;
}
h1 span {
    font-size: 1.125rem;
    display: block;
}
h2 {
    font-size: 1.5em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #205AA5;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.left, .right {
    width: 49%;
}

header {
    padding: 0 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-left: -2rem;
}
header div {
    width: 47%;
}
header p {
   font-size: 1.45em;
  line-height: 1.2;
  padding-bottom: 0;
}
article {
    padding: 0;
}
article > p{
  position: absolute;
  width: 43.8%;
  left: 1.5rem;
  bottom: 10.3rem;
}
footer {
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 0 1rem;
}
footer p {
    flex: 1;
}
figure {
    margin: 0;
}
@media only screen and (max-width:904px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    
    br {
        display: none;
    }
    article > p{
        width: 100%;
        position: static;
    }
}
@media only screen and (max-width:768px) {
    .flex, footer, header {
        flex-direction: column;
    }
    .left, .right, .flex div, header div {
        width: 100%;
    }
  
    header {
        align-items: flex-start;
    }
    header div {
        padding-left: 2rem;
    }
    footer figure {
        display: flex;
        justify-content: center;
    }
    h1 {
        font-size: 2em;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    h1 {
        font-size: 1.7em;
    }
    header p {
        font-size: 1.313em;
    }
    header {
        margin-left: -1rem;
        padding-bottom: 1.5rem;
    }
    header div {
        padding-left: 1rem;
    }
}