﻿/* Global website colors */
/*template2 colors*/
/*default font*/
/* Margins, Font-size, Paddings between content blocks and similar */
/* Fonts */
/*Lists*/
/*Accordion*/
/* fixed  menu */
/*custom thumbnail*/
/*social icon*/
/*pricing table*/
/*--------------------------------Menus --------------------------------------*/
.ha-fixed-menu-logo {
    position: absolute;
    left: 50%;
    margin-left: -70px;
    z-index: 5;
    cursor: pointer;
}

.ha-master-menu-container {
    font-family: "OPENSANS-BOLD";
}

.ha-master-menu-container ul li a {
    -webkit-transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0;
    -moz-transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -o-transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0;
    transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0;
}

.ha-master-menu-container ul li a:hover {
    color: #ababab;
}

.ha-menu-wrapper {
    background-position: center;
    background-repeat: no-repeat;
    margin: 0px;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    bottom: 0;
}

.ha-menu-wrapper .ha-header-img {
    -moz-animation: scaleanimation 5s ease-in-out;
    -o-animation: scaleanimation 5s ease-in-out;
    -webkit-animation: scaleanimation 5s ease-in-out;
    animation: scaleanimation 5s ease-in-out;
    width: 100%;
}

/* default menu */
.ha-default-menu-container {
    position: absolute;
    top: 60px;
    width: 100%;
}

.ha-default-menu-wrapper {
    position: absolute;
    top: 60px;
    width: 100%;
    padding: 15px 0px;
}

.ha-default-menu-wrapper div {
    display: inline-block;
}

.ha-default-menu-wrapper ul li a {
    text-transform: uppercase;
    color: #737373;
    outline: none;
    margin-right: 10px;
}

.ha-default-menu-wrapper ul li a:hover,
.ha-default-menu-wrapper ul li a:active {
    color: #ababab;
    text-decoration: none;
}

.ha-default-menu-wrapper .ha-logo-wrapper img {
    width: 256px;
    height: 142px;
}

/* less function for adding margins */
.ha-menu-default-search {
    margin: 0px 50px 0px 0px;
}

/* end: default menu */
/* fixed menu */
.ha-fixed-menu-container {
    /*display:none;*/
    background: rgba(0, 0, 0, 0.95);
}

.ha-fixed-menu-container .ha-logo-wrapper {
    height: 0px;
}

.ha-fixed-menu-wrapper {
    z-index: 2;
    position: relative;
    padding: 15px 0px;
}

.ha-fixed-menu-wrapper div {
    display: inline-block;
}

.ha-fixed-menu-wrapper ul li a {
    text-transform: uppercase;
    color: #ababab;
    margin-right: 10px;
}

.ha-fixed-menu-wrapper ul li a:hover,
.ha-fixed-menu-wrapper ul li a:active,
.ha-fixed-menu-wrapper ul li a.current {
    color: #dddddd;
    text-decoration: none;
    outline: none;
}

.ha-fixed-menu-wrapper .ha-menu-icon-search {
    color: #ffffff;
}

.ha-fixed-menu-wrapper .ha-logo-wrapper img {
    width: 179px;
    height: 129px;
}

.ha-menu-left {
    width: 44%;
    text-align: right;
    padding-right: 25px;
}

.ha-menu-left ul {
    margin-bottom: 0px;
}

.ha-logo-wrapper {
    margin-bottom: -130px;
    position: absolute;
    width: 100%;
    height: 142px;
    text-align: center;
}

.ha-logo-default-menu {
    /*.ha-add-margin(0px 0px -160px 0px);*/
}

.ha-menu-right {
    width: 44%;
    float: right;
    padding-left: 25px;
}

.ha-menu-right ul {
    margin-bottom: 0px;
}

/* end: fixed menu */
/*btn for toggle show, hide menu in responsive view*/
.ha-toggle-collapse-btn {
    position: absolute;
    right: 30px;
    top: 8px;
    visibility: hidden;
    z-index: 50;
}

/*-----------------------------end: Menus --------------------------------------*/
/*animate zoom effect on big image */
@-webkit-keyframes scaleanimation {
    from {
        opacity: 0.9;
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes scaleanimation {
    from {
        opacity: 0.9;
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleanimation {
    from {
        opacity: 0.9;
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.ha-animate-fixed-menu {
    -moz-animation-name: animate-fixed-menu;
    -o-animation-name: animate-fixed-menu;
    -webkit-animation-name: animate-fixed-menu;
    animation-name: animate-fixed-menu;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.ha-animate-fixed-menu-on-exit {
    -moz-animation-name: animate-fixed-menu-on-exit;
    -o-animation-name: animate-fixed-menu-on-exit;
    -webkit-animation-name: animate-fixed-menu-on-exit;
    animation-name: animate-fixed-menu-on-exit;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

/* animation of menu entrance*/
@-webkit-keyframes animate-fixed-menu {
    from {
        opacity: 0.5;
        -moz-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes animate-fixed-menu {
    from {
        opacity: 0.5;
        -moz-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes animate-fixed-menu-on-exit {
    from {
        opacity: 1;
        margin: 0 0;
    }

    to {
        opacity: 0.5;
        margin: -150px 150px;
    }
}

@keyframes animate-fixed-menu-on-exit {
    from {
        opacity: 1;
        margin: 0 0;
    }

    to {
        opacity: 0.5;
        margin: -150px 150px;
    }
}

/*animation when menu is hidding*/
.ha-animate-default-menu {
    -moz-animation-name: animate-default-menu;
    -o-animation-name: animate-default-menu;
    -webkit-animation-name: animate-default-menu;
    animation-name: animate-default-menu;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

@-webkit-keyframes animate-default-menu {
    from {
        opacity: 0.3;
        /*margin-top: -10px;*/
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    to {
        /*margin-top: 0px;*/
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes animate-default-menu {
    from {
        opacity: 0.3;
        margin-top: -10px;
    }

    to {
        margin-top: 0px;
        opacity: 1;
    }
}
