*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 40px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: auto;
    flex-direction: column;
}

.header-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 20px;
}

.logo-container {
    text-align: center;
    cursor: pointer;
    margin-top: -2px;
}

.logo-container img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.blob-btn {
    position: relative;
    padding: 15px 25px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: none;
    color: #81be1f;
    font-size: 16px;
    font-weight: bold;
    background-color: transparent;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
    border-radius: 30px;
    text-decoration: none;
}

.blob-btn img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

.blob-btn::before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #81be1f;
    border-radius: 30px;
}

.blob-btn::after {
    content: "";
    z-index: -2;
    position: absolute;
    left: 3px;
    top: 3px;
    width: 100%;
    height: 100%;
    transition: all 0.3s 0.2s;
    border-radius: 30px;
}

.blob-btn:hover {
    color: #FFFFFF;
    border-radius: 30px;
}

.blob-btn:hover::after {
    transition: all 0.3s;
    left: 0;
    top: 0;
    border-radius: 30px;
    background: #81be1f;
}

.blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #ffffff;
}

.blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url('#goo');
}

.blob-btn__blob {
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: #81be1f;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.4);
    transition: transform 0.45s;
}

.blob-btn__blob:nth-child(1) {
    left: 0;
    transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
    left: 25%;
    transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
    left: 50%;
    transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
    left: 75%;
    transition-delay: 0.24s;
}

.blob-btn:hover .blob-btn__blob {
    transform: translate3d(0, 0, 0) scale(1.4);
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.country {
    margin-bottom: 30px;
    text-align: left;
}

.country h3 {
    padding: 10px 10px 0;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-bottom: none;
    margin: 0 0 -1px;
    position: relative;
    z-index: 2;
}

.country h2 {
    margin: 0;
    background: linear-gradient(to right, #81be1f, #4caf50);
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
}

.country h3 {
    margin: 0;
    /* background: linear-gradient(to right, #81be1f, #4caf50); */
    color: black;
    padding: 10px;
    /* border-radius: 10px 10px 0 0; */
    border: none;
    display: flex;
    align-items: center;
}

.country h4 {
    margin: 0;
    color: #333;
    padding-left: 10px;
    padding-bottom: 10px;
    /* padding: 10px; */
    border: none;
    display: flex;
    align-items: center;
}

.country ul {
    list-style-type: none;
    padding: 10px 10px 10px 31px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
}

.country ul li {
    list-style-type: disc;
}

.country ul li+li {
    margin: 10px 0 0;
}

.country ul ul {
    border: none;
    padding-bottom: 0;
}

.country ul+h3 {
    border-top: none;
    margin: -13px 0 -1px;
    padding-bottom: 3px;
}

.country ul li::marker {
    color: #81be1f;
}

.country p {
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
}

.footer-buttons {
    margin-top: 40px;
    text-align: center;
}

.footer-buttons .blob-btn {
    display: inline-block;
    color: #fff;
    background-color: #333;
    border: none;
    text-decoration: none;
}

.footer-buttons .blob-btn::before {
    border: none;
}

.footer-buttons .blob-btn:hover {
    background-color: #444;
}

a {
    color: black;
}

blockquote {
    margin: 10px;
}

#infoline {
    display: inline;
    margin: 0px;
    padding: 5px;
    border-radius: 5px;
}

#p_infoline {
    margin: 0px;
    padding: 5px;
    border-radius: 5px;
}

#p_pin {
    display: flex;
    padding: 5px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    /* background: linear-gradient(90deg, rgba(249, 249, 249, 0) 0%, rgba(77, 173, 81, 0.3) 100%); */
}

#p_pin>p {
    display: inline-block;
    border: none;
    margin: 0px;
    padding: 7px;
    background: none;
}