html, body {
    min-height: 100%;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url("../img/main-bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.col-md-3 {
    margin-bottom: 30px;
}
.header .top-panel {
    width: 225px;
    height: 265px;
    padding: 30px;
    background-image: url("../img/header-top-panel-bg.png");
}
.header .top-panel h1 {
    color: white;
    font-weight: bolder;
    font-size: 22px;
    line-height: 23px;
}
.header .top-panel h1 .text-red {
    color: #d4122b;
}
.header .top-panel p {
    color: white;
    font-size: 15px;
}

.footer p {
    color: white;
    font-weight: bolder;
    letter-spacing: 3px;
    font-size: 17px;
    word-spacing: 2px;
    margin: 0;
}
.footer .seccond {
    font-size: 14px;
    letter-spacing: 2px;
}

.main-content .circle-content {
    background-image: url("../img/item-bg.png");
    background-repeat: no-repeat;
    background-size: 100%;
    max-width: 227px;
    margin: auto;
}
.items-rows-container {
    width: 90%;
    margin-left: 5%;
}
.items-rows-container .off {
    padding-top: 25%;
}
.items-rows-container .off p {
    color: white;
    font-weight: bold;
    letter-spacing: 5px;
    padding-top: 5%;
}
.items-rows-container .circle-content-inner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    overflow: hidden;
}
.items-rows-container .circle-content-inner .off,
.items-rows-container .circle-content-inner .on {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .4s cubic-bezier(.25,.8,.25,1);
}
.items-rows-container .circle-content .circle-content-inner .on,
.items-rows-container .circle-content:hover .circle-content-inner .off {
    top: -100%;
    opacity: 0;
}
.items-rows-container .circle-content:hover .circle-content-inner .on,
.items-rows-container .circle-content .circle-content-inner .off {
    top: 0;
    opacity: 1;
}
.items-rows-container .circle-content-inner .on p {
    color: white;
    padding: 29% 6% 0;
    font-size: 13px;
    line-height: 18px;
}
/**md*/
@media(min-width: 992px) and (max-width: 1199px) {
    .items-rows-container .circle-content-inner .on p {
        padding: 21% 6% 0;
        font-size: 12px;
        line-height: 14px;
    }
}
/**sm and less*/
@media (max-width: 991px) {
    .items-rows-container .circle-content {
        margin-bottom: 15px;
    }
}