    /* 
 *  Owl Carousel - Animate Plugin
 */
    
    .owl-carousel .animated {
        -webkit-animation-duration: 1000ms;
        animation-duration: 1000ms;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }
    
    .owl-carousel .owl-animated-in {
        z-index: 0;
    }
    
    .owl-carousel .owl-animated-out {
        z-index: 1;
    }
    
    .owl-carousel .fadeOut {
        -webkit-animation-name: fadeOut;
        animation-name: fadeOut;
    }
    
    @-webkit-keyframes fadeOut {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    
    @keyframes fadeOut {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    /* 
 *  Owl Carousel - Auto Height Plugin
 */
    
    .owl-height {
        -webkit-transition: height 500ms ease-in-out;
        -moz-transition: height 500ms ease-in-out;
        -ms-transition: height 500ms ease-in-out;
        -o-transition: height 500ms ease-in-out;
        transition: height 500ms ease-in-out;
    }
    /* 
 *  Core Owl Carousel CSS File
 */
    
    .owl-carousel {
        width: 100%;
        -webkit-tap-highlight-color: transparent;
        /* position relative and z-index fix webkit rendering fonts issue */
        position: relative;
        z-index: 1;
    }
    
    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
        margin: 0 auto;
    }
    
    .owl-carousel .owl-stage:after {
        content: ".";
        display: block;
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0;
    }
    
    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        /* fix for flashing background */
        -webkit-transform: translate3d(0px, 0px, 0px);
    }
    
    .owl-carousel .owl-controls .owl-nav .owl-prev,
    .owl-carousel .owl-controls .owl-nav .owl-next,
    .owl-carousel .owl-controls .owl-dot {
        cursor: pointer;
        cursor: hand;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    .owl-carousel.owl-carousel-hide-nav .owl-controls {
        display: none;
    }
    
    .owl-carousel.owl-loaded {
        display: block;
    }
    
    .owl-carousel.owl-loading {
        opacity: 0;
        display: block;
    }
    
    .owl-carousel.owl-hidden {
        opacity: 0;
    }
    
    .owl-carousel .owl-refresh .owl-item {
        display: none;
    }
    
    .owl-carousel .owl-item {
        position: relative;
        min-height: 1px;
        float: left;
        -webkit-backface-visibility: hidden;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        margin-top: 3em;
    }
    
    .owl-carousel .owl-item img {
        display: block;
        width: 100%;
        -webkit-transform-style: preserve-3d;
    }
    
    .owl-carousel.owl-text-select-on .owl-item {
        -webkit-user-select: auto;
        -moz-user-select: auto;
        -ms-user-select: auto;
        user-select: auto;
    }
    
    .owl-carousel .owl-grab {
        cursor: move;
        cursor: -webkit-grab;
        cursor: -o-grab;
        cursor: -ms-grab;
        cursor: grab;
    }
    
    .owl-carousel .owl-rtl {
        direction: rtl;
    }
    
    .owl-carousel .owl-rtl .owl-item {
        float: right;
    }
    /* No Js */
    
    .no-js .owl-carousel {
        display: block;
    }
    /* 
 *  Owl Carousel - Lazy Load Plugin
 */
    
    .owl-carousel .owl-item .owl-lazy {
        opacity: 0;
        -webkit-transition: opacity 400ms ease;
        -moz-transition: opacity 400ms ease;
        -ms-transition: opacity 400ms ease;
        -o-transition: opacity 400ms ease;
        transition: opacity 400ms ease;
    }
    
    .owl-carousel .owl-item img {
        transform-style: preserve-3d;
    }
    /* 
 *  Owl Carousel - Video Plugin
 */
    
    .owl-carousel .owl-video-wrapper {
        position: relative;
        height: 100%;
        background: #000;
    }
    
    .owl-carousel .owl-video-play-icon {
        position: absolute;
        height: 80px;
        width: 80px;
        left: 50%;
        top: 50%;
        margin-left: -40px;
        margin-top: -40px;
        background: url("/templates/client/images/owl.video.play.png") no-repeat;
        cursor: pointer;
        z-index: 1;
        -webkit-backface-visibility: hidden;
        -webkit-transition: scale 100ms ease;
        -moz-transition: scale 100ms ease;
        -ms-transition: scale 100ms ease;
        -o-transition: scale 100ms ease;
        transition: scale 100ms ease;
    }
    
    .owl-carousel .owl-video-play-icon:hover {
        -webkit-transition: scale(1.3, 1.3);
        -moz-transition: scale(1.3, 1.3);
        -ms-transition: scale(1.3, 1.3);
        -o-transition: scale(1.3, 1.3);
        transition: scale(1.3, 1.3);
    }
    
    .owl-carousel .owl-video-playing .owl-video-tn,
    .owl-carousel .owl-video-playing .owl-video-play-icon {
        display: none;
    }
    
    .owl-carousel .owl-video-tn {
        opacity: 0;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
        -webkit-transition: opacity 400ms ease;
        -moz-transition: opacity 400ms ease;
        -ms-transition: opacity 400ms ease;
        -o-transition: opacity 400ms ease;
        transition: opacity 400ms ease;
    }
    
    .owl-carousel .owl-video-frame {
        position: relative;
        z-index: 1;
    }
    
    .owl-theme .owl-controls {
        margin-top: 10px;
        text-align: center;
    }
    
    .owl-theme .owl-controls .owl-nav [class*="owl-"] {
        background: transparent;
        border-radius: 3px;
        color: #fff;
        cursor: pointer;
        display: inline-block;
        font-size: 14px;
        width: 1px;
        margin: 0;
        padding: 0;
    }
    
    .owl-theme .owl-controls .owl-nav [class*="owl-"]:hover {
        background: transparent;
        color: #fff;
        text-decoration: none;
    }
    
    .owl-theme .owl-controls .owl-nav .disabled {
        cursor: default;
        opacity: 0.5;
    }
    
    .owl-theme .owl-dots .owl-dot {
        display: none;
    }
    /* ////  carousel styles   ////  */
    
    #carouselContainer {
        position: relative;
        width: 100%;
        display: block;
        margin: 20px 0;
    }
    
    #carouselContainer:after {
        content: '';
        clear: both;
        display: table;
    }
    
    .owl-carousel .item {
        box-sizing: border-box;
        padding: 20px;
        float: left;
        width: 100%;
        height: auto;
        opacity: 1;
        margin: 0;
    }
    .internalpages .content h1:first-child
    {
        color: #00aeef;
        font-size: 40px;
        line-height: 40px;
        margin: 0 0 30px 0;
    }
    
    .icon-container {
        text-align: center;
        color: #fff;
        font-size: 30px;
        padding: 0px;
        margin: 0px;
        margin-top: 30px;
    }
    
    .owl-carousel-1 .item .btn {
        margin: 20px auto;
    }
    
    .owl-carousel .item.featured .btn {
        background: #78a22f;
        color: #fff;
    }
    
    .owl-carousel .item.featured .btn:hover {
        background: #002a51;
        border-color: #002a51;
        color: #fff;
    }
    
    .owl-carousel .owl-item.active:first-child .item,
    .owl-carousel .owl-item.active:first-child .item.featured .header {
        border-radius: 10px 0 0 0;
        -webkit-border-radius: 10px 0 0 0;
        -moz-border-radius: 10px 0 0 0;
    }
    
    .owl-carousel .owl-item.active:last-child .item,
    .owl-carousel .owl-item.active:last-child .item.featured .header {
        border-radius: 0 10px 0 0;
        -webkit-border-radius: 0 10px 0 0;
        -moz-border-radius: 0 10px 0 0;
    }
    
    .owl-carousel .item.featured {
        margin-top: -3em;
        border-radius: 10px 10px 0 0;
        -webkit-border-radius: 10px 10px 0 0;
        -moz-border-radius: 10px 10px 0 0;
    }
    
    .owl-carousel .wrapper {
        height: 420px;
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .owl-carousel .item.featured .wrapper {
        height: 38rem;
    }
    
    .owl-carousel-1 .item h3 {
        color: #fff;
        font-size: 1.6em;
        font-weight: normal;
        line-height: 1.3em;
        text-align: center;
        padding: 15px 10px;
    }
    
    .owl-carousel .item.featured h3 {
        padding-top: 30px;
    }
    
    .owl-carousel h3.h3-middle {
        position: absolute;
        width: 94%;
        top: 50%;
        transform: translateY(-50%);
    }
    
    hr {
        background-color: red;
        color: #f6f6f6;
        margin: 10px 30px;
    }
    
    .owl-carousel.ratesContainer {
        display: block;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .owl-carousel .noPrefix {
        padding: 5% 0 0 0;
    }
    
    .product1-header {
        background: #2d3494;
    }
    
    .product2-header {
        background: #0072bc;
    }
    
   .product3-header {
        background: #474c55;
    }    
    .product4-header {
        background: #2d3494;
    }  
    
    .owl-carousel .header {
        display: inline-block;
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .owl-carousel-1 .item .content {
        padding: 5px 20px 20px 20px;
    }
    .owl-carousel-1  .wrapper .header{
        padding: 20px
    }
    .owl-carousel-1 .item .content p {
        margin: 0 0 30px 0;
        color: #fff;
        font-size: 18px;
        text-align: center;
        line-height: 30px
    }
    
    .owl-carousel span.rates {
        color: #fff;
        display: inline-block;
        font-size: 2.3em;
        font-weight: normal;
        text-align: center;
        box-sizing: border-box;
        padding: 3% 4%;
        float: left;
        width: 49%;
    }
    
    .owl-carousel span.rates.singleRate,
    .owl-carousel .detail.singleRate {
        text-align: center;
        width: 100%;
    }
    
    .owl-carousel span.rates.noBorder {
        border-right: none;
    }
    
    .owl-carousel span.rates span.prefix {
        display: none;
    }
    
    .owl-carousel .pre {
        display: block;
        width: 100%;
        color: #666;
        text-align: center;
    }
    
    .owl-carousel span.rates span.input {
        font-size: 100%;
    }
    
    .owl-carousel span.rates span.postfix {
        font-size: 70%;
    }
    
    .owl-carousel span.rates a sup {
        color: #91CACC;
        text-decoration: none;
        font-size: 30%;
        vertical-align: middle;
    }
    
    .owl-carousel .detail {
        color: #fff;
        display: block;
        font-size: 40%;
        text-align: center;
        line-height: 1.6em;
    }
    
    .owl-carousel .intro,
    .owl-carousel .specialOffer {
        display: block;
        font-size: 1em;
        text-align: center;
        line-height: 1.2em;
    }
    
    .owl-carousel .intro {
        color: #000;
        padding: 5%;
    }
    
    .owl-theme .owl-controls {
        display: block;
        margin-top: 10px;
        position: absolute;
        text-align: center;
        top: 50%;
        width: 100%;
        background-color: transparent;
    }
    
    .owl-carousel .owl-nav {
        position: relative;
    }
    
    .owl-carousel .owl-prev {
        position: absolute;
        left: -30px;
        background-color: transparent;
    }
    
    .owl-carousel .owl-prev:before {
        font-family: 'icomoon';
        content: "\e90e";
        color: #7b7b7b;
        font-size: 2em;
    }
    
    .owl-carousel .owl-next {
        position: absolute;
        right: -10px;
        background-color: transparent;
    }
    
    .owl-carousel .owl-next:before {
        font-family: 'icomoon';
        content: "\e90f";
        color: #7b7b7b;
        font-size: 2em;
    }
    
    .owl-carousel ul {
        margin: 0;
        display: block;
        list-style-type: none;
    }
    
    .owl-carousel ul li {
        color: #333;
        border-bottom: none;
        padding: 5px 0 5px 40px;
        margin: 0;
        position: relative;
        font-size: 16px;
        line-height: 26px;
        list-style: none;
        font-family: Helvetica, Arial, "Lucida Grande", sans-serif;
    }
    
    .owl-carousel ul li:before {
        content: ' ';
        position: absolute;
        left: 12px;
        top: 0.9em;
        border-radius: 100%;
        display: inline-block;
        width: 6px;
        height: 6px;
        background-color: #002b54;
    }
    /* //  owl-carousel-1 styles   //  */
    
    .owl-carousel-1 span.rates span.input {
        font-family: "HelveticaNeueLT-Light", Helvetica, Arial, "Lucida Grande", sans-serif;
        font-size: 90%;
        margin-right: 3px;
    }
    
    .owl-carousel-1 span.rates.comparison span.input {
        font-family: "HelveticaNeueLT-Light", Helvetica, Arial, "Lucida Grande", sans-serif;
    }
    
    .owl-carousel-1 span.rates span.postfix {
        font-size: 37%;
        display: inline-block;
        width: 23px;
        line-height: 13px;
        word-wrap: break-word;
        font-weight: lighter;
    }
    
    .owl-carousel .detail {
        font-size: 35%;
    }
    
    .owl-carousel span.rates sup {
        text-decoration: none;
        font-size: 30%;
        vertical-align: middle;
    }
    
    @media all and (max-width: 1200px) {
        .owl-carousel {
            width: 94%;
            margin: 0 auto;
        }
        .owl-carousel .owl-prev {
            left: -20px;
        }
        .owl-carousel .owl-next {
            right: 0;
        }
        .owl-carousel .wrapper {
            height: 32rem;
        }
        .owl-carousel .item.featured .wrapper {
            height: 35rem;
        }
    }
    
    @media all and (max-width: 1024px) {
        .owl-carousel-1 span.rates span.input {
            font-size: 70%;
        }
        .owl-carousel-1 span.rates span.postfix {
            font-size: 45%;
        }
        .owl-carousel .detail {
            font-size: 30%;
        }
        .owl-carousel .wrapper {
            height: 35rem;
        }
        .owl-carousel .item.featured .wrapper {
            height: 38rem;
        }
    }
    
    @media all and (max-width: 915px) {
        .owl-carousel span.rates span.input {
            font-size: 70%;
        }
        .owl-carousel span.rates span.postfix {
            font-size: 40%;
        }
    }
    
    @media all and (max-width: 849px) {
        .owl-carousel .wrapper {
            height: 32rem;
        }
        .owl-carousel .item.featured .wrapper {
            height: 35rem;
        }
    }
    
    @media all and (max-width: 740px) {
        .owl-carousel h3 {
            font-size: 1.5em;
        }
        .owl-carousel span.rates span.input {
            font-size: 70%;
        }
        .owl-carousel span.rates span.postfix {
            font-size: 40%;
        }
        .owl-carousel .detail {
            font-size: 35%;
        }
        .owl-carousel span.rates a sup {
            font-size: 30%;
        }
        .owl-carousel .intro,
        .owl-carousel .specialOffer {
            font-size: 1em;
            line-height: 1.3em;
        }
        .owl-carousel .intro {
            padding: 5% 2%;
        }
        .owl-carousel ul.ticklist li {
            line-height: 1.3em;
        }
    }
    
    @media all and (max-width: 675px) {
        .owl-carousel .wrapper {
            height: 35rem;
        }
        .owl-carousel .item.featured .wrapper {
            height: 38rem;
        }
    }
    
    @media all and (max-width: 640px) {
        .owl-carousel .content p {
            margin: 0 0 20px 0;
        }
        .owl-carousel ul.ticklist li {
            line-height: 1.4em;
            margin: 0;
        }
        .owl-carousel-1 span.rates span.input {
            font-size: 100%;
        }
        .owl-carousel-1 span.rates a sup {
            font-size: 40%;
        }
    }
    
    @media all and (max-width: 539px) {
        .owl-carousel .wrapper {
            height: 32rem;
        }
        .owl-carousel .item.featured .wrapper {
            height: 35rem;
        }
        .owl-carousel {
            width: 90%;
            margin: 0 auto;
        }
        .owl-carousel .owl-prev {
            left: -10px;
        }
        .owl-carousel .owl-next {
            right: 4px;
        }
        .owl-carousel .owl-prev:before,
        .owl-carousel .owl-next:before {
            font-size: 1.5em;
        }
    }
    
    @media all and (max-width: 500px) {        
        .owl-carousel .item.featured .wrapper {
            height: 31rem;
        }
        .owl-carousel-1 span.rates span.input {
            font-size: 80%;
        }
        .owl-carousel-1 span.rates span.postfix {
            font-size: 50%;
        }
    }
    
    @media all and (max-width: 495px) {
        .owl-carousel {
            width: 100%;
        }
    }
    
    @media all and (max-width: 398px) {
        .owl-carousel .intro,
        .owl-carousel .specialOffer {
            font-size: 1em;
            line-height: 1.2em;
        }
        .owl-carousel {
            width: 88%;
            margin: 0 auto;
        }
        .owl-carousel .wrapper {
            height: 30rem;
        }
        .owl-carousel span.rates {
            display: block;
            border: none;
        }
        .owl-carousel .detail {
            font-size: 35%;
        }
        .owl-carousel .wrapper {
            height: 35rem;
        }
        .owl-carousel .item.featured .wrapper {
            height: 38rem;
        }
    }
