@import url('https://fonts.googleapis.com/css?family=Montserrat|Bree+Serif|Roboto|Poppins');


:root {
    /* colors */
    --clr-dark: #595959;
    --clr-dark-d: #262626;
    --clr-dark-l: #808080;
    --clr-light: #EEEEEE;
    --clr-light-l: #FAFAFA;
    --clr-light-d: #BDBDBD;

   /*  --clr-p: #fda12b;
    --clr-p-d: #fc9003;
    --clr-p-l: #fdb14e; */

    --clr-p: #F37A4B;
    --clr-p-d: #f06128;
    --clr-p-l: #f59670;

    --clr-t: #1F3041;

    --clr-s: #00aeef;

    --clr-success: mediumseagreen;
    --clr-success-d: seagreen;
    --clr-warning: #FFA000;
    --clr-danger: #d74251;
    --clr-danger-d: #a82431;

    /* fonts */
    --font-p: "Poppins", sans-serif;

    /* spacing */
    --space-1: 70px;
    --space-2: 25px;
    --space-3: 10px;
}
* {
    box-sizing: border-box;
}
html, body {
    font-family: Verdana, sans-serif;
    font-size: 15px;
    line-height: 1.8;
}

body {
    background: #eee;
    background: var(--clr-light);
    font-family: "Poppins",sans-serif;
    font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 { 
    font-family: "Poppins",Arial,Helvetica,sans-serif;
}
a {
    color: #262626;
    color: var(--clr-dark-d);
}
a:hover, a:active {
    color: #595959;
    color: var(--clr-dark);
}
a:visited {
    color: #262626;
    color: var(--clr-dark-d);
}

/* .sec-block {
    margin-top: 70px;
    margin-bottom: 70px;
} */
.sec-block__txt p {
    margin-bottom: 15px;
}
.sec-block__txt p:last-of-type {
    margin-bottom: 0;
}

.small-sec {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.wall-btn {  
    border: 0px solid transparent;
    background-image: linear-gradient(to bottom, var(--clr-danger), var(--clr-danger-d));
    padding: 10px 45px;
    border-radius: 50px;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: normal;
    text-transform: uppercase;
}
.wall-btn:hover {  
    transition: 0.25s all;
    border: 0px solid transparent;
    background-image: linear-gradient(to top, var(--clr-danger), var(--clr-danger-d));
}

/*** nav-bar-first ***/
.nav-bar-first {
    width: 100%;
    background: var(--clr-t);
    position: relative;
}
.nav-bar-first__container {
    position: relative;
    font-size: 0;
    z-index: 3;
}
.nav-bar-first__txt {
    position: relative;
    display: inline-block;
    width: 40%;
    font-size: 1rem;
    color: #fff;
    padding-left: 25px;
    letter-spacing: 1px;
    float: right;
    padding: 10px;
    padding-left: 25px;
    background: var(--clr-p);
}
.nav-bar-first__txt span {
    z-index: 3;
}
.nav-bar-first__social-icons {
    display: inline-block;
    font-size: 1rem;
    width: 60%;
    position: relative;
    padding: 10px 0;
}
.nav-bar-first::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    z-index: 0;
    background: var(--clr-p);
}
.nav-bar-first__social-icon {
    display: inline-block;
    padding-right: 15px;
}
.nav-bar-first__social-icon:first-of-type {
    padding-left: 10px;
}
.nav-bar-first__social-icon a {
    color: var(--clr-light-l);
    font-size: 1rem;
}
/*** nav-bar-first ENDs ***/

/* header */
.nav-bar {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.1);
            box-shadow: 0 5px 10px rgba(0,0,0,.1);
    z-index: 100;
    background: #fff;
    letter-spacing: 0.5px;
    padding-top: 10px;
}

.nav-bar > .wall-container {
    position: relative;
}

.nav-bar__top {
    position: relative;
    height: 120px;
}
.nav-bar__logo {
    width: auto;
    display: inline-block;    
    float: left;
    text-align: left;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-45px);
    z-index: 10;
}
.nav-bar__logo-img {
    width: 156px;
    z-index: 1;
    color: #00994d;
    color: var(--clr-p);
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: middle;

    width: 102px;
    background: #fff;
    padding: 15px;

    
}
.nav-bar__top {
    width: 100%;
}
.nav-bar__bottom {
    width: 80%;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    padding: 0px;
    -webkit-box-shadow: 0px 0px 9px 0px rgba(6,22,58,0.07);
    -moz-box-shadow: 0px 0px 9px 0px rgba(6,22,58,0.07);
    box-shadow: 0px 0px 9px 0px rgba(6,22,58,0.07);
    background: #fff;

    width: calc(100% - 130px);
    left: 130px;
    transform: none;
}
.nav-bar__ham { 
    display: none;
}
.nav-bar__menu {
    font-size: 0;
}
.nav-bar__top-menu {
    position: relative;
    float: right;
    vertical-align: middle;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-75%);
    z-index: 10;
}
.nav-bar__top-menu-item {
    display: inline-block;
    position: relative;
}
.nav-bar__top-menu-item::after {
    content: "";
    height: 50px;
    width: 1px;
    background-color: var(--clr-light);
    display: block;
    position: absolute;
    right: 0px;
    top: 15px;
}
.nav-bar__top-menu-item:last-of-type::after {
    content: none;
}
.nav-bar__top-menu-link {
    color: var(--clr-dark);
    display: block;
    text-decoration: none;
    padding: 15px 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
}
.nav-bar__top-menu-item-left {
    display: inline-block;
}
.nav-bar__top-menu-item-right {
    display: inline-block;
    padding-left: 18px;
    vertical-align: top;
    margin-top: -5px;
}
.nav-bar__top-menu-item-right span:nth-of-type(1) {
    display: block;
    font-size: 1rem;
    font-weight: bold;
}
.nav-bar__top-menu-item-right span:nth-of-type(2) {
    display: block;
    font-size: 0.85rem;
}
.nav-bar__top-menu-item i {
    color: var(--clr-dark-d);
    width: 45px;
    height: 45px;
    background-color: transparent;
    text-align: center;
    float: none;
    border: 1px solid #fda02b;
    border: 1px solid var(--clr-p);
    color: var(--clr-p);
    font-size: 1.25rem;
    border-radius: 0;
    line-height: 45px;
}
.nav-bar__menu-item {
    display: inline-block;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    position: relative;
}
.nav-bar__menu-item::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 1px;
    right: 0px;
    top: 50%;
    transform: translateX(0%) translateY(-50%);
    background-color: var(--clr-light);
    display: inline-block;
}
.nav-bar__menu-item:last-of-type::after {
    content: none;
}
.nav-bar__menu-item.active {
    background: #fff;
}
.nav-bar__menu-item.right {
    float: right;
}
.nav-bar__menu-link {
    color: #fafafa;
    color: var(--clr-dark-d);
    display: block;
    text-decoration: none;
    padding: 15px 25px;
    font-size: 0.95rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}
.nav-bar__menu-item:hover  {
    -webkit-transition: 0.25s all;
    transition: 0.25s all;
}
.nav-bar__menu-item:hover .nav-bar__menu-link {
    -webkit-transition: 0.25s all;
    transition: 0.25s all;
    color: var(--clr-p-d);
}
.nav-bar__menu-link:visited {
    color: var(--clr-dark-d);
}
.nav-bar__sub-menu {
    display: none;
    position: absolute;
    left: auto;
    padding: 5px 10px;
    width: 270px;
    padding: 0 15px;
    background: #fafafa;
    background: var(--clr-light-l);
    border-top-width: 0;
    font-size: 1rem;
}
.nav-bar__sub-menu-item {
    display: block;
    margin-bottom: 0;
    color: var(--clr-dark);
    display: block;
    text-decoration: none;
    margin: 15px 5px;
    font-size: 0.95rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}
.nav-bar__menu-item-right {
    float: right;
    background: var(--clr-p-l);
}
.nav-bar__menu-item:hover .nav-bar__sub-menu-item .nav-bar__menu-link {
    -webkit-transition: 0.25s all;
    transition: 0.25s all;
    color: #262626;
    color: var(--clr-dark-d);
}
.nav-bar__sub-menu-item .nav-bar__menu-link {
    padding: 5px 15px;
    line-height: 1.4;
    color: #262626;
    color: var(--clr-dark-d);
}
.nav-bar__sub-menu-item .nav-bar__menu-link:hover {
    color: #00994d;
    color: var(--clr-p)!important;
}
.nav-bar__sub-menu-nested {
    position: relative;
    top: 0;
    background-color: transparent;
}
.nav-header__mobile-menu-check, .nav-header__mobile-menu  {
    display: none;
}
/*** ***/

/* page-content */
.page-content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -5px;
    background: #eee;
    background: var(--clr-light-l);
}
.page-title__sub-title {
    position: relative;
    margin-bottom: 20px;
}
.page-title__sub-title-txt {
    padding-left: 29px;
}
.page-title__sub-title-txt:nth-of-type(1) {
    display: block;
    font-family: "Poppins",Arial,Helvetica,sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #8d9297;
}
.page-title__sub-title-txt:nth-of-type(2) {
    display: block;
    font-family: "Poppins",Arial,Helvetica,sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 46px;
    color: #182333;
}
.page-title__sub-title::after {
    margin-left: 0;
    margin-right: 0;
    display: block;
    content: "";
    position: absolute;
    background-color: var(--clr-p);
    width: 6px;
    top: 0%;
    height: 95%;
    margin-top: 0;
}

.txt-block {
    padding: 15px 20px;
    background: #fafafa;
    background: var(--clr-light-l);
}
.txt-block p {
    margin-bottom: 5px;
}
.txt-block ul {
    list-style-type: circle;
    padding-left: 40px;
    margin-bottom: 5px;
}

/* attraction-sec */
.attraction-sec {
    position: relative;
    width: 100%;
    height: 250px;
    /* background-image: url("../img/common/hero-image.jpg"); */
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
    background-attachment: fixed;
}
.attraction-sec__wrapper {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}
.attraction-sec::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
}

.attraction-sec__title-wrapper  {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
}
.attraction-sec__title, .attraction-sec__sub-title {
    color: #fafafa;
    color: var(--clr-light);
    font-size: 3.5rem;
}
.attraction-sec__title {
    color: var(--clr-p-l);
}
.attraction-sec__sub-title {
    font-size: 1.25rem;
}

/* .shape-des */
.shape-des {
    position: relative;
}
.shape-des::before {
    content: '';
    background-color: var(--clr-light-l);
    width: 50%;
    height: 60px;
    position: absolute;
    bottom: -30px;
    left: 0;
    -webkit-transform: skewY(3deg);
    transform: skewY(3deg);
    z-index: 4;
}
.shape-des::after {
    content: '';
    background-color: var(--clr-light-l);
    width: 50%;
    height: 60px;
    position: absolute;
    bottom: -30px;
    right: 0;
    -webkit-transform: skewY(-3deg);
    transform: skewY(-3deg);
    z-index: 4;
}

.shape-des.inverse::before {
    transform: skewY(-3deg);
}
.shape-des.inverse::after {
    transform: skewY(3deg);
}

/* tagline-sec-wrapper */
.tagline-sec {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -50px;
    border-width: 0px;
    border-style: solid;
    background-image: url("../img/common/pattern.png");
    background-position: center center;
    background-repeat: repeat;
    background-attachment: scroll;
    background-size: auto;
    z-index: 99;
    text-align: center;
}
.tagline-sec__title {
    padding: 20px 35px 15px 35px;
    background: linear-gradient(to bottom,rgba(28, 125, 89, 0.95), rgba(28, 125, 89, 0.75), rgb(28, 125, 89, 0.65));
    color: var(--clr-light);
}
.tagline-sec__title:hover {
    transition: 0.25s all;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.5);
}

/* custom-table */
.custom-table__table-row {
    padding: 10px 15px;
}
.custom-table__table-row {
    background: #BDBDBD;
    background: var(--clr-light-d);
    margin-bottom: 5px;
}
.custom-table__table-row-head {
    background: #00994d;
    color: #EEEEEE;
    background: var(--clr-p);
    color: var(--clr-light);
    font-weight: 700;
}


.wall-input-text, 
.wall-select-btn,
.wall-input-textarea {
    display: inline-block;
    height: 50px;
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 5px;
    border: none;
    border-bottom: 1px solid #e6e6e6;
    font-size: 1.1rem;
    color: var(--clr-d-l);
    padding-right: 25px;
    background: transparent;
    box-sizing: border-box;
}
.wall-input-textarea {
    height: 100px;
}
.wall-select-btn {
    padding: 10px 25px;
}
.wall-textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 33px;
    padding: 10px 25px;
    color: #595959;
    color: var(--clr-dark);
    background-color: #eee;
    background-color: var(--clr-light);
    font-size: 1rem;
    border: 1px solid #eee;
    border: 1px solid var(--clr-light);
    font-weight: 400;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}

.wall-checkbox-wrapper {
    vertical-align: middle;
}
.wall-input-check {
    display: none;
}
.wall-input-check-btn {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}
.wall-input-check-btn::after {
    content: ' ';
    display: block;
    height: 1.25rem;
    width: 1.25rem;
    border: 2px solid var(--clr-light-d);
    transition: 200ms;
    position: absolute;
    top: 1px;
    left: 2px;
    transition: 100ms ease-in-out;
}
.wall-input-check-btn + label {
    padding-left: 30px;
    padding-right: 15px;
}

input[type=checkbox] + .wall-input-check-btn::after { 
    content: ' ';
    display: block;
    height: 1.25rem;
    width: 1.25rem;
    border: 2px solid var(--clr-light-d);
    transition: 200ms;
    position: absolute;
    top: 1px;
    left: 2px; 
    transition: 100ms ease-in-out;
  }
  input[type=checkbox]:checked + .wall-input-check-btn::after { 
    border-top-style: none; 
    border-right-style: none;
    transform: rotate(-50deg);
    height: 0.7rem;
    border-color: var(--clr-p);
    border-width: 4px;
  }
  input[type=checkbox]:checked + .wall-input-check-btn::before { 
    content: ' ';
    display: block;
    height: 1.35rem;
    width: 1.35rem;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid var(--clr-light-d); 
  }

/* footer-sec */
.footer-sec {
    width: 100%;
    color: #fafafa;
    color: var(--clr-light-d);
}
.footer-sec__wrapper {
    background-color: var(--clr-t);
    padding-top: 100px; 
    padding-bottom: 50px;
}
.footer-sec a {
    color: #EEEEEE;
    color: var(--clr-light-d);
}
.footer-sec a:hover, .footer-sec a:hover, .footer-sec a:active {
    color: #BDBDBD;
    color: var(--clr-light-d);
}
.footer-sec a:visited {
    color: #EEEEEE;
    color: var(--clr-light-d);
}

.footer-sec__about, .footer-sec__contact {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 25px;
}
.footer-sec__about {
    width: 67%;
    width: calc(70% - 20px);
    margin-right: 15px;
}
.footer-sec__about-title, .footer-sec__contact-title {
    position: relative;
    color: #eeeeee;
    color: var(--clr-p-l);
    margin-bottom: 5px;
}
.footer-sec__about-title::after, .footer-sec__contact-title::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    margin: 0;
    margin-top: 5px;
    background: var(--clr-p);
}
.footer-sec__about-descrip {
    color: #EEEEEE;
    color: var(--clr-light-d);
}
.footer-sec__about-descrip p {
    margin-bottom: 5px;
}

.footer-sec__contact {
    width: 30%;
}
.footer-sec__contact-address {
    margin-bottom: 5px;
}

.footer-sec__divider {
    border-bottom: 1px dashed #eeeeee;
    border-bottom: 1px dashed var(--clr-light);
    margin-bottom: 15px;
}

.footer-sec__copyright {
    width: 100%;
    text-align: center;
    color:  #BDBDBD;
    color: var(--clr-light-d);
}

.stylized-list {
    padding-left: 15px;
}
.stylized-list__item {
    list-style: disc;
}

@media only screen and (max-width:1279px) {
    
}
@media only screen and (max-width:1045px) { 
    /* header */
    .nav-list__ham {
        display: block;
        position: absolute;
        top: 50%;
        right: 10px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    }
    .nav-list__menu {
        display: none;
        position: fixed;
        top: 75px;
        width: 100%;
        background: #FAFAFA;
        background: var(--clr-light-l);
        float: none;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    .nav-list__menu-item {
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .nav-list__menu-link {
        padding-left: 15px;
    }
    .nav-list__menu-link:hover {
        color: #00994d;
        color: var(--clr-p);
        background: transparent;
        border-radius: 70px;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    .nav-list__menu-item.active .nav-list__menu-link {
        background: transparent;
        border-radius: 70px;
        color: #006633;
        color: var(--clr-p-d);
    }
}
@media only screen and (max-width:899px) { 

    /*** nav-header ***/
    .nav-bar {
        padding-top: 0;
    }
    .nav-bar__top-menu {
        display: none;
    }
    .nav-bar__top {
        height: 75px;
    }
    .nav-bar__logo {
        transform: translateY(-50%);
        top: 50px;
        border-radius: 50px;
        background: #fff;
    }
    .nav-bar__logo-img {
        width: 80px;
        background: transparent;
    }
    .nav-bar__bottom { 
        width: 100%;
        height: 0;
        top: 100%;
        left: 0;
        transform: translateX(0);
        padding: 0 !important;
        box-shadow: none;
        border-top: 1px solid #eee;
    }
    .nav-bar__bottom .wall-container {
        width: 100%;
    } 
    .nav-bar__menu {
        display: none;
        background: var(--clr-light-l);
        padding-top: 30px;
    }
    .nav-bar__menu-item {
        display: block;
        text-align: left;
    }
    .nav-bar__menu-link {  
        width: 100%;
    }
    .nav-header__mobile-menu-check {
        display: none;
    }
    .nav-header__mobile-menu {
        display: inline-block;
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        font-size: 1.5rem;
        cursor: pointer;
    }
    .nav-bar__menu-item.right {
        float: none;
    }
    /*** nav-header ENDs ***/

    .attraction-sec__title {
        font-size: 3rem;
    }

    /*** .feature-des-2 ***/
    .feature-des-2__lists {
        display: inline-block;
    }
    .feature-des-2__list-item {
        width: 47%;
        width: calc((100% / 2) - 15px);
        margin-bottom: 15px;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }
}
@media only screen and (max-width:767px) { 
    .page-title__sub-title {
        font-size: 2rem;
    }

    .wall-tabs__item {
        margin: 0;
        margin-bottom: 10px;
        display: block;
    }

    /*** nav-bar-first ***/
    .nav-bar-first::before {
        display: none;
    }
    .nav-bar-first__txt {
        display: none;
    }
    /*** nav-bar ***/
    .nav-bar a {
        cursor: pointer;
    }
    .nav-bar__sub-menu {
        position: relative;
        width: 100%;
        background: #eee;
        background: var(--clr-light);
    }

    /*** .feature-des-2 ***/
    .feature-des-2__list-item {
        width: 80%;
        margin-left: 10%;
    }

    /* footer */
    .footer-sec__about, .footer-sec__contact {
        width: 100%;
    }
}
@media only screen and (max-width:479px) { 
    /*** .feature-des-2 ***/
    .feature-des-2__list-item {
        width: 100%;
        margin-left: 0%;
    }

    /*** .footer-sec ***/
    .footer-sec__copyright, .footer-sec__menu-links {
        width: 100%;
        display: block;
    }
    .footer-sec__menu-links { 
        text-align: left;
    }
    .footer-sec__menu-link-item:first-of-type {
        margin-left: 0;
    }
}

/*** pre loader ***/
.entry-header {
    text-align: left;
    margin: 0 auto 50px;
    width: 80%;
    max-width: 978px;
    position: relative;
    z-index: 10001
}

#demo-content {
    padding-top: 100px
}

.chromeframe {
    margin: .2em 0;
    background: #ccc;
    color: #000;
    padding: .2em 0
}

#owlreporter-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--clr-p);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 1001
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--clr-p-d);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--clr-p);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

#owlreporter-preloader .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #1A2021;
    z-index: 1000;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

#owlreporter-preloader .loader-section.section-left {
    left: 0
}

#owlreporter-preloader .loader-section.section-right {
    right: 0
}

.loaded #owlreporter-preloader .loader-section.section-left {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    -webkit-transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #owlreporter-preloader .loader-section.section-right {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
    -webkit-transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.loaded #owlreporter-preloader {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    -webkit-transition: all .3s 1s ease-out;
    transition: all .3s 1s ease-out;
}

.no-js #owlreporter-preloader {
    display: none
}

.no-js h1 {
    color: #222
}

#content {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 80%;
    max-width: 978px
}

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    *text-indent: -9999px
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%
}

.hidden {
    display: none !important;
    visibility: hidden
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto
}

.invisible {
    visibility: hidden
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table
}

.clearfix:after {
    clear: both
}

.clearfix {
    *zoom: 1
}

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        -webkit-box-shadow: none !important;
                box-shadow: none !important;
        text-shadow: none !important
    }
    a,
    a:visited {
        text-decoration: underline
    }
    a[href]:after {
        content: " (" attr(href) ")"
    }
    abbr[title]:after {
        content: " (" attr(title) ")"
    }
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: ""
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid
    }
    thead {
        display: table-header-group
    }
    tr,
    img {
        page-break-inside: avoid
    }
    img {
        max-width: 100% !important
    }
    @page {
        margin: .5cm
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3
    }
    h2,
    h3 {
        page-break-after: avoid
    }
}