/*CUSTOM STYLE SHEET*/


/* ------------------------------------------ */
/*                  Typography
/* ------------------------------------------ */

/* @font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.eot');
    src: url('../fonts/Helvetica.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Helvetica.woff2') format('woff2'),
    url('../fonts/Helvetica.woff') format('woff'),
    url('../fonts/Helvetica.ttf') format('truetype'),
    url('../fonts/Helvetica.svg#cabinregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica-Light';
    src: url('../fonts/Helvetica-Light.eot');
    src: url('../fonts/Helvetica-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Helvetica-Light.woff2') format('woff2'),
    url('../fonts/Helvetica-Light.woff') format('woff'),
    url('../fonts/Helvetica-Light.ttf') format('truetype'),
    url('../fonts/Helvetica-Light.svg#cabincabin_semibold') format('svg');
    font-weight: normal;
    font-style: normal;
} */

@font-face {
    font-family: 'arimobold';
    src: url('../fonts/arimo-bold-webfont.woff2') format('woff2'),
         url('../fonts/arimo-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'arimoregular';
    src: url('../fonts/arimo-regular-webfont.woff2') format('woff2'),
         url('../fonts/arimo-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0;
}

h1 {
    font-size: 28px;
    color: #25292b;
    font-family: 'Helvetica-Light', sans-serif;
}

h2 {
    font-size: 24px;
    font-family: 'Helvetica-Light', sans-serif;
    color: #25292b;
}

h3 {
    font-size: 16px;
    color: #49494c;
}


.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.display-table {
    display: table;
    height: 100%;
    width: 100%;
}

.display-table-cell {
    display: table-cell;
    float: none;
    height: 100%;
    vertical-align: middle;
}

h4 {
    letter-spacing: inherit;
    text-transform: capitalize;
    border-bottom: 0;
    display: block;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

/*Default Styles*/
body {
    font-size: 14px;
    font-family: 'Helvetica', sans-serif;
    color: #777;
}
ul{
    padding: 0;
}
/*colors*/
.blue {
    color: #3861a3;
}

.yellow {
    color: #efb629;
}

.red {
    color: #e44c3c;
}

.whitebg {
    background: #fff;
    padding-bottom: 80px;
}

.graybg {
    background: #f4f4f4;
    padding-bottom: 80px;
}

.black-hover {
    background: rgba(0, 0, 0, 0.7);
}

.width100 {
    width: 100%;
}

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

/*Layout*/
.container{
    width: 1200px;
    padding: 0;
}

/*What to Do / Facilities*/
.heading:after {
    position: absolute;
    width: 90px;
    height: 1px;
    content: "";
    bottom: -10px;
    left: 50%;
    margin-left: -45px;
}

.yellow-line:after {
    background: #efb629;
}

.blue-line:after {
    background: #3861a3;
}

.red-line:after {
    background: #e44c3c;
}

.heading {
    text-align: center;
    position: relative;
    margin: 30px 0 40px;
}

.whattodo-grid {
    width: 25%;
    float: left;
}

.grid-image {
    position: relative;
    overflow: hidden;
}

.grid-image a {
    display: block;
}

.grid-image-overlay {
    height: 100%;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    display: none;
}

.grid-image:hover .grid-image-overlay {
    display: block;
}

.image-title {
    color: #fff;
}

.grid-text {
    background: #f4f4f4;
}

.grid-text-white {
    background: #fff;
}

.grid-text-inner {
    padding: 25px 30px;
}

.subtitle {
    margin: 10px 0 15px;
}

.desc {
    margin-top: 15px;
}

.adjust-padding {
    padding: 0;
}

.link {
    color: #efb629;
    font-size: 16px;
    padding: 10px 0;
    display: block;
}

.link i {
    font-size: 20px;
    vertical-align: text-top;
    margin-left: 5px;
}

.link:hover, .link:focus {
    color: #efb629;
    text-decoration: none;
}

.full-grid{
    width: 100%;
    position: relative;
    overflow: hidden;
}

.full-grid-hover{
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(41,52,78, 0.8);
    background: -moz-linear-gradient(left, rgba(41,52,78,0.8) 10%, rgba(255,255,255,0.1) 74%, rgba(255,255,255,0.1) 100%);
    background: -webkit-linear-gradient(left, rgba(41,52,78,0.8) 10%, rgba(255,255,255,0.1) 74%, rgba(255,255,255,0.1) 100%);
    background: linear-gradient(to right, rgba(41,52,78,0.8) 10%, rgba(255,255,255,0.1) 74%, rgba(255,255,255,0.1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#29344e', endColorstr='#ffffff',GradientType=1 );
    /*background: rgba(41, 52, 78, 0.55);*/
}
.full-grid-content{
    background: rgba(40, 88, 139, 0.7);
    width: 43%;
    padding: 30px;
    color: #fff;
    position: absolute;top: 50%;left:0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.full-grid-content h2, .full-grid-content h3{
    color: #fff;
}

.full-grid-content h3{
    margin: 5px 0 15px;
}

.full-grid-content .desc{
    margin: 0;
}

.imagecrop{
    overflow: hidden;
}

/*Home page styles*/

.testimonials{
    margin: 0;
    padding: 0;
    list-style: none;
}

.testimonials .owl-buttons .owl-prev{
    background: url(../images/prev.png);
    width: 16px;
    height: 32px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: -30px;
}

.testimonials .owl-buttons .owl-next{
    background: url(../images/next.png);
    width: 16px;
    height: 32px;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: -30px;
}

.testimonials li{
    margin: 0;
}

/*
.testimonials li:hover .testimonial-details{
    background: rgba(206, 77, 63, .85);
}
*/

.testimonials li .test-name-desig p{
    margin-bottom: 0;
    font-size: 14px;
}

.testimonials .owl-item:nth-child(even){
    border-bottom: 1px solid #ce4d3f;
}

.testimonials .owl-item:nth-child(even) li:hover .testimonial-details,
.testimonials .owl-item:nth-child(even) li:hover .testimonial-text{
    background: rgba(206, 77, 63, .85);
}

.testimonials .owl-item:nth-child(odd){
    border-bottom: 1px solid #efb629;
}

.testimonials .owl-item:nth-child(odd) li:hover .testimonial-details,
.testimonials .owl-item:nth-child(odd) li:hover .testimonial-text{
    background: rgba(239, 182, 41, .85);
}

.testimonials li:hover .testimonial-details h4,
.testimonials li:hover .testimonial-details p{
    color: #ffffff;
}

.testimonials li:hover img{
    -webkit-filter: grayscale(100%);
    -webkit-transition: .5s ease-in-out;
    -moz-filter: grayscale(100%);
    -moz-transition: .5s ease-in-out;
    -o-filter: grayscale(100%);
    -o-transition: .5s ease-in-out;
}

.test-name-desig{
    padding: 15px;
}

.testi-textarea{
    position: relative;
}

.testimonial-text{
    display: none;
    position: absolute;
    bottom: 0;
    padding: 15px;
    font-size: 16px;
    margin-bottom: 0;
    color: #ffffff;
}



.testimonials li:hover .testi-textarea .testimonial-text{
    display:block;
}

/******************************
**UBER MENU STYLES FROM HERE***
*******************************/

.navigation-section{
    position: relative;
}

div.ubermenu-submenu{
    padding: 20px !important;
}

.ubermenu-submenu{
    padding: 0 !important;
}

.main-menu-navigation nav{
    width: 97%;
    background: transparent !important;
    border: none !important;
}

.main-menu-navigation .ubermenu .ubermenu-nav{
    float: right;   
}

.site-logo{
    padding: 15px;
}

.ubermenu .ubermenu-nav li > a{
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'arimoregular';
    padding: 26px 20px;
}

.ubermenu .ubermenu-nav li:hover > a,
.ubermenu .ubermenu-nav li.ubermenu-active a,
.ubermenu .ubermenu-nav li.ubermenu-current-menu-item a{
    color: #4477ae;
    background: #ffffff;
}

.ubermenu-submenu{
    background: #ffffff !important;
}

.ubermenu-submenu li a{
    color: #25292b !important;
}

.ubermenu-tabs-group li a{
    padding: 10px 15px !important;
}

.ubermenu-tabs-group li:hover > a{
    color: #4477ae !important;
    background: #f4f4f4 !important;
}

.ubermenu-tab a.ubermenu-target:after{
    display: none !important;
}

.ubermenu-tabs-group{
    border: 0 !important;
}

.main-menu-navigation .navbar-form{
    padding: 0;
}

.main-menu-navigation .main-search{
    padding: 24px 5px;
    cursor: pointer;
}

.main-menu-navigation .main-search i{
    color: #fff;
}

.ubermenu-tab-content-panel .ubermenu-tabs-group li a{
    text-transform: capitalize;
}

/**********************************
******FOOTER STYLES FROM HERE******
**********************************/

.footers-section{
    padding: 50px 0;
}

ul.menu{
    list-style-type: none;
}

.footers-section li a{
    color: #ffffff;
    padding: 5px 0;
    display: block;
}

.footers-section .widget-title{
    color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
    display: inline-block;
}

.copyright-section{
    padding: 10px 0 40px;
    color: #ffffff;
}

.copyright-section a{
    color: #ffffff;
}

.social-links ul li{
    border: 1px solid #ffffff;
    border-radius: 50%;
    text-align: center;
    width: 44px;
    height: 44px;
}

.social-links ul li a{
    color: #ffffff;
    padding: 10px;
    display: block;
}





/*Media Screens*/
@media screen and (max-width: 1200px) {
    .container{
        width: 970px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    /*What to Do*/
    .grid-image-overlay {
        display: none !important;
    }

    .grid-text-inner {
        padding: 15px 20px;
    }

    .link {
        padding: 0;
    }
}

@media screen and (max-width: 992px) {
    .container {
        width: 730px;
    }
}

@media screen and (max-width: 768px) {
    h3 {
        font-size: 14px;
    }

    /*What to Do*/
    .grid-image img{
        width: 100%;
    }
    .link {
        font-size: 14px;
        padding: 5px 0 0;
    }

    .link i {
        font-size: 16px;
    }

    .full-grid-content{
        width: 55%;
    }

}

@media screen and (max-width: 767px) {
    .container{
        width: auto;
        padding: 0 15px;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }

    .whitebg, .graybg {
        padding-bottom: 40px;
    }

    /*What to Do*/
    .whattodo-container  .row-eq-height{
        display: block;
    }
    .grid-text-inner {
        font-size: 12px;
    }
    .grid-text {
        border-bottom: 1px solid #fff;
    }

    .grid-text-white {
        border-bottom: 1px solid #f4f4f4;
    }

    .subtitle {
        margin: 8px 0 10px;
    }

    .full-grid-content {
        width: 90%;
        padding: 10px 15px;
    }
}