html{
    padding: 0;
    margin: 0;
    height: 100%;
}

body{
    height: 100%!important;
    min-height: 100%!important;
    width:100%;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    font-family: 'Clarika Geometric';
    color: #666;
    font-size: 18px;
    font-weight: 300;
    background: white;
}

*{
    position: relative;
}

.fancybox-navigation{
    position: initial;
}

body.compensate-for-scrollbar {
    overflow-y: scroll!important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 200;
    color: #657B50;
}

a,a:hover{
    color: #756759;
}

img{
    position: relative;
}

p{
    line-height: 1.8;
    letter-spacing: 0.4px;
    margin-bottom: 5px;
}

.logo{
    width: 50%;
}


.bg-1:before{
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    top: 0;
    bottom: 0;
    background: white;
    -webkit-transition: all 0.8s ease-out 0.6s;
    -moz-transition: all 0.8s ease-out 0.6s;
    -o-transition: all 0.8s ease-out 0.6s;
    transition: all 0.8s ease-out 0.6s;
}

.animated.bg-1:before{
    right:0;
}

.bg-2{
    background: #fcfcfc;
}

.pl-10p{
    padding-left: 10%;
    padding-right: 10%;
}

input.form-control,textarea.form-control{
    border-top: 0;
    border-left: 1px #657B50 solid;
    border-right: 0;
    border-bottom: 1px #657B50 solid;
    border-radius: 0;
}

input:focus, input.form-control:focus ,textarea.form-control:focus{
    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border-bottom: 1px black solid;
}

.btn-1{
    border: 1px #657B50 solid;
    border-radius: 0;
    background:  white;
    color:#657B50;
    line-height: 27px;
}

.btn-1:hover{
    background:  #657B50;
    color:white;
}

.white{
    color:white;
}

.gray{
    color: #999;
}

.bg-img-1{
    background-image: url(../imgs/bg-img-1a.png);
}



.layout-1-l{
    padding: 0 20% 0 20%;
}


.small{
    font-size: 16px;
    line-height: 1.5;
}

.icon-box{
    color: white;
    text-align: center;
    padding: 200px 30px;
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

.icon-box:hover{
    background: rgba(101 ,123 ,80,1);
}


.copyright{
    letter-spacing: 2px;
    position: absolute;
    font-size: 14px;
    right: -15px;
    bottom: 185px;
    /*padding: 15px;*/
    transform-origin: 100% 100% ;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}


/*----------- parallax ------------*/

.parallax{
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.parallax-image {
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}

.parallax-image:after{
    position: absolute;
    content: "";
    left:0;
    right:0;
    top:0;
    bottom: 0;
    background: rgba(101 ,123 ,80,0.6);
}

.parallax-stuff {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 26px;
    position: relative;
}



.parallax-stuff p{
    font-size: 16px;
    color: #fff;

}

/*----------- parallax ------------*/

@media (max-width: 767px){


    .pl-10p{
        padding-left: 5%;
        padding-right: 5%;
    }

    .h-100{
        height: auto!important;
    }

    .layout-1-l {
        padding: 0 20px;
    }

    .logo{
        width: 70%;
        margin: 0 auto;
        display: block;
    }

    .icon-box {
        color: white;
        text-align: center;
        padding: 40px 20px;
    }

    .map{
        height: 500px;
    }

    .bg-img-1{
        position: relative;
    }
    .bg-img-2{
        background-image: url(../imgs/bg-img-1a.png);
    }

    .bg-img-3:after{
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background:rgba(101,123,80,0.7);
    }

    .icon-box{
        position: relative;
        z-index: 9;
    }

    .copyright {
        right: 3px;
        font-size: 10px;
        bottom: 100px;
    }

}

@media (min-width: 768px) and (max-width: 991px){

    .pl-10p{
        padding-left: 5%;
        padding-right: 5%;
    }

    .icon-box {
        color: white;
        text-align: center;
        padding: 80px 20px;
    }
}

@media (min-width: 992px)  {
    .b-1 img{
        filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
        filter: gray; /* IE6-9 */
        -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    }

    .b-1 img:hover {
        filter: none;
        -webkit-filter: grayscale(0%);
    }
}