@font-face {
    font-family: GothamBookRegular;
    src: url(/v3/view/fonts/GothamBookRegular.otf);
}

@font-face {
    font-family: GothamBold;
    src: url(/v3/view/fonts/GB.otf);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-width: 320px;
    background-color: black;
}

.content {
    margin: auto;
    font-size: 0;
    width: 1150px;
}

.clear {
    clear: both;
}

.hide {
    display: none !important;
}

strong {
    font-family: GothamBold;
}

@media (min-width: 993px) and (max-width: 1200px) {
    .content {
        width: 970px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .content {
        width: 750px;
    }
}

@media (max-width: 768px) {
    .content {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
}