@charset "utf-8";
@font-face {
    font-family: 'Mukta';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/mukta-v13-latin-regular.eot');
    src: local(''),
        url('../fonts/mukta-v13-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/mukta-v13-latin-regular.woff2') format('woff2'),
        url('../fonts/mukta-v13-latin-regular.woff') format('woff'),
        url('../fonts/mukta-v13-latin-regular.ttf') format('truetype'),
        url('../fonts/mukta-v13-latin-regular.svg#Mukta') format('svg');
}
@font-face {
    font-family: 'Mukta';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/mukta-v13-latin-700.eot');
    src: local(''),
        url('../fonts/mukta-v13-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/mukta-v13-latin-700.woff2') format('woff2'),
        url('../fonts/mukta-v13-latin-700.woff') format('woff'),
        url('../fonts/mukta-v13-latin-700.ttf') format('truetype'),
        url('../fonts/mukta-v13-latin-700.svg#Mukta') format('svg');
}
@font-face {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-slab-v24-latin-700.eot');
    src: local(''),
        url('../fonts/roboto-slab-v24-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-slab-v24-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-slab-v24-latin-700.woff') format('woff'),
        url('../fonts/roboto-slab-v24-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-slab-v24-latin-700.svg#RobotoSlab') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.125em/1.3em 'Mukta', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 550px;
    margin: 1rem auto;
    border: 5px solid #00AAEB;
    background: #fff url('../images/bg.jpg') no-repeat;
    overflow: hidden;
}
:is(h1, h2, h3, h4, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.5em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2, h3 {
    font-family: 'Roboto Slab', Arial, sans-serif;
    font-weight: 700;
}
h2 {
    font-size: 5em;
    line-height: 1;
    color: #00AAEB;
}
h3 {
    font-size: 2.3em;
    line-height: 1;
    color: #fff;
    text-indent: -1.35rem;
}
h4 {
    font-size: 1.225em;
    line-height: 1.3;
    color: #00AAEB;
    margin-bottom: 0.5rem;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 1rem;
    position: relative;
    font-weight: 700;
    font-size: 1.125em;
    line-height: 1.3;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: -1px;
    color: #00AAEB;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.logo {
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 999;
}
.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-top: 0.5rem;
}
.box1 {
    position: absolute;
    left: 2.3rem;
    top: 3rem;
    transform: rotate(-4deg);
}
.box2 {
    position: absolute;
    left: 1rem;
    top: 15.5rem;
}
header figure {
    opacity: 0;
}
header p {
    font-size: 1.25em;
    line-height: 1.3;
    position: absolute;
    right: -148px;
    top: 24.5rem;
    transform: rotate(-90deg);
    color: #fff;
    z-index: 999;
}
article {
    padding: 1rem 1rem 0;
}
footer {
    padding: 1rem;
    display: flex;
    gap: 0 5rem;
}
figure {
    margin: 0;
}
@media only screen and (max-width:549px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .logo {
        position: static;
        display: flex;
        justify-content: center;
        padding: 1rem;
    }
    header {
        background: #01AAEB;
    }
    header p {
        position: static;
        transform: none;
        text-align: center;
        padding: 1rem;
    }
    header figure {
        opacity: 1;
    }
    .box1, .box2 {
        position: static;
        transform: none;
    }
    h3 {
        font-size: 1.8em;
        line-height: 1.2;
        color: #000;
        text-indent: 0;
        margin-bottom: 1rem;
    }
    :is(h3, ul) br {
        display: none;
    }
    footer {
        justify-content: space-between;
        gap: 1rem;
    }
}