html {
    font-size: 16px;
}

input, select, textarea {
    border: 1px black solid;
    padding: 5px 10px;
    border-radius: 5px;
    display: block;
    width: 100%;
}

.form-checkbox {
    display: block;
    user-select: none;
    cursor: pointer;
}

.form-checkbox span {
    display: flex;
    line-height: 1;

}

.form-checkbox span:before {
    width: 16px;
    height: 16px;
    display: block;
    margin-right: 15px;
    border: 1px black solid;
    content: "";
    min-width: 16px;
}

.form-checkbox input[type=checkbox]:checked ~ span:before {
    background: #1e865c;
}

.hero-image {
    background: url('/static/images/packages.jpg') center center / cover no-repeat;
}

.faqs-wrapper h3 {
    font-family: 'Cormorant', serif;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.faq {
    margin-top: 20px;
}

.question {
    font-family: Cormorant;
    font-size: 20px;
}

.answer {
    display: none;
    padding-top: 15px;
    padding-bottom: 15px;
}

.faq.open .answer {
    display: block;
}

.question span {
    display: flex;
    cursor: pointer;
    user-select: none;
}

.faq .icon.icon-plus-alt {
    background: #44542c;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: block;
    margin-right: 10px;
}

.option {
    margin-top: 15px;
    display: block;
}

.option-wrapper {
    border: 1px black solid;
    border-radius: 5px;
    padding: 10px 10px 10px 50px;
    position: relative;
    cursor: pointer;
}

.option-wrapper p {
    font-weight: bold;
}

.option-wrapper:before {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    border: 1px black solid;
    position: absolute;
    content: "";
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.option input:checked ~ .option-wrapper {
    border: 1px #44542c solid;
}

.option input:checked ~ .option-wrapper:before {
    background: #44542c;
}

.slide h3 {
    margin: 0;
    font-family: Cormorant;
    font-size: 20px;
}

.datum {
    margin-bottom: 20px;
}

.datum-header {
    display: block;
    color: #44542c;
    font-family: Cormorant;
    font-size: 18px;
    font-weight: bold;
}

.process {
    display: flex;
    justify-content: space-between;
    border-top: 1px black solid;
}

.process-item {
    padding-top: 31px;
    position: relative;
    transform: translateY(-11px);
}

.process-item:before {
    content: "";
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 1px black solid;
    display: block;
    background: white;
}

.process-item:before, .process-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.process-item:after {
    width: 8px;
    height: 8px;
    display: block;
    background: #44542c;
    border-radius: 50%;
    top: 6px;
}

.process-item.active, .process-item.active ~ .process-item {
    pointer-events: none;
}

.process-item.active:after {
    background: #44542c;
    width: 21px;
    height: 21px;
    top: 0;
}

.process-item.active ~ .process-item:after {
    content: unset;
}

.order {
    transform: translateY(calc(100% - 4rem));
    transition: all .5s ease;
}

.order.active {
    transform: none;
}

.address {
    width: calc(50% - 1rem);
    cursor: pointer;
}

.address-new {
    width: 100%;
}

.address-box {
    border-width: 1px;
    height: 100%;
}

.address input:checked ~ .address-box {
    border-color: #44542c;
    background: rgba(68,84,44,0.2);
}