* { /*adicionar em todos arquivos CSS*/
    box-sizing: border-box; /* o * invoca todos elementos da página. No caso aqui, pedindo para incluir nas dimensões da box o padding e a borda */
    margin: 0; /* reseta a margin padrão do navegador*/
    padding: 0
    ; /* reseta o padding padrão do navegador*/
    /*sempre rodar o autoprefix (favoritos) quando usar flex no css*/
    /* sempre fazer a pagina usando os 3 tipos de layout (float + inline) (flex) (grid)
    float + inline vem antes
    @supports (display: flexbox) { flex CSS }
    @supports (display: grid) { grid CSS }
    tem que as vezes usar width: auto caso tenha alguma predifinição de tamanho em um dos tipos */
}
header {
    position: relative;
    overflow: hidden;
    height: auto; /* Defina altura fixa ou use min-height se precisar */
    padding: 0;
    margin: 0;
    background-color: black;
}

/* FUNDO GIRATÓRIO */
#fundo-header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: girarFundo 60s linear infinite, brilhoEstrelas 6s ease-in-out infinite;
    transform-origin: center center;
    width: 170vw;
    height: auto;
    z-index: 1;
    padding: 0;
    margin: 0;
}
#fundo-header img {
    display: block;
    width: 100%;
    height: auto;   
}

/* LOGO CENTRALIZADO */
#logo-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

/* IMAGEM DO LOGO */
#logo-header img {
    width: 30%;
    height: auto;
    padding: 0;
    margin: 0;
}
@keyframes girarFundo {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes brilhoEstrelas {
  0%   { opacity: 0.6; }
  25%  { opacity: 0.95; }
  50%  { opacity: 0.7; }
  75%  { opacity: 1; }
  100% { opacity: 0.6; }
}
nav, footer {
    height: 15%;
    width: 100%;
    padding-top: 0.5%;
    padding-bottom: 0.5%;
    display: inline-block;
    font-family: "Merriweather", serif;
    background-color: rgb(30, 33, 66);
    color: white;
    font-size: 2.5vh;
    padding-left: 10%;
    font-weight: 100;
}
nav a, nav a:visited {
    color: white;
    font-size: 2.5vh;
    text-decoration: none;
}
nav > div {
    padding-right: 2%;
    float: left;
    cursor: pointer;
    width: auto;
    height: auto;
}
nav a:hover {
    border-bottom: solid 1px white;
}
/*.intro {
    height: 69vh;
    background-size: cover;
}
.introText {
    font-size: 2.3em;
    text-shadow: 4px 4px 3px rgb(48, 45, 0);
    color: rgb(255, 255, 255);
    text-align: center;
    padding-top: 20%;
}*/
.ui-dialog {
    font-size: 1.5vw;
    background-color: rgb(210, 156, 21, 0);
    border: none;
    border-radius: 3px;
    box-shadow: 0px 0px 0px 5px rgba(210, 156, 21, 0.2);  
    margin: 0;
    padding: 0;
    height: 90%;
    max-width: 70vw;
}
.ui-dialog-titlebar-close {
    display: none;
}
.ui-dialog-titlebar {
    display: none;
}
#contato-div {
    padding: 0;
    margin: 0;
    background-image:
        linear-gradient(217deg, rgb(30 33 66 / 0.9), rgb(255 0 0 / 0) 70.71%),
        linear-gradient(127deg, rgb(210 156 21 / 0.6), rgb(0 255 0 / 0) 70.71%),
        linear-gradient(336deg, rgb(210 156 21 / 0.2), rgb(0 0 255 / 0) 70.71%);
}
.dialog-head {
    margin: 0;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "Merriweather", serif;
    height: 3vw;
    font-size: 2vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    border-bottom: none;
    background-color: rgb(30, 33, 66);
    color: white;
}
#close-contact {
    cursor: pointer;
    transition: color 0.5s ease-in-out;
}
#close-contact:hover {
    color: rgb(210, 156, 21);
}
.dialog-body {
    font-family: "Merriweather", serif;
    margin-top: 50px;
    margin-bottom: 50px;
    max-width: 90%;
    padding: 10px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(231, 224, 213);
}
.dialog-body input {
    max-width: 50%;
    margin-bottom: 1vw;
    margin-top: 1vw;
}
.dialog-body textarea {
    width: 90%;
}
button {
    display: inline;
    margin: 2vw;
    border-radius: 40px;
    background-color: rgb(30, 33, 66);
    padding-left: 2vh;
    padding-right: 2vh;
    padding-top: 1vh;
    padding-bottom: 1vh;
    cursor: pointer;
    color: rgb(255, 226, 199);
    border: 0;
    box-shadow: 3px 3px 2px rgb(255, 255, 255);
    font-family: "Merriweather", serif;
    font-size: 1.2vw;
    width: 20vw;
}
button:hover {
    background-color: rgb(30, 33, 33);
}
a {
    text-decoration: none; 
    color: white;
}
a:visited {
    text-decoration: none; 
    color: white;
}
a:active { 
    color: white;
    text-decoration: none;
}
.one {
    background-color: rgb(210, 156, 21, 0.3);
    font-size: 1.6vw;
    font-family: "Merriweather", serif;
    color: rgb(30, 33, 66);
    text-align: justify;
    line-height: 5vh;
    padding: 2vw;
}
.two {
    background-color: rgb(210, 156, 21, 0.2);
    font-size: 1.6vw;
    font-family: "Merriweather", serif;
    color: rgb(30, 33, 66);
    text-align: justify;
    line-height: 5vh;
    padding: 2vw;
}
.title {
    color: rgb(30, 33, 66);
    font-size: 3vw;
    padding: 1.5vw;
    text-shadow: 2px 2px white;
    line-height: 10vh;
    text-align: center;
    font-family: "Merriweather", serif;
}
.subtitle {
    color: rgb(30, 33, 66);
    font-family: "Merriweather", serif;
    font-size: 1.7vw;
    padding: 1vw;
    padding-bottom: 4vh;
}
img {
    max-width: 100%;
    border-radius: 10px;
}
section {
    padding: 0.5vw;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    height: auto;
}
iframe {
    width: 90vw;
    height: 90vh;
}
.twocols {
    display: block;
    border-top: solid 1px rgb(30, 33, 66);
    align-content: center;
}
.leftcol {
    width: 47%;
    height: auto;
    float: left;
    padding: 2vw;
    align-content: center;
}
.rightcol {
    width: 47%;
    height: auto;
    float: right;
    padding: 2vw;
    align-content: center;
}
.imgalunas {
    width: 25%;
    height: auto;
    float: left;
    padding: 2vw;
}
.texalunas {
    width: 70%;
    height: auto;
    float: right;
    padding: 2vw;
}
.texalunas p, .whoiam p {
    padding-bottom: 1vw;
    text-indent: 3vw;
}
#forms {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: lightgrey;
    font-family: "Merriweather", serif;
}
#forms > a {
    text-align: right;
    font-family: "Merriweather", serif;
    font-weight: 800;
    font-size: 5vh;
    padding-left: 95vw;
    padding-top: 20vh;
    cursor: pointer;
    color: rgb(2, 0, 37);
}
#forms > a:hover {
    color: #EAC035;
}
#forms > div {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: start;
    background-color: lightgrey;
    padding-bottom: 5vh;
}
#forms > div > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2vh;
    width: 40vw !important;
}
#forms > div > div:first-child button,  #forms > div > div:nth-child(2) form button{
    border-radius: 15px;
    border-color: solid rgb(2, 0, 37) 2px;
    color: rgb(2, 0, 37);
    background-color: white;
    font-family: "Merriweather", serif;
    padding: 1vh;
    font-weight: 800;
    margin: 2vh;
    font-size: 3vh;
    cursor: pointer;
}
#forms > div > div:first-child button:hover,  #forms > div > div:nth-child(2) form button:hover{
    color: #EAC035;
    border: solid #EAC035 2px;
}
#forms > div > div:nth-child(2) {
    background-color: rgb(241, 241, 241);
    font-family: "Merriweather", serif;
    width: 50vw;
    border-radius: 10px;
}
#forms > div > div:nth-child(2) h2 {
    color: rgb(2, 0, 37);
    text-align: center;
    font-size: 4vh;
}
#forms > div >div:nth-child(2) form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#forms > div > div:nth-child(2) form label, span {
    color: rgb(2, 0, 37);
    text-align: center;
    font-size: 2.8vh;
    padding-top: 2vh;
    padding-bottom: 1vh;
    border-top: solid gray 1px;
    width: 80%;
}
label[for='name'], #forms > div > div:nth-child(2) form label:last-child {
    border-top: none !important;
}
#forms > div > div:nth-child(2) form input, #forms > div > div:nth-child(2) form select, #forms > div > div:nth-child(2) form select option {
    text-align: center;
    font-size: 2.8vh;
    background-color: rgb(241, 241, 241);
    border: none;
    margin-bottom: 2vh;
}
#forms > div > div:nth-child(2) form select:disabled, #forms > div > div:nth-child(2) form select option:disabled {
    color: gray;
}
.checkbox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    margin-top: 1vh;
    margin-bottom: 2vh;
}
#forms > div > div:nth-child(2) form button {
    margin-bottom: 4vh;
}
.menu-services {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 40vw;
    font-size: 3vh;
    margin: 1vw;
}
.menu-services p:first-child {
    width: 20vw;
}
.menu-services p:nth-child(2) {
    width: 6vw;
    border-radius: 12px;
    background-color: white;
    font-weight: 600;
    text-align: center;
    vertical-align: baseline;
}
.menu-services p:nth-child(3) {
    width: 2vw;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    background-color: rgb(2, 0, 37);
    font-weight: 600;
    color: white;
    text-align: center;
    vertical-align: baseline;
    margin-left: 3vw;
}
.menu-services p:nth-child(4) {
    width: 2vw;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    background-color: rgb(2, 0, 37);
    font-weight: 600;
    color: white;
    text-align: center;
    vertical-align: baseline;
    margin-right: 3vw;
}
.menu-services p:nth-child(3):hover,.menu-services p:nth-child(4):hover {
    background-color: rgb(30, 33, 33);
    cursor: pointer;
    user-select: none
}
#form h1 {
    font-family: "Merriweather", serif;
    margin: 2vh;
}
#pedido {
    margin-bottom: 3vh;
}
#pedido p {
    font-family: "Merriweather", serif;
    padding: 0.5vw;
    padding-top: 2vh;
    padding-bottom: 2vh;
    font-size: 3vh;
}
#pedido p:nth-child(2), #pedido p:nth-child(4) {
    background-color: rgb(216, 216, 216);
}
#pedido p:last-child {
    background-color: rgb(46, 46, 46);
    color: white;
    font-size: 3.5vh;
}
#send-order {
    background-color: rgb(70, 70, 70) !important;
    color: rgb(255, 255, 255) !important;
    border: 0 !important;
    box-shadow: 3px 3px 2px rgb(255, 255, 255) !important;
    font-family: "Merriweather", serif !important;
    font-size: 1.2vw !important;
    width: 20vw !important;
}
#send-order:hover {
    background-color: rgb(30, 33, 33) !important;
    border: 0 !important;
}
.left-to-right {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 4vh;
    margin-bottom: 4vh;
}
.ltr-img {
    width: 20vw;
}
.ltr-img img {
    width: 10vw;
}
.ltr-text {
    width: 70vw;
}
.twoc2-text a {
    color: rgb(71, 52, 5);
    font-weight: 800;
    cursor: pointer;
}
.twocols2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin-bottom: 3vh;
}
.twocols3 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin-bottom: 3vh;
}
.twoc2-img {
    width: 20vw;
    margin: 0;
    padding: 0;
}
.twoc2-img img {
    width: 20vw;
}
.twoc2-text {
    width: 50vw;
    font-size: 4vh;
    margin: 0;
    padding: 0;
}
@media (max-width: 1000px) and (orientation: portrait) {
    #logo-header img {
        width: 60%;
    }
    nav {
        height: 15%;
        width: 100%;
        padding-top: 0.5%;
        padding-bottom: 2%;
        display: inline-block;
        font-family: "Merriweather", serif;
        background-color: rgb(30, 33, 66);
        color: white;
        font-size: 2.5vh;
        padding-left: 12%;
        font-weight: 100;
    }
    footer { 
        font-size: 3vw;
        padding: 2vw;
        text-align: center;
    }
    nav a, nav a:visited {
        color: white;
        font-size: 2vh;
        text-decoration: none;
        margin-left: 2vw;
        margin-right: 2vw;
    }
    nav > div {
        padding-right: 2%;
        float: left;
        cursor: pointer;
        width: auto;
        height: auto;
    }
    nav > div:first-child {
        padding-right: 17%;
    }
    nav a:hover {
        border-bottom: solid 1px white;
    }
    /*.intro {
        height: 69vh;
        background-size: cover;
    }
    .introText {
        font-size: 2.3em;
        text-shadow: 4px 4px 3px rgb(48, 45, 0);
        color: rgb(255, 255, 255);
        text-align: center;
        padding-top: 20%;
    }*/
    .ui-dialog {
        font-size: 4vw;
        background-color: rgb(210, 156, 21, 0);
        border: none;
        border-radius: 3px;
        box-shadow: 0px 0px 0px 5px rgba(210, 156, 21, 0.2);  
        margin: 0;
        padding: 0;
        height: 95%;
        max-width: 95vw;
    }
    .ui-dialog-titlebar-close {
        display: none;
    }
    .ui-dialog-titlebar {
        display: none;
    }
    #contato-div {
        padding: 0;
        margin: 0;
        background-image:
            linear-gradient(217deg, rgb(30 33 66 / 0.9), rgb(255 0 0 / 0) 70.71%),
            linear-gradient(127deg, rgb(210 156 21 / 0.6), rgb(0 255 0 / 0) 70.71%),
            linear-gradient(336deg, rgb(210 156 21 / 0.2), rgb(0 0 255 / 0) 70.71%);
    }
    .dialog-head {
        margin: 0;
        padding-left: 30px;
        padding-right: 30px;
        font-family: "Merriweather", serif;
        height: 5vw;
        font-size: 4vw;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
        border-bottom: none;
        background-color: rgb(30, 33, 66);
        color: white;
    }
    #close-contact {
        cursor: pointer;
        transition: color 0.5s ease-in-out;
    }
    #close-contact:hover {
        color: rgb(210, 156, 21);
    }
    .dialog-body {
        font-family: "Merriweather", serif;
        margin-top: 50px;
        margin-bottom: 50px;
        max-width: 90%;
        padding: 10px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        background-color: rgb(231, 224, 213);
    }
    .dialog-body input {
        max-width: 50%;
        margin-bottom: 1vw;
        margin-top: 1vw;
    }
    .dialog-body textarea {
        width: 90%;
    }
    button {
        display: inline;
        margin: 2vw;
        border-radius: 40px;
        background-color: rgb(30, 33, 66);
        padding-left: 2vh;
        padding-right: 2vh;
        padding-top: 1vh;
        padding-bottom: 1vh;
        cursor: pointer;
        color: rgb(255, 226, 199);
        border: 0;
        box-shadow: 3px 3px 2px rgb(255, 255, 255);
        font-family: "Merriweather", serif;
        font-size: 3vw;
        width: 60vw;
    }
    button:hover {
        background-color: rgb(30, 33, 33);
    }
    a {
        text-decoration: none; 
        color: white;
    }
    a:visited {
        text-decoration: none; 
        color: white;
    }
    a:active { 
        color: white;
        text-decoration: none;
    }
    .one {
        background-color: rgb(210, 156, 21, 0.3);
        font-size: 1.6vw;
        font-family: "Merriweather", serif;
        color: rgb(30, 33, 66);
        text-align: justify;
        line-height: 5vh;
        padding: 2vw;
    }
    .two {
        background-color: rgb(210, 156, 21, 0.2);
        font-size: 1.6vw;
        font-family: "Merriweather", serif;
        color: rgb(30, 33, 66);
        text-align: justify;
        line-height: 5vh;
        padding: 2vw;
    }
    .title {
        color: rgb(30, 33, 66);
        font-size: 6vw;
        padding: 1.5vw;
        text-shadow: 2px 2px white;
        line-height: 10vw;
        text-align: center;
        font-family: "Merriweather", serif;
    }
    .subtitle {
        color: rgb(30, 33, 66);
        font-family: "Merriweather", serif;
        font-size: 4vw;
        line-height: 6vw;
        padding: 1vw;
        padding-bottom: 4vh;
    }
    img {
        max-width: 100%;
        border-radius: 10px;
    }
    section {
        padding: 0.5vw;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-items: center;
        align-items: center;
        height: auto;
    }
    iframe {
        width: 90vw;
        height: 90vh;
    }
    .twocols {
        display: block;
        border-top: solid 1px rgb(30, 33, 66);
        align-content: center;
        border-radius: 5px;
        padding-top: 7vw;
    }
    .fondo {
        background-color: rgb(233, 226, 215);
    }
    .leftcol {
        width: 95%;
        height: auto;
        padding: 2vw;
        align-content: center;
        font-size: 4vw;
        line-height: 5.5vw;
        margin-left: 2vw;
    }
    .rightcol {
        width: 95%;
        height: auto;
        padding: 2vw;
        align-content: center;
        font-size: 4vw;
        line-height: 5.5vw;
        margin-right: 2vw;
    }
    .imgalunas {
        width: 50%;
        height: auto;
        padding: 2vw;
    }
    .texalunas {
        width: 90%;
        height: auto;
        padding: 2vw;
        font-size: 2vh;
        line-height: 2.5vh;
        margin-right: 4vw;
        align-content: center;
    }
    .texalunas p, .whoiam p {
        padding-bottom: 1vh;
        text-indent: 1vh;
    }
    #forms {
        position: absolute;
        z-index: 999;
        top: 0;
        left: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        background-color: lightgrey;
        font-family: "Merriweather", serif;
    }
    #forms > a {
        text-align: right;
        font-family: "Merriweather", serif;
        font-weight: 800;
        font-size: 7vw;
        padding-left: 90vw;
        margin-top: 10vh !important;
        cursor: pointer;
        color: rgb(2, 0, 37);
    }
    #forms > a:hover {
        color: #EAC035;
    }
    #forms > div {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: start;
        background-color: lightgrey;
        padding-bottom: 5vw;
    } 
    #forms > div > div:first-child {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 2vw;
        width: 95vw !important;
    }
    #forms > div > div:first-child h1 {
        font-size: 6vw;
        margin: 5vw;
    }
    #forms > div > div:first-child button,  #forms > div > div:nth-child(2) form button{
        border-radius: 15px;
        border-color: solid rgb(2, 0, 37) 2px;
        color: rgb(2, 0, 37);
        background-color: white;
        font-family: "Merriweather", serif;
        padding: 1vh;
        font-weight: 800;
        margin: 2vh;
        font-size: 3vh;
        cursor: pointer;
    }
    #forms > div > div:first-child button:hover,  #forms > div > div:nth-child(2) form button:hover{
        color: #EAC035;
        border: solid #EAC035 2px;
    }
    #forms > div > div:nth-child(2) {
        background-color: rgb(241, 241, 241);
        font-family: "Merriweather", serif;
        width: 95vw;
        border-radius: 10px;
        margin-left: 2.5vw;
    }
    #forms > div > div:nth-child(2) h2 {
        color: rgb(2, 0, 37);
        text-align: center;
        font-size: 4vw;
    }
    #forms > div >div:nth-child(2) form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #forms > div > div:nth-child(2) form label, span {
        color: rgb(2, 0, 37);
        text-align: center;
        font-size: 4vw;
        padding-top: 2vw;
        padding-bottom: 1vw;
        border-top: solid gray 1px;
        width: 80%;
    }
    label[for='name'], #forms > div > div:nth-child(2) form label:last-child {
        border-top: none !important;
    }
    #forms > div > div:nth-child(2) form input, #forms > div > div:nth-child(2) form select, #forms > div > div:nth-child(2) form select option {
        text-align: center;
        font-size: 4vw;
        background-color: rgb(241, 241, 241);
        border: none;
        margin-bottom: 2vw;
    }
    #forms > div > div:nth-child(2) form select:disabled, #forms > div > div:nth-child(2) form select option:disabled {
        color: gray;
    }
    .checkbox {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: baseline;
        margin-top: 1vw;
        margin-bottom: 2vw;
    }
    #forms > div > div:nth-child(2) form button {
        margin-bottom: 4vw;
    }
    .menu-services {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 80vw;
        font-size: 5vw;
        margin: 3vw;
    }
    .menu-services p:first-child {
        width: 40vw;
    }
    .menu-services p:nth-child(2) {
        width: 12vw;
        border-radius: 12px;
        background-color: white;
        font-weight: 600;
        text-align: center;
        vertical-align: baseline;
    }
    .menu-services p:nth-child(3) {
        width: 5vw;
        border-top-left-radius: 50%;
        border-bottom-left-radius: 50%;
        background-color: rgb(2, 0, 37);
        font-weight: 600;
        color: white;
        text-align: center;
        vertical-align: baseline;
        margin-left: 6vw;
    }
    .menu-services p:nth-child(4) {
        width: 5vw;
        border-top-right-radius: 50%;
        border-bottom-right-radius: 50%;
        background-color: rgb(2, 0, 37);
        font-weight: 600;
        color: white;
        text-align: center;
        vertical-align: baseline;
        margin-right: 4vw;
    }
    .menu-services p:nth-child(3):hover,.menu-services p:nth-child(4):hover {
        background-color: rgb(30, 33, 33);
        cursor: pointer;
        user-select: none
    }
    #form h1 {
        font-family: "Merriweather", serif;
        margin: 4vw;
    }
    #pedido {
        margin-bottom: 3vw;
    }
    #pedido p {
        font-family: "Merriweather", serif;
        padding: 0.5vh;
        padding-top: 2vw;
        padding-bottom: 2vw;
        font-size: 4vw;
    }
    #pedido p:nth-child(2), #pedido p:nth-child(4) {
        background-color: rgb(216, 216, 216);
    }
    #pedido p:last-child {
        background-color: rgb(46, 46, 46);
        color: white;
        font-size: 4vw;
    }
    #send-order {
        background-color: rgb(70, 70, 70) !important;
        color: rgb(255, 255, 255) !important;
        border: 0 !important;
        box-shadow: 3px 3px 2px rgb(255, 255, 255) !important;
        font-family: "Merriweather", serif !important;
        font-size: 4vw !important;
        width: 40vw !important;
    }
    #send-order:hover {
        background-color: rgb(30, 33, 33) !important;
        border: 0 !important;
    }
    .left-to-right {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        margin-top: 4vh;
        margin-bottom: 4vh;
    }
    .ltr-img {
        width: 20vw;
    }
    .ltr-img img {
        width: 10vw;
    }
    .ltr-text {
        width: 70vw;
        font-size: 4vw;
        line-height: 5.5vw;
    }
    .twoc2-text a {
        color: rgb(71, 52, 5);
        font-weight: 800;
        cursor: pointer;
    }
    .twocols2 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 95%;
        margin-bottom: 3vh;
    }
    .twocols3 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 95%;
        margin-bottom: 3vh;
    }
    .twoc2-img {
        width: 80vw;
        margin: 0;
        padding: 0;
    }
    .twoc2-img img {
        width: 60vw;
        margin-left: 10vw;
    }
    .twoc2-text {
        width: 80vw;
        font-size: 5vw;
        line-height: 7vw;
        padding-top: 7vw;
        padding-bottom: 7vw;
    }
}
body:not(.images-loaded) {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
body.images-loaded {
    opacity: 1;
}
@supports not (display:grid)  { @supports not (display:flex) {

}}
@supports not (display:grid)  { @supports (display:flex) {

}}
@supports (display:grid) {

}