/* =========================================
    Default Theme
    ----------------------------------------
    fonts :Raleway & Open Sans
    ----------------------------------------
    Colors:
    Moon Yello:       #f4c613
    Gray:             #212226
    White Smoke:      #f4f4f4
    Wihte:            #fff
    Black:            #000
    =========================================
 */

/* =========================================
    Preloader
    =========================================
 */
/* * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
} */
#preloader {
    background-color: #fff;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.strong {
    font-weight: bold;
}

#status {
    background-image: url("../img/preloader/preloader.gif");
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -35px;
    margin-left: -35px;
}

/* =========================================
    Home
    =========================================
 */

html,
body {
    height: 100%;
}

body {
    color: #212226;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

p {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
}

section {
    background: #fff;
    overflow: hidden;
}


/* =========================================
    Content Boxes
    =========================================
 */


.content-box-lg {
    padding: 120px 0;
}

.content-box-md {
    padding: 100px 0;
}


/* =========================================
    About 02
    =========================================
 */
#about-02 {
    background-color: #f4f4f4;
}

.about-item {
    background-color: #fff;
    margin-bottom: 30px;
    width: 100%;
    height: 135px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-item img {
    margin: 0 10px 10px 10px;
    width: 90%;
    height: 130px;
    vertical-align: center;
}


