/*
PERSONAL RESET
*/

b,
body,
caption,
code,
details,
div,
footer,
form,
header,
html,
i,
img,
li,
nav,
q,
section,
small,
span,
table,
td,
th,
time,
tr,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 16px;
}

* {
    box-sizing: border-box
}

::-webkit-scrollbar {
    overflow: hidden;
    width: 0px
}

input,
textarea,
button{
    -webkit-appearance: none;
    -webkit-appearance: none
}

body {
    background-color: var(--tertiary);
}

a {
    text-decoration: none;
    color: inherit
}

.clearance {
    width: 100%;
    height: 1rem;
}

.clearancex2 {
    width: 100%;
    height: 2rem;
}

.clearancex4 {
    width: 100%;
    height: 4rem
}

.clearance-half {
    height: 0.5rem;
}

.outline {
    outline: 1px solid red;
}

.text-center {
    text-align: center;
}

.mobile-appear {
    display: block;
}

@media only screen and (min-width:767px) {
    .mobile-appear {
        display: none;
    }
}

.full-box {
    height: calc(100vh - 5vh);
}

.full-container,
.full-box {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.box-container {
    width: 90%;
    max-width: 1280px;
    height: auto;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.center-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1280px;
}

.center-container img{
    width: 25%;
    min-width: 220px;
}


/*
END PERSONAL RESET
*/


:root {
    --primary: #273752;
    --secondary: #B8A48A;
    --tertiary: #D5C2A3;
}

p {
    line-height: 2;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    color: var(--primary);
    font-size: 0.7rem;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 100;
    color: var(--primary);
    font-family: 'Bebas Neue', sans-serif;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 3rem;
    letter-spacing: 1rem;
    display: block;
}

@media only screen and (max-width:1024px){
    h1{
        font-size: 2rem;
    }
}

h2 {
    font-size: 2.4rem;
    letter-spacing: 1px;
    letter-spacing: 0.8rem
}

h1 span {
    color: var(--secondary);
    margin: 0;
    font-weight: 400;
    font-size: inherit;
}

h3 {
    font-size: 1.8rem;
}


.flex-center{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}


/* Spinner LoadBar */


.col-sm-2 {
  padding: 10px;
  border-radius: 4px;
  height: auto;
}

.sp {
  width: 32px;
  height: 32px;
  clear: both;
  margin: 20px auto;
}

.sp-loadbar {
  width: 50px;
  height: 18px;
  border: 1px var(--primary) solid;
  border-radius: 4px;
  background: linear-gradient(-60deg, transparent 0%, transparent 50%, var(--primary) 50%, var(--primary) 75%, transparent 75%, transparent);
  background-size: 20px 30px;
  background-position: 0px 0px;
  -webkit-animation: spLoadBar 0.8s infinite linear;
  animation: spLoadBar 0.8s infinite linear;
}

@-webkit-keyframes spLoadBar {
  from {
    background-position: 0px 0px;
  }
  to {
    background-position: -20px 0px;
  }
}
@keyframes spLoadBar {
  from {
    background-position: 0px 0px;
  }
  to {
    background-position: -20px 0px;
  }
}

/* FORM */

.newsletter-form input,
.newsletter-form button{
    border: none;
    padding: 12px 16px;
    border-radius: 4px;
}

.newsletter-form button{
    background-color: var(--primary);
    color: #fff;
    cursor: pointer;
}


/* FOOTER */

footer{
    width: 90%;
    position: absolute;
    text-align: center;
    border-top: 1px solid var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

footer p{
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

/* WHATSAPP FIX */

.whatsapp-fix{
    position: fixed;
    top: 32px;
    right: 32px;
    transition: 0.3s all ease-in;
    padding: 12px;
    background-color: var(--primary);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 12px 0 rgba(39, 55, 82, 0.7);
    cursor: pointer;
    z-index: 100;
}

.whatsapp-fix img{
    height: 16px;
    margin-left: 12px;
}

.whatsapp-fix span{
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    display: inline-block;
}

.whatsapp-fix:hover{
    box-shadow: 0 4px 24px 0 rgba(39, 55, 82, 0.7);
}