/* ================================================= */
/* ------------------ General CSS ------------------ */
/* ================================================= */

* {
    box-sizing: border-box;
}

body {
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background: #ffffff;
}

a {
    color: #222222;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #FFD700;
    outline: none;
    text-decoration: none;
}

p {
    color: #666;
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    color: #666;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    h2 {
        font-size: 26px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    h2 {
        font-size: 18px;
        font-weight: 400;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    background: #222222;
    color: #FFD700;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 18px;
    border-radius: 0;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top:hover {
    color: #222222;
    background: #FFD700;
}

.back-to-top i {
    padding-top: 10px;
}

/* ================================================= */
/* ------------------ About Style ------------------ */
/* ================================================= */

#about {
    position: relative;
    padding: 45px 0 60px 0;
    background: #f2f2f2;
}

#about hr {
    width: 50%;
    margin: 45px auto;
}

#about .img-cols,
#about .content-cols {
    padding: 0;
}

#about .content-cols {
    background: #222222;
}

#about .img-col,
#about .content-col {
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#about .content-col {
    background: #222222;
    padding: 12px
}

#about .img-col {
    overflow: hidden;
}

#about .img-col img {
    transition: 0.3s;
    width: 100%;
}

#about .img-col:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#about .content-col h3 {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 15px;
}

@media (max-width: 767.98px) {
    #about .content-col {
        text-align: center;
    }

    #about .content-col h3 {
        font-weight: 400;
        margin-top: 15px;
    }
}

#about .content-col p {
    color: #ddd;
    font-size: 16px;
    line-height: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

#about .content-col a {
    display: inline-block;
    background: #FFD700;
    font-weight: 400;
    color: #222222;
    padding: 10px 30px;
}

#about .content-col a:hover {
    background: #ffffff;
    color: #FFD700;
}

#about .content-col a:focus {
    color: #fff;
}

