@font-face {
    font-family: GeometriaRegular;
    src: url("../fonts/Brownfox_Geometria.otf");
}

@font-face {
    font-family: GeometriaLight;
    src: url("../fonts/Geometria-Light.otf");
}

@font-face {
    font-family: GilroyExBold;
    src: url("../fonts/GILROY-EXTRABOLD.OTF");
}

@font-face {
    font-family: GilroyLight;
    src: url("../fonts/GILROY-LIGHT.OTF");
}

@font-face {
    font-family: OpenSansReg;
    src: url("../fonts/OpenSans-Regular.ttf");
}

@font-face {
    font-family: OpenSansLight;
    src: url("../fonts/OpenSans-Light.ttf");
}

* {
    box-sizing: border-box;
}

body {
    margin: 0px;
    min-width: 320px;
}

.bg1 {
    background: grey !important;
}

.bg2 {
    background: lightgrey;
}

.bg3 {
    background: green;
}

h1,
h2,
h3 {
    font-weight: normal;
    margin: 0px;
}

.container {
    width: 1278px;
    max-width: 100%;
    margin: 0 auto;
    content: " ";
    clear: both;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
}

.none {
    display: none;
}

input {
    outline: 0px;
}

button {
    outline: 0px;
    cursor: pointer;
}

textarea {
    resize: none;
    outline: none;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.col,
.left {
    float: left;
}

.right {
    float: right;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}