body, html {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 16px;
    line-height: 16px;
}

input, textarea {
    box-sizing: border-box;
}

.bg-aquamarine-300 {
    background-color: #76cad9;
}

.bg-white {
    background-color: #fff;
}

.hover\:bg-neutral-300:hover {
    background-color: #cccccc;
}

.bg-neutral-100 {
    background-color: #eeeeee;
}

.bg-neutral-500 {
    background-color: #333333;
}

.bg-grey {
    background-color: #2B2B2B;
}

.bg-beige {
    background-color: #EFE1D5;
}

.bg-orange {
    /*background-color: #f98c1f;*/
    background-color:  #c5a44e;
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-neutral-300 {
    border-color: #cccccc;
}

.border-orange {
    /*border-color: #f98c1f;*/
    border-color:  #c5a44e;
}

.hover\:opacity-70:hover {
    opacity: 0.7;
}

.inline-block {
    display: inline-block;
}

.m-0 {
    margin: 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mx-2\.5 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
}

.my-1\.5 {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-7 {
    margin-top: 1.75rem;
}

.mt-18 {
    margin-top: 4.5rem;
}

.p-0 {
    padding: 0;
}

.py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-5 {
    padding: 1.25rem;
}

.px-2\.5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.w-full {
    width: 100%;
}

.max-w-full {
    max-width: 100%;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.font-bold {
    font-weight: 700;
}

.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

.text-left {
    text-align: left;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.no-underline {
    text-decoration: none;
}

.leading-5 {
    line-height: 1.25rem;
}

.leading-7 {
    line-height: 1.75rem;
}

.text-center {
    text-align: center;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-lg {
    box-shadow: 0px 0px 14px 0px rgba(51,51,51,0.4);
}

.pointer {
    cursor: pointer;
}
