/*-----Ã£Æ’â„¢Ã£Æ’Â¼Ã£â€šÂ¹-----*/
body {
    background: #1d1d1d url(../images/overlay.png) repeat;
    font-size: 14px;
    line-height: 2;
    font-weight: normal;
    font-family: "Questrial", sans-serif;
    -webkit-overflow-x: hidden;
    -moz-overflow-x: hidden;
    -ms-overflow-x: hidden;
    -o-overflow-x: hidden;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: bold;
}

h1 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}
img{
    max-width: 100%;
}
a {
    color: #446f4b;
    font-weight: bold;
}

a:hover {
    text-decoration: none;
    color: #333;
}


/* Lists */

ul.default {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.default li {
    display: block;
    padding: 0.70em 0em;
    border-bottom: 1px solid;
    border-color: rgba(255, 255, 255, .1);
}

ul.default.alt li {
    border-color: rgba(0, 0, 0, .1);
}

ul.default li:first-child {
    padding-top: 0;
    border-top: none;
}

ul.default a {
    padding-left: 1em;
}

ul.default .fa:before {
    font-size: 0.80em;
    color: rgba(255, 255, 255, .7);
}

ul.default.alt .fa:before {
    color: rgba(0, 0, 0, .7);
}


/* Buttons */

.button a{
    position: relative;
    display: table;
    border: 0;
    background: #446f4b;
    color: #fff;
    cursor: pointer;
    padding: 5px 10px;
    -webkit-transition: all ease-in 0.2s;
    -o-transition: all ease-in 0.2s;
    transition: all ease-in 0.2s;
}
.button a:hover{
    background: #254a2b;
    -webkit-transition: all ease-in 0.2s;
    -o-transition: all ease-in 0.2s;
    transition: all ease-in 0.2s;
}
.divider {
    overflow: hidden;
    height: 20px;
    background: url(../images/divider.png) repeat-x left top;
}


/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

#header {
    position: relative;
    background: #7fa986;
}


/*********************************************************************************/
/* Logo                                                                          */
/*********************************************************************************/

#logo-wrapper {
    position: relative;
    background: #446f4b url(../images/overlay.png) repeat;
}

#logo {
    position: relative;
}

#logo h1 {
    padding: 20px 0;
    color: #FFF;
    margin: 0;
    text-align: center;
}

#logo a {
    line-height: 1.5em;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFF;
    -webkit-transition: all ease-in 0.2s;
    -o-transition: all ease-in 0.2s;
    transition: all ease-in 0.2s;
}
#logo a:hover{
    color: #2e5234;
    -webkit-transition: all ease-in 0.2s;
    -o-transition: all ease-in 0.2s;
    transition: all ease-in 0.2s;
    text-shadow: 0 0 0.2px #fff, 0 0 0.2px #fff,-0.5px 0.5px 0.2px #fff,  0.1px 0.1px 0.2px #fff,  0 0 0.2px #fff,  0 0 0.2px #fff;
}

/*********************************************************************************/
/* Nav                                                                           */
/*********************************************************************************/

#nav {
    padding: 30px 0;
    position: relative;
}
#nav li{
    float: left;
    margin-right: 5px;
}

#nav li a{
    display: block;
    padding: 0.80em 1.5em;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1em;
    background: #446f4b url(../images/overlay.png) repeat;
    color: #fff;
    box-shadow: inset 0 0 8px #31010b;
    border: 3px solid #2b4a30;
    outline: 0;
    position: relative;
    z-index: 1;
    -webkit-perspective: 150px;
    -moz-perspective: 150px;
    -ms-perspective: 150px;
    perspective: 150px;
}
#nav li a:before{
    content: attr(data-hover);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.80em 1.5em;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: #5c8c64;
    height: 100%;
    z-index: 0;
    color: #fff;
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    -o-transform-origin: 0 100%;
    transform-origin: 0 100%;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all ease-in 0.7s, opacity 1.2s;
    -o-transition: all ease-in 07s, opacity 1.2s;
    transition: all ease-in 0.7s, opacity 1.2s;
}
#nav li a.active,
#nav li a:hover {
    color: #fff;
    -webkit-transition: all ease-in 0.2s;
    -o-transition: all ease-in 0.2s;
    transition: all ease-in 0.2s;
}
#nav li a.active:before, #nav li a:hover:before{
    -webkit-transform: rotateX(-270deg);
    -ms-transform: rotateX(-270deg);
    -o-transform: rotateX(-270deg);
    transform: rotateX(-270deg);
    -webkit-transition: opacity ease-out 1.2s, all cubic-bezier(0.24, -0.28, 1, 0.52) 0.7s;
    -o-transition: opacity ease-out 1.2s, all cubic-bezier(0.24, -0.28, 1, 0.52) 0.7s;
    transition: opacity ease-out 1.2s, all cubic-bezier(0.24, -0.28, 1, 0.52) 0.7s;
    opacity: 0;
    /*z-index: -1;*/
}

#nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    left: 50%;
    display: table;
    position: relative;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
#nav .cv-menu{
    position: relative;
    display: table;
    height: 24px;
    display: none;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
#nav .cv-menu:hover{
    cursor: pointer;
}
#nav .cv-menu span{
    height: 4px;
    background: #446f4b;
    width: 30px;
    display: table;
    margin-top: 10px;
}
#nav .cv-menu span:before, #nav .cv-menu span:after{
    content: '';
    position: absolute;
    height: 4px;
    background: #446f4b;
    width: 30px;
}
#nav .cv-menu span:before{
    top: 0;
    left: 0;
}
#nav .cv-menu span:after{
    left: 0;
    bottom: 0;
}
.oimg{
    max-width: 35%;
    width: 35%;
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}
.twoCol .oimg{
    max-width: 50%;
    width: 50%;
}
.threeCol .oimg{
    float: none;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
}
/*********************************************************************************/
/* Banner                                                                        */
/*********************************************************************************/

#banner {
    position: relative;
    color: #fff;
    background: #c4d5dd;
}


/*********************************************************************************/
/* Main                                                                          */
/*********************************************************************************/

#main {
    position: relative;
    padding: 6em 0em;
    background: #fff;
}

#sidebar1 header h2,
#sidebar2 header h2 {
    font-size: 1.8em;
}

.sub-post{
    display: table;
    width: 100%;
}

/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/

#footer {
    position: relative;
    padding: 30px 0;
    background: #2c2c2c url(../images/overlay.png) repeat;
    color: rgba(255, 255, 255, .4);
}

#footer h3 {
    color: #ddd;
    padding: 10px 0;
    margin-bottom: 10px;
    font-size: 1.7em;
    letter-spacing: 0.2em;
}

#footer .prlink a:hover{
    color: #fff;
}

/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/

#copyright {
    position: relative;
    padding: 3em 0em;
    text-align: center;
    color: #666;
}

#copyright .container {}

#copyright a:hover {
    text-decoration: none;
    color: #ddd;
}

@media only screen and (max-width: 991px){
    #logo h1{
        font-size: 1.7em;
    }
    .oimg, .twoCol .oimg{
        max-width: 50%;
        width: 50%;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .threeCol .oimg{
        float: left;
        width: 50%;
        max-width: 50%;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    #nav .cv-menu{
        display: table;
    }
    #nav ul{
        position: absolute;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all ease-in 0.2s;
        -o-transition: all ease-in 0.2s;
        transition: all ease-in 0.2s;
        margin-top: 50px;
        z-index: 1000;
        /*overflow: hidden;*/
        
    }
    #nav ul.open{
        margin-top: 5px;
        opacity: 1;
        visibility: visible;
        -webkit-transition: all ease-in 0.2s;
        -o-transition: all ease-in 0.2s;
        transition: all ease-in 0.2s;
        /*overflow: hidden;*/
    }
    #nav ul li{
        float: none;
        background: #446f4b url(../images/overlay.png) repeat;
        margin-bottom: 100px;
        -webkit-transition: all ease-in 0.3s;
        -o-transition: all ease-in 0.3s;
        transition: all ease-in 0.3s;
        position: relative;
        margin-right: 0;
    }
    #nav ul.open li{
        margin-bottom: 0px;
        -webkit-transition: all ease-in 0.3s;
        -o-transition: all ease-in 0.3s;
        transition: all ease-in 0.3s;
    }
   
    #nav ul li:nth-child(2n+1){
        left: 300px;
        -webkit-transition: all ease-in 0.3s;
        -o-transition: all ease-in 0.3s;
        transition: all ease-in 0.3s;
    }
    #nav ul li:nth-child(2n+2){
        right: 300px;
        -webkit-transition: all ease-in 0.3s;
        -o-transition: all ease-in 0.3s;
        transition: all ease-in 0.3s;
    }
    #nav ul.open li:nth-child(2n+1){
        left: 0px;
        -webkit-transition: all ease-in 0.3s;
        -o-transition: all ease-in 0.3s;
        transition: all ease-in 0.3s;
    }
    #nav ul.open li:nth-child(2n+2){
        right: 0px;
        -webkit-transition: all ease-in 0.3s;
        -o-transition: all ease-in 0.3s;
        transition: all ease-in 0.3s;
    }
     #nav ul.open li:nth-child(1){
        -webkit-transition-delay: 0ms;
        -o-transition-delay: 0ms;
        transition-delay: 0ms;
    }
    #nav ul.open li:nth-child(2){
        -webkit-transition-delay: 66ms;
        -o-transition-delay: 66ms;
        transition-delay: 66ms;
    }
    #nav ul.open li:nth-child(3){
        -webkit-transition-delay: 133ms;
        -o-transition-delay: 133ms;
        transition-delay: 133ms;
    }
    #nav ul.open li:nth-child(4){
        -webkit-transition-delay: 200ms;
        -o-transition-delay: 200ms;
        transition-delay: 200ms;
    }
    #nav ul a{
        white-space: nowrap;
        color: #fff;
        width: 100%;
    }
    #nav ul a.active, #nav ul a:hover{
        /*border: 0;*/
        border-radius: 0;
        background: rgba(0, 0, 0, 0.18);
    }
    #nav ul.open li{

    }
    #nav ul.open a{

    }
} 
@media only screen and (max-width: 768px){
    #logo h1{
        font-size: 1.4em;
    }
}
@media only screen and (max-width: 600px){
    .oimg, .twoCol .oimg, .threeCol .oimg{
        max-width: 100%;
        width: 100%;
        float: none;
        margin-right: 0px;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 480px){
    #logo h1{
        font-size: 1.2em;
    }
}
@media only screen and (max-width: 320px){
    #logo h1{
        font-size: 1em;
    }
    h3 {
        font-size: 1em;
    }
}