/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}




    .animated {
        animation-duration: 1s;
        animation-fill-mode: both;
    }
    .animated.infinite {
        animation-iteration-count: infinite;
    }
    .animated.hinge {
        animation-duration: 2s;
    }
    .animated.bounceIn,
    .animated.bounceOut,
    .animated.flipOutX,
    .animated.flipOutY {
        animation-duration: 0.75s;
    }
    @keyframes bounce {
        0%,
        20%,
        53%,
        80%,
        to {
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transform: translateZ(0);
        }
        40%,
        43% {
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            transform: translate3d(0, -30px, 0);
        }
        70% {
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            transform: translate3d(0, -15px, 0);
        }
        90% {
            transform: translate3d(0, -4px, 0);
        }
    }
    .bounce {
        animation-name: bounce;
        transform-origin: center bottom;
    }
    @keyframes flash {
        0%,
        50%,
        to {
            opacity: 1;
        }
        25%,
        75% {
            opacity: 0;
        }
    }
    .flash {
        animation-name: flash;
    }
    @keyframes pulse {
        0% {
            transform: scaleX(1);
        }
        50% {
            transform: scale3d(1.05, 1.05, 1.05);
        }
        to {
            transform: scaleX(1);
        }
    }
    .pulse {
        animation-name: pulse;
    }
    @keyframes rubberBand {
        0% {
            transform: scaleX(1);
        }
        30% {
            transform: scale3d(1.25, 0.75, 1);
        }
        40% {
            transform: scale3d(0.75, 1.25, 1);
        }
        50% {
            transform: scale3d(1.15, 0.85, 1);
        }
        65% {
            transform: scale3d(0.95, 1.05, 1);
        }
        75% {
            transform: scale3d(1.05, 0.95, 1);
        }
        to {
            transform: scaleX(1);
        }
    }
    .rubberBand {
        animation-name: rubberBand;
    }
    @keyframes shake {
        0%,
        to {
            transform: translateZ(0);
        }
        10%,
        30%,
        50%,
        70%,
        90% {
            transform: translate3d(-10px, 0, 0);
        }
        20%,
        40%,
        60%,
        80% {
            transform: translate3d(10px, 0, 0);
        }
    }
    .shake {
        animation-name: shake;
    }
    @keyframes headShake {
        0% {
            transform: translateX(0);
        }
        6.5% {
            transform: translateX(-6px) rotateY(-9deg);
        }
        18.5% {
            transform: translateX(5px) rotateY(7deg);
        }
        31.5% {
            transform: translateX(-3px) rotateY(-5deg);
        }
        43.5% {
            transform: translateX(2px) rotateY(3deg);
        }
        50% {
            transform: translateX(0);
        }
    }
    .headShake {
        animation-timing-function: ease-in-out;
        animation-name: headShake;
    }
    @keyframes swing {
        20% {
            transform: rotate(15deg);
        }
        40% {
            transform: rotate(-10deg);
        }
        60% {
            transform: rotate(5deg);
        }
        80% {
            transform: rotate(-5deg);
        }
        to {
            transform: rotate(0);
        }
    }
    .swing {
        transform-origin: top center;
        animation-name: swing;
    }
    @keyframes tada {
        0% {
            transform: scaleX(1);
        }
        10%,
        20% {
            transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
        }
        30%,
        50%,
        70%,
        90% {
            transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        }
        40%,
        60%,
        80% {
            transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        }
        to {
            transform: scaleX(1);
        }
    }
    .tada {
        animation-name: tada;
    }
    @keyframes wobble {
        0% {
            transform: none;
        }
        15% {
            transform: translate3d(-25%, 0, 0) rotate(-5deg);
        }
        30% {
            transform: translate3d(20%, 0, 0) rotate(3deg);
        }
        45% {
            transform: translate3d(-15%, 0, 0) rotate(-3deg);
        }
        60% {
            transform: translate3d(10%, 0, 0) rotate(2deg);
        }
        75% {
            transform: translate3d(-5%, 0, 0) rotate(-1deg);
        }
        to {
            transform: none;
        }
    }
    .wobble {
        animation-name: wobble;
    }
    @keyframes jello {
        0%,
        11.1%,
        to {
            transform: none;
        }
        22.2% {
            transform: skewX(-12.5deg) skewY(-12.5deg);
        }
        33.3% {
            transform: skewX(6.25deg) skewY(6.25deg);
        }
        44.4% {
            transform: skewX(-3.125deg) skewY(-3.125deg);
        }
        55.5% {
            transform: skewX(1.5625deg) skewY(1.5625deg);
        }
        66.6% {
            transform: skewX(-0.78125deg) skewY(-0.78125deg);
        }
        77.7% {
            transform: skewX(0.390625deg) skewY(0.390625deg);
        }
        88.8% {
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        }
    }
    .jello {
        animation-name: jello;
        transform-origin: center;
    }
    @keyframes bounceIn {
        0%,
        20%,
        40%,
        60%,
        80%,
        to {
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        }
        0% {
            opacity: 0;
            transform: scale3d(0.3, 0.3, 0.3);
        }
        20% {
            transform: scale3d(1.1, 1.1, 1.1);
        }
        40% {
            transform: scale3d(0.9, 0.9, 0.9);
        }
        60% {
            opacity: 1;
            transform: scale3d(1.03, 1.03, 1.03);
        }
        80% {
            transform: scale3d(0.97, 0.97, 0.97);
        }
        to {
            opacity: 1;
            transform: scaleX(1);
        }
    }
    .bounceIn {
        animation-name: bounceIn;
    }
    @keyframes bounceInDown {
        0%,
        60%,
        75%,
        90%,
        to {
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        }
        0% {
            opacity: 0;
            transform: translate3d(0, -3000px, 0);
        }
        60% {
            opacity: 1;
            transform: translate3d(0, 25px, 0);
        }
        75% {
            transform: translate3d(0, -10px, 0);
        }
        90% {
            transform: translate3d(0, 5px, 0);
        }
        to {
            transform: none;
        }
    }
    .bounceInDown {
        animation-name: bounceInDown;
    }
    @keyframes bounceInLeft {
        0%,
        60%,
        75%,
        90%,
        to {
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        }
        0% {
            opacity: 0;
            transform: translate3d(-3000px, 0, 0);
        }
        60% {
            opacity: 1;
            transform: translate3d(25px, 0, 0);
        }
        75% {
            transform: translate3d(-10px, 0, 0);
        }
        90% {
            transform: translate3d(5px, 0, 0);
        }
        to {
            transform: none;
        }
    }
    .bounceInLeft {
        animation-name: bounceInLeft;
    }
    @keyframes bounceInRight {
        0%,
        60%,
        75%,
        90%,
        to {
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        }
        0% {
            opacity: 0;
            transform: translate3d(3000px, 0, 0);
        }
        60% {
            opacity: 1;
            transform: translate3d(-25px, 0, 0);
        }
        75% {
            transform: translate3d(10px, 0, 0);
        }
        90% {
            transform: translate3d(-5px, 0, 0);
        }
        to {
            transform: none;
        }
    }
    .bounceInRight {
        animation-name: bounceInRight;
    }
    @keyframes bounceInUp {
        0%,
        60%,
        75%,
        90%,
        to {
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        }
        0% {
            opacity: 0;
            transform: translate3d(0, 3000px, 0);
        }
        60% {
            opacity: 1;
            transform: translate3d(0, -20px, 0);
        }
        75% {
            transform: translate3d(0, 10px, 0);
        }
        90% {
            transform: translate3d(0, -5px, 0);
        }
        to {
            transform: translateZ(0);
        }
    }
    .bounceInUp {
        animation-name: bounceInUp;
    }
    @keyframes bounceOut {
        20% {
            transform: scale3d(0.9, 0.9, 0.9);
        }
        50%,
        55% {
            opacity: 1;
            transform: scale3d(1.1, 1.1, 1.1);
        }
        to {
            opacity: 0;
            transform: scale3d(0.3, 0.3, 0.3);
        }
    }
    .bounceOut {
        animation-name: bounceOut;
    }
    @keyframes bounceOutDown {
        20% {
            transform: translate3d(0, 10px, 0);
        }
        40%,
        45% {
            opacity: 1;
            transform: translate3d(0, -20px, 0);
        }
        to {
            opacity: 0;
            transform: translate3d(0, 2000px, 0);
        }
    }
    .bounceOutDown {
        animation-name: bounceOutDown;
    }
    @keyframes bounceOutLeft {
        20% {
            opacity: 1;
            transform: translate3d(20px, 0, 0);
        }
        to {
            opacity: 0;
            transform: translate3d(-2000px, 0, 0);
        }
    }
    .bounceOutLeft {
        animation-name: bounceOutLeft;
    }
    @keyframes bounceOutRight {
        20% {
            opacity: 1;
            transform: translate3d(-20px, 0, 0);
        }
        to {
            opacity: 0;
            transform: translate3d(2000px, 0, 0);
        }
    }
    .bounceOutRight {
        animation-name: bounceOutRight;
    }
    @keyframes bounceOutUp {
        20% {
            transform: translate3d(0, -10px, 0);
        }
        40%,
        45% {
            opacity: 1;
            transform: translate3d(0, 20px, 0);
        }
        to {
            opacity: 0;
            transform: translate3d(0, -2000px, 0);
        }
    }
    .bounceOutUp {
        animation-name: bounceOutUp;
    }
    @keyframes fadeIn {
        0% {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    .fadeIn {
        animation-name: fadeIn;
    }
    @keyframes fadeInDown {
        0% {
            opacity: 0;
            transform: translate3d(0, -100%, 0);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
    .fadeInDown {
        animation-name: fadeInDown;
    }
    @keyframes fadeInDownBig {
        0% {
            opacity: 0;
            transform: translate3d(0, -2000px, 0);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
    .fadeInDownBig {
        animation-name: fadeInDownBig;
    }
    @keyframes fadeInLeft {
        0% {
            opacity: 0;
            transform: translate3d(-100%, 0, 0);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
    .fadeInLeft {
        animation-name: fadeInLeft;
    }
    @keyframes fadeInLeftBig {
        0% {
            opacity: 0;
            transform: translate3d(-2000px, 0, 0);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
    .fadeInLeftBig {
        animation-name: fadeInLeftBig;
    }
    @keyframes fadeInRight {
        0% {
            opacity: 0;
            transform: translate3d(100%, 0, 0);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
    .fadeInRight {
        animation-name: fadeInRight;
    }
    @keyframes fadeInRightBig {
        0% {
            opacity: 0;
            transform: translate3d(2000px, 0, 0);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
    .fadeInRightBig {
        animation-name: fadeInRightBig;
    }
    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translate3d(0, 100%, 0);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
    .fadeInUp {
        animation-name: fadeInUp;
    }
    @keyframes fadeInUpBig {
        0% {
            opacity: 0;
            transform: translate3d(0, 2000px, 0);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
    .fadeInUpBig {
        animation-name: fadeInUpBig;
    }
    @keyframes fadeOut {
        0% {
            opacity: 1;
        }
        to {
            opacity: 0;
        }
    }
    .fadeOut {
        animation-name: fadeOut;
    }
    @keyframes fadeOutDown {
        0% {
            opacity: 1;
        }
        to {
            opacity: 0;
            transform: translate3d(0, 100%, 0);
        }
    }
    .fadeOutDown {
        animation-name: fadeOutDown;
    }
    @keyframes fadeOutDownBig {
        0% {
            opacity: 1;
        }
        to {
            opacity: 0;
            transform: translate3d(0, 2000px, 0);
        }
    }
    .fadeOutDownBig {
        animation-name: fadeOutDownBig;
    }
    @keyframes fadeOutLeft {
        0% {
            opacity: 1;
        }
        to {
            opacity: 0;
            transform: translate3d(-100%, 0, 0);
        }
    }
    .fadeOutLeft {
        animation-name: fadeOutLeft;
    }
    @keyframes fadeOutLeftBig {
        0% {
            opacity: 1;
        }
        to {
            opacity: 0;
            transform: translate3d(-2000px, 0, 0);
        }
    }
    .fadeOutLeftBig {
        animation-name: fadeOutLeftBig;
    }
    @keyframes fadeOutRight {
        0% {
            opacity: 1;
        }
        to {
            opacity: 0;
            transform: translate3d(100%, 0, 0);
        }
    }
    .fadeOutRight {
        animation-name: fadeOutRight;
    }
    @keyframes fadeOutRightBig {
        0% {
            opacity: 1;
        }
        to {
            opacity: 0;
            transform: translate3d(2000px, 0, 0);
        }
    }
    .fadeOutRightBig {
        animation-name: fadeOutRightBig;
    }
    @keyframes fadeOutUp {
        0% {
            opacity: 1;
        }
        to {
            opacity: 0;
            transform: translate3d(0, -100%, 0);
        }
    }
    .fadeOutUp {
        animation-name: fadeOutUp;
    }
    @keyframes fadeOutUpBig {
        0% {
            opacity: 1;
        }
        to {
            opacity: 0;
            transform: translate3d(0, -2000px, 0);
        }
    }
    .fadeOutUpBig {
        animation-name: fadeOutUpBig;
    }
    @keyframes flip {
        0% {
            transform: perspective(400px) rotateY(-1turn);
            animation-timing-function: ease-out;
        }
        40% {
            transform: perspective(400px) translateZ(150px) rotateY(-190deg);
            animation-timing-function: ease-out;
        }
        50% {
            transform: perspective(400px) translateZ(150px) rotateY(-170deg);
            animation-timing-function: ease-in;
        }
        80% {
            transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
            animation-timing-function: ease-in;
        }
        to {
            transform: perspective(400px);
            animation-timing-function: ease-in;
        }
    }
    .animated.flip {
        -webkit-backface-visibility: visible;
        backface-visibility: visible;
        animation-name: flip;
    }
    @keyframes flipInX {
        0% {
            transform: perspective(400px) rotateX(90deg);
            animation-timing-function: ease-in;
            opacity: 0;
        }
        40% {
            transform: perspective(400px) rotateX(-20deg);
            animation-timing-function: ease-in;
        }
        60% {
            transform: perspective(400px) rotateX(10deg);
            opacity: 1;
        }
        80% {
            transform: perspective(400px) rotateX(-5deg);
        }
        to {
            transform: perspective(400px);
        }
    }
    .flipInX {
        -webkit-backface-visibility: visible !important;
        backface-visibility: visible !important;
        animation-name: flipInX;
    }
    @keyframes flipInY {
        0% {
            transform: perspective(400px) rotateY(90deg);
            animation-timing-function: ease-in;
            opacity: 0;
        }
        40% {
            transform: perspective(400px) rotateY(-20deg);
            animation-timing-function: ease-in;
        }
        60% {
            transform: perspective(400px) rotateY(10deg);
            opacity: 1;
        }
        80% {
            transform: perspective(400px) rotateY(-5deg);
        }
        to {
            transform: perspective(400px);
        }
    }
    .flipInY {
        -webkit-backface-visibility: visible !important;
        backface-visibility: visible !important;
        animation-name: flipInY;
    }
    @keyframes flipOutX {
        0% {
            transform: perspective(400px);
        }
        30% {
            transform: perspective(400px) rotateX(-20deg);
            opacity: 1;
        }
        to {
            transform: perspective(400px) rotateX(90deg);
            opacity: 0;
        }
    }
    .flipOutX {
        animation-name: flipOutX;
        -webkit-backface-visibility: visible !important;
        backface-visibility: visible !important;
    }
    @keyframes flipOutY {
        0% {
            transform: perspective(400px);
        }
        30% {
            transform: perspective(400px) rotateY(-15deg);
            opacity: 1;
        }
        to {
            transform: perspective(400px) rotateY(90deg);
            opacity: 0;
        }
    }
    .flipOutY {
        -webkit-backface-visibility: visible !important;
        backface-visibility: visible !important;
        animation-name: flipOutY;
    }
    @keyframes lightSpeedIn {
        0% {
            transform: translate3d(100%, 0, 0) skewX(-30deg);
            opacity: 0;
        }
        60% {
            transform: skewX(20deg);
            opacity: 1;
        }
        80% {
            transform: skewX(-5deg);
            opacity: 1;
        }
        to {
            transform: none;
            opacity: 1;
        }
    }
    .lightSpeedIn {
        animation-name: lightSpeedIn;
        animation-timing-function: ease-out;
    }
    @keyframes lightSpeedOut {
        0% {
            opacity: 1;
        }
        to {
            transform: translate3d(100%, 0, 0) skewX(30deg);
            opacity: 0;
        }
    }
    .lightSpeedOut {
        animation-name: lightSpeedOut;
        animation-timing-function: ease-in;
    }
    @keyframes rotateIn {
        0% {
            transform-origin: center;
            transform: rotate(-200deg);
            opacity: 0;
        }
        to {
            transform-origin: center;
            transform: none;
            opacity: 1;
        }
    }
    .rotateIn {
        animation-name: rotateIn;
    }
    @keyframes rotateInDownLeft {
        0% {
            transform-origin: left bottom;
            transform: rotate(-45deg);
            opacity: 0;
        }
        to {
            transform-origin: left bottom;
            transform: none;
            opacity: 1;
        }
    }
    .rotateInDownLeft {
        animation-name: rotateInDownLeft;
    }
    @keyframes rotateInDownRight {
        0% {
            transform-origin: right bottom;
            transform: rotate(45deg);
            opacity: 0;
        }
        to {
            transform-origin: right bottom;
            transform: none;
            opacity: 1;
        }
    }
    .rotateInDownRight {
        animation-name: rotateInDownRight;
    }
    @keyframes rotateInUpLeft {
        0% {
            transform-origin: left bottom;
            transform: rotate(45deg);
            opacity: 0;
        }
        to {
            transform-origin: left bottom;
            transform: none;
            opacity: 1;
        }
    }
    .rotateInUpLeft {
        animation-name: rotateInUpLeft;
    }
    @keyframes rotateInUpRight {
        0% {
            transform-origin: right bottom;
            transform: rotate(-90deg);
            opacity: 0;
        }
        to {
            transform-origin: right bottom;
            transform: none;
            opacity: 1;
        }
    }
    .rotateInUpRight {
        animation-name: rotateInUpRight;
    }
    @keyframes rotateOut {
        0% {
            transform-origin: center;
            opacity: 1;
        }
        to {
            transform-origin: center;
            transform: rotate(200deg);
            opacity: 0;
        }
    }
    .rotateOut {
        animation-name: rotateOut;
    }
    @keyframes rotateOutDownLeft {
        0% {
            transform-origin: left bottom;
            opacity: 1;
        }
        to {
            transform-origin: left bottom;
            transform: rotate(45deg);
            opacity: 0;
        }
    }
    .rotateOutDownLeft {
        animation-name: rotateOutDownLeft;
    }
    @keyframes rotateOutDownRight {
        0% {
            transform-origin: right bottom;
            opacity: 1;
        }
        to {
            transform-origin: right bottom;
            transform: rotate(-45deg);
            opacity: 0;
        }
    }
    .rotateOutDownRight {
        animation-name: rotateOutDownRight;
    }
    @keyframes rotateOutUpLeft {
        0% {
            transform-origin: left bottom;
            opacity: 1;
        }
        to {
            transform-origin: left bottom;
            transform: rotate(-45deg);
            opacity: 0;
        }
    }
    .rotateOutUpLeft {
        animation-name: rotateOutUpLeft;
    }
    @keyframes rotateOutUpRight {
        0% {
            transform-origin: right bottom;
            opacity: 1;
        }
        to {
            transform-origin: right bottom;
            transform: rotate(90deg);
            opacity: 0;
        }
    }
    .rotateOutUpRight {
        animation-name: rotateOutUpRight;
    }
    @keyframes hinge {
        0% {
            transform-origin: top left;
            animation-timing-function: ease-in-out;
        }
        20%,
        60% {
            transform: rotate(80deg);
            transform-origin: top left;
            animation-timing-function: ease-in-out;
        }
        40%,
        80% {
            transform: rotate(60deg);
            transform-origin: top left;
            animation-timing-function: ease-in-out;
            opacity: 1;
        }
        to {
            transform: translate3d(0, 700px, 0);
            opacity: 0;
        }
    }
    .hinge {
        animation-name: hinge;
    }
    @keyframes jackInTheBox {
        0% {
            opacity: 0;
            transform: scale(0.1) rotate(30deg);
            transform-origin: center bottom;
        }
        50% {
            transform: rotate(-10deg);
        }
        70% {
            transform: rotate(3deg);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    .jackInTheBox {
        animation-name: jackInTheBox;
    }
    @keyframes rollIn {
        0% {
            opacity: 0;
            transform: translate3d(-100%, 0, 0) rotate(-120deg);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
    .rollIn {
        animation-name: rollIn;
    }
    @keyframes rollOut {
        0% {
            opacity: 1;
        }
        to {
            opacity: 0;
            transform: translate3d(100%, 0, 0) rotate(120deg);
        }
    }
    .rollOut {
        animation-name: rollOut;
    }
    @keyframes zoomIn {
        0% {
            opacity: 0;
            transform: scale3d(0.3, 0.3, 0.3);
        }
        50% {
            opacity: 1;
        }
    }
    .zoomIn {
        animation-name: zoomIn;
    }
    @keyframes zoomInDown {
        0% {
            opacity: 0;
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }
        60% {
            opacity: 1;
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        }
    }
    .zoomInDown {
        animation-name: zoomInDown;
    }
    @keyframes zoomInLeft {
        0% {
            opacity: 0;
            transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }
        60% {
            opacity: 1;
            transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        }
    }
    .zoomInLeft {
        animation-name: zoomInLeft;
    }
    @keyframes zoomInRight {
        0% {
            opacity: 0;
            transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }
        60% {
            opacity: 1;
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        }
    }
    .zoomInRight {
        animation-name: zoomInRight;
    }
    @keyframes zoomInUp {
        0% {
            opacity: 0;
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }
        60% {
            opacity: 1;
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        }
    }
    .zoomInUp {
        animation-name: zoomInUp;
    }
    @keyframes zoomOut {
        0% {
            opacity: 1;
        }
        50% {
            opacity: 0;
            transform: scale3d(0.3, 0.3, 0.3);
        }
        to {
            opacity: 0;
        }
    }
    .zoomOut {
        animation-name: zoomOut;
    }
    @keyframes zoomOutDown {
        40% {
            opacity: 1;
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }
        to {
            opacity: 0;
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
            transform-origin: center bottom;
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        }
    }
    .zoomOutDown {
        animation-name: zoomOutDown;
    }
    @keyframes zoomOutLeft {
        40% {
            opacity: 1;
            transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        }
        to {
            opacity: 0;
            transform: scale(0.1) translate3d(-2000px, 0, 0);
            transform-origin: left center;
        }
    }
    .zoomOutLeft {
        animation-name: zoomOutLeft;
    }
    @keyframes zoomOutRight {
        40% {
            opacity: 1;
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        }
        to {
            opacity: 0;
            transform: scale(0.1) translate3d(2000px, 0, 0);
            transform-origin: right center;
        }
    }
    .zoomOutRight {
        animation-name: zoomOutRight;
    }
    @keyframes zoomOutUp {
        40% {
            opacity: 1;
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }
        to {
            opacity: 0;
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
            transform-origin: center bottom;
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        }
    }
    .zoomOutUp {
        animation-name: zoomOutUp;
    }
    @keyframes slideInDown {
        0% {
            transform: translate3d(0, -100%, 0);
            visibility: visible;
        }
        to {
            transform: translateZ(0);
        }
    }
    .slideInDown {
        animation-name: slideInDown;
    }
    @keyframes slideInLeft {
        0% {
            transform: translate3d(-100%, 0, 0);
            visibility: visible;
        }
        to {
            transform: translateZ(0);
        }
    }
    .slideInLeft {
        animation-name: slideInLeft;
    }
    @keyframes slideInRight {
        0% {
            transform: translate3d(100%, 0, 0);
            visibility: visible;
        }
        to {
            transform: translateZ(0);
        }
    }
    .slideInRight {
        animation-name: slideInRight;
    }
    @keyframes slideInUp {
        0% {
            transform: translate3d(0, 100%, 0);
            visibility: visible;
        }
        to {
            transform: translateZ(0);
        }
    }
    .slideInUp {
        animation-name: slideInUp;
    }
    @keyframes slideOutDown {
        0% {
            transform: translateZ(0);
        }
        to {
            visibility: hidden;
            transform: translate3d(0, 100%, 0);
        }
    }
    .slideOutDown {
        animation-name: slideOutDown;
    }
    @keyframes slideOutLeft {
        0% {
            transform: translateZ(0);
        }
        to {
            visibility: hidden;
            transform: translate3d(-100%, 0, 0);
        }
    }
    .slideOutLeft {
        animation-name: slideOutLeft;
    }
    @keyframes slideOutRight {
        0% {
            transform: translateZ(0);
        }
        to {
            visibility: hidden;
            transform: translate3d(100%, 0, 0);
        }
    }
    .slideOutRight {
        animation-name: slideOutRight;
    }
    @keyframes slideOutUp {
        0% {
            transform: translateZ(0);
        }
        to {
            visibility: hidden;
            transform: translate3d(0, -100%, 0);
        }
    }
    .slideOutUp {
        animation-name: slideOutUp;
    }

    /********************************* layout css start *******************************************/
    .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-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}
    .owl-carousel{display:none;width:100%;-webkit-tap-highlight-color:transparent;position:relative;z-index:1}
    .owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y}
    .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;-webkit-transform:translate3d(0px,0,0);}
    .owl-carousel .owl-item{position:relative;min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}
    .owl-carousel .owl-item img{display:block;-webkit-transform-style:preserve-3d;}
    .owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}
    .owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{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-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-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
    .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 .owl-carousel{display:block}
    .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 .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(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-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{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;height:100%;width:100%}
    .owl-carousel.owl-loaded.testimonials-slider {
    /* max-width: 800px; */
    display: inline-block;
    margin-top: 3rem;
}
.owl-carousel .owl-item img {
    display: block;
    width: auto;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}


.owl-carousels  .owl-stage-outer .item:hover {box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 10%);}

.more-blog-block .owl-carousels  .owl-stage-outer .item {
    margin-left: 15px;
    margin-right: 15px;
}
  .owl-carousels .animated{-webkit-animation-duration:1000ms;animation-duration:1000ms;-webkit-animation-fill-mode:both;animation-fill-mode:both}
    .owl-carousels .owl-animated-in{z-index:0}
    .owl-carousels .owl-animated-out{z-index:1}
    .owl-carousels .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-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}
    .owl-carousels{display:none;width:100%;-webkit-tap-highlight-color:transparent;position:relative;z-index:1}
    .owl-carousels .owl-stage{position:relative;-ms-touch-action:pan-Y}
    .owl-carousels .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}
    .owl-carousels .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0px,0,0);}
    .owl-carousels .owl-item{position:relative;min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}
    .owl-carousels .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d;}
    .owl-carousels .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}
    .owl-carousels .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
    .owl-carousels.owl-loaded{display:block}
    .owl-carousels.owl-loading{opacity:0;display:block}
    .owl-carousels.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{display:none}
    .owl-carousels.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
    .owl-carousels.owl-grab{cursor:move;cursor:-webkit-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}
    .owl-carousels.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}
    .no-js .owl-carousels{display:block}
    .owl-carousels .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-carousels .owl-item img{transform-style:preserve-3d;}
    .owl-carousels .owl-video-wrapper{position:relative;height:100%;background:#000}
    .owl-carousels .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(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-carousels .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-carousels .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}
    .owl-carousels .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-carousels .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}


    .cursorpointer {
        cursor: pointer;
    }
    .bg-blue {
        background-color: #00305a;
    }

    .section-content.bg-darkgray {
        background-color: #eeecdd;
    }

    .bg-lightgray {
        background-color: #f8f6f6;
    }

    .bg-white {
        background-color: #fff;
    }

    .bg-orange {
        background-color: #f68134;
    }

    .bg-grey {
        background-color: #f9fafc;
    }
    .bg-badge {
        background-color: #eeecdd;
    }
    .bg-dark-gray{
        background-color: #c4c4c4;
    }

    .clearfix {
        clear: both;
    }

    .uppercase {
        text-transform: uppercase;
    }

    .scrollTop {
        bottom: 30px;
        right: 6rem;
        background: #ec6608 url(/docs/default-source/assets/images/marineplan/up_ico.png) no-repeat;
        background-position: 14px 17px;
        width: 50px;
        height: 50px;
        margin-left: 0;
        margin-top: 0;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        position: fixed;
        cursor: pointer;
        -webkit-backface-visibility: hidden;
        opacity: 0;
        -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.29);
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.29);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        z-index: 2;
    }

    .wave:after,
    .wave:before {
        position: absolute;
        background: #f77a42;
        margin-left: 0;
        margin-top: 0;
        width: 50px;
        height: 50px;
        content: "";
        display: block;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        -webkit-backface-visibility: hidden;
        opacity: 0;
    }

    .wave:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .wave:hover:after {
        -webkit-animation: wave-animate 3s 1.5s infinite ease-out;
        animation: wave-animate 3s 1.5s infinite ease-out;
    }

    .wave:hover:before {
        -webkit-animation: wave-animate 3s infinite ease-out;
        animation: wave-animate 3s infinite ease-out;
    }

    @-webkit-keyframes wave-animate {
        0% {
            -webkit-transform: scale(0);
            transform: scale(0);
            opacity: 1;
            -webkit-transform-origin: center;
            transform-origin: center;
        }
        100% {
            -webkit-transform: scale(3);
            transform: scale(3);
            opacity: 0;
            -webkit-transform-origin: center;
            transform-origin: center;
        }
    }

    @keyframes wave-animate {
        0% {
            -webkit-transform: scale(0);
            transform: scale(0);
            opacity: 1;
            -webkit-transform-origin: center;
            transform-origin: center;
        }
        100% {
            -webkit-transform: scale(3);
            transform: scale(3);
            opacity: 0;
            -webkit-transform-origin: center;
            transform-origin: center;
        }
    }

    body.no-scroll {
        position: fixed;
        width: 100%;
        overflow: hidden;
        padding-right: 15px;
    }

    .over-hidden {
        overflow: hidden;
        width: 100%;
        position: fixed;
        height: 100%;
    }

    .il-penone {
        pointer-events: none !important;
        border-bottom: none;
    }

    .il-container {
        max-width: 1330px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 15px;
        padding-right: 15px;
    }

    .date-feild:before,
    .icomoon-icon,
    .lombard-call a:before {
        font-family: icomoon !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    html {
        font-family: sans-serif;
        -ms-text-size-adjust: 100%;
        -webkit-text-size-adjust: 100%;
        overflow-x: hidden;
    }

    body {
        margin: 0;
    }

    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    main,
    menu,
    nav,
    section,
    summary {
        display: block;
    }

    audio,
    canvas,
    progress,
    video {
        display: inline-block;
        vertical-align: baseline;
    }

    audio:not([controls]) {
        display: none;
        height: 0;
    }

    [hidden],
    template {
        display: none;
    }

    a {
        background-color: transparent;
    }

    a:active,
    a:hover {
        outline: 0;
    }

    abbr[title] {
        border-bottom: 1px dotted;
    }

    b,
    strong {
        font-weight: 700;
    }

    dfn {
        font-style: italic;
    }

    h1 {
        font-size: 2em;
        margin: 0.67em 0;
    }

    mark {
        background: #ff0;
        color: #000;
    }

    small {
        font-size: 80%;
    }

    sup {
        color: #e3cf7d;
    }

    sub {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
    }

    sub {
        bottom: -0.25em;
    }

    img {
        border: 0;
    }

    svg:not(:root) {
        overflow: hidden;
    }

    figure {
        margin: 1em 40px;
    }

    hr {
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        height: 0;
    }

    pre {
        overflow: auto;
    }

    code,
    kbd,
    pre,
    samp {
        font-family: monospace, monospace;
        font-size: 1em;
    }

    button,
    input,
    optgroup,
    select,
    textarea {
        color: inherit;
        font: inherit;
        margin: 0;
    }

    button {
        overflow: visible;
    }

    button,
    select {
        text-transform: none;
    }

    button,
    html input[type="button"],
    input[type="reset"],
    input[type="submit"] {
        -webkit-appearance: button;
        cursor: pointer;
    }

    button[disabled],
    html input[disabled] {
        cursor: default;
        pointer-events: none;
    }

    button::-moz-focus-inner,
    input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

    input {
        line-height: normal;
    }

    input[type="checkbox"],
    input[type="radio"] {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0;
    }

    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

    input[type="search"] {
        -webkit-appearance: textfield;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
    }

    input[type="search"]::-webkit-search-cancel-button,
    input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

    fieldset {
        border: 1px solid silver;
        margin: 0 2px;
        padding: 0.35em 0.625em 0.75em;
    }

    legend {
        border: 0;
        padding: 0;
    }

    textarea {
        overflow: auto;
    }

    optgroup {
        font-weight: 700;
    }

    table {
        border-collapse: collapse;
        border-spacing: 0;
    }

    td,
    th {
        padding: 0;
    }

    li,
    ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    :after,
    :before {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    html {
        font-size: 10px;
        -webkit-tap-highlight-color: transparent;
    }

    body {
        font-family: Mulish, sans-serif;
        font-size: 62.5%;
        background: #fff;
        -webkit-font-smoothing: antialiased;
        font-weight: 400;
    }

    button,
    input,
    select,
    textarea {
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }

    a {
        color: #282828;
        text-decoration: none;
    }

    /*a:focus,
    a:hover {
        color: #23527c;
        text-decoration: underline;
    }*/

    /*a:focus {
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }*/

    figure {
        margin: 0;
    }

    img {
        vertical-align: middle;
    }

    .img-responsive {
        display: block;
        max-width: 100%;
        margin: 0 auto;
    }

    hr {
        margin-top: 20px;
        margin-bottom: 20px;
        border: 0;
        border-top: 1px solid #eee;
    }

    [role="button"] {
        cursor: pointer;
    }

    .container {
        margin-right: auto;
        margin-left: auto;
        padding-left: 5px;
        padding-right: 5px;
    }

.owl-carousels .owl-stage {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

/*blog code */
.blogs-posp h2 {
   
         background: linear-gradient(to right, #b73635 0%, #F58321 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 65px;
    line-height: 60px;padding-bottom: 20px;    margin-bottom: 0px;
}
.blogs-posp h3 {
    font-weight: 500;margin-bottom: 50px;
    font-size: 50px;
    line-height: 60px;
}

.more-blog-block  h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;padding-top: 20px;
}

.more-blog-block .blog-contents p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;padding-bottom: 50px;padding-top: 20px;
}

.more-blog-block .blog-date p span {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;color: #6C6C6C;
}
.blog-details-block .blog-img img {padding: 5px;border-radius: 20px;}

 .owl-carousels  .owl-stage-outer .item {    background: #FFF9F6;overflow: hidden;margin-bottom: 5px;
    border-radius: 20px;}
    .more-blog-block .blog-mainbox  h4 {padding-top: 0px;color: #282828;}

    .owl-carousels.owl-drag .owl-item {
    display: flex;
}
 .owl-carousels .owl-nav.disabled {display: none;}

.section-content.blogs-posp {padding: 6rem 0 6rem 0;}

#mostrecentblog_div_block .blog-date {position: absolute;bottom: 25px;}

#mostrecentblog_div_block .blog-mainbox {padding:15px 20px;}

    .item.box-circle {
overflow: hidden;border-radius: 20px;
    }
.section-content.blogs-posp a.Read-btn {
    border: 1px solid #EC6625;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #EC6625;
    padding: 15px 20px;
    background: transparent;
    margin-top: 30px;
}

/*blog code */

    @media (min-width: 768px) {
        .container {
            width: 758px;
        }
    }

    @media (min-width: 992px) {
        .container {
            width: 1014px;
        }
    }

    @media (min-width: 1360px) {
        .container {
            width: 1330px;
        }
    }

    .container-fluid {
        margin-right: auto;
        margin-left: auto;
        padding-left: 10px;
        padding-right: 10px;
    }

    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-xs-1,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9 {
        position: relative;
        min-height: 1px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .col-xs-1,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9 {
        float: left;
    }

    .col-xs-12 {
        width: 100%;
    }

    .col-xs-11 {
        width: 91.66666667%;
    }

    .col-xs-10 {
        width: 83.33333333%;
    }

    .col-xs-9 {
        width: 75%;
    }

    .col-xs-8 {
        width: 66.66666667%;
    }

    .col-xs-7 {
        width: 58.33333333%;
    }

    .col-xs-6 {
        width: 50%;
    }

    .col-xs-5 {
        width: 41.66666667%;
    }

    .col-xs-4 {
        width: 33.33333333%;
    }

    .col-xs-3 {
        width: 25%;
    }

    .col-xs-2 {
        width: 16.66666667%;
    }

    .col-xs-1 {
        width: 8.33333333%;
    }

    .col-xs-pull-12 {
        right: 100%;
    }

    .col-xs-pull-11 {
        right: 91.66666667%;
    }

    .col-xs-pull-10 {
        right: 83.33333333%;
    }

    .col-xs-pull-9 {
        right: 75%;
    }

    .col-xs-pull-8 {
        right: 66.66666667%;
    }

    .col-xs-pull-7 {
        right: 58.33333333%;
    }

    .col-xs-pull-6 {
        right: 50%;
    }

    .col-xs-pull-5 {
        right: 41.66666667%;
    }

    .col-xs-pull-4 {
        right: 33.33333333%;
    }

    .col-xs-pull-3 {
        right: 25%;
    }

    .col-xs-pull-2 {
        right: 16.66666667%;
    }

    .col-xs-pull-1 {
        right: 8.33333333%;
    }

    .col-xs-pull-0 {
        right: auto;
    }

    .col-xs-push-12 {
        left: 100%;
    }

    .col-xs-push-11 {
        left: 91.66666667%;
    }

    .col-xs-push-10 {
        left: 83.33333333%;
    }

    .col-xs-push-9 {
        left: 75%;
    }

    .col-xs-push-8 {
        left: 66.66666667%;
    }

    .col-xs-push-7 {
        left: 58.33333333%;
    }

    .col-xs-push-6 {
        left: 50%;
    }

    .col-xs-push-5 {
        left: 41.66666667%;
    }

    .col-xs-push-4 {
        left: 33.33333333%;
    }

    .col-xs-push-3 {
        left: 25%;
    }

    .col-xs-push-2 {
        left: 16.66666667%;
    }

    .col-xs-push-1 {
        left: 8.33333333%;
    }

    .col-xs-push-0 {
        left: auto;
    }

    .col-xs-offset-12 {
        margin-left: 100%;
    }

    .col-xs-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-xs-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-xs-offset-9 {
        margin-left: 75%;
    }

    .col-xs-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-xs-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-xs-offset-6 {
        margin-left: 50%;
    }

    .col-xs-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-xs-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-xs-offset-3 {
        margin-left: 25%;
    }

    .col-xs-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-xs-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-xs-offset-0 {
        margin-left: 0;
    }

    @media (min-width: 768px) {
        .col-sm-1,
        .col-sm-10,
        .col-sm-11,
        .col-sm-12,
        .col-sm-2,
        .col-sm-3,
        .col-sm-4,
        .col-sm-5,
        .col-sm-6,
        .col-sm-7,
        .col-sm-8,
        .col-sm-9 {
            float: left;
        }
        .col-sm-12 {
            width: 100%;
        }
        .col-sm-11 {
            width: 91.66666667%;
        }
        .col-sm-10 {
            width: 83.33333333%;
        }
        .col-sm-9 {
            width: 75%;
        }
        .col-sm-8 {
            width: 66.66666667%;
        }
        .col-sm-7 {
            width: 58.33333333%;
        }
        .col-sm-6 {
            width: 50%;
        }
        .col-sm-5 {
            width: 41.66666667%;
        }
        .col-sm-4 {
            width: 33.33333333%;
        }
        .col-sm-3 {
            width: 25%;
        }
        .col-sm-2 {
            width: 16.66666667%;
        }
        .col-sm-1 {
            width: 8.33333333%;
        }
        .col-sm-pull-12 {
            right: 100%;
        }
        .col-sm-pull-11 {
            right: 91.66666667%;
        }
        .col-sm-pull-10 {
            right: 83.33333333%;
        }
        .col-sm-pull-9 {
            right: 75%;
        }
        .col-sm-pull-8 {
            right: 66.66666667%;
        }
        .col-sm-pull-7 {
            right: 58.33333333%;
        }
        .col-sm-pull-6 {
            right: 50%;
        }
        .col-sm-pull-5 {
            right: 41.66666667%;
        }
        .col-sm-pull-4 {
            right: 33.33333333%;
        }
        .col-sm-pull-3 {
            right: 25%;
        }
        .col-sm-pull-2 {
            right: 16.66666667%;
        }
        .col-sm-pull-1 {
            right: 8.33333333%;
        }
        .col-sm-pull-0 {
            right: auto;
        }
        .col-sm-push-12 {
            left: 100%;
        }
        .col-sm-push-11 {
            left: 91.66666667%;
        }
        .col-sm-push-10 {
            left: 83.33333333%;
        }
        .col-sm-push-9 {
            left: 75%;
        }
        .col-sm-push-8 {
            left: 66.66666667%;
        }
        .col-sm-push-7 {
            left: 58.33333333%;
        }
        .col-sm-push-6 {
            left: 50%;
        }
        .col-sm-push-5 {
            left: 41.66666667%;
        }
        .col-sm-push-4 {
            left: 33.33333333%;
        }
        .col-sm-push-3 {
            left: 25%;
        }
        .col-sm-push-2 {
            left: 16.66666667%;
        }
        .col-sm-push-1 {
            left: 8.33333333%;
        }
        .col-sm-push-0 {
            left: auto;
        }
        .col-sm-offset-12 {
            margin-left: 100%;
        }
        .col-sm-offset-11 {
            margin-left: 91.66666667%;
        }
        .col-sm-offset-10 {
            margin-left: 83.33333333%;
        }
        .col-sm-offset-9 {
            margin-left: 75%;
        }
        .col-sm-offset-8 {
            margin-left: 66.66666667%;
        }
        .col-sm-offset-7 {
            margin-left: 58.33333333%;
        }
        .col-sm-offset-6 {
            margin-left: 50%;
        }
        .col-sm-offset-5 {
            margin-left: 41.66666667%;
        }
        .col-sm-offset-4 {
            margin-left: 33.33333333%;
        }
        .col-sm-offset-3 {
            margin-left: 25%;
        }
        .col-sm-offset-2 {
            margin-left: 16.66666667%;
        }
        .col-sm-offset-1 {
            margin-left: 8.33333333%;
        }
        .col-sm-offset-0 {
            margin-left: 0;
        }
    }

    @media (min-width: 992px) {
        .col-md-1,
        .col-md-10,
        .col-md-11,
        .col-md-12,
        .col-md-2,
        .col-md-3,
        .col-md-4,
        .col-md-5,
        .col-md-6,
        .col-md-7,
        .col-md-8,
        .col-md-9 {
            float: left;
        }
        .col-md-12 {
            width: 100%;
        }
        .col-md-11 {
            width: 91.66666667%;
        }
        .col-md-10 {
            width: 83.33333333%;
        }
        .col-md-9 {
            width: 75%;
        }
        .col-md-8 {
            width: 66.66666667%;
        }
        .col-md-7 {
            width: 58.33333333%;
        }
        .col-md-6 {
            width: 50%;
        }
        .col-md-5 {
            width: 41.66666667%;
        }
        .col-md-4 {
            width: 33.33333333%;
        }
        .col-md-3 {
            width: 25%;
        }
        .col-md-2 {
            width: 16.66666667%;
        }
        .col-md-1 {
            width: 8.33333333%;
        }
        .col-md-pull-12 {
            right: 100%;
        }
        .col-md-pull-11 {
            right: 91.66666667%;
        }
        .col-md-pull-10 {
            right: 83.33333333%;
        }
        .col-md-pull-9 {
            right: 75%;
        }
        .col-md-pull-8 {
            right: 66.66666667%;
        }
        .col-md-pull-7 {
            right: 58.33333333%;
        }
        .col-md-pull-6 {
            right: 50%;
        }
        .col-md-pull-5 {
            right: 41.66666667%;
        }
        .col-md-pull-4 {
            right: 33.33333333%;
        }
        .col-md-pull-3 {
            right: 25%;
        }
        .col-md-pull-2 {
            right: 16.66666667%;
        }
        .col-md-pull-1 {
            right: 8.33333333%;
        }
        .col-md-pull-0 {
            right: auto;
        }
        .col-md-push-12 {
            left: 100%;
        }
        .col-md-push-11 {
            left: 91.66666667%;
        }
        .col-md-push-10 {
            left: 83.33333333%;
        }
        .col-md-push-9 {
            left: 75%;
        }
        .col-md-push-8 {
            left: 66.66666667%;
        }
        .col-md-push-7 {
            left: 58.33333333%;
        }
        .col-md-push-6 {
            left: 50%;
        }
        .col-md-push-5 {
            left: 41.66666667%;
        }
        .col-md-push-4 {
            left: 33.33333333%;
        }
        .col-md-push-3 {
            left: 25%;
        }
        .col-md-push-2 {
            left: 16.66666667%;
        }
        .col-md-push-1 {
            left: 8.33333333%;
        }
        .col-md-push-0 {
            left: auto;
        }
        .col-md-offset-12 {
            margin-left: 100%;
        }
        .col-md-offset-11 {
            margin-left: 91.66666667%;
        }
        .col-md-offset-10 {
            margin-left: 83.33333333%;
        }
        .col-md-offset-9 {
            margin-left: 75%;
        }
        .col-md-offset-8 {
            margin-left: 66.66666667%;
        }
        .col-md-offset-7 {
            margin-left: 58.33333333%;
        }
        .col-md-offset-6 {
            margin-left: 50%;
        }
        .col-md-offset-5 {
            margin-left: 41.66666667%;
        }
        .col-md-offset-4 {
            margin-left: 33.33333333%;
        }
        .col-md-offset-3 {
            margin-left: 25%;
        }
        .col-md-offset-2 {
            margin-left: 16.66666667%;
        }
        .col-md-offset-1 {
            margin-left: 8.33333333%;
        }
        .col-md-offset-0 {
            margin-left: 0;
        }
    }

    @media (min-width: 1200px) {
        .col-lg-1,
        .col-lg-10,
        .col-lg-11,
        .col-lg-12,
        .col-lg-2,
        .col-lg-3,
        .col-lg-4,
        .col-lg-5,
        .col-lg-6,
        .col-lg-7,
        .col-lg-8,
        .col-lg-9 {
            float: left;
        }
        .col-lg-12 {
            width: 100%;
        }
        .col-lg-11 {
            width: 91.66666667%;
        }
        .col-lg-10 {
            width: 83.33333333%;
        }
        .col-lg-9 {
            width: 75%;
        }
        .col-lg-8 {
            width: 66.66666667%;
        }
        .col-lg-7 {
            width: 58.33333333%;
        }
        .col-lg-6 {
            width: 50%;
        }
        .col-lg-5 {
            width: 41.66666667%;
        }
        .col-lg-4 {
            width: 33.33333333%;
        }
        .col-lg-3 {
            width: 25%;
        }
        .col-lg-2 {
            width: 16.66666667%;
        }
        .col-lg-1 {
            width: 8.33333333%;
        }
        .col-lg-pull-12 {
            right: 100%;
        }
        .col-lg-pull-11 {
            right: 91.66666667%;
        }
        .col-lg-pull-10 {
            right: 83.33333333%;
        }
        .col-lg-pull-9 {
            right: 75%;
        }
        .col-lg-pull-8 {
            right: 66.66666667%;
        }
        .col-lg-pull-7 {
            right: 58.33333333%;
        }
        .col-lg-pull-6 {
            right: 50%;
        }
        .col-lg-pull-5 {
            right: 41.66666667%;
        }
        .col-lg-pull-4 {
            right: 33.33333333%;
        }
        .col-lg-pull-3 {
            right: 25%;
        }
        .col-lg-pull-2 {
            right: 16.66666667%;
        }
        .col-lg-pull-1 {
            right: 8.33333333%;
        }
        .col-lg-pull-0 {
            right: auto;
        }
        .col-lg-push-12 {
            left: 100%;
        }
        .col-lg-push-11 {
            left: 91.66666667%;
        }
        .col-lg-push-10 {
            left: 83.33333333%;
        }
        .col-lg-push-9 {
            left: 75%;
        }
        .col-lg-push-8 {
            left: 66.66666667%;
        }
        .col-lg-push-7 {
            left: 58.33333333%;
        }
        .col-lg-push-6 {
            left: 50%;
        }
        .col-lg-push-5 {
            left: 41.66666667%;
        }
        .col-lg-push-4 {
            left: 33.33333333%;
        }
        .col-lg-push-3 {
            left: 25%;
        }
        .col-lg-push-2 {
            left: 16.66666667%;
        }
        .col-lg-push-1 {
            left: 8.33333333%;
        }
        .col-lg-push-0 {
            left: auto;
        }
        .col-lg-offset-12 {
            margin-left: 100%;
        }
        .col-lg-offset-11 {
            margin-left: 91.66666667%;
        }
        .col-lg-offset-10 {
            margin-left: 83.33333333%;
        }
        .col-lg-offset-9 {
            margin-left: 75%;
        }
        .col-lg-offset-8 {
            margin-left: 66.66666667%;
        }
        .col-lg-offset-7 {
            margin-left: 58.33333333%;
        }
        .col-lg-offset-6 {
            margin-left: 50%;
        }
        .col-lg-offset-5 {
            margin-left: 41.66666667%;
        }
        .col-lg-offset-4 {
            margin-left: 33.33333333%;
        }
        .col-lg-offset-3 {
            margin-left: 25%;
        }
        .col-lg-offset-2 {
            margin-left: 16.66666667%;
        }
        .col-lg-offset-1 {
            margin-left: 8.33333333%;
        }
        .col-lg-offset-0 {
            margin-left: 0;
        }
    }

    .clearfix:after,
    .clearfix:before,
    .container-fluid:after,
    .container-fluid:before,
    .container:after,
    .container:before,
    .row:after,
    .row:before {
        content: " ";
        display: table;
    }

    .clearfix:after,
    .container-fluid:after,
    .container:after,
    .row:after {
        clear: both;
    }

    .center-block {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .pull-right {
        float: right !important;
    }

    .pull-left {
        float: left !important;
    }

    .hide {
        display: none !important;
    }

    .show {
        display: block !important;
    }

    .invisible {
        visibility: hidden;
    }

    .text-hide {
        font: 0/0 a;
        color: transparent;
        text-shadow: none;
        background-color: transparent;
        border: 0;
    }

    .hidden {
        display: none !important;
    }

    .ui-tooltip {
        padding: 8px;
        position: absolute;
        z-index: 9999;
        max-width: 300px;
        -webkit-box-shadow: 0 0 5px #aaa;
        -ms-box-shadow: 0 0 5px #aaa;
        -moz-box-shadow: 0 0 5px #aaa;
        box-shadow: 0 0 5px #aaa;
    }

    body .ui-tooltip {
        border-width: 2px;
    }

    .container-fuild {
        padding: 0 10px;
    }

    .container-small {
        max-width: 120rem;
        margin: 0 auto;
    }

    .center-block {
        margin: 0 auto;
        display: block;
    }

    ::-moz-selection {
        color: red;
        background: #ececec;
    }

    /*.section-content {
        padding: 10rem 0 12rem 0;
    }*/

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0;
        padding: 0;
        font-weight: 400;
        font-weight: 300;
    }

    p,
    span {
        margin: 0;
        padding: 0;
        color: #282828;
        font-size: 1.3rem;
        font-weight: 300;
    }

    p {
        font-size: 2rem;
        line-height: 3rem;
    }

    .text-center {
        text-align: center;
    }

    .text-left {
        text-align: left;
    }

    .text-right {
        text-align: right;
    }

    .bg-blue a,
    .bg-blue h1,
    .bg-blue h2,
    .bg-blue h3,
    .bg-blue h4,
    .bg-blue h5,
    .bg-blue h6,
    .bg-blue p,
    .bg-blue span {
        color: #fff;
    }

    h1,
    h3 {
        font-size: 4rem;
        margin-bottom: 1rem;
        font-weight: 200;
    }

    h2 {
        font-size: 3.5rem;
        color: #282828;
        font-weight: 400;
        font-weight: 200;
        margin-bottom: 0.6rem;
    }

    h3 {
        font-size: 2.5rem;
    }

    h4 {
        font-size: 2rem;
        font-weight: 200;
    }

    .subTitle {
        font-size: 1.5rem;
        color: #979797;
    }

    a {
        font-size: 1.4rem;
        color: #fe6625;
        display: inline-block;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    a:active,
    a:hover {
        color: #fe6625;
        text-decoration: none;
    }
    /********************************* layout css ends *******************************************/

    /********************************* il dost css start *******************************************/
    .il-gray-bg{
        background-color: #efefef;
    }
    .banner-form-wrap{
        display: inline-block;
        width: 100%;
        margin: 0;
            padding: 5rem 0 6rem;
    }
    span.il-gradient-text{
    background: linear-gradient(to right, #b73635 0%, #F58321 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 6.5rem;
        font-weight: 900;
    }
    .banner-form-wrap span.il-gradient-text{
    background: linear-gradient(to right, #b73635 0%, #F58321 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 6.5rem;
        font-weight: 900;
    }
    .banner-form-wrap span {
        font-size: 5rem;
        font-weight: 500;
        color: rgba(40, 40, 40, 1);
    }
    .banner-form-wrap small{
        font-size: 2.5rem;
         color: rgba(40, 40, 40, 1);
         font-weight: 600;
         display: inline-block;
        padding: 1rem 0 0;
    }
    .right-banner {
        position: absolute;
        right: 0;
        bottom: -64px;
    }
    .form-section-content{
        position: relative;
    }
    .dost-form-block {
        display: inline-block;
        width: 30% !important;
        margin: 0 auto;
        padding: 3rem 0 0;
    }
    .input-block {
        position: relative;
        height: 68px;
        margin-bottom: 2rem;
    }

    .input-block label {
        cursor: auto;
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        font-size: 1.5rem;
        color: #BABABA;
        font-weight: 400;
        position: absolute;
        top: 28px;
        left: 15px;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        padding: 0 0.5rem;
    }

    .input-block.focus label {
        top: 1px;
        font-size: 1.2rem;
        background: #efefef;
    }

    .ripple-bar input {
        cursor: auto;
        border: none;
        color: #282828;
        border: 1px solid #BABABA;
        font-size: 1.5rem;
        z-index: 2;
        width: 100%;
       height: 56px;
        margin-top: 1rem;
        outline: 0;
        background: 0 0;
        border-radius: 5px;
        padding-left: 2rem;
        font-weight: 600;
    }

    .ripple-bar:after {
        content: "";
        position: absolute;
        z-index: 0;
        height: 1px;
        bottom: 28px;
        left: 0;
        right: 0;
        /*background: #00618e;*/
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 50%;
        -ms-transform-origin: 50%;
        transform-origin: 50%;
        -webkit-transition-property: -webkit-transform;
        transition-property: transform;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    .ripple-bar.focus:after {
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1);
    }
    span.ui-error {
        font-size: 1.2rem;
        position: absolute;
        width: 100%;
        z-index: 1;
        bottom: -17px;
        left: 0;
        text-align: left;
        display: none;
        color: #ff0000;
    }
    .btn-wrap {
        display: inline-block;
        width: 100%;
        margin: 2rem 0 0;
    }

    .il-dost-btn {
        font-size: 1.7rem;
        color: #fff;
        background-color: #EC6608;
        padding: 2rem 3rem;
        border-radius: 1.2rem;
            display: block;
        text-align: center;
    }
    /*.il-dost-btn:hover{
        background-color: #fc7a1d;
        background-image: linear-gradient(to right,transparent 0,#b73635 100%);
        -webkit-transition: all .3s ease-in;
        -moz-transition: all .3s ease-in;
        -ms-transition: all .3s ease-in;
        -o-transition: all .3s ease-in;
        transition: all .3s ease-in;
    }*/
    .il-dost-btn:hover, .il-dost-btn:active, .il-dost-btn.active{
        color: #fff;
    }
    .btn-disable {
        pointer-events: none;
        background: #D1D1D1;
    }
    .edit-btn {
        position: absolute;
        right: 1.5rem;
        top: 2.8rem;
        color: #004A80;
        text-decoration: underline;
        font-weight: 700;
        display: none;
    }
    .save-btn {
        position: absolute;
        right: 1.5rem;
        top: 2.8rem;
        color: #004A80;
        text-decoration: underline;
        font-weight: 700;
        display: none;
    }
    .edit-btn:hover, .save-btn:hover{
        color: #004A80;
    }
    .insurance-partner-wrap {
        display: inline-block;
        width: 100%;
        margin: 0 auto;
    }

    .dost-insurance-partner {
        display: inline-block;
        width: 45%;
        vertical-align: top;
        /*padding-left: 5rem;*/
    }

    .insurance-partner-img {
            display: inline-block;
        width: 55%;
        margin: 0 auto;
        text-align: right;
        padding-bottom: 3rem;
    }
    .dost-insurance-partner img {
        margin-bottom: 2rem;
    }
    .top-p {
        font-size: 5rem;
        font-weight: 500;
        line-height: normal;
    }
    .ip-list {
        display: inline-block;
        width: 100%;
        margin: 0 auto;
        padding: 3rem 0;
    }

    .ip-list li {
       display: block;
        font-size: 2rem;
        font-weight: 500;
        padding-bottom: 1rem;
        position: relative;
        padding-left: 3rem;
    }
    .ip-list li:before {
        background-image: url(../images/ilarrow-left.png);
        background-repeat: no-repeat;
        display: inline-block;
        width: 2.4rem;
        height: 2.4rem;
        content: '';
        position: absolute;
        left: 0;
    }
    .dost-insurance-partner h5 {
        font-size: 1.8rem;
        font-weight: 300;
        padding-bottom: 2rem;
    }
    .il-blue-bg{
        background-color: #1B2745;
    }
    .whats-il-dost {
        display: inline-block;
        width: 100%;
        margin: 0 auto;
    }

    .whats-il-dost p {
        font-size: 2rem;
        color: #fff;
        line-height: 30px;
        padding-bottom: 2rem;
    }
    .why-sell-insurance-block {
        width: 100%;
        display: inline-block;
        margin: 0 auto;
    }
    .why-sell-insurance-block>p {
        font-weight: 600;
    }
    .sell-ins-list {
        display: inline-block;
        width: 100%;
        margin: 0 auto;
        padding: 7rem 0 0;
    }

    .list-box {
        display: inline-block;
        width: 20%;
        clear: both;
        margin-bottom: 10rem;
    }

    p.list-p {
        font-size: 1.7rem;
        font-weight: 600;
        line-height: 25px;
    }
    .work-direct-ico:before {
        content: '';
        background-image: url(../images/wd-ico.png);
        background-repeat: no-repeat;
        display: inline-block;
        width: 70px;
        height: 70px;
    }
    .cwf-ico:before {
        content: '';
        background-image: url(../images/cwf-ico.png);
        background-repeat: no-repeat;
        display: inline-block;
        width: 70px;
        height: 70px;
    }
    .rs-ico:before {
        content: '';
        background-image: url(../images/rs-ico.png);
        background-repeat: no-repeat;
        display: inline-block;
        width: 70px;
        height: 70px;
    }
    .ip-ico:before {
        content: '';
        background-image: url(../images/ip-ico.png);
        background-repeat: no-repeat;
        display: inline-block;
        width: 70px;
        height: 70px;
    }
    .nps-ico:before {
        content: '';
        background-image: url(../images/np-ico.png);
        background-repeat: no-repeat;
        display: inline-block;
        width: 70px;
        height: 70px;
    }
    .tcp-ico:before {
        content: '';
        background-image: url(../images/tcp-ico.png);
        background-repeat: no-repeat;
        display: inline-block;
        width: 70px;
        height: 70px;
    }
    .edc-ico:before {
        content: '';
        background-image: url(../images/edc-ico.png);
        background-repeat: no-repeat;
        display: inline-block;
        width: 70px;
        height: 70px;
    }
    table {
        display: table;
        border-collapse: separate;
        box-sizing: border-box;
        border-spacing: 2px;
        border-color: #dddccb;
    }
    .tableWrapp {
        border-collapse: collapse;
        text-align: center;
        border-radius: 15px;
        overflow: hidden;
        width: 100%;
        display: inline-block;
    }
    .tableWrapp.wid-100 th {
        width: 20%;
    }
    .tableWrapp th {
        text-align: left;
        padding: 20px 30px;
        font-size: 15px;
        font-weight: bold;
        color: #fff;
        background: #084C80;
    }
    .tableWrapp th span{
    font-size: 15px;
        font-weight: bold;
        color: #5F5F5F;
        padding: 15px 0 0;
        display: inline-block;
    }
    .tableWrapp td,
    .tableWrapp th {
        font-size: 15px;
            border: 1px solid rgba(186, 186, 186, 0.5);
            font-weight: 700;
                width: 20%;
    }
    .tableWrapp td {
       font-size: 14px;
        font-weight: 500;
        line-height: 24px;
        color: #282828;
        position: relative;
        vertical-align: top;
        text-align: left;
        border: 1px solid #d3d3d3;
        padding: 20px 30px;
    }
    .tableWrapp td:nth-child(1) {
        font-weight: 700;
    }
    .il-darkgray-bg {
        background-color: #F0EDDA;
    }
    .selling-insurance-policies {
        width: 100%;
        display: inline-block;
        margin: 0 auto;
        padding: 5rem 10rem;
        box-shadow: 24px 17px 33px -12px rgba(0, 0, 0, 0.15);
        border-radius: 20px;
        position: relative;
        top: 8rem;
    }

    .selling-insurance-policies h3 {
        font-size: 2.8rem;
        font-weight: 600;
        padding-bottom: 3rem;
    }

    .il-bg-table {
        background-color: #F7F7F7;
    }
    .selling-insurance-policies p {
        font-size: 1.3rem;
        text-align: left;
        font-weight: 500;
        color: #ABABAB;
        line-height: 20px;
        padding: 2rem 0 0;
    }
    #sellInsurance {
        margin-top: 5rem;
    }
    .advisor-block {
        display: inline-block;
        width: 365px;
        border-radius: 20px;
        background-color: #ffffff;
        padding: 3rem 3rem;
        text-align: center;
            min-height: 355px;
    }
    .adv-block {
        display: inline-block;
        margin: 0 auto;
        width: 100%;
    }
    .adv-block h3 {
        font-size: 2.5rem;
        font-weight: bold;
        padding: 2rem 0 1rem;
        margin: 0;
    }
    .adv-block p {
        font-size: 1.7rem;
        line-height: 25px;
        padding: 0;
        margin: 0;
    }
    .owl-carousels .owl-item img {
        display: block;
        width: auto;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    #sellInsurance .owl-nav{
        display: none;
    }
    .list-box:nth-child(5), .list-box:nth-child(6), .list-box:last-child {
        margin: 0;
    }
    /*.pad-section{
        padding: 10rem 0 0 0;
    }*/
    .who-can-use-block {
        display: inline-block;
        width: 100%;
        margin: 0 auto;
        padding: 8rem 0 0;
    }
    .who-can-use-block>p, .pos-advisor-block>p{
        font-weight: 600;
    }
    .why-sell-insurance-block .fadeInUpBig>p {
        font-weight: 600;
    }
    .pos-steps-block {
        display: inline-block;
        width: 100%;
        margin: 0 auto;
        padding: 12rem 0 0;
    }

    .pos-steps {
        display: inline-block;
        width: 30%;
        margin: 0 auto;
        vertical-align: top;
        position: relative;
    }

    .pos-steps span {
            font-size: 12rem;
        color: #DBDBDB;
        font-weight: 900;
        letter-spacing: -5px;
        position: absolute;
    }
    span.one-nm {
        left: 60px;
        top: -85px;
        z-index: 1;
    }

    .pos-steps img {
        z-index: 2;
        position: relative;
    }
    span.two-nm {
        left: 115px;
        top: -85px;
    }
    span.three-nm {
        left: 80px;
        top: -85px;
    }
    .pos-steps p {
        font-size: 1.7rem;
        line-height: 25px;
        padding: 3rem 4rem 2rem;
        font-weight: 400;
    }
    p.pos-p {
        font-size: 2.5rem;
        font-weight: 600;
        margin: 3rem 0 4rem;
        line-height: 40px;
    }
    .testSlider-mainwrap {
        padding-bottom: 10rem;
        display: inline-block;
        width: 100%;
    }
    .il-red-bg {
        background-color: #B73635;
    }
    .testimonials-block {
        display: inline-block;
        width: 100%;
        margin: 0 auto;
    }

    .testimonials-block h2 {
        color: #fff;
        font-size: 6.5rem;
        font-weight: 900;
    }

    .testSlider-mainwrap p {
        color: #fff;
        font-size: 2.5rem;
        line-height: 40px;
        padding: 2rem 0 3rem;
        float: left;
        display: inline-block;
    }
    /*.no-js .owl-carousel, .owl-carousel.owl-loaded.testimonials-slider {
        display: inline-block;
        width: 60%;
        float: right;
        margin-top: 3rem;
        overflow: hidden;
    }*/
    .test-block {
        background: #fff;
        border-radius: 20px;
        padding: 2rem 3rem;
        width: 550px;
    }

    .test-block p {
        color: #282828;
    font-size: 1.5rem;
    line-height: 25px;
    min-height: 12rem;
    font-weight: 400;

    }

    .testimonial-list {
        display: inline-block;
        width: 100%;
        margin: 0 auto;
        padding: 2rem 0;
    }

    .owl-carousel .owl-item .testimonial-list img {
        display: inline-block;
        display: inline-block;
        vertical-align: top;
    }
    .owl-carousel .owl-item .test-block-img img {
        display: inline-block;
    }
    .text-containt {
        display: inline-block;
        padding-left: 2rem;
        vertical-align: middle;
            width: 75%;
    }

    .text-containt h5 {
        font-size: 2rem;
        font-weight: 700;
        padding-bottom: 1rem;
    }

    .text-containt span {
        font-size: 1.7rem;
        color: rgba(186, 186, 186, 1);
    }
    #sellInsurance .owl-stage-outer{
        overflow: unset;
    }
    /* #testimonialSl .item {
        display: flex;
        justify-content: center;
        align-items: center;
    }*/
    .owl-nav {
        display: inline-block;
        position: absolute;
        bottom: 9px;
        left: -10rem;
        font-size: 0;
    }

    .owl-prev {
        background-image: url(../images/slide-arrow.png);
        display: inline-block;
        background-repeat: no-repeat;
        width: 25px;
        height: 21px;
        transform: rotateZ(
    180deg
    );
    }

    .owl-next {
        background-image: url(../images/slide-arrow.png);
        display: inline-block;
        background-repeat: no-repeat;
        width: 25px;
        height: 21px;
        top: 4px;
        position: relative;
    }
    .owl-next.disabled, .owl-prev.disabled {
        opacity: 0.5;
    }
    .pos-questions-tabs>p {
        font-weight: 600;
    }
    .pos-faqs-block {
        display: inline-block;
        width: 100%;
        margin: 0;
        padding: 3rem 20rem;
    }
    .faqs-list {
        width: 100%;
        margin: 0;
        border: 1px solid #E2E2E2;
        margin-bottom: 2rem;
        border-radius: 10px;
    }
    .faqs-list h3 {
           font-size: 1.7rem;
        text-align: left;
        font-weight: 700;
        padding: 2rem 2rem;
        margin: 0;
        position: relative;
        cursor: pointer;
    }
    .faqs-block {
        display: none;
        text-align: left;
        padding: 0 2rem 3rem;
        font-size: 1.7rem;
        color: rgba(94, 94, 94, 1);
        line-height: 27px;
    }
    .faqs-block.border-blue {
        background: #EFEFEF;
    }

    h3.active-faqs {
        background: #EFEFEF;
    }
    h3.active-faqs:after {
       content: '';
        display: inline-block;
        position: absolute;
        right: 15px;
        font-size: 11rem;
        width: 20px;
        height: 3px;
        background: #282828;
        top: 30px;
    }
    h3.close-faqs:after {
        content: '+';
        display: inline-block;
        position: absolute;
        right: 12px;
        font-size: 4rem;
        font-weight: 500;
        top: 2px;
        color: #282828;
       
    }
    .il-dost-wrap {
        display: inline-block;
        width: 100%;
        margin: 0 auto;
    }

    .try-il-dost-img {
        display: inline-block;
        width: 40%;
    }

    .try-mob-img {
        position: absolute;
        bottom: 0;
        left: 12rem;
    }

    .try-il-dost-right {
        display: inline-block;
        width: 58%;
        padding-left: 10rem;
    }

    .try-il-dost-right h2 {
        padding: 6rem 0;
    }

    .try-il-dost-right h2 p {
            color: #fff;
        line-height: 25px;
        padding: 1rem 0 0;
    }
    .try-il-dost-right h6 {
        color: #fff;
        display: block;
        font-size: 1.7rem;
        padding-bottom: 4rem;
    }
    .try-il-dost-right img {
        padding-bottom: 5rem;
    }
    .video-wrap {
        display: inline-block;
        width: 1000px;
        margin: 0 auto;
        margin-top: 3rem;
        position: relative;
        cursor: none;
    }
    .playStopicon {
        position: absolute;
        width: 10rem;
        height: 10rem;
        left: 0;
        top: 0;
        box-shadow: none;
        border-radius: 50%;
        transition: all 0.7s ease-out;
        pointer-events: none;
        z-index: 1000;
        margin: 7px 0 0 -2px;
        font-size: 16px;
        background: #E86623;
        border: none;
        color: #fff;
        font-weight: 600;
    }
    .il-apps-block {
        display: inline-block;
        margin: 0 auto;
    }

    .il-apps-block img {
        margin-right: 2rem;
            max-width: 150px;

    }
    .ildostMenufix {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        box-shadow: 24px 17px 33px -12px rgb(0 0 0 / 15%);
    }
    .mob-dis{
        display: none;
    }
    .playStopicon{
        font-size:0;
    }

    .playStopicon:before {
        content:'';
        background-image: url(/docs/default-source/assets/il-dost-campaign/images/play-ico.png?sfvrsn=39fd6d59_2);
        background-repeat: no-repeat;
        width: 26px;
        height: 30px;
        display: inline-block;
        position:absolute;
        top:35px;
        left:38px;
    }
    .playStopicon.test:before {
        content:'';
        background-image: url(/docs/default-source/assets/il-dost-campaign/images/bi_pause-fill.png?sfvrsn=39fd6d59_2);
        background-repeat: no-repeat;
        width: 45px;
        height: 45px;
        display: inline-block;
        position:absolute;
        top: 28px;
        left: 26px;
    }
    .try-section-content {
        position: relative;
        overflow: hidden;
    }
    .note-p {
        padding: 2rem 0 0;
    }

    .note-p p {
        font-size: 1.5rem;
        font-weight: 500;
        color: #5E5E5E;
    }

    .note-p p strong {
        color: #282828;
        font-size: 1.7rem;
    }
    .mob-video-wrap{
        display: none;
    }
    .disclaimers {
        display: inline-block;
        width: 100%;
        margin: 0 auto;
        padding: 5rem 0;
    }

    .disclaimers h3 {
        font-size: 1.7rem;
        font-weight: 600;
    }

    .disclaimers p {
        font-size: 1.5rem;
        color: #5E5E5E;
        line-height: 27px;

    }

    .disclaimers p a {
        color: #EC6608;
        font-size: 1.5rem;
        font-weight: 600;
        text-decoration: underline;
        display: initial;
    }

    tr.last-td td {
        text-align: center;
        background: #CAE4F9;
        font-size: 2rem;
    }

    .disclaimer-table {
        display: none;
        width: 100%;
        margin: 0 auto;
        padding-bottom: 6rem;
    }
    ul.list-fb {
        display: inline-block;
        width: 100%;
        margin: 0 auto;
        padding: 2rem 1rem 0;
    }

    ul.list-fb li {padding-bottom: 1rem;position: relative;padding-left: 3rem;}

    ul.list-fb li:before {
        content: '';
        background-image: url(/docs/default-source/assets/il-dost-campaign/images/checkico.png?sfvrsn=39fd6dd9_2);
        background-repeat: no-repeat;
        width: 18px;
        height: 14px;
        display: inline-block;
        position: absolute;
        left: 0;
        top: 8px;
    }
    ul.list-nm {
        display: inline-block;
        width: 100%;
        margin: 0 auto;
        padding: 2rem 1rem 0;
    }

    ul.list-nm li {
        padding-bottom: 1rem;
        list-style: decimal;
        margin-left: 2rem;
        padding-left: 1rem;
    }
    /********************************* il dost css start *******************************************/

    /********************************* media start *******************************************/
    @media(min-width: 992px) and (max-width: 1360px){
        .dost-form-block{
                width: 35% !important;
        }
        .right-banner{
            right: auto;
        }
        .try-mob-img{
            left: 0;
        }
        .no-js .owl-carousel, .owl-carousel.owl-loaded.testimonials-slider{
            width: 100%;
            overflow: visible;
        }
        .test-block{
        width: 100%;
            padding: 2rem 1.5rem;
    }
    .owl-nav {
        display: inline-block;
        position: absolute;
        bottom: -50px;
        left: 0;
        font-size: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
    }
    }

    @media(max-width: 1300px){
        .pos-faqs-block{
            padding: 3rem 0;
        }
        audio, canvas, progress, video{
        width: 100% !important;
    }
    .video-wrap{
        width: 100%;
    }
    #testimonialSl .item{
        display: inline-block;
    }
    /*.owl-nav{
        left: -25px;
    }*/
    }
    @media(max-width: 991px){
        .il-dost-menu .menu-list li a {
        padding: 2rem 0;
    }
    .main-nav.nav-dth.il-dost-menu {
        float: none;
        margin-right: 0;
    }
    .banner-form-wrap{
        padding: 5rem 0 6rem;
    }
    .banner-form-wrap span.il-gradient-text{
        font-size: 4.3rem;
    }
    .banner-form-wrap span{
        font-size: 2.8rem;
    }
    .banner-form-wrap small{
        font-size: 1.8rem;
    }
    .dost-form-block{
        display: none;
    }
    .btn-wrap{
        margin: 2rem 0 22rem;
    }
    .right-banner {
        bottom: -33px;
        left: 0;
        margin: 0 auto;
        text-align: center;
    }
    /*.btn-disable{
        background-color: #EC6608;
            pointer-events: visible;
    }*/
    .dost-form-block{
        width: 100% !important;
    }
    .il-dost-btn{
        padding: 2rem 2rem;
    }
    span.il-gradient-text{
        font-size: 4.3rem;
    }
    .top-p{
        font-size: 2.8rem;
    }
    .ip-list li{
        font-size: 1.7rem;
    }
    /*.section-content {
        padding: 6rem 0 8rem 0;
    }*/
    .whats-il-dost p{
        font-size: 1.7rem;
    }
    audio, canvas, progress, video{
        width: 100% !important;
    }
    .video-wrap{
        width: 100%;
    }
    .list-box {
        width: 48%;
        margin-bottom: 3rem;
    }
    .selling-insurance-policies h3{
        font-size: 2.1rem;
    }
    .selling-insurance-policies{
    width: 100%;
        margin: 0 auto;
        padding: 5rem 2rem;
        box-shadow: none;
        border-radius: 0;
        top: 0;
        margin-top: 3rem;
    }
    .selling-insurance-policies:before {
        content: '';
        background: #f7f7f7;
        height: 100%;
        width: 10%;
        display: inline-block;
        position: absolute;
        left: -70px;
        top: 0;
    }
    .selling-insurance-policies:after {
        content: '';
        background: #f7f7f7;
        height: 100%;
        width: 10%;
        display: inline-block;
        position: absolute;
        right: -70px;
        top: 0;
    }
    section#whyIldost {
        padding: 6rem 0 0 0;
    }
    p.pos-p {
        font-size: 1.7rem;
        line-height: 30px;
    }
    .il-dost-wrap{
        text-align: center;
    }
    .try-il-dost-right {
        width: 100%;
        padding-left: 0;
    }
    .try-il-dost-img{
        display: none;
    }
    .banner-form-wrap span.ui-error {
        font-size: 1.2rem;
    }
    .mob-dis{
        display: block;
    }
    .dost-form-block.show-pop {
        display: block;
        width: 100%;
        z-index: 5;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        position: fixed;
        top: 0;
        background: #efefef;
        left: 0;
        padding: 5rem 3rem;
        right: 0;
        border-radius: 0;
        font-size: 1.8rem;
        visibility: visible;
        height: 100%;
    }
    .pop-close {
                   position: absolute;
        right: 1rem;
        top: 1rem;
        width: 3rem;
        height: 3rem;
        z-index: 2;
        -webkit-transition: 0.5s;
        transition: 0.5s;
            }
            .pop-close:after,
            .pop-close:before {
                position: absolute;
                left: 1.5rem;
                content: " ";
                height: 2.5rem;
                width: 0.1rem;
                background-color: #282828;
            }
            .pop-close:before {
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
            }
            .pop-close:after {
                -webkit-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }
                .no-js .owl-carousel, .owl-carousel.owl-loaded.testimonials-slider {
        display: inline-block;
        width: 100%;
        float: none;
        margin-top: 3rem;
        overflow: visible;
    }
    .testSlider-mainwrap .owl-nav{
        display: none;
    }
    .mob-video-wrap{
       display: block;
        position: relative;
        margin-bottom: 5rem;
    }
    .mob-video-wrap img {
        max-width: 100%;
    }
    .video-wrap{
        display: none;
    }
    .overlayNVideo {
        overflow-y: hidden;
    }

    .overlayNVideo {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,.5);
        opacity: 1;
        z-index: 99999;
        display: none;
        overflow-y: scroll;
    }

     .overlayNVideo .popUpVideo {
        height: auto;
        width: 100%;
        position: relative;
        background-color: #fff;
        margin: 75px auto;
    }
    .popUpVideo video {
        padding: 5rem 0 5rem;
    }
    .overlayNVideo .popUpVideo span.closeSpan {
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 30px;
        display: inline-block;
        background-color: #fff;
        border-radius: 50%;
        cursor: pointer;
    }

    .overlayNVideo .popUpVideo span.closeSpan:before {
        transform: rotate(
    45deg
    );
    }

    .overlayNVideo .popUpVideo span.closeSpan:after, .overlayNVideo .popUpVideo span.closeSpan:before {
        position: absolute;
        left: 14px;
        content: ' ';
        height: 18px;
        width: 2px;
        background-color: #333;
        top: 6px;
    }
    .overlayNVideo .popUpVideo span.closeSpan:after {
        transform: rotate(
    -45deg
    );
    }
    .popUpVideo video:focus{
      outline: none;
    }
    }
    @media(max-width: 767px){
    .test-block-img {
        text-align: left;
    }

    .owl-carousels  .owl-stage-outer .item {box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 10%);margin-bottom: 5px;}
    .blogs-posp h3 {
    font-weight: 500;
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 34px;
}
.blog-details-wrapper .blog-content-sec p, .blog-details-wrapper .blog-content-sec p a {font-size:16px;}

.blogs-posp h2 {
    padding-bottom: 0px;
}
.section-content.blogs-posp {
    padding: 4rem 0 4rem 0;
}

.owl-carousels .owl-dots {margin-left: 15px;}
    #mostrecentblog_div_block .blog-mainbox {
    padding: 10px 15px;
    text-align: left;
}
#mostrecentblog_div_block .owl-stage-outer .item {
    width: 95%;
    margin: 0px auto;
    margin-bottom: 5px;
}

.#mostrecentblog_div_block  .owl-dots {
    margin-left: 10px;
}
        .playStopicon{
            width: 8rem;
        height: 8rem;
        left: 0 !important;
        right: 0;
        top: 35% !important;
        text-align: center;
        margin: 0 auto;
        }
        .playStopicon.test:before{
            top: 19px;
        left: 17px;
        }
        .playStopicon:before{
            top: 26px;
        left: 30px;
        }
        .controls{
            display: block !important;
        }
        .testimonials-block h2{
            font-size: 4.3rem;
        font-weight: 900;
        text-align: center;
        }

    .testSlider-mainwrap p{
        font-size: 1.7rem;
        line-height: 30px;
        float:none;
    }
    .testSlider-mainwrap .test-block p {
        font-size: 1.5rem;
        text-align: left;
        line-height: 23px;
            padding: 1rem 0;
    }
    .testimonial-list{
        text-align: left;
    }
    .owl-carousel .owl-item .testimonial-list img{
            width: 75px;
        height: 75px;
    }
    .text-containt {
        display: inline-block;
        padding-left: 1rem;
        vertical-align: top;
        width: 50%;
    }
    .text-containt h5 {
        font-size: 1.6rem;
    }
    .text-containt span{
        font-size: 1.5rem;
    }
    .testSlider-mainwrap{
        text-align: center;
    }
    .test-block{
        width: 100%;
            padding: 2rem 1.5rem;
    }

        .owl-theme .owl-dots .owl-dot {
        display: inline-block;
        zoom: 1
    }

    .owl-theme .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 5px 4px;
        background: #d6d6d6;
        display: block;
        -webkit-backface-visibility: visible;
        transition: opacity .2s ease;
        border-radius: 30px
    }

    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
        background: #869791
    }

    .owl-next.disabled,
    .owl-prev.disabled {
        opacity: .4;
        cursor: default!important
    }

    .owl-theme .owl-dots .owl-dot span {
        background: #ccc
    }

    .owl-theme .owl-dots .owl-dot.active span {
        background: #f58220;
        width: 25px;
        margin: 5px 0
    }

    .owl-theme .owl-dots .owl-dot span {
        background: #C3C1B4;
    }
    .owl-dots {
        margin: 2rem 0 0;
        text-align: left;;
    }
        .dost-insurance-partner {
        width: 100%;
        padding-left: 0;
    }
    .dost-insurance-partner h5{
        text-align: center;
    }
    .il-apps-block{
        text-align: center;
        margin: 0 auto;
        display: block;
    }
    .selling-insurance-policies:before {

        left: -55px;
    }
    .selling-insurance-policies:after {
        right: -55px;
    }
    .tableWrapp{
        overflow: auto;
        width: 100%;
    }
    .owl-carousels {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .pos-steps{
        width: 100%;
        margin-bottom: 8rem;
    }
    .pos-steps:last-child {
        margin-bottom: 0;
    }
    .testSlider-mainwrap .owl-theme .owl-dots .owl-dot span {
        background: #DD4B52;
    }
    .testSlider-mainwrap .owl-theme .owl-dots .owl-dot.active span{
        background: #fff;
    }
    .faqs-list h2{
        font-size: 1.5rem;
            padding-right: 5rem;
    }
    .faqs-block{
        padding: 0 3rem 3rem;
        font-size: 1.5rem;
    }
    .insurance-partner-img {
        display: inline-block;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 2rem;
    }
    .faqs-list h3{
        padding-right: 5rem;
    }
    span.il-gradient-text{
        font-size: 3.5rem;
    }
    .il-apps-block img {
        margin-right: 1rem;
    }
    }
    @media(max-width: 480px){
    .selling-insurance-policies:before {

        left: -20px;
    }
    .selling-insurance-policies:after {

        right: -20px;
    }
    .pos-steps{
        width: 100%;
        margin-bottom: 8rem;
    }
    .pos-steps:last-child {
        margin-bottom: 0;
    }
    }
    /********************************* media ends *******************************************/