/* Load fonts - Note only woff2 gets loaded. if woff2 fails, only then will woff load.  */
@font-face {
    font-family: "Monday-Regular";
    src: url("Monday-Regular-min.woff2") format("woff2"), url("Monday-Regular-min.woff") format("woff");
}
@font-face {
    font-family: "FoundersGrotesk-Medium";
    src: url("FoundersGrotesk-Medium-min.woff2") format("woff2"), url("FoundersGrotesk-Medium-min.woff")format("woff");
}
/*************** MAIN ELEMENTS ***************/
body {
    margin: 0;
    padding: 0;
}

div {
    position: absolute;
}

/********************** TEXT **********************/
#textBoxer {
    width: 270px;
    height: 64px;
    top: 130px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    line-height: 1.1;
    text-align: center;
    font-size: 20px;
    /* background-color: rgba(255, 0, 0, 0.8); */
}
#textBoxer > #textBox1 {
    color: #775C3D;
    font-family: 'Monday-Regular', serif;
    font-style: normal;
    width: 100%;
    height: auto;
    left:0px;
    line-height: inherit;
    font-size: inherit;
    /* background-color: rgba(13, 160, 57, 0.2); */
}
#textBoxer > #textBox2 {
    color: #6d3f25;
    font-family: 'FoundersGrotesk-Medium', serif;
    letter-spacing: 0.3pt;
    width: 100%;
    height: auto;
    left:0px;
    font-size: 55%; 
    line-height: inherit;
    /* background-color: rgba(13, 160, 57, 0.2); */
}
/********************** TEXT End *******************/

#wrapper {
    display: block;
    top: 0;
    left: 0;
    width: 300px;
    height: 250px;
    overflow: hidden;
    background-color: #F2F2DA;
}

#bannerCover {
    width: inherit;
    height: inherit;
    background: #F2F2DA;
    pointer-events: none;
}

#border {
    border: 1px solid #B7B5A5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: inherit;
    height: inherit;
    pointer-events: none;
}

#bgexit {
    width: inherit;
    height: inherit;
    cursor: pointer;
}

/******************** LOGO ********************/

#logo {
    cursor: pointer;
    width: 250px;
    height: 110px;
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

/******************** BUTTON ********************/

#cta {
    width: 105px;
    height: 30px;
    line-height: 35px;
    letter-spacing: 0.9pt;
    bottom: 12px;
    right: 48px;
    cursor: pointer;
    background: #c9a825;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-family: 'FoundersGrotesk-Medium', sans-serif;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

#cta:hover {
    background-color: #6d3f25;
}


/********************** IMAGE **********************/

#imagesWrap {
    width: inherit;
    height: 125px;
    top: 0;
    left: 0;
}

.imageDiv {
    width: inherit;
    height: inherit;
}

#flowers {
    width: inherit;
    height: inherit;
}

#plantWrap1 {
    width: 200px;
    height: 90px;
    top: 190px;
    left: -75px;
    transform: rotate(22deg);
    -webkit-transform: rotate(22deg);
    -moz-transform: rotate(22deg);
    -ms-transform: rotate(22deg);
    -o-transform: rotate(22deg);
}

#plantWrap2 {
    width: 200px;
    height: 270px;
    bottom: -200px;
    right: -112px;
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
}

#flowerWrap1 {
    width: 30px;
    height: 45px;
    bottom: -21px;
    right: 50px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

#flowerWrap2 {
    width: 60px;
    height: 60px;
    bottom: -20px;
    right: -23px;
    -webkit-transform: rotate(220deg);
    transform: rotate(220deg);
    -moz-transform: rotate(220deg);
    -ms-transform: rotate(220deg);
    -o-transform: rotate(220deg);
}

