/**
 * Body.
 */
body {
    color: #666666;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
}

/**
 * Wrapper.
 */
#wrapper {
    width: 100%;
    max-width: 988px;
    min-width: 320px;
    margin: 0 auto;
    padding:20px;
    box-sizing: border-box;
}

/**
 * Smooth loading.
 */
.smooth-loading {
    display: none;
    transition-property: opacity;
    -webkit-transition: opacity 250ms ease-in;
    -moz-transition: opacity 250ms ease-in;
    -ms-transition: opacity 250ms ease-in;
    -o-transition: opacity 250ms ease-in;
    transition: opacity 250ms ease-in;
}

/**
 * Typography.
 */
h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.625rem;
    line-height: 1.2;
    color: #121212;
    margin:30px 0px;
    font-weight: 600;
}

h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.625rem;
    line-height: 1.2;
    color: #121212;
    margin-top:0px;
    margin-bottom:10px;
    font-weight: 600;
}

h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.625rem;
    line-height: 1.2;
    color: #121212;
    margin-top:0px;
    margin-bottom:10px;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: #0028a5;
}

a:not(.Button):hover {
    text-decoration: underline;
    text-underline-offset: 7px;
}

section:not(#follow-us) a::before,
#footer-links a::before {
    display: inline-block;
    position: relative;
    left: -0.375rem;
    top: 0.6875rem;
    vertical-align: top;
    width: 0.375rem;
    height: 0.375rem;
    border-style: solid;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    content: "";
    font-size: 1rem;
}

#footer-links a::before {
    position: absolute;
    top: 0.75em;
    left: 0rem;
}

#footer-links li {
    padding-left: 1.05rem;
}

#footer-links li a:nth-child(3),
#footer-links li a:nth-child(5),
#footer-links li a:nth-child(7),
#footer-links li a:nth-child(9),
#footer-links li a:nth-child(11) {
    margin-left: -0.4rem;
    margin-top: 0.33em;
    padding-left: 0.4rem;
    display: inline-block;
    position: relative;
}
#footer-links li a:nth-child(3)::before,
#footer-links li a:nth-child(5)::before,
#footer-links li a:nth-child(7)::before,
#footer-links li a:nth-child(9)::before,
#footer-links li a:nth-child(11)::before {
    top: 0.75em;
    left: -0.65rem;
}

p {
    margin-top: 0;
}

strong {
    font-weight: 600;
}

ul {
    margin-left: 0;
    padding: 0px;
    margin-top:10px;
    margin-bottom:0px;
}

li {
    list-style-type: none;
    position: relative;
    margin-bottom: 0.33em;
    padding-left: 0.75rem;
}

#wrapper section li:before, #about li:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: currentColor;
    font-size: 1.1rem;
}

/**
 * Button.
 */
.button {
    font-family: 'Source Sans Pro', sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 0.75rem 2rem;
    display: inline-block;
    color: #666666;
    background: #ffffff;
    border: 1px solid #666666;
    border-radius: 100px;
    text-align: center;
    font-weight:600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.button:hover, button:hover, button:hover span {
    text-decoration: none;
}

.send[disabled] {
    color: #ddd;
    background: #333;
    opacity: 0.3;
    cursor:default;
}
.form .send[disabled]:hover {
    background: #0028a5;
}

/**
 * Popup.
 */
.ui.popup.share {
    max-width: 160px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.ui.popup.share .row {
    text-align: center;
}

.ui.popup.share a {
    display: inline-block;
    text-decoration: none;
    padding:5px;
}

@media screen and (max-width: 600px) {
    .ui.popup.share a.whatsapp {
        display: none;
    }
}

.ui.popup.share .social-icons svg.icon {
    fill: rgba(0, 0, 0, .6);
    width: 60px;
    height: 60px;
    margin-right: 5px;
}

/**
 * SVG icons.
 */
svg.icon {
    height: 33px;
    width: 33px;
    position: relative;
    top: 3px;
}


svg.follow {
    height: 40px;
    width: 40px;
    margin-right: 12px;
}

svg.share {
    height: 50px;
    width: 50px;
    margin-right: 12px;
}

svg.share:hover {
    fill: #333;
}


/**
 * Form.
 */
.form input:not([type]),
.form input[type=date],
.form input[type=datetime-local],
.form input[type=email],
.form input[type=number],
.form input[type=password],
.form input[type=search],
.form input[type=tel],
.form input[type=text],
.form input[type=time],
.form input[type=url],
.form select,
.form textarea {
    font-family: 'Source Sans Pro', sans-serif;
}

.form label {
    font-weight: 600;
    padding-bottom: 5px;
    display: inline-block;
}

.form .field {
    margin-bottom: 15px;
}

.form .field label {
    margin-bottom: 3px;
    display: block;
}

.form .field label.inline {
    display: inline-block;
}

.form .required.field label::after {
    content: "*";
}

.form .required.field label.inline::after {
    content: "";
}

#opt-in {
    position: relative;
    margin-bottom: 20px;
}

#single-opt-in {
    position: absolute;
    top: 4px;
    left: 0;
}

#label-single-opt-in {
    font-weight: 400;
    max-width: 575px;
}

/* Chrome/Opera/Safari */
::-webkit-input-placeholder {
    color: #aaa;
}

/* Firefox 19+ */
::-moz-placeholder {
    color: #aaa;
}

/* IE 10+ */
:-ms-input-placeholder {
    color: #aaa;
}

/* Firefox 18- */
:-moz-placeholder {
    color: #aaa;
}

::placeholder {
    color: #aaa;
}

/**
 * Parsley
 */
.parsley-error {
    border: 1px solid #be505a !important;
}

label.parsley-error {
    border: 0 !important;
    color: #be505a;
}

.parsley-errors-list {
    color: #be505a;
    list-style: none;
    padding: 0;
    font-size: 14px;
    margin: 5px 0 10px 0;
}

.attachments-error {
    margin-top: 10px;
    margin-bottom: 20px;
    color: #be505a;
    font-weight: 600;
}

/**
 * Print.
 */
.print-only {
    margin-top:20px;
    display: none !important;
}

/**
 * Expired.
 */
#expired a {
    padding-left: 0.5rem;
}