@charset "utf-8";
/* CSS Document */

:root {
    --color-primary: rgba(47, 120, 31, 1);
    --color-primary-rgb: 47, 120, 31;
    --color-secondary: rgba(74, 190, 175, 1);
    --color-secondary-rgb: 74, 190, 175;
    --n-columns-3: 3;
    --n-columns-4: 4;
    --height-header-top: 60px;
    --height-tabs: 55px;
    --height-nav: 60px;
    --body-width: 1920px;
}

html {
    font-size: 18px;
    overflow-x: hidden;
    overflow-y: auto;
}

html * {
    outline: none;
    max-width: 100vw;
}

body {
    margin: 0 auto;
    padding: 0;
    font-family: 'Nunito', Helvetica, Roboto, Arial, sans-serif;
    color: #333;
    background-repeat: repeat-x;
    background-position: top;
    background-color: #000;
}

body.standalone {
    background: none;
}

body * {
    letter-spacing: 0.02rem;
    font-family: 'Nunito', Helvetica, Roboto, Arial, sans-serif;
}

img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    cursor: pointer;
}

.flexcolumn, .flexcol {
    flex-direction: column;
    display: flex;
}

.flexwrap {
    display: flex;
    flex-wrap: wrap;
}

.flexcenter {
    align-items: center;
    align-content: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.flexsa {
    display: flex;
    justify-content: space-around;
}

.flexbt {
    display: flex;
    justify-content: space-between;
}

.flexend {
    display: flex;
    justify-content: flex-end;
}

.flexaligncenter {
    align-items: center;
    display: flex;
}


/*form contact */

/* INPUT MATERIAL */

#trip-contact-form .tripcontactform > div.fieldscontainer {
    columns: 2;
    margin: 5px auto;
}

#trip-contact-form .tripcontactform > div {
    width: 60%;
    min-width: 320px;
}

#trip-contact-form .group {
    margin: 5px auto;
    width: auto;
    min-width: unset;
}

#trip-contact-form .group textarea {
    line-height: 0.8rem;
}

#trip-contact-form .group input {
    padding: 0 15px;
}

.group {
    position: relative;
    margin-bottom: 2vh;
}

select option, select, .select2 {
    font-size: 15px;
    font-weight: 400;
}

input[type=checkbox] {
    display: inline;
}

textarea {
    height: 100px;
}

input, textarea {
    font-size: 15px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    width: 100%;
    border: none;
    border: 1px solid #ddd;
    background-color: transparent;
    border-radius: 5px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #555;
    transition: 1s ease all;
}

#showsubmit {
    display: flex;
    justify-content: center;
}

.send {
    height: 50px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LABEL ======================================= */
.group label {
    background: #fff;
    padding: 0 5px;
    color: #999;
    font-size: 15px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 20px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    display: flex;
    align-items: center;
}

.group textarea ~ label {
    top: 13px;
    bottom: unset;
}

/* active state */
input:focus ~ label, input:valid:not(:placeholder-shown) ~ label, textarea:focus ~ label, textarea:valid ~ label {
    top: -10px;
    bottom: unset;
    font-size: 11px;
}

/* active state */
input:focus ~ .bar:before, input:focus ~ .bar:after {
    width: 50%;
}

label[for="phone"] {
  top: -10px;
  bottom: unset;
  font-size: 11px;
}

/* HIGHLIGHTER ================================== */
.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* END INPUT MATERIAL */

.buttonsmall, .buttonhome.buttonsmall {
    cursor: pointer;
    line-height: unset !important;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 18px;
    height: unset;
    text-align: center;
    margin: 10px;
    border-radius: 40px;
}

.buttontransparent {
    background: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
    font-weight: 700;
}

.buttontransparent:hover {
    background: #fff !important;
    color: #000 !important;
}

.buttonhome {
    cursor: pointer;
    line-height: unset !important;
    transition: all 0.5s cubic-bezier(.25, .8, .25, 1);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: unset;
    color: #000;
    background-color: rgba(var(--color-primary-rgb), 1);
    background-color: #fff;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    text-align: center;
    margin: 10px;
    border: 1px solid #000;
    border-radius: 40px;
}

.trip .trip-detail .trip-section .buttonhome:hover, .bannersection:hover .buttonhome {
    background-color: #000;
    color: rgba(var(--color-primary-rgb), 1);
    color: #fff;
    border: 1px solid var(--color-primary);
    border: 1px solid #000;
}

.buttonhome.invert {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
}

.buttonhome.invert:hover {
    color: #fff;
    background-color: rgba(var(--color-primary-rgb), 1);
    background-color: #000;
    border: 1px solid var(--color-primary);
    border: 1px solid #000;
}

.inverttext, .inverttext * {
    /*	text-shadow: 2px 2px 2px rgba(0,0,0,1);*/
    color: #fff;
    font-weight: 600;
}

.contactform label.rb {
    text-align: left;
    padding: 5px 8px;
    margin: 0 auto;
    margin-bottom: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
    color: #999;
    align-items: center;
    font-size: 13px;
}
