@import "fonts.css";

* {
    box-sizing: content-box;
}
form * {
    box-sizing: border-box;
}

html {
    height: 100%;
    background-color: #000;
    margin: 0;
    padding: 0;
    overflow: auto;
}
body{
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 16px;
    line-height: normal;
    position: relative;
    min-height: 100%;
    height: auto;
    background: url(/img/background.png) no-repeat fixed top center #000;
    background-size: cover;
    overflow: auto;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: bold;
}
p {
    margin: 16px 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
a{
    color: #741571;
    text-decoration: underline;
}
a:hover{
    color: #9d6ba0;
}
a:focus,
a:active {
    outline: none;
}

#main {
    width: 942px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

header {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: visible;
    font-family: RoadRadio, sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
}

#header-logo {
    position: absolute;
    top: 56px;
    left: 0;
}

header > ul.iconic {
    position: absolute;
    top: 240px;
    left: 0;
    text-transform: uppercase;
    color: #886c58;
}

ul {
    padding: 0;
}

ul.iconic {
    list-style: none;
}

ul.iconic li {
    padding-left: 46px;
    line-height: 36px;
    height: 36px;
    vertical-align: middle;
    margin: 7px 0;
}
ul.iconic li:last-child {
    margin-bottom: 0;
}

ul.iconic li.music {
    background: url(/img/icn-hl-music.png) no-repeat center left;
}
ul.iconic li.style {
    background: url(/img/icn-hl-style.png) no-repeat center left;
}
ul.iconic li.business {
    background: url(/img/icn-hl-business.png) no-repeat center left;
}
ul.iconic li.life {
    background: url(/img/icn-hl-life.png) no-repeat center left;
}

#exclusive-only {
    position: absolute;
    bottom: 0;
    left: 0;
}

#follow-me {
    position: absolute;
    right: 50px;
    top: 290px;
}

#socials {
    position: absolute;
    right: 0;
    bottom: 60px;
}

#when {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}
#when > img {
    margin-right: 15px;
    display: inline-block;
}
#when .text p {
    margin: 0;
    text-transform: uppercase;
}

#content {
    margin-top: 32px;
    overflow: visible;
}

ul.offers {
    display: flex;
    justify-content: space-between;
    overflow: visible;
    list-style: none;
    flex-wrap: wrap;
}

.offer {
    position: relative;
    overflow: visible;
    background-color: #fff;
    margin-bottom: 25px;
    color: #333;
}

li.offer {
    width: 461px;
}
div.offer {
    padding: 5px;
}

.offer .icon {
    position: absolute;
    right: 15px;
}
/*.offer:nth-child(odd) .icon { left: -45px; }
.offer:nth-child(even) .icon { right: -45px; }*/

.offer .box {
    box-sizing: border-box;
    border: 1px solid #caa78b;
    position: relative;
    padding: 10px;
    min-height: 150px;
}
li.offer .box {
    width: 451px;
    margin: 5px;
    height: calc(100% - 10px);
    padding-bottom: 50px;
}

.offer .box .caption {
    display: inline-block;
    color: #dcdcdc;
    vertical-align: middle;
    width: calc(100% - 30px);
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
}
.offer .box .caption .date {
    border-right: 1px solid #dcdcdc;
    padding-right: 5px;
    display: inline-block;
}
.offer .box .caption .name {
    color: #bd8e65;
}

.offer .box .description {
    font-weight: 300;
    font-size: 16px;
    color: #000;
    margin-top: 8px;
}

.offer .box .logo {
    /*float: right;*/
    display: block;
    margin: 0 0 10px 0;
}

.offer .box .buttons {
    position: absolute;
    width: calc(100% - 20px);
    bottom: 0;
}

.offer .box .more {
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    color: #bd8e65;
    padding: 7px 12px;
    border: 2px solid #bd8e65;
    border-radius: 24px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    margin: 15px 0 5px;
    background-color: transparent;
}

footer {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
}
footer > p:first-child {
    margin: 0;
    font-family: Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
}
footer > p:last-child {
    margin: 10px 0 25px;
    font-family: Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #444;
}

label, input, button, select, textarea {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

ol.numeric-bracket {
    counter-reset: list;
}
ol.numeric-bracket > li {
    list-style: none;
    position: relative;
}
ol.numeric-bracket > li::before {
    counter-increment: list;
    content: counter(list,decimal) ") ";
    position: absolute;
    left: -1.4em;
}
