@charset "UTF-8";
/*! * animate.css -http://daneden.me/animate * Version - 3.5.2 * Licensed under the MIT license - http://opensource.org/licenses/MIT * * Copyright (c) 2017 Daniel Eden */
 .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:.75s
}
@keyframes bounce{
    0%,20%,53%,80%,to{
        animation-timing-function:cubic-bezier(.215,.61,.355,1);
        transform:translateZ(0)
    }
    40%,43%{
        animation-timing-function:cubic-bezier(.755,.05,.855,.06);
        transform:translate3d(0,-30px,0)
    }
    70%{
        animation-timing-function:cubic-bezier(.755,.05,.855,.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,.75,1)
    }
    40%{
        transform:scale3d(.75,1.25,1)
    }
    50%{
        transform:scale3d(1.15,.85,1)
    }
    65%{
        transform:scale3d(.95,1.05,1)
    }
    75%{
        transform:scale3d(1.05,.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(0deg)
    }
}
.swing{
    transform-origin:top center;
    animation-name:swing
}
@keyframes tada{
    0%{
        transform:scaleX(1)
    }
    10%,20%{
        transform:scale3d(.9,.9,.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(-.78125deg) skewY(-.78125deg)
    }
    77.7%{
        transform:skewX(.390625deg) skewY(.390625deg)
    }
    88.8%{
        transform:skewX(-.1953125deg) skewY(-.1953125deg)
    }
}
.jello{
    animation-name:jello;
    transform-origin:center
}
@keyframes bounceIn{
    0%,20%,40%,60%,80%,to{
        animation-timing-function:cubic-bezier(.215,.61,.355,1)
    }
    0%{
        opacity:0;
        transform:scale3d(.3,.3,.3)
    }
    20%{
        transform:scale3d(1.1,1.1,1.1)
    }
    40%{
        transform:scale3d(.9,.9,.9)
    }
    60%{
        opacity:1;
        transform:scale3d(1.03,1.03,1.03)
    }
    80%{
        transform:scale3d(.97,.97,.97)
    }
    to{
        opacity:1;
        transform:scaleX(1)
    }
}
.bounceIn{
    animation-name:bounceIn
}
@keyframes bounceInDown{
    0%,60%,75%,90%,to{
        animation-timing-function:cubic-bezier(.215,.61,.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(.215,.61,.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(.215,.61,.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(.215,.61,.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(.9,.9,.9)
    }
    50%,55%{
        opacity:1;
        transform:scale3d(1.1,1.1,1.1)
    }
    to{
        opacity:0;
        transform:scale3d(.3,.3,.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(.95,.95,.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(.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(.3,.3,.3)
    }
    50%{
        opacity:1
    }
}
.zoomIn{
    animation-name:zoomIn
}
@keyframes zoomInDown{
    0%{
        opacity:0;
        transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        animation-timing-function:cubic-bezier(.55,.055,.675,.19)
    }
    60%{
        opacity:1;
        transform:scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function:cubic-bezier(.175,.885,.32,1)
    }
}
.zoomInDown{
    animation-name:zoomInDown
}
@keyframes zoomInLeft{
    0%{
        opacity:0;
        transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        animation-timing-function:cubic-bezier(.55,.055,.675,.19)
    }
    60%{
        opacity:1;
        transform:scale3d(.475,.475,.475) translate3d(10px,0,0);
        animation-timing-function:cubic-bezier(.175,.885,.32,1)
    }
}
.zoomInLeft{
    animation-name:zoomInLeft
}
@keyframes zoomInRight{
    0%{
        opacity:0;
        transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);
        animation-timing-function:cubic-bezier(.55,.055,.675,.19)
    }
    60%{
        opacity:1;
        transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);
        animation-timing-function:cubic-bezier(.175,.885,.32,1)
    }
}
.zoomInRight{
    animation-name:zoomInRight
}
@keyframes zoomInUp{
    0%{
        opacity:0;
        transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);
        animation-timing-function:cubic-bezier(.55,.055,.675,.19)
    }
    60%{
        opacity:1;
        transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function:cubic-bezier(.175,.885,.32,1)
    }
}
.zoomInUp{
    animation-name:zoomInUp
}
@keyframes zoomOut{
    0%{
        opacity:1
    }
    50%{
        opacity:0;
        transform:scale3d(.3,.3,.3)
    }
    to{
        opacity:0
    }
}
.zoomOut{
    animation-name:zoomOut
}
@keyframes zoomOutDown{
    40%{
        opacity:1;
        transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function:cubic-bezier(.55,.055,.675,.19)
    }
    to{
        opacity:0;
        transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform-origin:center bottom;
        animation-timing-function:cubic-bezier(.175,.885,.32,1)
    }
}
.zoomOutDown{
    animation-name:zoomOutDown
}
@keyframes zoomOutLeft{
    40%{
        opacity:1;
        transform:scale3d(.475,.475,.475) translate3d(42px,0,0)
    }
    to{
        opacity:0;
        transform:scale(.1) translate3d(-2000px,0,0);
        transform-origin:left center
    }
}
.zoomOutLeft{
    animation-name:zoomOutLeft
}
@keyframes zoomOutRight{
    40%{
        opacity:1;
        transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }
    to{
        opacity:0;
        transform:scale(.1) translate3d(2000px,0,0);
        transform-origin:right center
    }
}
.zoomOutRight{
    animation-name:zoomOutRight
}
@keyframes zoomOutUp{
    40%{
        opacity:1;
        transform:scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function:cubic-bezier(.55,.055,.675,.19)
    }
    to{
        opacity:0;
        transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform-origin:center bottom;
        animation-timing-function:cubic-bezier(.175,.885,.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
}
/*! * Bootstrap v5.2.3 (https://getbootstrap.com/) * Copyright 2011-2022 The Bootstrap Authors * Copyright 2011-2022 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) */
 :root {
     --bs-blue: #0d6efd;
     --bs-indigo: #6610f2;
     --bs-purple: #6f42c1;
     --bs-pink: #d63384;
     --bs-red: #dc3545;
     --bs-orange: #fd7e14;
     --bs-yellow: #ffc107;
     --bs-green: #198754;
     --bs-teal: #20c997;
     --bs-cyan: #0dcaf0;
     --bs-black: #000;
     --bs-white: #fff;
     --bs-gray: #6c757d;
     --bs-gray-dark: #343a40;
     --bs-gray-100: #f8f9fa;
     --bs-gray-200: #e9ecef;
     --bs-gray-300: #dee2e6;
     --bs-gray-400: #ced4da;
     --bs-gray-500: #adb5bd;
     --bs-gray-600: #6c757d;
     --bs-gray-700: #495057;
     --bs-gray-800: #343a40;
     --bs-gray-900: #212529;
     --bs-primary: #0d6efd;
     --bs-secondary: #6c757d;
     --bs-success: #198754;
     --bs-info: #0dcaf0;
     --bs-warning: #ffc107;
     --bs-danger: #dc3545;
     --bs-light: #f8f9fa;
     --bs-dark: #212529;
     --bs-primary-rgb: 13, 110, 253;
     --bs-secondary-rgb: 108, 117, 125;
     --bs-success-rgb: 25, 135, 84;
     --bs-info-rgb: 13, 202, 240;
     --bs-warning-rgb: 255, 193, 7;
     --bs-danger-rgb: 220, 53, 69;
     --bs-light-rgb: 248, 249, 250;
     --bs-dark-rgb: 33, 37, 41;
     --bs-white-rgb: 255, 255, 255;
     --bs-black-rgb: 0, 0, 0;
     --bs-body-color-rgb: 33, 37, 41;
     --bs-body-bg-rgb: 255, 255, 255;
     --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
     --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
     --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
     --bs-body-font-family: var(--bs-font-sans-serif);
     --bs-body-font-size: 1rem;
     --bs-body-font-weight: 400;
     --bs-body-line-height: 1.5;
     --bs-body-color: #212529;
     --bs-body-bg: #fff;
     --bs-border-width: 1px;
     --bs-border-style: solid;
     --bs-border-color: #dee2e6;
     --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
     --bs-border-radius: 0.375rem;
     --bs-border-radius-sm: 0.25rem;
     --bs-border-radius-lg: 0.5rem;
     --bs-border-radius-xl: 1rem;
     --bs-border-radius-2xl: 2rem;
     --bs-border-radius-pill: 50rem;
     --bs-link-color: #0d6efd;
     --bs-link-hover-color: #0a58ca;
     --bs-code-color: #d63384;
     --bs-highlight-bg: #fff3cd;
}
 *, *::before, *::after {
     box-sizing: border-box;
}
 @media (prefers-reduced-motion: no-preference) {
     :root {
         scroll-behavior: smooth;
    }
}
 body {
     margin: 0;
     font-family: var(--bs-body-font-family);
     font-size: var(--bs-body-font-size);
     font-weight: var(--bs-body-font-weight);
     line-height: var(--bs-body-line-height);
     color: var(--bs-body-color);
     text-align: var(--bs-body-text-align);
     background-color: var(--bs-body-bg);
     -webkit-text-size-adjust: 100%;
     -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
 hr {
     margin: 1rem 0;
     color: inherit;
     border: 0;
     border-top: 1px solid;
     opacity: 0.25;
}
 h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
     margin-top: 0;
     margin-bottom: 0.5rem;
     font-weight: 500;
     line-height: 1.2;
}
 h1, .h1 {
     font-size: calc(1.375rem + 1.5vw);
}
 @media (min-width: 1200px) {
     h1, .h1 {
         font-size: 2.5rem;
    }
}
 h2, .h2 {
     font-size: calc(1.325rem + 0.9vw);
}
 @media (min-width: 1200px) {
     h2, .h2 {
         font-size: 2rem;
    }
}
 h3, .h3 {
     font-size: calc(1.3rem + 0.6vw);
}
 @media (min-width: 1200px) {
     h3, .h3 {
         font-size: 1.75rem;
    }
}
 h4, .h4 {
     font-size: calc(1.275rem + 0.3vw);
}
 @media (min-width: 1200px) {
     h4, .h4 {
         font-size: 1.5rem;
    }
}
 h5, .h5 {
     font-size: 1.25rem;
}
 h6, .h6 {
     font-size: 1rem;
}
 p {
     margin-top: 0;
     margin-bottom: 1rem;
}
 abbr[title] {
     -webkit-text-decoration: underline dotted;
     text-decoration: underline dotted;
     cursor: help;
     -webkit-text-decoration-skip-ink: none;
     text-decoration-skip-ink: none;
}
 address {
     margin-bottom: 1rem;
     font-style: normal;
     line-height: inherit;
}
 ol, ul {
     padding-left: 2rem;
}
 ol, ul, dl {
     margin-top: 0;
     margin-bottom: 1rem;
}
 ol ol, ul ul, ol ul, ul ol {
     margin-bottom: 0;
}
 dt {
     font-weight: 700;
}
 dd {
     margin-bottom: 0.5rem;
     margin-left: 0;
}
 blockquote {
     margin: 0 0 1rem;
}
 b, strong {
     font-weight: bolder;
}
 small, .small {
     font-size: 0.875em;
}
 mark, .mark {
     padding: 0.1875em;
     background-color: var(--bs-highlight-bg);
}
 sub, sup {
     position: relative;
     font-size: 0.75em;
     line-height: 0;
     vertical-align: baseline;
}
 sub {
     bottom: -0.25em;
}
 sup {
     top: -0.5em;
}
 a {
     color: var(--bs-link-color);
     text-decoration: underline;
}
 a:hover {
     color: var(--bs-link-hover-color);
}
 a:not([href]):not([class]), a:not([href]):not([class]):hover {
     color: inherit;
     text-decoration: none;
}
 pre, code, kbd, samp {
     font-family: var(--bs-font-monospace);
     font-size: 1em;
}
 pre {
     display: block;
     margin-top: 0;
     margin-bottom: 1rem;
     overflow: auto;
     font-size: 0.875em;
}
 pre code {
     font-size: inherit;
     color: inherit;
     word-break: normal;
}
 code {
     font-size: 0.875em;
     color: var(--bs-code-color);
     word-wrap: break-word;
}
 a > code {
     color: inherit;
}
 kbd {
     padding: 0.1875rem 0.375rem;
     font-size: 0.875em;
     color: var(--bs-body-bg);
     background-color: var(--bs-body-color);
     border-radius: 0.25rem;
}
 kbd kbd {
     padding: 0;
     font-size: 1em;
}
 figure {
     margin: 0 0 1rem;
}
 img, svg {
     vertical-align: middle;
}
 table {
     caption-side: bottom;
     border-collapse: collapse;
}
 caption {
     padding-top: 0.5rem;
     padding-bottom: 0.5rem;
     color: #6c757d;
     text-align: left;
}
 th {
     text-align: inherit;
     text-align: -webkit-match-parent;
}
 thead, tbody, tfoot, tr, td, th {
     border-color: inherit;
     border-style: solid;
     border-width: 0;
}
 label {
     display: inline-block;
}
 button {
     border-radius: 0;
}
 button:focus:not(:focus-visible) {
     outline: 0;
}
 input, button, select, optgroup, textarea {
     margin: 0;
     font-family: inherit;
     font-size: inherit;
     line-height: inherit;
}
 button, select {
     text-transform: none;
}
 [role=button] {
     cursor: pointer;
}
 select {
     word-wrap: normal;
}
 select:disabled {
     opacity: 1;
}
 [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
     display: none !important;
}
 button, [type=button], [type=reset], [type=submit] {
     -webkit-appearance: button;
}
 button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled) {
     cursor: pointer;
}
 ::-moz-focus-inner {
     padding: 0;
     border-style: none;
}
 textarea {
     resize: vertical;
}
 fieldset {
     min-width: 0;
     padding: 0;
     margin: 0;
     border: 0;
}
 legend {
     float: left;
     width: 100%;
     padding: 0;
     margin-bottom: 0.5rem;
     font-size: calc(1.275rem + 0.3vw);
     line-height: inherit;
}
 @media (min-width: 1200px) {
     legend {
         font-size: 1.5rem;
    }
}
 legend + * {
     clear: left;
}
 ::-webkit-datetime-edit-fields-wrapper, ::-webkit-datetime-edit-text, ::-webkit-datetime-edit-minute, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-year-field {
     padding: 0;
}
 ::-webkit-inner-spin-button {
     height: auto;
}
 [type=search] {
     outline-offset: -2px;
     -webkit-appearance: textfield;
}
/* rtl:raw: [type="tel"], [type="url"], [type="email"], [type="number"] {
     direction: ltr;
}
 */
 ::-webkit-search-decoration {
     -webkit-appearance: none;
}
 ::-webkit-color-swatch-wrapper {
     padding: 0;
}
 ::file-selector-button {
     font: inherit;
     -webkit-appearance: button;
}
 output {
     display: inline-block;
}
 iframe {
     border: 0;
}
 summary {
     display: list-item;
     cursor: pointer;
}
 progress {
     vertical-align: baseline;
}
 [hidden] {
     display: none !important;
}
 .lead {
     font-size: 1.25rem;
     font-weight: 300;
}
 .display-1 {
     font-size: calc(1.625rem + 4.5vw);
     font-weight: 300;
     line-height: 1.2;
}
 @media (min-width: 1200px) {
     .display-1 {
         font-size: 5rem;
    }
}
 .display-2 {
     font-size: calc(1.575rem + 3.9vw);
     font-weight: 300;
     line-height: 1.2;
}
 @media (min-width: 1200px) {
     .display-2 {
         font-size: 4.5rem;
    }
}
 .display-3 {
     font-size: calc(1.525rem + 3.3vw);
     font-weight: 300;
     line-height: 1.2;
}
 @media (min-width: 1200px) {
     .display-3 {
         font-size: 4rem;
    }
}
 .display-4 {
     font-size: calc(1.475rem + 2.7vw);
     font-weight: 300;
     line-height: 1.2;
}
 @media (min-width: 1200px) {
     .display-4 {
         font-size: 3.5rem;
    }
}
 .display-5 {
     font-size: calc(1.425rem + 2.1vw);
     font-weight: 300;
     line-height: 1.2;
}
 @media (min-width: 1200px) {
     .display-5 {
         font-size: 3rem;
    }
}
 .display-6 {
     font-size: calc(1.375rem + 1.5vw);
     font-weight: 300;
     line-height: 1.2;
}
 @media (min-width: 1200px) {
     .display-6 {
         font-size: 2.5rem;
    }
}
 .list-unstyled {
     padding-left: 0;
     list-style: none;
}
 .list-inline {
     padding-left: 0;
     list-style: none;
}
 .list-inline-item {
     display: inline-block;
}
 .list-inline-item:not(:last-child) {
     margin-right: 0.5rem;
}
 .initialism {
     font-size: 0.875em;
     text-transform: uppercase;
}
 .blockquote {
     margin-bottom: 1rem;
     font-size: 1.25rem;
}
 .blockquote > :last-child {
     margin-bottom: 0;
}
 .blockquote-footer {
     margin-top: -1rem;
     margin-bottom: 1rem;
     font-size: 0.875em;
     color: #6c757d;
}
 .blockquote-footer::before {
     content: "— ";
}
 .img-fluid {
     max-width: 100%;
     height: auto;
}
 .img-thumbnail {
     padding: 0.25rem;
     background-color: #fff;
     border: 1px solid var(--bs-border-color);
     border-radius: 0.375rem;
     max-width: 100%;
     height: auto;
}
 .figure {
     display: inline-block;
}
 .figure-img {
     margin-bottom: 0.5rem;
     line-height: 1;
}
 .figure-caption {
     font-size: 0.875em;
     color: #6c757d;
}
 .container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
     --bs-gutter-x: 1.5rem;
     --bs-gutter-y: 0;
     width: 100%;
     padding-right: calc(var(--bs-gutter-x) * 0.5);
     padding-left: calc(var(--bs-gutter-x) * 0.5);
     margin-right: auto;
     margin-left: auto;
}
 @media (min-width: 576px) {
     .container-sm, .container {
         max-width: 540px;
    }
}
 @media (min-width: 768px) {
     .container-md, .container-sm, .container {
         max-width: 720px;
    }
}
 @media (min-width: 992px) {
     .container-lg, .container-md, .container-sm, .container {
         max-width: 960px;
    }
}
 @media (min-width: 1200px) {
     .container-xl, .container-lg, .container-md, .container-sm, .container {
         max-width: 1140px;
    }
}
 @media (min-width: 1400px) {
     .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
         max-width: 1320px;
    }
}
 .row {
     --bs-gutter-x: 1.5rem;
     --bs-gutter-y: 0;
     display: flex;
     flex-wrap: wrap;
     margin-top: calc(-1 * var(--bs-gutter-y));
     margin-right: calc(-0.5 * var(--bs-gutter-x));
     margin-left: calc(-0.5 * var(--bs-gutter-x));
}
 .row > * {
     flex-shrink: 0;
     width: 100%;
     max-width: 100%;
     padding-right: calc(var(--bs-gutter-x) * 0.5);
     padding-left: calc(var(--bs-gutter-x) * 0.5);
     margin-top: var(--bs-gutter-y);
}
 .col {
     flex: 1 0 0%;
}
 .row-cols-auto > * {
     flex: 0 0 auto;
     width: auto;
}
 .row-cols-1 > * {
     flex: 0 0 auto;
     width: 100%;
}
 .row-cols-2 > * {
     flex: 0 0 auto;
     width: 50%;
}
 .row-cols-3 > * {
     flex: 0 0 auto;
     width: 33.3333333333%;
}
 .row-cols-4 > * {
     flex: 0 0 auto;
     width: 25%;
}
 .row-cols-5 > * {
     flex: 0 0 auto;
     width: 20%;
}
 .row-cols-6 > * {
     flex: 0 0 auto;
     width: 16.6666666667%;
}
 .col-auto {
     flex: 0 0 auto;
     width: auto;
}
 .col-1 {
     flex: 0 0 auto;
     width: 8.33333333%;
}
 .col-2 {
     flex: 0 0 auto;
     width: 16.66666667%;
}
 .col-3 {
     flex: 0 0 auto;
     width: 25%;
}
 .col-4 {
     flex: 0 0 auto;
     width: 33.33333333%;
}
 .col-5 {
     flex: 0 0 auto;
     width: 41.66666667%;
}
 .col-6 {
     flex: 0 0 auto;
     width: 50%;
}
 .col-7 {
     flex: 0 0 auto;
     width: 58.33333333%;
}
 .col-8 {
     flex: 0 0 auto;
     width: 66.66666667%;
}
 .col-9 {
     flex: 0 0 auto;
     width: 75%;
}
 .col-10 {
     flex: 0 0 auto;
     width: 83.33333333%;
}
 .col-11 {
     flex: 0 0 auto;
     width: 91.66666667%;
}
 .col-12 {
     flex: 0 0 auto;
     width: 100%;
}
 .offset-1 {
     margin-left: 8.33333333%;
}
 .offset-2 {
     margin-left: 16.66666667%;
}
 .offset-3 {
     margin-left: 25%;
}
 .offset-4 {
     margin-left: 33.33333333%;
}
 .offset-5 {
     margin-left: 41.66666667%;
}
 .offset-6 {
     margin-left: 50%;
}
 .offset-7 {
     margin-left: 58.33333333%;
}
 .offset-8 {
     margin-left: 66.66666667%;
}
 .offset-9 {
     margin-left: 75%;
}
 .offset-10 {
     margin-left: 83.33333333%;
}
 .offset-11 {
     margin-left: 91.66666667%;
}
 .g-0, .gx-0 {
     --bs-gutter-x: 0;
}
 .g-0, .gy-0 {
     --bs-gutter-y: 0;
}
 .g-1, .gx-1 {
     --bs-gutter-x: 0.25rem;
}
 .g-1, .gy-1 {
     --bs-gutter-y: 0.25rem;
}
 .g-2, .gx-2 {
     --bs-gutter-x: 0.5rem;
}
 .g-2, .gy-2 {
     --bs-gutter-y: 0.5rem;
}
 .g-3, .gx-3 {
     --bs-gutter-x: 1rem;
}
 .g-3, .gy-3 {
     --bs-gutter-y: 1rem;
}
 .g-4, .gx-4 {
     --bs-gutter-x: 1.5rem;
}
 .g-4, .gy-4 {
     --bs-gutter-y: 1.5rem;
}
 .g-5, .gx-5 {
     --bs-gutter-x: 3rem;
}
 .g-5, .gy-5 {
     --bs-gutter-y: 3rem;
}
 @media (min-width: 576px) {
     .col-sm {
         flex: 1 0 0%;
    }
     .row-cols-sm-auto > * {
         flex: 0 0 auto;
         width: auto;
    }
     .row-cols-sm-1 > * {
         flex: 0 0 auto;
         width: 100%;
    }
     .row-cols-sm-2 > * {
         flex: 0 0 auto;
         width: 50%;
    }
     .row-cols-sm-3 > * {
         flex: 0 0 auto;
         width: 33.3333333333%;
    }
     .row-cols-sm-4 > * {
         flex: 0 0 auto;
         width: 25%;
    }
     .row-cols-sm-5 > * {
         flex: 0 0 auto;
         width: 20%;
    }
     .row-cols-sm-6 > * {
         flex: 0 0 auto;
         width: 16.6666666667%;
    }
     .col-sm-auto {
         flex: 0 0 auto;
         width: auto;
    }
     .col-sm-1 {
         flex: 0 0 auto;
         width: 8.33333333%;
    }
     .col-sm-2 {
         flex: 0 0 auto;
         width: 16.66666667%;
    }
     .col-sm-3 {
         flex: 0 0 auto;
         width: 25%;
    }
     .col-sm-4 {
         flex: 0 0 auto;
         width: 33.33333333%;
    }
     .col-sm-5 {
         flex: 0 0 auto;
         width: 41.66666667%;
    }
     .col-sm-6 {
         flex: 0 0 auto;
         width: 50%;
    }
     .col-sm-7 {
         flex: 0 0 auto;
         width: 58.33333333%;
    }
     .col-sm-8 {
         flex: 0 0 auto;
         width: 66.66666667%;
    }
     .col-sm-9 {
         flex: 0 0 auto;
         width: 75%;
    }
     .col-sm-10 {
         flex: 0 0 auto;
         width: 83.33333333%;
    }
     .col-sm-11 {
         flex: 0 0 auto;
         width: 91.66666667%;
    }
     .col-sm-12 {
         flex: 0 0 auto;
         width: 100%;
    }
     .offset-sm-0 {
         margin-left: 0;
    }
     .offset-sm-1 {
         margin-left: 8.33333333%;
    }
     .offset-sm-2 {
         margin-left: 16.66666667%;
    }
     .offset-sm-3 {
         margin-left: 25%;
    }
     .offset-sm-4 {
         margin-left: 33.33333333%;
    }
     .offset-sm-5 {
         margin-left: 41.66666667%;
    }
     .offset-sm-6 {
         margin-left: 50%;
    }
     .offset-sm-7 {
         margin-left: 58.33333333%;
    }
     .offset-sm-8 {
         margin-left: 66.66666667%;
    }
     .offset-sm-9 {
         margin-left: 75%;
    }
     .offset-sm-10 {
         margin-left: 83.33333333%;
    }
     .offset-sm-11 {
         margin-left: 91.66666667%;
    }
     .g-sm-0, .gx-sm-0 {
         --bs-gutter-x: 0;
    }
     .g-sm-0, .gy-sm-0 {
         --bs-gutter-y: 0;
    }
     .g-sm-1, .gx-sm-1 {
         --bs-gutter-x: 0.25rem;
    }
     .g-sm-1, .gy-sm-1 {
         --bs-gutter-y: 0.25rem;
    }
     .g-sm-2, .gx-sm-2 {
         --bs-gutter-x: 0.5rem;
    }
     .g-sm-2, .gy-sm-2 {
         --bs-gutter-y: 0.5rem;
    }
     .g-sm-3, .gx-sm-3 {
         --bs-gutter-x: 1rem;
    }
     .g-sm-3, .gy-sm-3 {
         --bs-gutter-y: 1rem;
    }
     .g-sm-4, .gx-sm-4 {
         --bs-gutter-x: 1.5rem;
    }
     .g-sm-4, .gy-sm-4 {
         --bs-gutter-y: 1.5rem;
    }
     .g-sm-5, .gx-sm-5 {
         --bs-gutter-x: 3rem;
    }
     .g-sm-5, .gy-sm-5 {
         --bs-gutter-y: 3rem;
    }
}
 @media (min-width: 768px) {
     .col-md {
         flex: 1 0 0%;
    }
     .row-cols-md-auto > * {
         flex: 0 0 auto;
         width: auto;
    }
     .row-cols-md-1 > * {
         flex: 0 0 auto;
         width: 100%;
    }
     .row-cols-md-2 > * {
         flex: 0 0 auto;
         width: 50%;
    }
     .row-cols-md-3 > * {
         flex: 0 0 auto;
         width: 33.3333333333%;
    }
     .row-cols-md-4 > * {
         flex: 0 0 auto;
         width: 25%;
    }
     .row-cols-md-5 > * {
         flex: 0 0 auto;
         width: 20%;
    }
     .row-cols-md-6 > * {
         flex: 0 0 auto;
         width: 16.6666666667%;
    }
     .col-md-auto {
         flex: 0 0 auto;
         width: auto;
    }
     .col-md-1 {
         flex: 0 0 auto;
         width: 8.33333333%;
    }
     .col-md-2 {
         flex: 0 0 auto;
         width: 16.66666667%;
    }
     .col-md-3 {
         flex: 0 0 auto;
         width: 25%;
    }
     .col-md-4 {
         flex: 0 0 auto;
         width: 33.33333333%;
    }
     .col-md-5 {
         flex: 0 0 auto;
         width: 41.66666667%;
    }
     .col-md-6 {
         flex: 0 0 auto;
         width: 50%;
    }
     .col-md-7 {
         flex: 0 0 auto;
         width: 58.33333333%;
    }
     .col-md-8 {
         flex: 0 0 auto;
         width: 66.66666667%;
    }
     .col-md-9 {
         flex: 0 0 auto;
         width: 75%;
    }
     .col-md-10 {
         flex: 0 0 auto;
         width: 83.33333333%;
    }
     .col-md-11 {
         flex: 0 0 auto;
         width: 91.66666667%;
    }
     .col-md-12 {
         flex: 0 0 auto;
         width: 100%;
    }
     .offset-md-0 {
         margin-left: 0;
    }
     .offset-md-1 {
         margin-left: 8.33333333%;
    }
     .offset-md-2 {
         margin-left: 16.66666667%;
    }
     .offset-md-3 {
         margin-left: 25%;
    }
     .offset-md-4 {
         margin-left: 33.33333333%;
    }
     .offset-md-5 {
         margin-left: 41.66666667%;
    }
     .offset-md-6 {
         margin-left: 50%;
    }
     .offset-md-7 {
         margin-left: 58.33333333%;
    }
     .offset-md-8 {
         margin-left: 66.66666667%;
    }
     .offset-md-9 {
         margin-left: 75%;
    }
     .offset-md-10 {
         margin-left: 83.33333333%;
    }
     .offset-md-11 {
         margin-left: 91.66666667%;
    }
     .g-md-0, .gx-md-0 {
         --bs-gutter-x: 0;
    }
     .g-md-0, .gy-md-0 {
         --bs-gutter-y: 0;
    }
     .g-md-1, .gx-md-1 {
         --bs-gutter-x: 0.25rem;
    }
     .g-md-1, .gy-md-1 {
         --bs-gutter-y: 0.25rem;
    }
     .g-md-2, .gx-md-2 {
         --bs-gutter-x: 0.5rem;
    }
     .g-md-2, .gy-md-2 {
         --bs-gutter-y: 0.5rem;
    }
     .g-md-3, .gx-md-3 {
         --bs-gutter-x: 1rem;
    }
     .g-md-3, .gy-md-3 {
         --bs-gutter-y: 1rem;
    }
     .g-md-4, .gx-md-4 {
         --bs-gutter-x: 1.5rem;
    }
     .g-md-4, .gy-md-4 {
         --bs-gutter-y: 1.5rem;
    }
     .g-md-5, .gx-md-5 {
         --bs-gutter-x: 3rem;
    }
     .g-md-5, .gy-md-5 {
         --bs-gutter-y: 3rem;
    }
}
 @media (min-width: 992px) {
     .col-lg {
         flex: 1 0 0%;
    }
     .row-cols-lg-auto > * {
         flex: 0 0 auto;
         width: auto;
    }
     .row-cols-lg-1 > * {
         flex: 0 0 auto;
         width: 100%;
    }
     .row-cols-lg-2 > * {
         flex: 0 0 auto;
         width: 50%;
    }
     .row-cols-lg-3 > * {
         flex: 0 0 auto;
         width: 33.3333333333%;
    }
     .row-cols-lg-4 > * {
         flex: 0 0 auto;
         width: 25%;
    }
     .row-cols-lg-5 > * {
         flex: 0 0 auto;
         width: 20%;
    }
     .row-cols-lg-6 > * {
         flex: 0 0 auto;
         width: 16.6666666667%;
    }
     .col-lg-auto {
         flex: 0 0 auto;
         width: auto;
    }
     .col-lg-1 {
         flex: 0 0 auto;
         width: 8.33333333%;
    }
     .col-lg-2 {
         flex: 0 0 auto;
         width: 16.66666667%;
    }
     .col-lg-3 {
         flex: 0 0 auto;
         width: 25%;
    }
     .col-lg-4 {
         flex: 0 0 auto;
         width: 33.33333333%;
    }
     .col-lg-5 {
         flex: 0 0 auto;
         width: 41.66666667%;
    }
     .col-lg-6 {
         flex: 0 0 auto;
         width: 50%;
    }
     .col-lg-7 {
         flex: 0 0 auto;
         width: 58.33333333%;
    }
     .col-lg-8 {
         flex: 0 0 auto;
         width: 66.66666667%;
    }
     .col-lg-9 {
         flex: 0 0 auto;
         width: 75%;
    }
     .col-lg-10 {
         flex: 0 0 auto;
         width: 83.33333333%;
    }
     .col-lg-11 {
         flex: 0 0 auto;
         width: 91.66666667%;
    }
     .col-lg-12 {
         flex: 0 0 auto;
         width: 100%;
    }
     .offset-lg-0 {
         margin-left: 0;
    }
     .offset-lg-1 {
         margin-left: 8.33333333%;
    }
     .offset-lg-2 {
         margin-left: 16.66666667%;
    }
     .offset-lg-3 {
         margin-left: 25%;
    }
     .offset-lg-4 {
         margin-left: 33.33333333%;
    }
     .offset-lg-5 {
         margin-left: 41.66666667%;
    }
     .offset-lg-6 {
         margin-left: 50%;
    }
     .offset-lg-7 {
         margin-left: 58.33333333%;
    }
     .offset-lg-8 {
         margin-left: 66.66666667%;
    }
     .offset-lg-9 {
         margin-left: 75%;
    }
     .offset-lg-10 {
         margin-left: 83.33333333%;
    }
     .offset-lg-11 {
         margin-left: 91.66666667%;
    }
     .g-lg-0, .gx-lg-0 {
         --bs-gutter-x: 0;
    }
     .g-lg-0, .gy-lg-0 {
         --bs-gutter-y: 0;
    }
     .g-lg-1, .gx-lg-1 {
         --bs-gutter-x: 0.25rem;
    }
     .g-lg-1, .gy-lg-1 {
         --bs-gutter-y: 0.25rem;
    }
     .g-lg-2, .gx-lg-2 {
         --bs-gutter-x: 0.5rem;
    }
     .g-lg-2, .gy-lg-2 {
         --bs-gutter-y: 0.5rem;
    }
     .g-lg-3, .gx-lg-3 {
         --bs-gutter-x: 1rem;
    }
     .g-lg-3, .gy-lg-3 {
         --bs-gutter-y: 1rem;
    }
     .g-lg-4, .gx-lg-4 {
         --bs-gutter-x: 1.5rem;
    }
     .g-lg-4, .gy-lg-4 {
         --bs-gutter-y: 1.5rem;
    }
     .g-lg-5, .gx-lg-5 {
         --bs-gutter-x: 3rem;
    }
     .g-lg-5, .gy-lg-5 {
         --bs-gutter-y: 3rem;
    }
}
 @media (min-width: 1200px) {
     .col-xl {
         flex: 1 0 0%;
    }
     .row-cols-xl-auto > * {
         flex: 0 0 auto;
         width: auto;
    }
     .row-cols-xl-1 > * {
         flex: 0 0 auto;
         width: 100%;
    }
     .row-cols-xl-2 > * {
         flex: 0 0 auto;
         width: 50%;
    }
     .row-cols-xl-3 > * {
         flex: 0 0 auto;
         width: 33.3333333333%;
    }
     .row-cols-xl-4 > * {
         flex: 0 0 auto;
         width: 25%;
    }
     .row-cols-xl-5 > * {
         flex: 0 0 auto;
         width: 20%;
    }
     .row-cols-xl-6 > * {
         flex: 0 0 auto;
         width: 16.6666666667%;
    }
     .col-xl-auto {
         flex: 0 0 auto;
         width: auto;
    }
     .col-xl-1 {
         flex: 0 0 auto;
         width: 8.33333333%;
    }
     .col-xl-2 {
         flex: 0 0 auto;
         width: 16.66666667%;
    }
     .col-xl-3 {
         flex: 0 0 auto;
         width: 25%;
    }
     .col-xl-4 {
         flex: 0 0 auto;
         width: 33.33333333%;
    }
     .col-xl-5 {
         flex: 0 0 auto;
         width: 41.66666667%;
    }
     .col-xl-6 {
         flex: 0 0 auto;
         width: 50%;
    }
     .col-xl-7 {
         flex: 0 0 auto;
         width: 58.33333333%;
    }
     .col-xl-8 {
         flex: 0 0 auto;
         width: 66.66666667%;
    }
     .col-xl-9 {
         flex: 0 0 auto;
         width: 75%;
    }
     .col-xl-10 {
         flex: 0 0 auto;
         width: 83.33333333%;
    }
     .col-xl-11 {
         flex: 0 0 auto;
         width: 91.66666667%;
    }
     .col-xl-12 {
         flex: 0 0 auto;
         width: 100%;
    }
     .offset-xl-0 {
         margin-left: 0;
    }
     .offset-xl-1 {
         margin-left: 8.33333333%;
    }
     .offset-xl-2 {
         margin-left: 16.66666667%;
    }
     .offset-xl-3 {
         margin-left: 25%;
    }
     .offset-xl-4 {
         margin-left: 33.33333333%;
    }
     .offset-xl-5 {
         margin-left: 41.66666667%;
    }
     .offset-xl-6 {
         margin-left: 50%;
    }
     .offset-xl-7 {
         margin-left: 58.33333333%;
    }
     .offset-xl-8 {
         margin-left: 66.66666667%;
    }
     .offset-xl-9 {
         margin-left: 75%;
    }
     .offset-xl-10 {
         margin-left: 83.33333333%;
    }
     .offset-xl-11 {
         margin-left: 91.66666667%;
    }
     .g-xl-0, .gx-xl-0 {
         --bs-gutter-x: 0;
    }
     .g-xl-0, .gy-xl-0 {
         --bs-gutter-y: 0;
    }
     .g-xl-1, .gx-xl-1 {
         --bs-gutter-x: 0.25rem;
    }
     .g-xl-1, .gy-xl-1 {
         --bs-gutter-y: 0.25rem;
    }
     .g-xl-2, .gx-xl-2 {
         --bs-gutter-x: 0.5rem;
    }
     .g-xl-2, .gy-xl-2 {
         --bs-gutter-y: 0.5rem;
    }
     .g-xl-3, .gx-xl-3 {
         --bs-gutter-x: 1rem;
    }
     .g-xl-3, .gy-xl-3 {
         --bs-gutter-y: 1rem;
    }
     .g-xl-4, .gx-xl-4 {
         --bs-gutter-x: 1.5rem;
    }
     .g-xl-4, .gy-xl-4 {
         --bs-gutter-y: 1.5rem;
    }
     .g-xl-5, .gx-xl-5 {
         --bs-gutter-x: 3rem;
    }
     .g-xl-5, .gy-xl-5 {
         --bs-gutter-y: 3rem;
    }
}
 @media (min-width: 1400px) {
     .col-xxl {
         flex: 1 0 0%;
    }
     .row-cols-xxl-auto > * {
         flex: 0 0 auto;
         width: auto;
    }
     .row-cols-xxl-1 > * {
         flex: 0 0 auto;
         width: 100%;
    }
     .row-cols-xxl-2 > * {
         flex: 0 0 auto;
         width: 50%;
    }
     .row-cols-xxl-3 > * {
         flex: 0 0 auto;
         width: 33.3333333333%;
    }
     .row-cols-xxl-4 > * {
         flex: 0 0 auto;
         width: 25%;
    }
     .row-cols-xxl-5 > * {
         flex: 0 0 auto;
         width: 20%;
    }
     .row-cols-xxl-6 > * {
         flex: 0 0 auto;
         width: 16.6666666667%;
    }
     .col-xxl-auto {
         flex: 0 0 auto;
         width: auto;
    }
     .col-xxl-1 {
         flex: 0 0 auto;
         width: 8.33333333%;
    }
     .col-xxl-2 {
         flex: 0 0 auto;
         width: 16.66666667%;
    }
     .col-xxl-3 {
         flex: 0 0 auto;
         width: 25%;
    }
     .col-xxl-4 {
         flex: 0 0 auto;
         width: 33.33333333%;
    }
     .col-xxl-5 {
         flex: 0 0 auto;
         width: 41.66666667%;
    }
     .col-xxl-6 {
         flex: 0 0 auto;
         width: 50%;
    }
     .col-xxl-7 {
         flex: 0 0 auto;
         width: 58.33333333%;
    }
     .col-xxl-8 {
         flex: 0 0 auto;
         width: 66.66666667%;
    }
     .col-xxl-9 {
         flex: 0 0 auto;
         width: 75%;
    }
     .col-xxl-10 {
         flex: 0 0 auto;
         width: 83.33333333%;
    }
     .col-xxl-11 {
         flex: 0 0 auto;
         width: 91.66666667%;
    }
     .col-xxl-12 {
         flex: 0 0 auto;
         width: 100%;
    }
     .offset-xxl-0 {
         margin-left: 0;
    }
     .offset-xxl-1 {
         margin-left: 8.33333333%;
    }
     .offset-xxl-2 {
         margin-left: 16.66666667%;
    }
     .offset-xxl-3 {
         margin-left: 25%;
    }
     .offset-xxl-4 {
         margin-left: 33.33333333%;
    }
     .offset-xxl-5 {
         margin-left: 41.66666667%;
    }
     .offset-xxl-6 {
         margin-left: 50%;
    }
     .offset-xxl-7 {
         margin-left: 58.33333333%;
    }
     .offset-xxl-8 {
         margin-left: 66.66666667%;
    }
     .offset-xxl-9 {
         margin-left: 75%;
    }
     .offset-xxl-10 {
         margin-left: 83.33333333%;
    }
     .offset-xxl-11 {
         margin-left: 91.66666667%;
    }
     .g-xxl-0, .gx-xxl-0 {
         --bs-gutter-x: 0;
    }
     .g-xxl-0, .gy-xxl-0 {
         --bs-gutter-y: 0;
    }
     .g-xxl-1, .gx-xxl-1 {
         --bs-gutter-x: 0.25rem;
    }
     .g-xxl-1, .gy-xxl-1 {
         --bs-gutter-y: 0.25rem;
    }
     .g-xxl-2, .gx-xxl-2 {
         --bs-gutter-x: 0.5rem;
    }
     .g-xxl-2, .gy-xxl-2 {
         --bs-gutter-y: 0.5rem;
    }
     .g-xxl-3, .gx-xxl-3 {
         --bs-gutter-x: 1rem;
    }
     .g-xxl-3, .gy-xxl-3 {
         --bs-gutter-y: 1rem;
    }
     .g-xxl-4, .gx-xxl-4 {
         --bs-gutter-x: 1.5rem;
    }
     .g-xxl-4, .gy-xxl-4 {
         --bs-gutter-y: 1.5rem;
    }
     .g-xxl-5, .gx-xxl-5 {
         --bs-gutter-x: 3rem;
    }
     .g-xxl-5, .gy-xxl-5 {
         --bs-gutter-y: 3rem;
    }
}
 .table {
     --bs-table-color: var(--bs-body-color);
     --bs-table-bg: transparent;
     --bs-table-border-color: var(--bs-border-color);
     --bs-table-accent-bg: transparent;
     --bs-table-striped-color: var(--bs-body-color);
     --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
     --bs-table-active-color: var(--bs-body-color);
     --bs-table-active-bg: rgba(0, 0, 0, 0.1);
     --bs-table-hover-color: var(--bs-body-color);
     --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
     width: 100%;
     margin-bottom: 1rem;
     color: var(--bs-table-color);
     vertical-align: top;
     border-color: var(--bs-table-border-color);
}
 .table > :not(caption) > * > * {
     padding: 0.5rem 0.5rem;
     background-color: var(--bs-table-bg);
     border-bottom-width: 1px;
     box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
 .table > tbody {
     vertical-align: inherit;
}
 .table > thead {
     vertical-align: bottom;
}
 .table-group-divider {
     border-top: 2px solid currentcolor;
}
 .caption-top {
     caption-side: top;
}
 .table-sm > :not(caption) > * > * {
     padding: 0.25rem 0.25rem;
}
 .table-bordered > :not(caption) > * {
     border-width: 1px 0;
}
 .table-bordered > :not(caption) > * > * {
     border-width: 0 1px;
}
 .table-borderless > :not(caption) > * > * {
     border-bottom-width: 0;
}
 .table-borderless > :not(:first-child) {
     border-top-width: 0;
}
 .table-striped > tbody > tr:nth-of-type(odd) > * {
     --bs-table-accent-bg: var(--bs-table-striped-bg);
     color: var(--bs-table-striped-color);
}
 .table-striped-columns > :not(caption) > tr > :nth-child(even) {
     --bs-table-accent-bg: var(--bs-table-striped-bg);
     color: var(--bs-table-striped-color);
}
 .table-active {
     --bs-table-accent-bg: var(--bs-table-active-bg);
     color: var(--bs-table-active-color);
}
 .table-hover > tbody > tr:hover > * {
     --bs-table-accent-bg: var(--bs-table-hover-bg);
     color: var(--bs-table-hover-color);
}
 .table-primary {
     --bs-table-color: #000;
     --bs-table-bg: #cfe2ff;
     --bs-table-border-color: #bacbe6;
     --bs-table-striped-bg: #c5d7f2;
     --bs-table-striped-color: #000;
     --bs-table-active-bg: #bacbe6;
     --bs-table-active-color: #000;
     --bs-table-hover-bg: #bfd1ec;
     --bs-table-hover-color: #000;
     color: var(--bs-table-color);
     border-color: var(--bs-table-border-color);
}
 .table-secondary {
     --bs-table-color: #000;
     --bs-table-bg: #e2e3e5;
     --bs-table-border-color: #cbccce;
     --bs-table-striped-bg: #d7d8da;
     --bs-table-striped-color: #000;
     --bs-table-active-bg: #cbccce;
     --bs-table-active-color: #000;
     --bs-table-hover-bg: #d1d2d4;
     --bs-table-hover-color: #000;
     color: var(--bs-table-color);
     border-color: var(--bs-table-border-color);
}
 .table-success {
     --bs-table-color: #000;
     --bs-table-bg: #d1e7dd;
     --bs-table-border-color: #bcd0c7;
     --bs-table-striped-bg: #c7dbd2;
     --bs-table-striped-color: #000;
     --bs-table-active-bg: #bcd0c7;
     --bs-table-active-color: #000;
     --bs-table-hover-bg: #c1d6cc;
     --bs-table-hover-color: #000;
     color: var(--bs-table-color);
     border-color: var(--bs-table-border-color);
}
 .table-info {
     --bs-table-color: #000;
     --bs-table-bg: #cff4fc;
     --bs-table-border-color: #badce3;
     --bs-table-striped-bg: #c5e8ef;
     --bs-table-striped-color: #000;
     --bs-table-active-bg: #badce3;
     --bs-table-active-color: #000;
     --bs-table-hover-bg: #bfe2e9;
     --bs-table-hover-color: #000;
     color: var(--bs-table-color);
     border-color: var(--bs-table-border-color);
}
 .table-warning {
     --bs-table-color: #000;
     --bs-table-bg: #fff3cd;
     --bs-table-border-color: #e6dbb9;
     --bs-table-striped-bg: #f2e7c3;
     --bs-table-striped-color: #000;
     --bs-table-active-bg: #e6dbb9;
     --bs-table-active-color: #000;
     --bs-table-hover-bg: #ece1be;
     --bs-table-hover-color: #000;
     color: var(--bs-table-color);
     border-color: var(--bs-table-border-color);
}
 .table-danger {
     --bs-table-color: #000;
     --bs-table-bg: #f8d7da;
     --bs-table-border-color: #dfc2c4;
     --bs-table-striped-bg: #eccccf;
     --bs-table-striped-color: #000;
     --bs-table-active-bg: #dfc2c4;
     --bs-table-active-color: #000;
     --bs-table-hover-bg: #e5c7ca;
     --bs-table-hover-color: #000;
     color: var(--bs-table-color);
     border-color: var(--bs-table-border-color);
}
 .table-light {
     --bs-table-color: #000;
     --bs-table-bg: #f8f9fa;
     --bs-table-border-color: #dfe0e1;
     --bs-table-striped-bg: #ecedee;
     --bs-table-striped-color: #000;
     --bs-table-active-bg: #dfe0e1;
     --bs-table-active-color: #000;
     --bs-table-hover-bg: #e5e6e7;
     --bs-table-hover-color: #000;
     color: var(--bs-table-color);
     border-color: var(--bs-table-border-color);
}
 .table-dark {
     --bs-table-color: #fff;
     --bs-table-bg: #212529;
     --bs-table-border-color: #373b3e;
     --bs-table-striped-bg: #2c3034;
     --bs-table-striped-color: #fff;
     --bs-table-active-bg: #373b3e;
     --bs-table-active-color: #fff;
     --bs-table-hover-bg: #323539;
     --bs-table-hover-color: #fff;
     color: var(--bs-table-color);
     border-color: var(--bs-table-border-color);
}
 .table-responsive {
     overflow-x: auto;
     -webkit-overflow-scrolling: touch;
}
 @media (max-width: 575.98px) {
     .table-responsive-sm {
         overflow-x: auto;
         -webkit-overflow-scrolling: touch;
    }
}
 @media (max-width: 767.98px) {
     .table-responsive-md {
         overflow-x: auto;
         -webkit-overflow-scrolling: touch;
    }
}
 @media (max-width: 991.98px) {
     .table-responsive-lg {
         overflow-x: auto;
         -webkit-overflow-scrolling: touch;
    }
}
 @media (max-width: 1199.98px) {
     .table-responsive-xl {
         overflow-x: auto;
         -webkit-overflow-scrolling: touch;
    }
}
 @media (max-width: 1399.98px) {
     .table-responsive-xxl {
         overflow-x: auto;
         -webkit-overflow-scrolling: touch;
    }
}
 .form-label {
     margin-bottom: 0.5rem;
}
 .col-form-label {
     padding-top: calc(0.375rem + 1px);
     padding-bottom: calc(0.375rem + 1px);
     margin-bottom: 0;
     font-size: inherit;
     line-height: 1.5;
}
 .col-form-label-lg {
     padding-top: calc(0.5rem + 1px);
     padding-bottom: calc(0.5rem + 1px);
     font-size: 1.25rem;
}
 .col-form-label-sm {
     padding-top: calc(0.25rem + 1px);
     padding-bottom: calc(0.25rem + 1px);
     font-size: 0.875rem;
}
 .form-text {
     margin-top: 0.25rem;
     font-size: 0.875em;
     color: #6c757d;
}
 .form-control {
     display: block;
     width: 100%;
     padding: 0.375rem 0.75rem;
     font-size: 1rem;
     font-weight: 400;
     line-height: 1.5;
     color: #212529;
     background-color: #fff;
     background-clip: padding-box;
     border: 1px solid #ced4da;
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     border-radius: 0.375rem;
     transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
 @media (prefers-reduced-motion: reduce) {
     .form-control {
         transition: none;
    }
}
 .form-control[type=file] {
     overflow: hidden;
}
 .form-control[type=file]:not(:disabled):not([readonly]) {
     cursor: pointer;
}
 .form-control:focus {
     color: #212529;
     background-color: #fff;
     border-color: #86b7fe;
     outline: 0;
     box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
 .form-control::-webkit-date-and-time-value {
     height: 1.5em;
}
 .form-control::-moz-placeholder {
     color: #6c757d;
     opacity: 1;
}
 .form-control::placeholder {
     color: #6c757d;
     opacity: 1;
}
 .form-control:disabled {
     background-color: #e9ecef;
     opacity: 1;
}
 .form-control::file-selector-button {
     padding: 0.375rem 0.75rem;
     margin: -0.375rem -0.75rem;
     -webkit-margin-end: 0.75rem;
     margin-inline-end: 0.75rem;
     color: #212529;
     background-color: #e9ecef;
     pointer-events: none;
     border-color: inherit;
     border-style: solid;
     border-width: 0;
     border-inline-end-width: 1px;
     border-radius: 0;
     transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
 @media (prefers-reduced-motion: reduce) {
     .form-control::file-selector-button {
         transition: none;
    }
}
 .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
     background-color: #dde0e3;
}
 .form-control-plaintext {
     display: block;
     width: 100%;
     padding: 0.375rem 0;
     margin-bottom: 0;
     line-height: 1.5;
     color: #212529;
     background-color: transparent;
     border: solid transparent;
     border-width: 1px 0;
}
 .form-control-plaintext:focus {
     outline: 0;
}
 .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
     padding-right: 0;
     padding-left: 0;
}
 .form-control-sm {
     min-height: calc(1.5em + 0.5rem + 2px);
     padding: 0.25rem 0.5rem;
     font-size: 0.875rem;
     border-radius: 0.25rem;
}
 .form-control-sm::file-selector-button {
     padding: 0.25rem 0.5rem;
     margin: -0.25rem -0.5rem;
     -webkit-margin-end: 0.5rem;
     margin-inline-end: 0.5rem;
}
 .form-control-lg {
     min-height: calc(1.5em + 1rem + 2px);
     padding: 0.5rem 1rem;
     font-size: 1.25rem;
     border-radius: 0.5rem;
}
 .form-control-lg::file-selector-button {
     padding: 0.5rem 1rem;
     margin: -0.5rem -1rem;
     -webkit-margin-end: 1rem;
     margin-inline-end: 1rem;
}
 textarea.form-control {
     min-height: calc(1.5em + 0.75rem + 2px);
}
 textarea.form-control-sm {
     min-height: calc(1.5em + 0.5rem + 2px);
}
 textarea.form-control-lg {
     min-height: calc(1.5em + 1rem + 2px);
}
 .form-control-color {
     width: 3rem;
     height: calc(1.5em + 0.75rem + 2px);
     padding: 0.375rem;
}
 .form-control-color:not(:disabled):not([readonly]) {
     cursor: pointer;
}
 .form-control-color::-moz-color-swatch {
     border: 0 !important;
     border-radius: 0.375rem;
}
 .form-control-color::-webkit-color-swatch {
     border-radius: 0.375rem;
}
 .form-control-color.form-control-sm {
     height: calc(1.5em + 0.5rem + 2px);
}
 .form-control-color.form-control-lg {
     height: calc(1.5em + 1rem + 2px);
}
 .form-select {
     display: block;
     width: 100%;
     padding: 0.375rem 2.25rem 0.375rem 0.75rem;
     -moz-padding-start: calc(0.75rem - 3px);
     font-size: 1rem;
     font-weight: 400;
     line-height: 1.5;
     color: #212529;
     background-color: #fff;
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
     background-repeat: no-repeat;
     background-position: right 0.75rem center;
     background-size: 16px 12px;
     border: 1px solid #ced4da;
     border-radius: 0.375rem;
     transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
}
 @media (prefers-reduced-motion: reduce) {
     .form-select {
         transition: none;
    }
}
 .form-select:focus {
     border-color: #86b7fe;
     outline: 0;
     box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
 .form-select[multiple], .form-select[size]:not([size="1"]) {
     padding-right: 0.75rem;
     background-image: none;
}
 .form-select:disabled {
     background-color: #e9ecef;
}
 .form-select:-moz-focusring {
     color: transparent;
     text-shadow: 0 0 0 #212529;
}
 .form-select-sm {
     padding-top: 0.25rem;
     padding-bottom: 0.25rem;
     padding-left: 0.5rem;
     font-size: 0.875rem;
     border-radius: 0.25rem;
}
 .form-select-lg {
     padding-top: 0.5rem;
     padding-bottom: 0.5rem;
     padding-left: 1rem;
     font-size: 1.25rem;
     border-radius: 0.5rem;
}
 .form-check {
     display: block;
     min-height: 1.5rem;
     padding-left: 1.5em;
     margin-bottom: 0.125rem;
}
 .form-check .form-check-input {
     float: left;
     margin-left: -1.5em;
}
 .form-check-reverse {
     padding-right: 1.5em;
     padding-left: 0;
     text-align: right;
}
 .form-check-reverse .form-check-input {
     float: right;
     margin-right: -1.5em;
     margin-left: 0;
}
 .form-check-input {
     width: 1em;
     height: 1em;
     margin-top: 0.25em;
     vertical-align: top;
     background-color: #fff;
     background-repeat: no-repeat;
     background-position: center;
     background-size: contain;
     border: 1px solid rgba(0, 0, 0, 0.25);
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     -webkit-print-color-adjust: exact;
     print-color-adjust: exact;
}
 .form-check-input[type=checkbox] {
     border-radius: 0.25em;
}
 .form-check-input[type=radio] {
     border-radius: 50%;
}
 .form-check-input:active {
     filter: brightness(90%);
}
 .form-check-input:focus {
     border-color: #86b7fe;
     outline: 0;
     box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
 .form-check-input:checked {
     background-color: #0d6efd;
     border-color: #0d6efd;
}
 .form-check-input:checked[type=checkbox] {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
 .form-check-input:checked[type=radio] {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
 .form-check-input[type=checkbox]:indeterminate {
     background-color: #0d6efd;
     border-color: #0d6efd;
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
 .form-check-input:disabled {
     pointer-events: none;
     filter: none;
     opacity: 0.5;
}
 .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
     cursor: default;
     opacity: 0.5;
}
 .form-switch {
     padding-left: 2.5em;
}
 .form-switch .form-check-input {
     width: 2em;
     margin-left: -2.5em;
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
     background-position: left center;
     border-radius: 2em;
     transition: background-position 0.15s ease-in-out;
}
 @media (prefers-reduced-motion: reduce) {
     .form-switch .form-check-input {
         transition: none;
    }
}
 .form-switch .form-check-input:focus {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
 .form-switch .form-check-input:checked {
     background-position: right center;
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
 .form-switch.form-check-reverse {
     padding-right: 2.5em;
     padding-left: 0;
}
 .form-switch.form-check-reverse .form-check-input {
     margin-right: -2.5em;
     margin-left: 0;
}
 .form-check-inline {
     display: inline-block;
     margin-right: 1rem;
}
 .btn-check {
     position: absolute;
     clip: rect(0, 0, 0, 0);
     pointer-events: none;
}
 .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
     pointer-events: none;
     filter: none;
     opacity: 0.65;
}
 .form-range {
     width: 100%;
     height: 1.5rem;
     padding: 0;
     background-color: transparent;
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
}
 .form-range:focus {
     outline: 0;
}
 .form-range:focus::-webkit-slider-thumb {
     box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
 .form-range:focus::-moz-range-thumb {
     box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
 .form-range::-moz-focus-outer {
     border: 0;
}
 .form-range::-webkit-slider-thumb {
     width: 1rem;
     height: 1rem;
     margin-top: -0.25rem;
     background-color: #0d6efd;
     border: 0;
     border-radius: 1rem;
     -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
     transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
     -webkit-appearance: none;
     appearance: none;
}
 @media (prefers-reduced-motion: reduce) {
     .form-range::-webkit-slider-thumb {
         -webkit-transition: none;
         transition: none;
    }
}
 .form-range::-webkit-slider-thumb:active {
     background-color: #b6d4fe;
}
 .form-range::-webkit-slider-runnable-track {
     width: 100%;
     height: 0.5rem;
     color: transparent;
     cursor: pointer;
     background-color: #dee2e6;
     border-color: transparent;
     border-radius: 1rem;
}
 .form-range::-moz-range-thumb {
     width: 1rem;
     height: 1rem;
     background-color: #0d6efd;
     border: 0;
     border-radius: 1rem;
     -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
     transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
     -moz-appearance: none;
     appearance: none;
}
 @media (prefers-reduced-motion: reduce) {
     .form-range::-moz-range-thumb {
         -moz-transition: none;
         transition: none;
    }
}
 .form-range::-moz-range-thumb:active {
     background-color: #b6d4fe;
}
 .form-range::-moz-range-track {
     width: 100%;
     height: 0.5rem;
     color: transparent;
     cursor: pointer;
     background-color: #dee2e6;
     border-color: transparent;
     border-radius: 1rem;
}
 .form-range:disabled {
     pointer-events: none;
}
 .form-range:disabled::-webkit-slider-thumb {
     background-color: #adb5bd;
}
 .form-range:disabled::-moz-range-thumb {
     background-color: #adb5bd;
}
 .form-floating {
     position: relative;
}
 .form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
     height: calc(3.5rem + 2px);
     line-height: 1.25;
}
 .form-floating > label {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     padding: 1rem 0.75rem;
     overflow: hidden;
     text-align: start;
     text-overflow: ellipsis;
     white-space: nowrap;
     pointer-events: none;
     border: 1px solid transparent;
     transform-origin: 0 0;
     transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
 @media (prefers-reduced-motion: reduce) {
     .form-floating > label {
         transition: none;
    }
}
 .form-floating > .form-control, .form-floating > .form-control-plaintext {
     padding: 1rem 0.75rem;
}
 .form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
     color: transparent;
}
 .form-floating > .form-control::placeholder, .form-floating > .form-control-plaintext::placeholder {
     color: transparent;
}
 .form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
     padding-top: 1.625rem;
     padding-bottom: 0.625rem;
}
 .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown), .form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown) {
     padding-top: 1.625rem;
     padding-bottom: 0.625rem;
}
 .form-floating > .form-control:-webkit-autofill, .form-floating > .form-control-plaintext:-webkit-autofill {
     padding-top: 1.625rem;
     padding-bottom: 0.625rem;
}
 .form-floating > .form-select {
     padding-top: 1.625rem;
     padding-bottom: 0.625rem;
}
 .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
     opacity: 0.65;
     transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
 .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-control-plaintext ~ label, .form-floating > .form-select ~ label {
     opacity: 0.65;
     transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
 .form-floating > .form-control:-webkit-autofill ~ label {
     opacity: 0.65;
     transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
 .form-floating > .form-control-plaintext ~ label {
     border-width: 1px 0;
}
 .input-group {
     position: relative;
     display: flex;
     flex-wrap: wrap;
     align-items: stretch;
     width: 100%;
}
 .input-group > .form-control, .input-group > .form-select, .input-group > .form-floating {
     position: relative;
     flex: 1 1 auto;
     width: 1%;
     min-width: 0;
}
 .input-group > .form-control:focus, .input-group > .form-select:focus, .input-group > .form-floating:focus-within {
     z-index: 5;
}
 .input-group .btn {
     position: relative;
     z-index: 2;
}
 .input-group .btn:focus {
     z-index: 5;
}
 .input-group-text {
     display: flex;
     align-items: center;
     padding: 0.375rem 0.75rem;
     font-size: 1rem;
     font-weight: 400;
     line-height: 1.5;
     color: #212529;
     text-align: center;
     white-space: nowrap;
     background-color: #e9ecef;
     border: 1px solid #ced4da;
     border-radius: 0.375rem;
}
 .input-group-lg > .form-control, .input-group-lg > .form-select, .input-group-lg > .input-group-text, .input-group-lg > .btn {
     padding: 0.5rem 1rem;
     font-size: 1.25rem;
     border-radius: 0.5rem;
}
 .input-group-sm > .form-control, .input-group-sm > .form-select, .input-group-sm > .input-group-text, .input-group-sm > .btn {
     padding: 0.25rem 0.5rem;
     font-size: 0.875rem;
     border-radius: 0.25rem;
}
 .input-group-lg > .form-select, .input-group-sm > .form-select {
     padding-right: 3rem;
}
 .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control, .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
     border-top-right-radius: 0;
     border-bottom-right-radius: 0;
}
 .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4), .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control, .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
     border-top-right-radius: 0;
     border-bottom-right-radius: 0;
}
 .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
     margin-left: -1px;
     border-top-left-radius: 0;
     border-bottom-left-radius: 0;
}
 .input-group > .form-floating:not(:first-child) > .form-control, .input-group > .form-floating:not(:first-child) > .form-select {
     border-top-left-radius: 0;
     border-bottom-left-radius: 0;
}
 .valid-feedback {
     display: none;
     width: 100%;
     margin-top: 0.25rem;
     font-size: 0.875em;
     color: #198754;
}
 .valid-tooltip {
     position: absolute;
     top: 100%;
     z-index: 5;
     display: none;
     max-width: 100%;
     padding: 0.25rem 0.5rem;
     margin-top: 0.1rem;
     font-size: 0.875rem;
     color: #fff;
     background-color: rgba(25, 135, 84, 0.9);
     border-radius: 0.375rem;
}
 .was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip, .is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip {
     display: block;
}
 .was-validated .form-control:valid, .form-control.is-valid {
     border-color: #198754;
     padding-right: calc(1.5em + 0.75rem);
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
     background-repeat: no-repeat;
     background-position: right calc(0.375em + 0.1875rem) center;
     background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
 .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
     border-color: #198754;
     box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
 .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
     padding-right: calc(1.5em + 0.75rem);
     background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
 .was-validated .form-select:valid, .form-select.is-valid {
     border-color: #198754;
}
 .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
     padding-right: 4.125rem;
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
     background-position: right 0.75rem center, center right 2.25rem;
     background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
 .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
     border-color: #198754;
     box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
 .was-validated .form-control-color:valid, .form-control-color.is-valid {
     width: calc(3rem + calc(1.5em + 0.75rem));
}
 .was-validated .form-check-input:valid, .form-check-input.is-valid {
     border-color: #198754;
}
 .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
     background-color: #198754;
}
 .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
     box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
 .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
     color: #198754;
}
 .form-check-inline .form-check-input ~ .valid-feedback {
     margin-left: 0.5em;
}
 .was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid, .was-validated .input-group > .form-select:not(:focus):valid, .input-group > .form-select:not(:focus).is-valid, .was-validated .input-group > .form-floating:not(:focus-within):valid, .input-group > .form-floating:not(:focus-within).is-valid {
     z-index: 3;
}
 .invalid-feedback {
     display: none;
     width: 100%;
     margin-top: 0.25rem;
     font-size: 0.875em;
     color: #dc3545;
}
 .invalid-tooltip {
     position: absolute;
     top: 100%;
     z-index: 5;
     display: none;
     max-width: 100%;
     padding: 0.25rem 0.5rem;
     margin-top: 0.1rem;
     font-size: 0.875rem;
     color: #fff;
     background-color: rgba(220, 53, 69, 0.9);
     border-radius: 0.375rem;
}
 .was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip, .is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip {
     display: block;
}
 .was-validated .form-control:invalid, .form-control.is-invalid {
     border-color: #dc3545;
     padding-right: calc(1.5em + 0.75rem);
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
     background-repeat: no-repeat;
     background-position: right calc(0.375em + 0.1875rem) center;
     background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
 .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
     border-color: #dc3545;
     box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
 .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
     padding-right: calc(1.5em + 0.75rem);
     background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
 .was-validated .form-select:invalid, .form-select.is-invalid {
     border-color: #dc3545;
}
 .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
     padding-right: 4.125rem;
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
     background-position: right 0.75rem center, center right 2.25rem;
     background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
 .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
     border-color: #dc3545;
     box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
 .was-validated .form-control-color:invalid, .form-control-color.is-invalid {
     width: calc(3rem + calc(1.5em + 0.75rem));
}
 .was-validated .form-check-input:invalid, .form-check-input.is-invalid {
     border-color: #dc3545;
}
 .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
     background-color: #dc3545;
}
 .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
     box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
 .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
     color: #dc3545;
}
 .form-check-inline .form-check-input ~ .invalid-feedback {
     margin-left: 0.5em;
}
 .was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid, .was-validated .input-group > .form-select:not(:focus):invalid, .input-group > .form-select:not(:focus).is-invalid, .was-validated .input-group > .form-floating:not(:focus-within):invalid, .input-group > .form-floating:not(:focus-within).is-invalid {
     z-index: 4;
}
 .btn {
     --bs-btn-padding-x: 0.75rem;
     --bs-btn-padding-y: 0.375rem;
     --bs-btn-font-family: ;
     --bs-btn-font-size: 1rem;
     --bs-btn-font-weight: 400;
     --bs-btn-line-height: 1.5;
     --bs-btn-color: #212529;
     --bs-btn-bg: transparent;
     --bs-btn-border-width: 1px;
     --bs-btn-border-color: transparent;
     --bs-btn-border-radius: 0.375rem;
     --bs-btn-hover-border-color: transparent;
     --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
     --bs-btn-disabled-opacity: 0.65;
     --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
     display: inline-block;
     padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
     font-family: var(--bs-btn-font-family);
     font-size: var(--bs-btn-font-size);
     font-weight: var(--bs-btn-font-weight);
     line-height: var(--bs-btn-line-height);
     color: var(--bs-btn-color);
     text-align: center;
     text-decoration: none;
     vertical-align: middle;
     cursor: pointer;
     -webkit-user-select: none;
     -moz-user-select: none;
     user-select: none;
     border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
     border-radius: var(--bs-btn-border-radius);
     background-color: var(--bs-btn-bg);
     transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
 @media (prefers-reduced-motion: reduce) {
     .btn {
         transition: none;
    }
}
 .btn:hover {
     color: var(--bs-btn-hover-color);
     background-color: var(--bs-btn-hover-bg);
     border-color: var(--bs-btn-hover-border-color);
}
 .btn-check + .btn:hover {
     color: var(--bs-btn-color);
     background-color: var(--bs-btn-bg);
     border-color: var(--bs-btn-border-color);
}
 .btn:focus-visible {
     color: var(--bs-btn-hover-color);
     background-color: var(--bs-btn-hover-bg);
     border-color: var(--bs-btn-hover-border-color);
     outline: 0;
     box-shadow: var(--bs-btn-focus-box-shadow);
}
 .btn-check:focus-visible + .btn {
     border-color: var(--bs-btn-hover-border-color);
     outline: 0;
     box-shadow: var(--bs-btn-focus-box-shadow);
}
 .btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
     color: var(--bs-btn-active-color);
     background-color: var(--bs-btn-active-bg);
     border-color: var(--bs-btn-active-border-color);
}
 .btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
     box-shadow: var(--bs-btn-focus-box-shadow);
}
 .btn:disabled, .btn.disabled, fieldset:disabled .btn {
     color: var(--bs-btn-disabled-color);
     pointer-events: none;
     background-color: var(--bs-btn-disabled-bg);
     border-color: var(--bs-btn-disabled-border-color);
     opacity: var(--bs-btn-disabled-opacity);
}
 .btn-primary {
     --bs-btn-color: #fff;
     --bs-btn-bg: #0d6efd;
     --bs-btn-border-color: #0d6efd;
     --bs-btn-hover-color: #fff;
     --bs-btn-hover-bg: #0b5ed7;
     --bs-btn-hover-border-color: #0a58ca;
     --bs-btn-focus-shadow-rgb: 49, 132, 253;
     --bs-btn-active-color: #fff;
     --bs-btn-active-bg: #0a58ca;
     --bs-btn-active-border-color: #0a53be;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #fff;
     --bs-btn-disabled-bg: #0d6efd;
     --bs-btn-disabled-border-color: #0d6efd;
}
 .btn-secondary {
     --bs-btn-color: #fff;
     --bs-btn-bg: #6c757d;
     --bs-btn-border-color: #6c757d;
     --bs-btn-hover-color: #fff;
     --bs-btn-hover-bg: #5c636a;
     --bs-btn-hover-border-color: #565e64;
     --bs-btn-focus-shadow-rgb: 130, 138, 145;
     --bs-btn-active-color: #fff;
     --bs-btn-active-bg: #565e64;
     --bs-btn-active-border-color: #51585e;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #fff;
     --bs-btn-disabled-bg: #6c757d;
     --bs-btn-disabled-border-color: #6c757d;
}
 .btn-success {
     --bs-btn-color: #fff;
     --bs-btn-bg: #198754;
     --bs-btn-border-color: #198754;
     --bs-btn-hover-color: #fff;
     --bs-btn-hover-bg: #157347;
     --bs-btn-hover-border-color: #146c43;
     --bs-btn-focus-shadow-rgb: 60, 153, 110;
     --bs-btn-active-color: #fff;
     --bs-btn-active-bg: #146c43;
     --bs-btn-active-border-color: #13653f;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #fff;
     --bs-btn-disabled-bg: #198754;
     --bs-btn-disabled-border-color: #198754;
}
 .btn-info {
     --bs-btn-color: #000;
     --bs-btn-bg: #0dcaf0;
     --bs-btn-border-color: #0dcaf0;
     --bs-btn-hover-color: #000;
     --bs-btn-hover-bg: #31d2f2;
     --bs-btn-hover-border-color: #25cff2;
     --bs-btn-focus-shadow-rgb: 11, 172, 204;
     --bs-btn-active-color: #000;
     --bs-btn-active-bg: #3dd5f3;
     --bs-btn-active-border-color: #25cff2;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #000;
     --bs-btn-disabled-bg: #0dcaf0;
     --bs-btn-disabled-border-color: #0dcaf0;
}
 .btn-warning {
     --bs-btn-color: #000;
     --bs-btn-bg: #ffc107;
     --bs-btn-border-color: #ffc107;
     --bs-btn-hover-color: #000;
     --bs-btn-hover-bg: #ffca2c;
     --bs-btn-hover-border-color: #ffc720;
     --bs-btn-focus-shadow-rgb: 217, 164, 6;
     --bs-btn-active-color: #000;
     --bs-btn-active-bg: #ffcd39;
     --bs-btn-active-border-color: #ffc720;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #000;
     --bs-btn-disabled-bg: #ffc107;
     --bs-btn-disabled-border-color: #ffc107;
}
 .btn-danger {
     --bs-btn-color: #fff;
     --bs-btn-bg: #dc3545;
     --bs-btn-border-color: #dc3545;
     --bs-btn-hover-color: #fff;
     --bs-btn-hover-bg: #bb2d3b;
     --bs-btn-hover-border-color: #b02a37;
     --bs-btn-focus-shadow-rgb: 225, 83, 97;
     --bs-btn-active-color: #fff;
     --bs-btn-active-bg: #b02a37;
     --bs-btn-active-border-color: #a52834;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #fff;
     --bs-btn-disabled-bg: #dc3545;
     --bs-btn-disabled-border-color: #dc3545;
}
 .btn-light {
     --bs-btn-color: #000;
     --bs-btn-bg: #f8f9fa;
     --bs-btn-border-color: #f8f9fa;
     --bs-btn-hover-color: #000;
     --bs-btn-hover-bg: #d3d4d5;
     --bs-btn-hover-border-color: #c6c7c8;
     --bs-btn-focus-shadow-rgb: 211, 212, 213;
     --bs-btn-active-color: #000;
     --bs-btn-active-bg: #c6c7c8;
     --bs-btn-active-border-color: #babbbc;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #000;
     --bs-btn-disabled-bg: #f8f9fa;
     --bs-btn-disabled-border-color: #f8f9fa;
}
 .btn-dark {
     --bs-btn-color: #fff;
     --bs-btn-bg: #212529;
     --bs-btn-border-color: #212529;
     --bs-btn-hover-color: #fff;
     --bs-btn-hover-bg: #424649;
     --bs-btn-hover-border-color: #373b3e;
     --bs-btn-focus-shadow-rgb: 66, 70, 73;
     --bs-btn-active-color: #fff;
     --bs-btn-active-bg: #4d5154;
     --bs-btn-active-border-color: #373b3e;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #fff;
     --bs-btn-disabled-bg: #212529;
     --bs-btn-disabled-border-color: #212529;
}
 .btn-outline-primary {
     --bs-btn-color: #0d6efd;
     --bs-btn-border-color: #0d6efd;
     --bs-btn-hover-color: #fff;
     --bs-btn-hover-bg: #0d6efd;
     --bs-btn-hover-border-color: #0d6efd;
     --bs-btn-focus-shadow-rgb: 13, 110, 253;
     --bs-btn-active-color: #fff;
     --bs-btn-active-bg: #0d6efd;
     --bs-btn-active-border-color: #0d6efd;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #0d6efd;
     --bs-btn-disabled-bg: transparent;
     --bs-btn-disabled-border-color: #0d6efd;
     --bs-gradient: none;
}
 .btn-outline-secondary {
     --bs-btn-color: #6c757d;
     --bs-btn-border-color: #6c757d;
     --bs-btn-hover-color: #fff;
     --bs-btn-hover-bg: #6c757d;
     --bs-btn-hover-border-color: #6c757d;
     --bs-btn-focus-shadow-rgb: 108, 117, 125;
     --bs-btn-active-color: #fff;
     --bs-btn-active-bg: #6c757d;
     --bs-btn-active-border-color: #6c757d;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #6c757d;
     --bs-btn-disabled-bg: transparent;
     --bs-btn-disabled-border-color: #6c757d;
     --bs-gradient: none;
}
 .btn-outline-success {
     --bs-btn-color: #198754;
     --bs-btn-border-color: #198754;
     --bs-btn-hover-color: #fff;
     --bs-btn-hover-bg: #198754;
     --bs-btn-hover-border-color: #198754;
     --bs-btn-focus-shadow-rgb: 25, 135, 84;
     --bs-btn-active-color: #fff;
     --bs-btn-active-bg: #198754;
     --bs-btn-active-border-color: #198754;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #198754;
     --bs-btn-disabled-bg: transparent;
     --bs-btn-disabled-border-color: #198754;
     --bs-gradient: none;
}
 .btn-outline-info {
     --bs-btn-color: #0dcaf0;
     --bs-btn-border-color: #0dcaf0;
     --bs-btn-hover-color: #000;
     --bs-btn-hover-bg: #0dcaf0;
     --bs-btn-hover-border-color: #0dcaf0;
     --bs-btn-focus-shadow-rgb: 13, 202, 240;
     --bs-btn-active-color: #000;
     --bs-btn-active-bg: #0dcaf0;
     --bs-btn-active-border-color: #0dcaf0;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #0dcaf0;
     --bs-btn-disabled-bg: transparent;
     --bs-btn-disabled-border-color: #0dcaf0;
     --bs-gradient: none;
}
 .btn-outline-warning {
     --bs-btn-color: #ffc107;
     --bs-btn-border-color: #ffc107;
     --bs-btn-hover-color: #000;
     --bs-btn-hover-bg: #ffc107;
     --bs-btn-hover-border-color: #ffc107;
     --bs-btn-focus-shadow-rgb: 255, 193, 7;
     --bs-btn-active-color: #000;
     --bs-btn-active-bg: #ffc107;
     --bs-btn-active-border-color: #ffc107;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #ffc107;
     --bs-btn-disabled-bg: transparent;
     --bs-btn-disabled-border-color: #ffc107;
     --bs-gradient: none;
}
 .btn-outline-danger {
     --bs-btn-color: #dc3545;
     --bs-btn-border-color: #dc3545;
     --bs-btn-hover-color: #fff;
     --bs-btn-hover-bg: #dc3545;
     --bs-btn-hover-border-color: #dc3545;
     --bs-btn-focus-shadow-rgb: 220, 53, 69;
     --bs-btn-active-color: #fff;
     --bs-btn-active-bg: #dc3545;
     --bs-btn-active-border-color: #dc3545;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #dc3545;
     --bs-btn-disabled-bg: transparent;
     --bs-btn-disabled-border-color: #dc3545;
     --bs-gradient: none;
}
 .btn-outline-light {
     --bs-btn-color: #f8f9fa;
     --bs-btn-border-color: #f8f9fa;
     --bs-btn-hover-color: #000;
     --bs-btn-hover-bg: #f8f9fa;
     --bs-btn-hover-border-color: #f8f9fa;
     --bs-btn-focus-shadow-rgb: 248, 249, 250;
     --bs-btn-active-color: #000;
     --bs-btn-active-bg: #f8f9fa;
     --bs-btn-active-border-color: #f8f9fa;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #f8f9fa;
     --bs-btn-disabled-bg: transparent;
     --bs-btn-disabled-border-color: #f8f9fa;
     --bs-gradient: none;
}
 .btn-outline-dark {
     --bs-btn-color: #212529;
     --bs-btn-border-color: #212529;
     --bs-btn-hover-color: #fff;
     --bs-btn-hover-bg: #212529;
     --bs-btn-hover-border-color: #212529;
     --bs-btn-focus-shadow-rgb: 33, 37, 41;
     --bs-btn-active-color: #fff;
     --bs-btn-active-bg: #212529;
     --bs-btn-active-border-color: #212529;
     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
     --bs-btn-disabled-color: #212529;
     --bs-btn-disabled-bg: transparent;
     --bs-btn-disabled-border-color: #212529;
     --bs-gradient: none;
}
 .btn-link {
     --bs-btn-font-weight: 400;
     --bs-btn-color: var(--bs-link-color);
     --bs-btn-bg: transparent;
     --bs-btn-border-color: transparent;
     --bs-btn-hover-color: var(--bs-link-hover-color);
     --bs-btn-hover-border-color: transparent;
     --bs-btn-active-color: var(--bs-link-hover-color);
     --bs-btn-active-border-color: transparent;
     --bs-btn-disabled-color: #6c757d;
     --bs-btn-disabled-border-color: transparent;
     --bs-btn-box-shadow: none;
     --bs-btn-focus-shadow-rgb: 49, 132, 253;
     text-decoration: underline;
}
 .btn-link:focus-visible {
     color: var(--bs-btn-color);
}
 .btn-link:hover {
     color: var(--bs-btn-hover-color);
}
 .btn-lg, .btn-group-lg > .btn {
     --bs-btn-padding-y: 0.5rem;
     --bs-btn-padding-x: 1rem;
     --bs-btn-font-size: 1.25rem;
     --bs-btn-border-radius: 0.5rem;
}
 .btn-sm, .btn-group-sm > .btn {
     --bs-btn-padding-y: 0.25rem;
     --bs-btn-padding-x: 0.5rem;
     --bs-btn-font-size: 0.875rem;
     --bs-btn-border-radius: 0.25rem;
}
 .fade {
     transition: opacity 0.15s linear;
}
 @media (prefers-reduced-motion: reduce) {
     .fade {
         transition: none;
    }
}
 .fade:not(.show) {
     opacity: 0;
}
 .collapse:not(.show) {
     display: none;
}
 .collapsing {
     height: 0;
     overflow: hidden;
     transition: height 0.35s ease;
}
 @media (prefers-reduced-motion: reduce) {
     .collapsing {
         transition: none;
    }
}
 .collapsing.collapse-horizontal {
     width: 0;
     height: auto;
     transition: width 0.35s ease;
}
 @media (prefers-reduced-motion: reduce) {
     .collapsing.collapse-horizontal {
         transition: none;
    }
}
 .dropup, .dropend, .dropdown, .dropstart, .dropup-center, .dropdown-center {
     position: relative;
}
 .dropdown-toggle {
     white-space: nowrap;
}
 .dropdown-toggle::after {
     display: inline-block;
     margin-left: 0.255em;
     vertical-align: 0.255em;
     content: "";
     border-top: 0.3em solid;
     border-right: 0.3em solid transparent;
     border-bottom: 0;
     border-left: 0.3em solid transparent;
}
 .dropdown-toggle:empty::after {
     margin-left: 0;
}
 .dropdown-menu {
     --bs-dropdown-zindex: 1000;
     --bs-dropdown-min-width: 10rem;
     --bs-dropdown-padding-x: 0;
     --bs-dropdown-padding-y: 0.5rem;
     --bs-dropdown-spacer: 0.125rem;
     --bs-dropdown-font-size: 1rem;
     --bs-dropdown-color: #212529;
     --bs-dropdown-bg: #fff;
     --bs-dropdown-border-color: var(--bs-border-color-translucent);
     --bs-dropdown-border-radius: 0.375rem;
     --bs-dropdown-border-width: 1px;
     --bs-dropdown-inner-border-radius: calc(0.375rem - 1px);
     --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
     --bs-dropdown-divider-margin-y: 0.5rem;
     --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
     --bs-dropdown-link-color: #212529;
     --bs-dropdown-link-hover-color: #1e2125;
     --bs-dropdown-link-hover-bg: #e9ecef;
     --bs-dropdown-link-active-color: #fff;
     --bs-dropdown-link-active-bg: #0d6efd;
     --bs-dropdown-link-disabled-color: #adb5bd;
     --bs-dropdown-item-padding-x: 1rem;
     --bs-dropdown-item-padding-y: 0.25rem;
     --bs-dropdown-header-color: #6c757d;
     --bs-dropdown-header-padding-x: 1rem;
     --bs-dropdown-header-padding-y: 0.5rem;
     position: absolute;
     z-index: var(--bs-dropdown-zindex);
     display: none;
     min-width: var(--bs-dropdown-min-width);
     padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
     margin: 0;
     font-size: var(--bs-dropdown-font-size);
     color: var(--bs-dropdown-color);
     text-align: left;
     list-style: none;
     background-color: var(--bs-dropdown-bg);
     background-clip: padding-box;
     border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
     border-radius: var(--bs-dropdown-border-radius);
}
 .dropdown-menu[data-bs-popper] {
     top: 100%;
     left: 0;
     margin-top: var(--bs-dropdown-spacer);
}
 .dropdown-menu-start {
     --bs-position: start;
}
 .dropdown-menu-start[data-bs-popper] {
     right: auto;
     left: 0;
}
 .dropdown-menu-end {
     --bs-position: end;
}
 .dropdown-menu-end[data-bs-popper] {
     right: 0;
     left: auto;
}
 @media (min-width: 576px) {
     .dropdown-menu-sm-start {
         --bs-position: start;
    }
     .dropdown-menu-sm-start[data-bs-popper] {
         right: auto;
         left: 0;
    }
     .dropdown-menu-sm-end {
         --bs-position: end;
    }
     .dropdown-menu-sm-end[data-bs-popper] {
         right: 0;
         left: auto;
    }
}
 @media (min-width: 768px) {
     .dropdown-menu-md-start {
         --bs-position: start;
    }
     .dropdown-menu-md-start[data-bs-popper] {
         right: auto;
         left: 0;
    }
     .dropdown-menu-md-end {
         --bs-position: end;
    }
     .dropdown-menu-md-end[data-bs-popper] {
         right: 0;
         left: auto;
    }
}
 @media (min-width: 992px) {
     .dropdown-menu-lg-start {
         --bs-position: start;
    }
     .dropdown-menu-lg-start[data-bs-popper] {
         right: auto;
         left: 0;
    }
     .dropdown-menu-lg-end {
         --bs-position: end;
    }
     .dropdown-menu-lg-end[data-bs-popper] {
         right: 0;
         left: auto;
    }
}
 @media (min-width: 1200px) {
     .dropdown-menu-xl-start {
         --bs-position: start;
    }
     .dropdown-menu-xl-start[data-bs-popper] {
         right: auto;
         left: 0;
    }
     .dropdown-menu-xl-end {
         --bs-position: end;
    }
     .dropdown-menu-xl-end[data-bs-popper] {
         right: 0;
         left: auto;
    }
}
 @media (min-width: 1400px) {
     .dropdown-menu-xxl-start {
         --bs-position: start;
    }
     .dropdown-menu-xxl-start[data-bs-popper] {
         right: auto;
         left: 0;
    }
     .dropdown-menu-xxl-end {
         --bs-position: end;
    }
     .dropdown-menu-xxl-end[data-bs-popper] {
         right: 0;
         left: auto;
    }
}
 .dropup .dropdown-menu[data-bs-popper] {
     top: auto;
     bottom: 100%;
     margin-top: 0;
     margin-bottom: var(--bs-dropdown-spacer);
}
 .dropup .dropdown-toggle::after {
     display: inline-block;
     margin-left: 0.255em;
     vertical-align: 0.255em;
     content: "";
     border-top: 0;
     border-right: 0.3em solid transparent;
     border-bottom: 0.3em solid;
     border-left: 0.3em solid transparent;
}
 .dropup .dropdown-toggle:empty::after {
     margin-left: 0;
}
 .dropend .dropdown-menu[data-bs-popper] {
     top: 0;
     right: auto;
     left: 100%;
     margin-top: 0;
     margin-left: var(--bs-dropdown-spacer);
}
 .dropend .dropdown-toggle::after {
     display: inline-block;
     margin-left: 0.255em;
     vertical-align: 0.255em;
     content: "";
     border-top: 0.3em solid transparent;
     border-right: 0;
     border-bottom: 0.3em solid transparent;
     border-left: 0.3em solid;
}
 .dropend .dropdown-toggle:empty::after {
     margin-left: 0;
}
 .dropend .dropdown-toggle::after {
     vertical-align: 0;
}
 .dropstart .dropdown-menu[data-bs-popper] {
     top: 0;
     right: 100%;
     left: auto;
     margin-top: 0;
     margin-right: var(--bs-dropdown-spacer);
}
 .dropstart .dropdown-toggle::after {
     display: inline-block;
     margin-left: 0.255em;
     vertical-align: 0.255em;
     content: "";
}
 .dropstart .dropdown-toggle::after {
     display: none;
}
 .dropstart .dropdown-toggle::before {
     display: inline-block;
     margin-right: 0.255em;
     vertical-align: 0.255em;
     content: "";
     border-top: 0.3em solid transparent;
     border-right: 0.3em solid;
     border-bottom: 0.3em solid transparent;
}
 .dropstart .dropdown-toggle:empty::after {
     margin-left: 0;
}
 .dropstart .dropdown-toggle::before {
     vertical-align: 0;
}
 .dropdown-divider {
     height: 0;
     margin: var(--bs-dropdown-divider-margin-y) 0;
     overflow: hidden;
     border-top: 1px solid var(--bs-dropdown-divider-bg);
     opacity: 1;
}
 .dropdown-item {
     display: block;
     width: 100%;
     padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
     clear: both;
     font-weight: 400;
     color: var(--bs-dropdown-link-color);
     text-align: inherit;
     text-decoration: none;
     white-space: nowrap;
     background-color: transparent;
     border: 0;
}
 .dropdown-item:hover, .dropdown-item:focus {
     color: var(--bs-dropdown-link-hover-color);
     background-color: var(--bs-dropdown-link-hover-bg);
}
 .dropdown-item.active, .dropdown-item:active {
     color: var(--bs-dropdown-link-active-color);
     text-decoration: none;
     background-color: var(--bs-dropdown-link-active-bg);
}
 .dropdown-item.disabled, .dropdown-item:disabled {
     color: var(--bs-dropdown-link-disabled-color);
     pointer-events: none;
     background-color: transparent;
}
 .dropdown-menu.show {
     display: block;
}
 .dropdown-header {
     display: block;
     padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
     margin-bottom: 0;
     font-size: 0.875rem;
     color: var(--bs-dropdown-header-color);
     white-space: nowrap;
}
 .dropdown-item-text {
     display: block;
     padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
     color: var(--bs-dropdown-link-color);
}
 .dropdown-menu-dark {
     --bs-dropdown-color: #dee2e6;
     --bs-dropdown-bg: #343a40;
     --bs-dropdown-border-color: var(--bs-border-color-translucent);
     --bs-dropdown-box-shadow: ;
     --bs-dropdown-link-color: #dee2e6;
     --bs-dropdown-link-hover-color: #fff;
     --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
     --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
     --bs-dropdown-link-active-color: #fff;
     --bs-dropdown-link-active-bg: #0d6efd;
     --bs-dropdown-link-disabled-color: #adb5bd;
     --bs-dropdown-header-color: #adb5bd;
}
 .btn-group, .btn-group-vertical {
     position: relative;
     display: inline-flex;
     vertical-align: middle;
}
 .btn-group > .btn, .btn-group-vertical > .btn {
     position: relative;
     flex: 1 1 auto;
}
 .btn-group > .btn-check:checked + .btn, .btn-group > .btn-check:focus + .btn, .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn-check:checked + .btn, .btn-group-vertical > .btn-check:focus + .btn, .btn-group-vertical > .btn:hover, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active {
     z-index: 1;
}
 .btn-toolbar {
     display: flex;
     flex-wrap: wrap;
     justify-content: flex-start;
}
 .btn-toolbar .input-group {
     width: auto;
}
 .btn-group {
     border-radius: 0.375rem;
}
 .btn-group > :not(.btn-check:first-child) + .btn, .btn-group > .btn-group:not(:first-child) {
     margin-left: -1px;
}
 .btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .btn.dropdown-toggle-split:first-child, .btn-group > .btn-group:not(:last-child) > .btn {
     border-top-right-radius: 0;
     border-bottom-right-radius: 0;
}
 .btn-group > .btn:nth-child(n+3), .btn-group > :not(.btn-check) + .btn, .btn-group > .btn-group:not(:first-child) > .btn {
     border-top-left-radius: 0;
     border-bottom-left-radius: 0;
}
 .dropdown-toggle-split {
     padding-right: 0.5625rem;
     padding-left: 0.5625rem;
}
 .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
     margin-left: 0;
}
 .dropstart .dropdown-toggle-split::before {
     margin-right: 0;
}
 .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
     padding-right: 0.375rem;
     padding-left: 0.375rem;
}
 .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
     padding-right: 0.75rem;
     padding-left: 0.75rem;
}
 .btn-group-vertical {
     flex-direction: column;
     align-items: flex-start;
     justify-content: center;
}
 .btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
     width: 100%;
}
 .btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) {
     margin-top: -1px;
}
 .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .btn-group:not(:last-child) > .btn {
     border-bottom-right-radius: 0;
     border-bottom-left-radius: 0;
}
 .btn-group-vertical > .btn ~ .btn, .btn-group-vertical > .btn-group:not(:first-child) > .btn {
     border-top-left-radius: 0;
     border-top-right-radius: 0;
}
 .nav {
     --bs-nav-link-padding-x: 1rem;
     --bs-nav-link-padding-y: 0.5rem;
     --bs-nav-link-font-weight: ;
     --bs-nav-link-color: var(--bs-link-color);
     --bs-nav-link-hover-color: var(--bs-link-hover-color);
     --bs-nav-link-disabled-color: #6c757d;
     display: flex;
     flex-wrap: wrap;
     padding-left: 0;
     margin-bottom: 0;
     list-style: none;
}
 .nav-link {
     display: block;
     padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
     font-size: var(--bs-nav-link-font-size);
     font-weight: var(--bs-nav-link-font-weight);
     color: var(--bs-nav-link-color);
     text-decoration: none;
     transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
 @media (prefers-reduced-motion: reduce) {
     .nav-link {
         transition: none;
    }
}
 .nav-link:hover, .nav-link:focus {
     color: var(--bs-nav-link-hover-color);
}
 .nav-link.disabled {
     color: var(--bs-nav-link-disabled-color);
     pointer-events: none;
     cursor: default;
}
 .nav-tabs {
     --bs-nav-tabs-border-width: 1px;
     --bs-nav-tabs-border-color: #dee2e6;
     --bs-nav-tabs-border-radius: 0.375rem;
     --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
     --bs-nav-tabs-link-active-color: #495057;
     --bs-nav-tabs-link-active-bg: #fff;
     --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
     border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
 .nav-tabs .nav-link {
     margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
     background: none;
     border: var(--bs-nav-tabs-border-width) solid transparent;
     border-top-left-radius: var(--bs-nav-tabs-border-radius);
     border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
 .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
     isolation: isolate;
     border-color: var(--bs-nav-tabs-link-hover-border-color);
}
 .nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
     color: var(--bs-nav-link-disabled-color);
     background-color: transparent;
     border-color: transparent;
}
 .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
     color: var(--bs-nav-tabs-link-active-color);
     background-color: var(--bs-nav-tabs-link-active-bg);
     border-color: var(--bs-nav-tabs-link-active-border-color);
}
 .nav-tabs .dropdown-menu {
     margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
     border-top-left-radius: 0;
     border-top-right-radius: 0;
}
 .nav-pills {
     --bs-nav-pills-border-radius: 0.375rem;
     --bs-nav-pills-link-active-color: #fff;
     --bs-nav-pills-link-active-bg: #0d6efd;
}
 .nav-pills .nav-link {
     background: none;
     border: 0;
     border-radius: var(--bs-nav-pills-border-radius);
}
 .nav-pills .nav-link:disabled {
     color: var(--bs-nav-link-disabled-color);
     background-color: transparent;
     border-color: transparent;
}
 .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
     color: var(--bs-nav-pills-link-active-color);
     background-color: var(--bs-nav-pills-link-active-bg);
}
 .nav-fill > .nav-link, .nav-fill .nav-item {
     flex: 1 1 auto;
     text-align: center;
}
 .nav-justified > .nav-link, .nav-justified .nav-item {
     flex-basis: 0;
     flex-grow: 1;
     text-align: center;
}
 .nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link {
     width: 100%;
}
 .tab-content > .tab-pane {
     display: none;
}
 .tab-content > .active {
     display: block;
}
 .navbar {
     --bs-navbar-padding-x: 0;
     --bs-navbar-padding-y: 0.5rem;
     --bs-navbar-color: rgba(0, 0, 0, 0.55);
     --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
     --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
     --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
     --bs-navbar-brand-padding-y: 0.3125rem;
     --bs-navbar-brand-margin-end: 1rem;
     --bs-navbar-brand-font-size: 1.25rem;
     --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
     --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
     --bs-navbar-nav-link-padding-x: 0.5rem;
     --bs-navbar-toggler-padding-y: 0.25rem;
     --bs-navbar-toggler-padding-x: 0.75rem;
     --bs-navbar-toggler-font-size: 1.25rem;
     --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
     --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
     --bs-navbar-toggler-border-radius: 0.375rem;
     --bs-navbar-toggler-focus-width: 0.25rem;
     --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
     position: relative;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
     padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
 .navbar > .container, .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {
     display: flex;
     flex-wrap: inherit;
     align-items: center;
     justify-content: space-between;
}
 .navbar-brand {
     padding-top: var(--bs-navbar-brand-padding-y);
     padding-bottom: var(--bs-navbar-brand-padding-y);
     margin-right: var(--bs-navbar-brand-margin-end);
     font-size: var(--bs-navbar-brand-font-size);
     color: var(--bs-navbar-brand-color);
     text-decoration: none;
     white-space: nowrap;
}
 .navbar-brand:hover, .navbar-brand:focus {
     color: var(--bs-navbar-brand-hover-color);
}
 .navbar-nav {
     --bs-nav-link-padding-x: 0;
     --bs-nav-link-padding-y: 0.5rem;
     --bs-nav-link-font-weight: ;
     --bs-nav-link-color: var(--bs-navbar-color);
     --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
     --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
     display: flex;
     flex-direction: column;
     padding-left: 0;
     margin-bottom: 0;
     list-style: none;
}
 .navbar-nav .show > .nav-link, .navbar-nav .nav-link.active {
     color: var(--bs-navbar-active-color);
}
 .navbar-nav .dropdown-menu {
     position: static;
}
 .navbar-text {
     padding-top: 0.5rem;
     padding-bottom: 0.5rem;
     color: var(--bs-navbar-color);
}
 .navbar-text a, .navbar-text a:hover, .navbar-text a:focus {
     color: var(--bs-navbar-active-color);
}
 .navbar-collapse {
     flex-basis: 100%;
     flex-grow: 1;
     align-items: center;
}
 .navbar-toggler {
     padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
     font-size: var(--bs-navbar-toggler-font-size);
     line-height: 1;
     color: var(--bs-navbar-color);
     background-color: transparent;
     border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
     border-radius: var(--bs-navbar-toggler-border-radius);
     transition: var(--bs-navbar-toggler-transition);
}
 @media (prefers-reduced-motion: reduce) {
     .navbar-toggler {
         transition: none;
    }
}
 .navbar-toggler:hover {
     text-decoration: none;
}
 .navbar-toggler:focus {
     text-decoration: none;
     outline: 0;
     box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}
 .navbar-toggler-icon {
     display: inline-block;
     width: 1.5em;
     height: 1.5em;
     vertical-align: middle;
     background-image: var(--bs-navbar-toggler-icon-bg);
     background-repeat: no-repeat;
     background-position: center;
     background-size: 100%;
}
 .navbar-nav-scroll {
     max-height: var(--bs-scroll-height, 75vh);
     overflow-y: auto;
}
 @media (min-width: 576px) {
     .navbar-expand-sm {
         flex-wrap: nowrap;
         justify-content: flex-start;
    }
     .navbar-expand-sm .navbar-nav {
         flex-direction: row;
    }
     .navbar-expand-sm .navbar-nav .dropdown-menu {
         position: absolute;
    }
     .navbar-expand-sm .navbar-nav .nav-link {
         padding-right: var(--bs-navbar-nav-link-padding-x);
         padding-left: var(--bs-navbar-nav-link-padding-x);
    }
     .navbar-expand-sm .navbar-nav-scroll {
         overflow: visible;
    }
     .navbar-expand-sm .navbar-collapse {
         display: flex !important;
         flex-basis: auto;
    }
     .navbar-expand-sm .navbar-toggler {
         display: none;
    }
     .navbar-expand-sm .offcanvas {
         position: static;
         z-index: auto;
         flex-grow: 1;
         width: auto !important;
         height: auto !important;
         visibility: visible !important;
         background-color: transparent !important;
         border: 0 !important;
         transform: none !important;
         transition: none;
    }
     .navbar-expand-sm .offcanvas .offcanvas-header {
         display: none;
    }
     .navbar-expand-sm .offcanvas .offcanvas-body {
         display: flex;
         flex-grow: 0;
         padding: 0;
         overflow-y: visible;
    }
}
 @media (min-width: 768px) {
     .navbar-expand-md {
         flex-wrap: nowrap;
         justify-content: flex-start;
    }
     .navbar-expand-md .navbar-nav {
         flex-direction: row;
    }
     .navbar-expand-md .navbar-nav .dropdown-menu {
         position: absolute;
    }
     .navbar-expand-md .navbar-nav .nav-link {
         padding-right: var(--bs-navbar-nav-link-padding-x);
         padding-left: var(--bs-navbar-nav-link-padding-x);
    }
     .navbar-expand-md .navbar-nav-scroll {
         overflow: visible;
    }
     .navbar-expand-md .navbar-collapse {
         display: flex !important;
         flex-basis: auto;
    }
     .navbar-expand-md .navbar-toggler {
         display: none;
    }
     .navbar-expand-md .offcanvas {
         position: static;
         z-index: auto;
         flex-grow: 1;
         width: auto !important;
         height: auto !important;
         visibility: visible !important;
         background-color: transparent !important;
         border: 0 !important;
         transform: none !important;
         transition: none;
    }
     .navbar-expand-md .offcanvas .offcanvas-header {
         display: none;
    }
     .navbar-expand-md .offcanvas .offcanvas-body {
         display: flex;
         flex-grow: 0;
         padding: 0;
         overflow-y: visible;
    }
}
 @media (min-width: 992px) {
     .navbar-expand-lg {
         flex-wrap: nowrap;
         justify-content: flex-start;
    }
     .navbar-expand-lg .navbar-nav {
         flex-direction: row;
    }
     .navbar-expand-lg .navbar-nav .dropdown-menu {
         position: absolute;
    }
     .navbar-expand-lg .navbar-nav .nav-link {
         padding-right: var(--bs-navbar-nav-link-padding-x);
         padding-left: var(--bs-navbar-nav-link-padding-x);
    }
     .navbar-expand-lg .navbar-nav-scroll {
         overflow: visible;
    }
     .navbar-expand-lg .navbar-collapse {
         display: flex !important;
         flex-basis: auto;
    }
     .navbar-expand-lg .navbar-toggler {
         display: none;
    }
     .navbar-expand-lg .offcanvas {
         position: static;
         z-index: auto;
         flex-grow: 1;
         width: auto !important;
         height: auto !important;
         visibility: visible !important;
         background-color: transparent !important;
         border: 0 !important;
         transform: none !important;
         transition: none;
    }
     .navbar-expand-lg .offcanvas .offcanvas-header {
         display: none;
    }
     .navbar-expand-lg .offcanvas .offcanvas-body {
         display: flex;
         flex-grow: 0;
         padding: 0;
         overflow-y: visible;
    }
}
 @media (min-width: 1200px) {
     .navbar-expand-xl {
         flex-wrap: nowrap;
         justify-content: flex-start;
    }
     .navbar-expand-xl .navbar-nav {
         flex-direction: row;
    }
     .navbar-expand-xl .navbar-nav .dropdown-menu {
         position: absolute;
    }
     .navbar-expand-xl .navbar-nav .nav-link {
         padding-right: var(--bs-navbar-nav-link-padding-x);
         padding-left: var(--bs-navbar-nav-link-padding-x);
    }
     .navbar-expand-xl .navbar-nav-scroll {
         overflow: visible;
    }
     .navbar-expand-xl .navbar-collapse {
         display: flex !important;
         flex-basis: auto;
    }
     .navbar-expand-xl .navbar-toggler {
         display: none;
    }
     .navbar-expand-xl .offcanvas {
         position: static;
         z-index: auto;
         flex-grow: 1;
         width: auto !important;
         height: auto !important;
         visibility: visible !important;
         background-color: transparent !important;
         border: 0 !important;
         transform: none !important;
         transition: none;
    }
     .navbar-expand-xl .offcanvas .offcanvas-header {
         display: none;
    }
     .navbar-expand-xl .offcanvas .offcanvas-body {
         display: flex;
         flex-grow: 0;
         padding: 0;
         overflow-y: visible;
    }
}
 @media (min-width: 1400px) {
     .navbar-expand-xxl {
         flex-wrap: nowrap;
         justify-content: flex-start;
    }
     .navbar-expand-xxl .navbar-nav {
         flex-direction: row;
    }
     .navbar-expand-xxl .navbar-nav .dropdown-menu {
         position: absolute;
    }
     .navbar-expand-xxl .navbar-nav .nav-link {
         padding-right: var(--bs-navbar-nav-link-padding-x);
         padding-left: var(--bs-navbar-nav-link-padding-x);
    }
     .navbar-expand-xxl .navbar-nav-scroll {
         overflow: visible;
    }
     .navbar-expand-xxl .navbar-collapse {
         display: flex !important;
         flex-basis: auto;
    }
     .navbar-expand-xxl .navbar-toggler {
         display: none;
    }
     .navbar-expand-xxl .offcanvas {
         position: static;
         z-index: auto;
         flex-grow: 1;
         width: auto !important;
         height: auto !important;
         visibility: visible !important;
         background-color: transparent !important;
         border: 0 !important;
         transform: none !important;
         transition: none;
    }
     .navbar-expand-xxl .offcanvas .offcanvas-header {
         display: none;
    }
     .navbar-expand-xxl .offcanvas .offcanvas-body {
         display: flex;
         flex-grow: 0;
         padding: 0;
         overflow-y: visible;
    }
}
 .navbar-expand {
     flex-wrap: nowrap;
     justify-content: flex-start;
}
 .navbar-expand .navbar-nav {
     flex-direction: row;
}
 .navbar-expand .navbar-nav .dropdown-menu {
     position: absolute;
}
 .navbar-expand .navbar-nav .nav-link {
     padding-right: var(--bs-navbar-nav-link-padding-x);
     padding-left: var(--bs-navbar-nav-link-padding-x);
}
 .navbar-expand .navbar-nav-scroll {
     overflow: visible;
}
 .navbar-expand .navbar-collapse {
     display: flex !important;
     flex-basis: auto;
}
 .navbar-expand .navbar-toggler {
     display: none;
}
 .navbar-expand .offcanvas {
     position: static;
     z-index: auto;
     flex-grow: 1;
     width: auto !important;
     height: auto !important;
     visibility: visible !important;
     background-color: transparent !important;
     border: 0 !important;
     transform: none !important;
     transition: none;
}
 .navbar-expand .offcanvas .offcanvas-header {
     display: none;
}
 .navbar-expand .offcanvas .offcanvas-body {
     display: flex;
     flex-grow: 0;
     padding: 0;
     overflow-y: visible;
}
 .navbar-dark {
     --bs-navbar-color: rgba(255, 255, 255, 0.55);
     --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
     --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
     --bs-navbar-active-color: #fff;
     --bs-navbar-brand-color: #fff;
     --bs-navbar-brand-hover-color: #fff;
     --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
     --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
 .card {
     --bs-card-spacer-y: 1rem;
     --bs-card-spacer-x: 1rem;
     --bs-card-title-spacer-y: 0.5rem;
     --bs-card-border-width: 1px;
     --bs-card-border-color: var(--bs-border-color-translucent);
     --bs-card-border-radius: 0.375rem;
     --bs-card-box-shadow: ;
     --bs-card-inner-border-radius: calc(0.375rem - 1px);
     --bs-card-cap-padding-y: 0.5rem;
     --bs-card-cap-padding-x: 1rem;
     --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
     --bs-card-cap-color: ;
     --bs-card-height: ;
     --bs-card-color: ;
     --bs-card-bg: #fff;
     --bs-card-img-overlay-padding: 1rem;
     --bs-card-group-margin: 0.75rem;
     position: relative;
     display: flex;
     flex-direction: column;
     min-width: 0;
     height: var(--bs-card-height);
     word-wrap: break-word;
     background-color: var(--bs-card-bg);
     background-clip: border-box;
     border: var(--bs-card-border-width) solid var(--bs-card-border-color);
     border-radius: var(--bs-card-border-radius);
}
 .card > hr {
     margin-right: 0;
     margin-left: 0;
}
 .card > .list-group {
     border-top: inherit;
     border-bottom: inherit;
}
 .card > .list-group:first-child {
     border-top-width: 0;
     border-top-left-radius: var(--bs-card-inner-border-radius);
     border-top-right-radius: var(--bs-card-inner-border-radius);
}
 .card > .list-group:last-child {
     border-bottom-width: 0;
     border-bottom-right-radius: var(--bs-card-inner-border-radius);
     border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
 .card > .card-header + .list-group, .card > .list-group + .card-footer {
     border-top: 0;
}
 .card-body {
     flex: 1 1 auto;
     padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
     color: var(--bs-card-color);
}
 .card-title {
     margin-bottom: var(--bs-card-title-spacer-y);
}
 .card-subtitle {
     margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
     margin-bottom: 0;
}
 .card-text:last-child {
     margin-bottom: 0;
}
 .card-link + .card-link {
     margin-left: var(--bs-card-spacer-x);
}
 .card-header {
     padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
     margin-bottom: 0;
     color: var(--bs-card-cap-color);
     background-color: var(--bs-card-cap-bg);
     border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
 .card-header:first-child {
     border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}
 .card-footer {
     padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
     color: var(--bs-card-cap-color);
     background-color: var(--bs-card-cap-bg);
     border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
 .card-footer:last-child {
     border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}
 .card-header-tabs {
     margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
     margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
     margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
     border-bottom: 0;
}
 .card-header-tabs .nav-link.active {
     background-color: var(--bs-card-bg);
     border-bottom-color: var(--bs-card-bg);
}
 .card-header-pills {
     margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
     margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}
 .card-img-overlay {
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     padding: var(--bs-card-img-overlay-padding);
     border-radius: var(--bs-card-inner-border-radius);
}
 .card-img, .card-img-top, .card-img-bottom {
     width: 100%;
}
 .card-img, .card-img-top {
     border-top-left-radius: var(--bs-card-inner-border-radius);
     border-top-right-radius: var(--bs-card-inner-border-radius);
}
 .card-img, .card-img-bottom {
     border-bottom-right-radius: var(--bs-card-inner-border-radius);
     border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
 .card-group > .card {
     margin-bottom: var(--bs-card-group-margin);
}
 @media (min-width: 576px) {
     .card-group {
         display: flex;
         flex-flow: row wrap;
    }
     .card-group > .card {
         flex: 1 0 0%;
         margin-bottom: 0;
    }
     .card-group > .card + .card {
         margin-left: 0;
         border-left: 0;
    }
     .card-group > .card:not(:last-child) {
         border-top-right-radius: 0;
         border-bottom-right-radius: 0;
    }
     .card-group > .card:not(:last-child) .card-img-top, .card-group > .card:not(:last-child) .card-header {
         border-top-right-radius: 0;
    }
     .card-group > .card:not(:last-child) .card-img-bottom, .card-group > .card:not(:last-child) .card-footer {
         border-bottom-right-radius: 0;
    }
     .card-group > .card:not(:first-child) {
         border-top-left-radius: 0;
         border-bottom-left-radius: 0;
    }
     .card-group > .card:not(:first-child) .card-img-top, .card-group > .card:not(:first-child) .card-header {
         border-top-left-radius: 0;
    }
     .card-group > .card:not(:first-child) .card-img-bottom, .card-group > .card:not(:first-child) .card-footer {
         border-bottom-left-radius: 0;
    }
}
 .accordion {
     --bs-accordion-color: #212529;
     --bs-accordion-bg: #fff;
     --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
     --bs-accordion-border-color: var(--bs-border-color);
     --bs-accordion-border-width: 1px;
     --bs-accordion-border-radius: 0.375rem;
     --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
     --bs-accordion-btn-padding-x: 1.25rem;
     --bs-accordion-btn-padding-y: 1rem;
     --bs-accordion-btn-color: #212529;
     --bs-accordion-btn-bg: var(--bs-accordion-bg);
     --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
     --bs-accordion-btn-icon-width: 1.25rem;
     --bs-accordion-btn-icon-transform: rotate(-180deg);
     --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
     --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
     --bs-accordion-btn-focus-border-color: #86b7fe;
     --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
     --bs-accordion-body-padding-x: 1.25rem;
     --bs-accordion-body-padding-y: 1rem;
     --bs-accordion-active-color: #0c63e4;
     --bs-accordion-active-bg: #e7f1ff;
}
 .accordion-button {
     position: relative;
     display: flex;
     align-items: center;
     width: 100%;
     padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
     font-size: 1rem;
     color: var(--bs-accordion-btn-color);
     text-align: left;
     background-color: var(--bs-accordion-btn-bg);
     border: 0;
     border-radius: 0;
     overflow-anchor: none;
     transition: var(--bs-accordion-transition);
}
 @media (prefers-reduced-motion: reduce) {
     .accordion-button {
         transition: none;
    }
}
 .accordion-button:not(.collapsed) {
     color: var(--bs-accordion-active-color);
     background-color: var(--bs-accordion-active-bg);
     box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
 .accordion-button:not(.collapsed)::after {
     background-image: var(--bs-accordion-btn-active-icon);
     transform: var(--bs-accordion-btn-icon-transform);
}
 .accordion-button::after {
     flex-shrink: 0;
     width: var(--bs-accordion-btn-icon-width);
     height: var(--bs-accordion-btn-icon-width);
     margin-left: auto;
     content: "";
     background-image: var(--bs-accordion-btn-icon);
     background-repeat: no-repeat;
     background-size: var(--bs-accordion-btn-icon-width);
     transition: var(--bs-accordion-btn-icon-transition);
}
 @media (prefers-reduced-motion: reduce) {
     .accordion-button::after {
         transition: none;
    }
}
 .accordion-button:hover {
     z-index: 2;
}
 .accordion-button:focus {
     z-index: 3;
     border-color: var(--bs-accordion-btn-focus-border-color);
     outline: 0;
     box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}
 .accordion-header {
     margin-bottom: 0;
}
 .accordion-item {
     color: var(--bs-accordion-color);
     background-color: var(--bs-accordion-bg);
     border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
 .accordion-item:first-of-type {
     border-top-left-radius: var(--bs-accordion-border-radius);
     border-top-right-radius: var(--bs-accordion-border-radius);
}
 .accordion-item:first-of-type .accordion-button {
     border-top-left-radius: var(--bs-accordion-inner-border-radius);
     border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
 .accordion-item:not(:first-of-type) {
     border-top: 0;
}
 .accordion-item:last-of-type {
     border-bottom-right-radius: var(--bs-accordion-border-radius);
     border-bottom-left-radius: var(--bs-accordion-border-radius);
}
 .accordion-item:last-of-type .accordion-button.collapsed {
     border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
     border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
 .accordion-item:last-of-type .accordion-collapse {
     border-bottom-right-radius: var(--bs-accordion-border-radius);
     border-bottom-left-radius: var(--bs-accordion-border-radius);
}
 .accordion-body {
     padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}
 .accordion-flush .accordion-collapse {
     border-width: 0;
}
 .accordion-flush .accordion-item {
     border-right: 0;
     border-left: 0;
     border-radius: 0;
}
 .accordion-flush .accordion-item:first-child {
     border-top: 0;
}
 .accordion-flush .accordion-item:last-child {
     border-bottom: 0;
}
 .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
     border-radius: 0;
}
 .breadcrumb {
     --bs-breadcrumb-padding-x: 0;
     --bs-breadcrumb-padding-y: 0;
     --bs-breadcrumb-margin-bottom: 1rem;
     --bs-breadcrumb-bg: ;
     --bs-breadcrumb-border-radius: ;
     --bs-breadcrumb-divider-color: #6c757d;
     --bs-breadcrumb-item-padding-x: 0.5rem;
     --bs-breadcrumb-item-active-color: #6c757d;
     display: flex;
     flex-wrap: wrap;
     padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
     margin-bottom: var(--bs-breadcrumb-margin-bottom);
     font-size: var(--bs-breadcrumb-font-size);
     list-style: none;
     background-color: var(--bs-breadcrumb-bg);
     border-radius: var(--bs-breadcrumb-border-radius);
}
 .breadcrumb-item + .breadcrumb-item {
     padding-left: var(--bs-breadcrumb-item-padding-x);
}
 .breadcrumb-item + .breadcrumb-item::before {
     float: left;
     padding-right: var(--bs-breadcrumb-item-padding-x);
     color: var(--bs-breadcrumb-divider-color);
     content: var(--bs-breadcrumb-divider, "/") 
    /* rtl: var(--bs-breadcrumb-divider, "/") */
    ;
}
 .breadcrumb-item.active {
     color: var(--bs-breadcrumb-item-active-color);
}
 .pagination {
     --bs-pagination-padding-x: 0.75rem;
     --bs-pagination-padding-y: 0.375rem;
     --bs-pagination-font-size: 1rem;
     --bs-pagination-color: var(--bs-link-color);
     --bs-pagination-bg: #fff;
     --bs-pagination-border-width: 1px;
     --bs-pagination-border-color: #dee2e6;
     --bs-pagination-border-radius: 0.375rem;
     --bs-pagination-hover-color: var(--bs-link-hover-color);
     --bs-pagination-hover-bg: #e9ecef;
     --bs-pagination-hover-border-color: #dee2e6;
     --bs-pagination-focus-color: var(--bs-link-hover-color);
     --bs-pagination-focus-bg: #e9ecef;
     --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
     --bs-pagination-active-color: #fff;
     --bs-pagination-active-bg: #0d6efd;
     --bs-pagination-active-border-color: #0d6efd;
     --bs-pagination-disabled-color: #6c757d;
     --bs-pagination-disabled-bg: #fff;
     --bs-pagination-disabled-border-color: #dee2e6;
     display: flex;
     padding-left: 0;
     list-style: none;
}
 .page-link {
     position: relative;
     display: block;
     padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
     font-size: var(--bs-pagination-font-size);
     color: var(--bs-pagination-color);
     text-decoration: none;
     background-color: var(--bs-pagination-bg);
     border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
     transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
 @media (prefers-reduced-motion: reduce) {
     .page-link {
         transition: none;
    }
}
 .page-link:hover {
     z-index: 2;
     color: var(--bs-pagination-hover-color);
     background-color: var(--bs-pagination-hover-bg);
     border-color: var(--bs-pagination-hover-border-color);
}
 .page-link:focus {
     z-index: 3;
     color: var(--bs-pagination-focus-color);
     background-color: var(--bs-pagination-focus-bg);
     outline: 0;
     box-shadow: var(--bs-pagination-focus-box-shadow);
}
 .page-link.active, .active > .page-link {
     z-index: 3;
     color: var(--bs-pagination-active-color);
     background-color: var(--bs-pagination-active-bg);
     border-color: var(--bs-pagination-active-border-color);
}
 .page-link.disabled, .disabled > .page-link {
     color: var(--bs-pagination-disabled-color);
     pointer-events: none;
     background-color: var(--bs-pagination-disabled-bg);
     border-color: var(--bs-pagination-disabled-border-color);
}
 .page-item:not(:first-child) .page-link {
     margin-left: -1px;
}
 .page-item:first-child .page-link {
     border-top-left-radius: var(--bs-pagination-border-radius);
     border-bottom-left-radius: var(--bs-pagination-border-radius);
}
 .page-item:last-child .page-link {
     border-top-right-radius: var(--bs-pagination-border-radius);
     border-bottom-right-radius: var(--bs-pagination-border-radius);
}
 .pagination-lg {
     --bs-pagination-padding-x: 1.5rem;
     --bs-pagination-padding-y: 0.75rem;
     --bs-pagination-font-size: 1.25rem;
     --bs-pagination-border-radius: 0.5rem;
}
 .pagination-sm {
     --bs-pagination-padding-x: 0.5rem;
     --bs-pagination-padding-y: 0.25rem;
     --bs-pagination-font-size: 0.875rem;
     --bs-pagination-border-radius: 0.25rem;
}
 .badge {
     --bs-badge-padding-x: 0.65em;
     --bs-badge-padding-y: 0.35em;
     --bs-badge-font-size: 0.75em;
     --bs-badge-font-weight: 700;
     --bs-badge-color: #fff;
     --bs-badge-border-radius: 0.375rem;
     display: inline-block;
     padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
     font-size: var(--bs-badge-font-size);
     font-weight: var(--bs-badge-font-weight);
     line-height: 1;
     color: var(--bs-badge-color);
     text-align: center;
     white-space: nowrap;
     vertical-align: baseline;
     border-radius: var(--bs-badge-border-radius);
}
 .badge:empty {
     display: none;
}
 .btn .badge {
     position: relative;
     top: -1px;
}
 .alert {
     --bs-alert-bg: transparent;
     --bs-alert-padding-x: 1rem;
     --bs-alert-padding-y: 1rem;
     --bs-alert-margin-bottom: 1rem;
     --bs-alert-color: inherit;
     --bs-alert-border-color: transparent;
     --bs-alert-border: 1px solid var(--bs-alert-border-color);
     --bs-alert-border-radius: 0.375rem;
     position: relative;
     padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
     margin-bottom: var(--bs-alert-margin-bottom);
     color: var(--bs-alert-color);
     background-color: var(--bs-alert-bg);
     border: var(--bs-alert-border);
     border-radius: var(--bs-alert-border-radius);
}
 .alert-heading {
     color: inherit;
}
 .alert-link {
     font-weight: 700;
}
 .alert-dismissible {
     padding-right: 3rem;
}
 .alert-dismissible .btn-close {
     position: absolute;
     top: 0;
     right: 0;
     z-index: 2;
     padding: 1.25rem 1rem;
}
 .alert-primary {
     --bs-alert-color: #084298;
     --bs-alert-bg: #cfe2ff;
     --bs-alert-border-color: #b6d4fe;
}
 .alert-primary .alert-link {
     color: #06357a;
}
 .alert-secondary {
     --bs-alert-color: #41464b;
     --bs-alert-bg: #e2e3e5;
     --bs-alert-border-color: #d3d6d8;
}
 .alert-secondary .alert-link {
     color: #34383c;
}
 .alert-success {
     --bs-alert-color: #0f5132;
     --bs-alert-bg: #d1e7dd;
     --bs-alert-border-color: #badbcc;
}
 .alert-success .alert-link {
     color: #0c4128;
}
 .alert-info {
     --bs-alert-color: #055160;
     --bs-alert-bg: #cff4fc;
     --bs-alert-border-color: #b6effb;
}
 .alert-info .alert-link {
     color: #04414d;
}
 .alert-warning {
     --bs-alert-color: #664d03;
     --bs-alert-bg: #fff3cd;
     --bs-alert-border-color: #ffecb5;
}
 .alert-warning .alert-link {
     color: #523e02;
}
 .alert-danger {
     --bs-alert-color: #842029;
     --bs-alert-bg: #f8d7da;
     --bs-alert-border-color: #f5c2c7;
}
 .alert-danger .alert-link {
     color: #6a1a21;
}
 .alert-light {
     --bs-alert-color: #636464;
     --bs-alert-bg: #fefefe;
     --bs-alert-border-color: #fdfdfe;
}
 .alert-light .alert-link {
     color: #4f5050;
}
 .alert-dark {
     --bs-alert-color: #141619;
     --bs-alert-bg: #d3d3d4;
     --bs-alert-border-color: #bcbebf;
}
 .alert-dark .alert-link {
     color: #101214;
}
 @keyframes progress-bar-stripes {
     0% {
         background-position-x: 1rem;
    }
}
 .progress {
     --bs-progress-height: 1rem;
     --bs-progress-font-size: 0.75rem;
     --bs-progress-bg: #e9ecef;
     --bs-progress-border-radius: 0.375rem;
     --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
     --bs-progress-bar-color: #fff;
     --bs-progress-bar-bg: #0d6efd;
     --bs-progress-bar-transition: width 0.6s ease;
     display: flex;
     height: var(--bs-progress-height);
     overflow: hidden;
     font-size: var(--bs-progress-font-size);
     background-color: var(--bs-progress-bg);
     border-radius: var(--bs-progress-border-radius);
}
 .progress-bar {
     display: flex;
     flex-direction: column;
     justify-content: center;
     overflow: hidden;
     color: var(--bs-progress-bar-color);
     text-align: center;
     white-space: nowrap;
     background-color: var(--bs-progress-bar-bg);
     transition: var(--bs-progress-bar-transition);
}
 @media (prefers-reduced-motion: reduce) {
     .progress-bar {
         transition: none;
    }
}
 .progress-bar-striped {
     background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
     background-size: var(--bs-progress-height) var(--bs-progress-height);
}
 .progress-bar-animated {
     animation: 1s linear infinite progress-bar-stripes;
}
 @media (prefers-reduced-motion: reduce) {
     .progress-bar-animated {
         animation: none;
    }
}
 .list-group {
     --bs-list-group-color: #212529;
     --bs-list-group-bg: #fff;
     --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
     --bs-list-group-border-width: 1px;
     --bs-list-group-border-radius: 0.375rem;
     --bs-list-group-item-padding-x: 1rem;
     --bs-list-group-item-padding-y: 0.5rem;
     --bs-list-group-action-color: #495057;
     --bs-list-group-action-hover-color: #495057;
     --bs-list-group-action-hover-bg: #f8f9fa;
     --bs-list-group-action-active-color: #212529;
     --bs-list-group-action-active-bg: #e9ecef;
     --bs-list-group-disabled-color: #6c757d;
     --bs-list-group-disabled-bg: #fff;
     --bs-list-group-active-color: #fff;
     --bs-list-group-active-bg: #0d6efd;
     --bs-list-group-active-border-color: #0d6efd;
     display: flex;
     flex-direction: column;
     padding-left: 0;
     margin-bottom: 0;
     border-radius: var(--bs-list-group-border-radius);
}
 .list-group-numbered {
     list-style-type: none;
     counter-reset: section;
}
 .list-group-numbered > .list-group-item::before {
     content: counters(section, ".") ". ";
     counter-increment: section;
}
 .list-group-item-action {
     width: 100%;
     color: var(--bs-list-group-action-color);
     text-align: inherit;
}
 .list-group-item-action:hover, .list-group-item-action:focus {
     z-index: 1;
     color: var(--bs-list-group-action-hover-color);
     text-decoration: none;
     background-color: var(--bs-list-group-action-hover-bg);
}
 .list-group-item-action:active {
     color: var(--bs-list-group-action-active-color);
     background-color: var(--bs-list-group-action-active-bg);
}
 .list-group-item {
     position: relative;
     display: block;
     padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
     color: var(--bs-list-group-color);
     text-decoration: none;
     background-color: var(--bs-list-group-bg);
     border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
 .list-group-item:first-child {
     border-top-left-radius: inherit;
     border-top-right-radius: inherit;
}
 .list-group-item:last-child {
     border-bottom-right-radius: inherit;
     border-bottom-left-radius: inherit;
}
 .list-group-item.disabled, .list-group-item:disabled {
     color: var(--bs-list-group-disabled-color);
     pointer-events: none;
     background-color: var(--bs-list-group-disabled-bg);
}
 .list-group-item.active {
     z-index: 2;
     color: var(--bs-list-group-active-color);
     background-color: var(--bs-list-group-active-bg);
     border-color: var(--bs-list-group-active-border-color);
}
 .list-group-item + .list-group-item {
     border-top-width: 0;
}
 .list-group-item + .list-group-item.active {
     margin-top: calc(-1 * var(--bs-list-group-border-width));
     border-top-width: var(--bs-list-group-border-width);
}
 .list-group-horizontal {
     flex-direction: row;
}
 .list-group-horizontal > .list-group-item:first-child:not(:last-child) {
     border-bottom-left-radius: var(--bs-list-group-border-radius);
     border-top-right-radius: 0;
}
 .list-group-horizontal > .list-group-item:last-child:not(:first-child) {
     border-top-right-radius: var(--bs-list-group-border-radius);
     border-bottom-left-radius: 0;
}
 .list-group-horizontal > .list-group-item.active {
     margin-top: 0;
}
 .list-group-horizontal > .list-group-item + .list-group-item {
     border-top-width: var(--bs-list-group-border-width);
     border-left-width: 0;
}
 .list-group-horizontal > .list-group-item + .list-group-item.active {
     margin-left: calc(-1 * var(--bs-list-group-border-width));
     border-left-width: var(--bs-list-group-border-width);
}
 @media (min-width: 576px) {
     .list-group-horizontal-sm {
         flex-direction: row;
    }
     .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
         border-bottom-left-radius: var(--bs-list-group-border-radius);
         border-top-right-radius: 0;
    }
     .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
         border-top-right-radius: var(--bs-list-group-border-radius);
         border-bottom-left-radius: 0;
    }
     .list-group-horizontal-sm > .list-group-item.active {
         margin-top: 0;
    }
     .list-group-horizontal-sm > .list-group-item + .list-group-item {
         border-top-width: var(--bs-list-group-border-width);
         border-left-width: 0;
    }
     .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
         margin-left: calc(-1 * var(--bs-list-group-border-width));
         border-left-width: var(--bs-list-group-border-width);
    }
}
 @media (min-width: 768px) {
     .list-group-horizontal-md {
         flex-direction: row;
    }
     .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
         border-bottom-left-radius: var(--bs-list-group-border-radius);
         border-top-right-radius: 0;
    }
     .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
         border-top-right-radius: var(--bs-list-group-border-radius);
         border-bottom-left-radius: 0;
    }
     .list-group-horizontal-md > .list-group-item.active {
         margin-top: 0;
    }
     .list-group-horizontal-md > .list-group-item + .list-group-item {
         border-top-width: var(--bs-list-group-border-width);
         border-left-width: 0;
    }
     .list-group-horizontal-md > .list-group-item + .list-group-item.active {
         margin-left: calc(-1 * var(--bs-list-group-border-width));
         border-left-width: var(--bs-list-group-border-width);
    }
}
 @media (min-width: 992px) {
     .list-group-horizontal-lg {
         flex-direction: row;
    }
     .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
         border-bottom-left-radius: var(--bs-list-group-border-radius);
         border-top-right-radius: 0;
    }
     .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
         border-top-right-radius: var(--bs-list-group-border-radius);
         border-bottom-left-radius: 0;
    }
     .list-group-horizontal-lg > .list-group-item.active {
         margin-top: 0;
    }
     .list-group-horizontal-lg > .list-group-item + .list-group-item {
         border-top-width: var(--bs-list-group-border-width);
         border-left-width: 0;
    }
     .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
         margin-left: calc(-1 * var(--bs-list-group-border-width));
         border-left-width: var(--bs-list-group-border-width);
    }
}
 @media (min-width: 1200px) {
     .list-group-horizontal-xl {
         flex-direction: row;
    }
     .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
         border-bottom-left-radius: var(--bs-list-group-border-radius);
         border-top-right-radius: 0;
    }
     .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
         border-top-right-radius: var(--bs-list-group-border-radius);
         border-bottom-left-radius: 0;
    }
     .list-group-horizontal-xl > .list-group-item.active {
         margin-top: 0;
    }
     .list-group-horizontal-xl > .list-group-item + .list-group-item {
         border-top-width: var(--bs-list-group-border-width);
         border-left-width: 0;
    }
     .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
         margin-left: calc(-1 * var(--bs-list-group-border-width));
         border-left-width: var(--bs-list-group-border-width);
    }
}
 @media (min-width: 1400px) {
     .list-group-horizontal-xxl {
         flex-direction: row;
    }
     .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
         border-bottom-left-radius: var(--bs-list-group-border-radius);
         border-top-right-radius: 0;
    }
     .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
         border-top-right-radius: var(--bs-list-group-border-radius);
         border-bottom-left-radius: 0;
    }
     .list-group-horizontal-xxl > .list-group-item.active {
         margin-top: 0;
    }
     .list-group-horizontal-xxl > .list-group-item + .list-group-item {
         border-top-width: var(--bs-list-group-border-width);
         border-left-width: 0;
    }
     .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
         margin-left: calc(-1 * var(--bs-list-group-border-width));
         border-left-width: var(--bs-list-group-border-width);
    }
}
 .list-group-flush {
     border-radius: 0;
}
 .list-group-flush > .list-group-item {
     border-width: 0 0 var(--bs-list-group-border-width);
}
 .list-group-flush > .list-group-item:last-child {
     border-bottom-width: 0;
}
 .list-group-item-primary {
     color: #084298;
     background-color: #cfe2ff;
}
 .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
     color: #084298;
     background-color: #bacbe6;
}
 .list-group-item-primary.list-group-item-action.active {
     color: #fff;
     background-color: #084298;
     border-color: #084298;
}
 .list-group-item-secondary {
     color: #41464b;
     background-color: #e2e3e5;
}
 .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
     color: #41464b;
     background-color: #cbccce;
}
 .list-group-item-secondary.list-group-item-action.active {
     color: #fff;
     background-color: #41464b;
     border-color: #41464b;
}
 .list-group-item-success {
     color: #0f5132;
     background-color: #d1e7dd;
}
 .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
     color: #0f5132;
     background-color: #bcd0c7;
}
 .list-group-item-success.list-group-item-action.active {
     color: #fff;
     background-color: #0f5132;
     border-color: #0f5132;
}
 .list-group-item-info {
     color: #055160;
     background-color: #cff4fc;
}
 .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
     color: #055160;
     background-color: #badce3;
}
 .list-group-item-info.list-group-item-action.active {
     color: #fff;
     background-color: #055160;
     border-color: #055160;
}
 .list-group-item-warning {
     color: #664d03;
     background-color: #fff3cd;
}
 .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
     color: #664d03;
     background-color: #e6dbb9;
}
 .list-group-item-warning.list-group-item-action.active {
     color: #fff;
     background-color: #664d03;
     border-color: #664d03;
}
 .list-group-item-danger {
     color: #842029;
     background-color: #f8d7da;
}
 .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
     color: #842029;
     background-color: #dfc2c4;
}
 .list-group-item-danger.list-group-item-action.active {
     color: #fff;
     background-color: #842029;
     border-color: #842029;
}
 .list-group-item-light {
     color: #636464;
     background-color: #fefefe;
}
 .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
     color: #636464;
     background-color: #e5e5e5;
}
 .list-group-item-light.list-group-item-action.active {
     color: #fff;
     background-color: #636464;
     border-color: #636464;
}
 .list-group-item-dark {
     color: #141619;
     background-color: #d3d3d4;
}
 .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
     color: #141619;
     background-color: #bebebf;
}
 .list-group-item-dark.list-group-item-action.active {
     color: #fff;
     background-color: #141619;
     border-color: #141619;
}
 .btn-close {
     box-sizing: content-box;
     width: 1em;
     height: 1em;
     padding: 0.25em 0.25em;
     color: #000;
     background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
     border: 0;
     border-radius: 0.375rem;
     opacity: 0.5;
}
 .btn-close:hover {
     color: #000;
     text-decoration: none;
     opacity: 0.75;
}
 .btn-close:focus {
     outline: 0;
     box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
     opacity: 1;
}
 .btn-close:disabled, .btn-close.disabled {
     pointer-events: none;
     -webkit-user-select: none;
     -moz-user-select: none;
     user-select: none;
     opacity: 0.25;
}
 .btn-close-white {
     filter: invert(1) grayscale(100%) brightness(200%);
}
 .toast {
     --bs-toast-zindex: 1090;
     --bs-toast-padding-x: 0.75rem;
     --bs-toast-padding-y: 0.5rem;
     --bs-toast-spacing: 1.5rem;
     --bs-toast-max-width: 350px;
     --bs-toast-font-size: 0.875rem;
     --bs-toast-color: ;
     --bs-toast-bg: rgba(255, 255, 255, 0.85);
     --bs-toast-border-width: 1px;
     --bs-toast-border-color: var(--bs-border-color-translucent);
     --bs-toast-border-radius: 0.375rem;
     --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
     --bs-toast-header-color: #6c757d;
     --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
     --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
     width: var(--bs-toast-max-width);
     max-width: 100%;
     font-size: var(--bs-toast-font-size);
     color: var(--bs-toast-color);
     pointer-events: auto;
     background-color: var(--bs-toast-bg);
     background-clip: padding-box;
     border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
     box-shadow: var(--bs-toast-box-shadow);
     border-radius: var(--bs-toast-border-radius);
}
 .toast.showing {
     opacity: 0;
}
 .toast:not(.show) {
     display: none;
}
 .toast-container {
     --bs-toast-zindex: 1090;
     position: absolute;
     z-index: var(--bs-toast-zindex);
     width: -moz-max-content;
     width: max-content;
     max-width: 100%;
     pointer-events: none;
}
 .toast-container > :not(:last-child) {
     margin-bottom: var(--bs-toast-spacing);
}
 .toast-header {
     display: flex;
     align-items: center;
     padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
     color: var(--bs-toast-header-color);
     background-color: var(--bs-toast-header-bg);
     background-clip: padding-box;
     border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
     border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
     border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}
 .toast-header .btn-close {
     margin-right: calc(-0.5 * var(--bs-toast-padding-x));
     margin-left: var(--bs-toast-padding-x);
}
 .toast-body {
     padding: var(--bs-toast-padding-x);
     word-wrap: break-word;
}
 .modal {
     --bs-modal-zindex: 1055;
     --bs-modal-width: 500px;
     --bs-modal-padding: 1rem;
     --bs-modal-margin: 0.5rem;
     --bs-modal-color: ;
     --bs-modal-bg: #fff;
     --bs-modal-border-color: var(--bs-border-color-translucent);
     --bs-modal-border-width: 1px;
     --bs-modal-border-radius: 0.5rem;
     --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
     --bs-modal-inner-border-radius: calc(0.5rem - 1px);
     --bs-modal-header-padding-x: 1rem;
     --bs-modal-header-padding-y: 1rem;
     --bs-modal-header-padding: 1rem 1rem;
     --bs-modal-header-border-color: var(--bs-border-color);
     --bs-modal-header-border-width: 1px;
     --bs-modal-title-line-height: 1.5;
     --bs-modal-footer-gap: 0.5rem;
     --bs-modal-footer-bg: ;
     --bs-modal-footer-border-color: var(--bs-border-color);
     --bs-modal-footer-border-width: 1px;
     position: fixed;
     top: 0;
     left: 0;
     z-index: var(--bs-modal-zindex);
     display: none;
     width: 100%;
     height: 100%;
     overflow-x: hidden;
     overflow-y: auto;
     outline: 0;
}
 .modal-dialog {
     position: relative;
     width: auto;
     margin: var(--bs-modal-margin);
     pointer-events: none;
}
 .modal.fade .modal-dialog {
     transition: transform 0.3s ease-out;
     transform: translate(0, -50px);
}
 @media (prefers-reduced-motion: reduce) {
     .modal.fade .modal-dialog {
         transition: none;
    }
}
 .modal.show .modal-dialog {
     transform: none;
}
 .modal.modal-static .modal-dialog {
     transform: scale(1.02);
}
 .modal-dialog-scrollable {
     height: calc(100% - var(--bs-modal-margin) * 2);
}
 .modal-dialog-scrollable .modal-content {
     max-height: 100%;
     overflow: hidden;
}
 .modal-dialog-scrollable .modal-body {
     overflow-y: auto;
}
 .modal-dialog-centered {
     display: flex;
     align-items: center;
     min-height: calc(100% - var(--bs-modal-margin) * 2);
}
 .modal-content {
     position: relative;
     display: flex;
     flex-direction: column;
     width: 100%;
     color: var(--bs-modal-color);
     pointer-events: auto;
     background-color: var(--bs-modal-bg);
     background-clip: padding-box;
     border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
     border-radius: var(--bs-modal-border-radius);
     outline: 0;
}
 .modal-backdrop {
     --bs-backdrop-zindex: 1050;
     --bs-backdrop-bg: #000;
     --bs-backdrop-opacity: 0.5;
     position: fixed;
     top: 0;
     left: 0;
     z-index: var(--bs-backdrop-zindex);
     width: 100vw;
     height: 100vh;
     background-color: var(--bs-backdrop-bg);
}
 .modal-backdrop.fade {
     opacity: 0;
}
 .modal-backdrop.show {
     opacity: var(--bs-backdrop-opacity);
}
 .modal-header {
     display: flex;
     flex-shrink: 0;
     align-items: center;
     justify-content: space-between;
     padding: var(--bs-modal-header-padding);
     border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
     border-top-left-radius: var(--bs-modal-inner-border-radius);
     border-top-right-radius: var(--bs-modal-inner-border-radius);
}
 .modal-header .btn-close {
     padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
     margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}
 .modal-title {
     margin-bottom: 0;
     line-height: var(--bs-modal-title-line-height);
}
 .modal-body {
     position: relative;
     flex: 1 1 auto;
     padding: var(--bs-modal-padding);
}
 .modal-footer {
     display: flex;
     flex-shrink: 0;
     flex-wrap: wrap;
     align-items: center;
     justify-content: flex-end;
     padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
     background-color: var(--bs-modal-footer-bg);
     border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
     border-bottom-right-radius: var(--bs-modal-inner-border-radius);
     border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
 .modal-footer > * {
     margin: calc(var(--bs-modal-footer-gap) * 0.5);
}
 @media (min-width: 576px) {
     .modal {
         --bs-modal-margin: 1.75rem;
         --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }
     .modal-dialog {
         max-width: var(--bs-modal-width);
         margin-right: auto;
         margin-left: auto;
    }
     .modal-sm {
         --bs-modal-width: 300px;
    }
}
 @media (min-width: 992px) {
     .modal-lg, .modal-xl {
         --bs-modal-width: 800px;
    }
}
 @media (min-width: 1200px) {
     .modal-xl {
         --bs-modal-width: 1140px;
    }
}
 .modal-fullscreen {
     width: 100vw;
     max-width: none;
     height: 100%;
     margin: 0;
}
 .modal-fullscreen .modal-content {
     height: 100%;
     border: 0;
     border-radius: 0;
}
 .modal-fullscreen .modal-header, .modal-fullscreen .modal-footer {
     border-radius: 0;
}
 .modal-fullscreen .modal-body {
     overflow-y: auto;
}
 @media (max-width: 575.98px) {
     .modal-fullscreen-sm-down {
         width: 100vw;
         max-width: none;
         height: 100%;
         margin: 0;
    }
     .modal-fullscreen-sm-down .modal-content {
         height: 100%;
         border: 0;
         border-radius: 0;
    }
     .modal-fullscreen-sm-down .modal-header, .modal-fullscreen-sm-down .modal-footer {
         border-radius: 0;
    }
     .modal-fullscreen-sm-down .modal-body {
         overflow-y: auto;
    }
}
 @media (max-width: 767.98px) {
     .modal-fullscreen-md-down {
         width: 100vw;
         max-width: none;
         height: 100%;
         margin: 0;
    }
     .modal-fullscreen-md-down .modal-content {
         height: 100%;
         border: 0;
         border-radius: 0;
    }
     .modal-fullscreen-md-down .modal-header, .modal-fullscreen-md-down .modal-footer {
         border-radius: 0;
    }
     .modal-fullscreen-md-down .modal-body {
         overflow-y: auto;
    }
}
 @media (max-width: 991.98px) {
     .modal-fullscreen-lg-down {
         width: 100vw;
         max-width: none;
         height: 100%;
         margin: 0;
    }
     .modal-fullscreen-lg-down .modal-content {
         height: 100%;
         border: 0;
         border-radius: 0;
    }
     .modal-fullscreen-lg-down .modal-header, .modal-fullscreen-lg-down .modal-footer {
         border-radius: 0;
    }
     .modal-fullscreen-lg-down .modal-body {
         overflow-y: auto;
    }
}
 @media (max-width: 1199.98px) {
     .modal-fullscreen-xl-down {
         width: 100vw;
         max-width: none;
         height: 100%;
         margin: 0;
    }
     .modal-fullscreen-xl-down .modal-content {
         height: 100%;
         border: 0;
         border-radius: 0;
    }
     .modal-fullscreen-xl-down .modal-header, .modal-fullscreen-xl-down .modal-footer {
         border-radius: 0;
    }
     .modal-fullscreen-xl-down .modal-body {
         overflow-y: auto;
    }
}
 @media (max-width: 1399.98px) {
     .modal-fullscreen-xxl-down {
         width: 100vw;
         max-width: none;
         height: 100%;
         margin: 0;
    }
     .modal-fullscreen-xxl-down .modal-content {
         height: 100%;
         border: 0;
         border-radius: 0;
    }
     .modal-fullscreen-xxl-down .modal-header, .modal-fullscreen-xxl-down .modal-footer {
         border-radius: 0;
    }
     .modal-fullscreen-xxl-down .modal-body {
         overflow-y: auto;
    }
}
 .tooltip {
     --bs-tooltip-zindex: 1080;
     --bs-tooltip-max-width: 200px;
     --bs-tooltip-padding-x: 0.5rem;
     --bs-tooltip-padding-y: 0.25rem;
     --bs-tooltip-margin: ;
     --bs-tooltip-font-size: 0.875rem;
     --bs-tooltip-color: #fff;
     --bs-tooltip-bg: #000;
     --bs-tooltip-border-radius: 0.375rem;
     --bs-tooltip-opacity: 0.9;
     --bs-tooltip-arrow-width: 0.8rem;
     --bs-tooltip-arrow-height: 0.4rem;
     z-index: var(--bs-tooltip-zindex);
     display: block;
     padding: var(--bs-tooltip-arrow-height);
     margin: var(--bs-tooltip-margin);
     font-family: var(--bs-font-sans-serif);
     font-style: normal;
     font-weight: 400;
     line-height: 1.5;
     text-align: left;
     text-align: start;
     text-decoration: none;
     text-shadow: none;
     text-transform: none;
     letter-spacing: normal;
     word-break: normal;
     white-space: normal;
     word-spacing: normal;
     line-break: auto;
     font-size: var(--bs-tooltip-font-size);
     word-wrap: break-word;
     opacity: 0;
}
 .tooltip.show {
     opacity: var(--bs-tooltip-opacity);
}
 .tooltip .tooltip-arrow {
     display: block;
     width: var(--bs-tooltip-arrow-width);
     height: var(--bs-tooltip-arrow-height);
}
 .tooltip .tooltip-arrow::before {
     position: absolute;
     content: "";
     border-color: transparent;
     border-style: solid;
}
 .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
     bottom: 0;
}
 .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
     top: -1px;
     border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
     border-top-color: var(--bs-tooltip-bg);
}
/* rtl:begin:ignore */
 .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
     left: 0;
     width: var(--bs-tooltip-arrow-height);
     height: var(--bs-tooltip-arrow-width);
}
 .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
     right: -1px;
     border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
     border-right-color: var(--bs-tooltip-bg);
}
/* rtl:end:ignore */
 .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
     top: 0;
}
 .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
     bottom: -1px;
     border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
     border-bottom-color: var(--bs-tooltip-bg);
}
/* rtl:begin:ignore */
 .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
     right: 0;
     width: var(--bs-tooltip-arrow-height);
     height: var(--bs-tooltip-arrow-width);
}
 .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
     left: -1px;
     border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
     border-left-color: var(--bs-tooltip-bg);
}
/* rtl:end:ignore */
 .tooltip-inner {
     max-width: var(--bs-tooltip-max-width);
     padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
     color: var(--bs-tooltip-color);
     text-align: center;
     background-color: var(--bs-tooltip-bg);
     border-radius: var(--bs-tooltip-border-radius);
}
 .popover {
     --bs-popover-zindex: 1070;
     --bs-popover-max-width: 276px;
     --bs-popover-font-size: 0.875rem;
     --bs-popover-bg: #fff;
     --bs-popover-border-width: 1px;
     --bs-popover-border-color: var(--bs-border-color-translucent);
     --bs-popover-border-radius: 0.5rem;
     --bs-popover-inner-border-radius: calc(0.5rem - 1px);
     --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
     --bs-popover-header-padding-x: 1rem;
     --bs-popover-header-padding-y: 0.5rem;
     --bs-popover-header-font-size: 1rem;
     --bs-popover-header-color: ;
     --bs-popover-header-bg: #f0f0f0;
     --bs-popover-body-padding-x: 1rem;
     --bs-popover-body-padding-y: 1rem;
     --bs-popover-body-color: #212529;
     --bs-popover-arrow-width: 1rem;
     --bs-popover-arrow-height: 0.5rem;
     --bs-popover-arrow-border: var(--bs-popover-border-color);
     z-index: var(--bs-popover-zindex);
     display: block;
     max-width: var(--bs-popover-max-width);
     font-family: var(--bs-font-sans-serif);
     font-style: normal;
     font-weight: 400;
     line-height: 1.5;
     text-align: left;
     text-align: start;
     text-decoration: none;
     text-shadow: none;
     text-transform: none;
     letter-spacing: normal;
     word-break: normal;
     white-space: normal;
     word-spacing: normal;
     line-break: auto;
     font-size: var(--bs-popover-font-size);
     word-wrap: break-word;
     background-color: var(--bs-popover-bg);
     background-clip: padding-box;
     border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
     border-radius: var(--bs-popover-border-radius);
}
 .popover .popover-arrow {
     display: block;
     width: var(--bs-popover-arrow-width);
     height: var(--bs-popover-arrow-height);
}
 .popover .popover-arrow::before, .popover .popover-arrow::after {
     position: absolute;
     display: block;
     content: "";
     border-color: transparent;
     border-style: solid;
     border-width: 0;
}
 .bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
     bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
 .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
     border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
 .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
     bottom: 0;
     border-top-color: var(--bs-popover-arrow-border);
}
 .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
     bottom: var(--bs-popover-border-width);
     border-top-color: var(--bs-popover-bg);
}
/* rtl:begin:ignore */
 .bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
     left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
     width: var(--bs-popover-arrow-height);
     height: var(--bs-popover-arrow-width);
}
 .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
     border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
 .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
     left: 0;
     border-right-color: var(--bs-popover-arrow-border);
}
 .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
     left: var(--bs-popover-border-width);
     border-right-color: var(--bs-popover-bg);
}
/* rtl:end:ignore */
 .bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
     top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
 .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
     border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
 .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
     top: 0;
     border-bottom-color: var(--bs-popover-arrow-border);
}
 .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
     top: var(--bs-popover-border-width);
     border-bottom-color: var(--bs-popover-bg);
}
 .bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
     position: absolute;
     top: 0;
     left: 50%;
     display: block;
     width: var(--bs-popover-arrow-width);
     margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
     content: "";
     border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}
/* rtl:begin:ignore */
 .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
     right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
     width: var(--bs-popover-arrow-height);
     height: var(--bs-popover-arrow-width);
}
 .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
     border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
 .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
     right: 0;
     border-left-color: var(--bs-popover-arrow-border);
}
 .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
     right: var(--bs-popover-border-width);
     border-left-color: var(--bs-popover-bg);
}
/* rtl:end:ignore */
 .popover-header {
     padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
     margin-bottom: 0;
     font-size: var(--bs-popover-header-font-size);
     color: var(--bs-popover-header-color);
     background-color: var(--bs-popover-header-bg);
     border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
     border-top-left-radius: var(--bs-popover-inner-border-radius);
     border-top-right-radius: var(--bs-popover-inner-border-radius);
}
 .popover-header:empty {
     display: none;
}
 .popover-body {
     padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
     color: var(--bs-popover-body-color);
}
 .carousel {
     position: relative;
}
 .carousel.pointer-event {
     touch-action: pan-y;
}
 .carousel-inner {
     position: relative;
     width: 100%;
     overflow: hidden;
}
 .carousel-inner::after {
     display: block;
     clear: both;
     content: "";
}
 .carousel-item {
     position: relative;
     display: none;
     float: left;
     width: 100%;
     margin-right: -100%;
     -webkit-backface-visibility: hidden;
     backface-visibility: hidden;
     transition: transform 0.6s ease-in-out;
}
 @media (prefers-reduced-motion: reduce) {
     .carousel-item {
         transition: none;
    }
}
 .carousel-item.active, .carousel-item-next, .carousel-item-prev {
     display: block;
}
 .carousel-item-next:not(.carousel-item-start), .active.carousel-item-end {
     transform: translateX(100%);
}
 .carousel-item-prev:not(.carousel-item-end), .active.carousel-item-start {
     transform: translateX(-100%);
}
 .carousel-fade .carousel-item {
     opacity: 0;
     transition-property: opacity;
     transform: none;
}
 .carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end {
     z-index: 1;
     opacity: 1;
}
 .carousel-fade .active.carousel-item-start, .carousel-fade .active.carousel-item-end {
     z-index: 0;
     opacity: 0;
     transition: opacity 0s 0.6s;
}
 @media (prefers-reduced-motion: reduce) {
     .carousel-fade .active.carousel-item-start, .carousel-fade .active.carousel-item-end {
         transition: none;
    }
}
 .carousel-control-prev, .carousel-control-next {
     position: absolute;
     top: 0;
     bottom: 0;
     z-index: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 15%;
     padding: 0;
     color: #fff;
     text-align: center;
     background: none;
     border: 0;
     opacity: 0.5;
     transition: opacity 0.15s ease;
}
 @media (prefers-reduced-motion: reduce) {
     .carousel-control-prev, .carousel-control-next {
         transition: none;
    }
}
 .carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus {
     color: #fff;
     text-decoration: none;
     outline: 0;
     opacity: 0.9;
}
 .carousel-control-prev {
     left: 0;
}
 .carousel-control-next {
     right: 0;
}
 .carousel-control-prev-icon, .carousel-control-next-icon {
     display: inline-block;
     width: 2rem;
     height: 2rem;
     background-repeat: no-repeat;
     background-position: 50%;
     background-size: 100% 100%;
}
/* rtl:options: {
     "autoRename": true, "stringMap":[ {
         "name" : "prev-next", "search" : "prev", "replace" : "next" 
    }
     ] 
}
 */
 .carousel-control-prev-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
 .carousel-control-next-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
 .carousel-indicators {
     position: absolute;
     right: 0;
     bottom: 0;
     left: 0;
     z-index: 2;
     display: flex;
     justify-content: center;
     padding: 0;
     margin-right: 15%;
     margin-bottom: 1rem;
     margin-left: 15%;
     list-style: none;
}
 .carousel-indicators [data-bs-target] {
     box-sizing: content-box;
     flex: 0 1 auto;
     width: 30px;
     height: 3px;
     padding: 0;
     margin-right: 3px;
     margin-left: 3px;
     text-indent: -999px;
     cursor: pointer;
     background-color: #fff;
     background-clip: padding-box;
     border: 0;
     border-top: 10px solid transparent;
     border-bottom: 10px solid transparent;
     opacity: 0.5;
     transition: opacity 0.6s ease;
}
 @media (prefers-reduced-motion: reduce) {
     .carousel-indicators [data-bs-target] {
         transition: none;
    }
}
 .carousel-indicators .active {
     opacity: 1;
}
 .carousel-caption {
     position: absolute;
     right: 15%;
     bottom: 1.25rem;
     left: 15%;
     padding-top: 1.25rem;
     padding-bottom: 1.25rem;
     color: #fff;
     text-align: center;
}
 .carousel-dark .carousel-control-prev-icon, .carousel-dark .carousel-control-next-icon {
     filter: invert(1) grayscale(100);
}
 .carousel-dark .carousel-indicators [data-bs-target] {
     background-color: #000;
}
 .carousel-dark .carousel-caption {
     color: #000;
}
 .spinner-grow, .spinner-border {
     display: inline-block;
     width: var(--bs-spinner-width);
     height: var(--bs-spinner-height);
     vertical-align: var(--bs-spinner-vertical-align);
     border-radius: 50%;
     animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}
 @keyframes spinner-border {
     to {
         transform: rotate(360deg) 
        /* rtl:ignore */
        ;
    }
}
 .spinner-border {
     --bs-spinner-width: 2rem;
     --bs-spinner-height: 2rem;
     --bs-spinner-vertical-align: -0.125em;
     --bs-spinner-border-width: 0.25em;
     --bs-spinner-animation-speed: 0.75s;
     --bs-spinner-animation-name: spinner-border;
     border: var(--bs-spinner-border-width) solid currentcolor;
     border-right-color: transparent;
}
 .spinner-border-sm {
     --bs-spinner-width: 1rem;
     --bs-spinner-height: 1rem;
     --bs-spinner-border-width: 0.2em;
}
 @keyframes spinner-grow {
     0% {
         transform: scale(0);
    }
     50% {
         opacity: 1;
         transform: none;
    }
}
 .spinner-grow {
     --bs-spinner-width: 2rem;
     --bs-spinner-height: 2rem;
     --bs-spinner-vertical-align: -0.125em;
     --bs-spinner-animation-speed: 0.75s;
     --bs-spinner-animation-name: spinner-grow;
     background-color: currentcolor;
     opacity: 0;
}
 .spinner-grow-sm {
     --bs-spinner-width: 1rem;
     --bs-spinner-height: 1rem;
}
 @media (prefers-reduced-motion: reduce) {
     .spinner-border, .spinner-grow {
         --bs-spinner-animation-speed: 1.5s;
    }
}
 .offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
     --bs-offcanvas-zindex: 1045;
     --bs-offcanvas-width: 400px;
     --bs-offcanvas-height: 30vh;
     --bs-offcanvas-padding-x: 1rem;
     --bs-offcanvas-padding-y: 1rem;
     --bs-offcanvas-color: ;
     --bs-offcanvas-bg: #fff;
     --bs-offcanvas-border-width: 1px;
     --bs-offcanvas-border-color: var(--bs-border-color-translucent);
     --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
 @media (max-width: 575.98px) {
     .offcanvas-sm {
         position: fixed;
         bottom: 0;
         z-index: var(--bs-offcanvas-zindex);
         display: flex;
         flex-direction: column;
         max-width: 100%;
         color: var(--bs-offcanvas-color);
         visibility: hidden;
         background-color: var(--bs-offcanvas-bg);
         background-clip: padding-box;
         outline: 0;
         transition: transform 0.3s ease-in-out;
    }
}
 @media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
     .offcanvas-sm {
         transition: none;
    }
}
 @media (max-width: 575.98px) {
     .offcanvas-sm.offcanvas-start {
         top: 0;
         left: 0;
         width: var(--bs-offcanvas-width);
         border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateX(-100%);
    }
}
 @media (max-width: 575.98px) {
     .offcanvas-sm.offcanvas-end {
         top: 0;
         right: 0;
         width: var(--bs-offcanvas-width);
         border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateX(100%);
    }
}
 @media (max-width: 575.98px) {
     .offcanvas-sm.offcanvas-top {
         top: 0;
         right: 0;
         left: 0;
         height: var(--bs-offcanvas-height);
         max-height: 100%;
         border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateY(-100%);
    }
}
 @media (max-width: 575.98px) {
     .offcanvas-sm.offcanvas-bottom {
         right: 0;
         left: 0;
         height: var(--bs-offcanvas-height);
         max-height: 100%;
         border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateY(100%);
    }
}
 @media (max-width: 575.98px) {
     .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
         transform: none;
    }
}
 @media (max-width: 575.98px) {
     .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
         visibility: visible;
    }
}
 @media (min-width: 576px) {
     .offcanvas-sm {
         --bs-offcanvas-height: auto;
         --bs-offcanvas-border-width: 0;
         background-color: transparent !important;
    }
     .offcanvas-sm .offcanvas-header {
         display: none;
    }
     .offcanvas-sm .offcanvas-body {
         display: flex;
         flex-grow: 0;
         padding: 0;
         overflow-y: visible;
         background-color: transparent !important;
    }
}
 @media (max-width: 767.98px) {
     .offcanvas-md {
         position: fixed;
         bottom: 0;
         z-index: var(--bs-offcanvas-zindex);
         display: flex;
         flex-direction: column;
         max-width: 100%;
         color: var(--bs-offcanvas-color);
         visibility: hidden;
         background-color: var(--bs-offcanvas-bg);
         background-clip: padding-box;
         outline: 0;
         transition: transform 0.3s ease-in-out;
    }
}
 @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
     .offcanvas-md {
         transition: none;
    }
}
 @media (max-width: 767.98px) {
     .offcanvas-md.offcanvas-start {
         top: 0;
         left: 0;
         width: var(--bs-offcanvas-width);
         border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateX(-100%);
    }
}
 @media (max-width: 767.98px) {
     .offcanvas-md.offcanvas-end {
         top: 0;
         right: 0;
         width: var(--bs-offcanvas-width);
         border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateX(100%);
    }
}
 @media (max-width: 767.98px) {
     .offcanvas-md.offcanvas-top {
         top: 0;
         right: 0;
         left: 0;
         height: var(--bs-offcanvas-height);
         max-height: 100%;
         border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateY(-100%);
    }
}
 @media (max-width: 767.98px) {
     .offcanvas-md.offcanvas-bottom {
         right: 0;
         left: 0;
         height: var(--bs-offcanvas-height);
         max-height: 100%;
         border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateY(100%);
    }
}
 @media (max-width: 767.98px) {
     .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
         transform: none;
    }
}
 @media (max-width: 767.98px) {
     .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
         visibility: visible;
    }
}
 @media (min-width: 768px) {
     .offcanvas-md {
         --bs-offcanvas-height: auto;
         --bs-offcanvas-border-width: 0;
         background-color: transparent !important;
    }
     .offcanvas-md .offcanvas-header {
         display: none;
    }
     .offcanvas-md .offcanvas-body {
         display: flex;
         flex-grow: 0;
         padding: 0;
         overflow-y: visible;
         background-color: transparent !important;
    }
}
 @media (max-width: 991.98px) {
     .offcanvas-lg {
         position: fixed;
         bottom: 0;
         z-index: var(--bs-offcanvas-zindex);
         display: flex;
         flex-direction: column;
         max-width: 100%;
         color: var(--bs-offcanvas-color);
         visibility: hidden;
         background-color: var(--bs-offcanvas-bg);
         background-clip: padding-box;
         outline: 0;
         transition: transform 0.3s ease-in-out;
    }
}
 @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
     .offcanvas-lg {
         transition: none;
    }
}
 @media (max-width: 991.98px) {
     .offcanvas-lg.offcanvas-start {
         top: 0;
         left: 0;
         width: var(--bs-offcanvas-width);
         border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateX(-100%);
    }
}
 @media (max-width: 991.98px) {
     .offcanvas-lg.offcanvas-end {
         top: 0;
         right: 0;
         width: var(--bs-offcanvas-width);
         border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateX(100%);
    }
}
 @media (max-width: 991.98px) {
     .offcanvas-lg.offcanvas-top {
         top: 0;
         right: 0;
         left: 0;
         height: var(--bs-offcanvas-height);
         max-height: 100%;
         border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateY(-100%);
    }
}
 @media (max-width: 991.98px) {
     .offcanvas-lg.offcanvas-bottom {
         right: 0;
         left: 0;
         height: var(--bs-offcanvas-height);
         max-height: 100%;
         border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateY(100%);
    }
}
 @media (max-width: 991.98px) {
     .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
         transform: none;
    }
}
 @media (max-width: 991.98px) {
     .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
         visibility: visible;
    }
}
 @media (min-width: 992px) {
     .offcanvas-lg {
         --bs-offcanvas-height: auto;
         --bs-offcanvas-border-width: 0;
         background-color: transparent !important;
    }
     .offcanvas-lg .offcanvas-header {
         display: none;
    }
     .offcanvas-lg .offcanvas-body {
         display: flex;
         flex-grow: 0;
         padding: 0;
         overflow-y: visible;
         background-color: transparent !important;
    }
}
 @media (max-width: 1199.98px) {
     .offcanvas-xl {
         position: fixed;
         bottom: 0;
         z-index: var(--bs-offcanvas-zindex);
         display: flex;
         flex-direction: column;
         max-width: 100%;
         color: var(--bs-offcanvas-color);
         visibility: hidden;
         background-color: var(--bs-offcanvas-bg);
         background-clip: padding-box;
         outline: 0;
         transition: transform 0.3s ease-in-out;
    }
}
 @media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
     .offcanvas-xl {
         transition: none;
    }
}
 @media (max-width: 1199.98px) {
     .offcanvas-xl.offcanvas-start {
         top: 0;
         left: 0;
         width: var(--bs-offcanvas-width);
         border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateX(-100%);
    }
}
 @media (max-width: 1199.98px) {
     .offcanvas-xl.offcanvas-end {
         top: 0;
         right: 0;
         width: var(--bs-offcanvas-width);
         border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateX(100%);
    }
}
 @media (max-width: 1199.98px) {
     .offcanvas-xl.offcanvas-top {
         top: 0;
         right: 0;
         left: 0;
         height: var(--bs-offcanvas-height);
         max-height: 100%;
         border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateY(-100%);
    }
}
 @media (max-width: 1199.98px) {
     .offcanvas-xl.offcanvas-bottom {
         right: 0;
         left: 0;
         height: var(--bs-offcanvas-height);
         max-height: 100%;
         border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateY(100%);
    }
}
 @media (max-width: 1199.98px) {
     .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
         transform: none;
    }
}
 @media (max-width: 1199.98px) {
     .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
         visibility: visible;
    }
}
 @media (min-width: 1200px) {
     .offcanvas-xl {
         --bs-offcanvas-height: auto;
         --bs-offcanvas-border-width: 0;
         background-color: transparent !important;
    }
     .offcanvas-xl .offcanvas-header {
         display: none;
    }
     .offcanvas-xl .offcanvas-body {
         display: flex;
         flex-grow: 0;
         padding: 0;
         overflow-y: visible;
         background-color: transparent !important;
    }
}
 @media (max-width: 1399.98px) {
     .offcanvas-xxl {
         position: fixed;
         bottom: 0;
         z-index: var(--bs-offcanvas-zindex);
         display: flex;
         flex-direction: column;
         max-width: 100%;
         color: var(--bs-offcanvas-color);
         visibility: hidden;
         background-color: var(--bs-offcanvas-bg);
         background-clip: padding-box;
         outline: 0;
         transition: transform 0.3s ease-in-out;
    }
}
 @media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
     .offcanvas-xxl {
         transition: none;
    }
}
 @media (max-width: 1399.98px) {
     .offcanvas-xxl.offcanvas-start {
         top: 0;
         left: 0;
         width: var(--bs-offcanvas-width);
         border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateX(-100%);
    }
}
 @media (max-width: 1399.98px) {
     .offcanvas-xxl.offcanvas-end {
         top: 0;
         right: 0;
         width: var(--bs-offcanvas-width);
         border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateX(100%);
    }
}
 @media (max-width: 1399.98px) {
     .offcanvas-xxl.offcanvas-top {
         top: 0;
         right: 0;
         left: 0;
         height: var(--bs-offcanvas-height);
         max-height: 100%;
         border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateY(-100%);
    }
}
 @media (max-width: 1399.98px) {
     .offcanvas-xxl.offcanvas-bottom {
         right: 0;
         left: 0;
         height: var(--bs-offcanvas-height);
         max-height: 100%;
         border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
         transform: translateY(100%);
    }
}
 @media (max-width: 1399.98px) {
     .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
         transform: none;
    }
}
 @media (max-width: 1399.98px) {
     .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
         visibility: visible;
    }
}
 @media (min-width: 1400px) {
     .offcanvas-xxl {
         --bs-offcanvas-height: auto;
         --bs-offcanvas-border-width: 0;
         background-color: transparent !important;
    }
     .offcanvas-xxl .offcanvas-header {
         display: none;
    }
     .offcanvas-xxl .offcanvas-body {
         display: flex;
         flex-grow: 0;
         padding: 0;
         overflow-y: visible;
         background-color: transparent !important;
    }
}
 .offcanvas {
     position: fixed;
     bottom: 0;
     z-index: var(--bs-offcanvas-zindex);
     display: flex;
     flex-direction: column;
     max-width: 100%;
     color: var(--bs-offcanvas-color);
     visibility: hidden;
     background-color: var(--bs-offcanvas-bg);
     background-clip: padding-box;
     outline: 0;
     transition: transform 0.3s ease-in-out;
}
 @media (prefers-reduced-motion: reduce) {
     .offcanvas {
         transition: none;
    }
}
 .offcanvas.offcanvas-start {
     top: 0;
     left: 0;
     width: var(--bs-offcanvas-width);
     border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
     transform: translateX(-100%);
}
 .offcanvas.offcanvas-end {
     top: 0;
     right: 0;
     width: var(--bs-offcanvas-width);
     border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
     transform: translateX(100%);
}
 .offcanvas.offcanvas-top {
     top: 0;
     right: 0;
     left: 0;
     height: var(--bs-offcanvas-height);
     max-height: 100%;
     border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
     transform: translateY(-100%);
}
 .offcanvas.offcanvas-bottom {
     right: 0;
     left: 0;
     height: var(--bs-offcanvas-height);
     max-height: 100%;
     border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
     transform: translateY(100%);
}
 .offcanvas.showing, .offcanvas.show:not(.hiding) {
     transform: none;
}
 .offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
     visibility: visible;
}
 .offcanvas-backdrop {
     position: fixed;
     top: 0;
     left: 0;
     z-index: 1040;
     width: 100vw;
     height: 100vh;
     background-color: #000;
}
 .offcanvas-backdrop.fade {
     opacity: 0;
}
 .offcanvas-backdrop.show {
     opacity: 0.5;
}
 .offcanvas-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
 .offcanvas-header .btn-close {
     padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
     margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
     margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
     margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
}
 .offcanvas-title {
     margin-bottom: 0;
     line-height: 1.5;
}
 .offcanvas-body {
     flex-grow: 1;
     padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
     overflow-y: auto;
}
 .placeholder {
     display: inline-block;
     min-height: 1em;
     vertical-align: middle;
     cursor: wait;
     background-color: currentcolor;
     opacity: 0.5;
}
 .placeholder.btn::before {
     display: inline-block;
     content: "";
}
 .placeholder-xs {
     min-height: 0.6em;
}
 .placeholder-sm {
     min-height: 0.8em;
}
 .placeholder-lg {
     min-height: 1.2em;
}
 .placeholder-glow .placeholder {
     animation: placeholder-glow 2s ease-in-out infinite;
}
 @keyframes placeholder-glow {
     50% {
         opacity: 0.2;
    }
}
 .placeholder-wave {
     -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
     mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
     -webkit-mask-size: 200% 100%;
     mask-size: 200% 100%;
     animation: placeholder-wave 2s linear infinite;
}
 @keyframes placeholder-wave {
     100% {
         -webkit-mask-position: -200% 0%;
         mask-position: -200% 0%;
    }
}
 .clearfix::after {
     display: block;
     clear: both;
     content: "";
}
 .text-bg-primary {
     color: #fff !important;
     background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important;
}
 .text-bg-secondary {
     color: #fff !important;
     background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important;
}
 .text-bg-success {
     color: #fff !important;
     background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important;
}
 .text-bg-info {
     color: #000 !important;
     background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;
}
 .text-bg-warning {
     color: #000 !important;
     background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;
}
 .text-bg-danger {
     color: #fff !important;
     background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
}
 .text-bg-light {
     color: #000 !important;
     background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important;
}
 .text-bg-dark {
     color: #fff !important;
     background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;
}
 .link-primary {
     color: #0d6efd !important;
}
 .link-primary:hover, .link-primary:focus {
     color: #0a58ca !important;
}
 .link-secondary {
     color: #6c757d !important;
}
 .link-secondary:hover, .link-secondary:focus {
     color: #565e64 !important;
}
 .link-success {
     color: #198754 !important;
}
 .link-success:hover, .link-success:focus {
     color: #146c43 !important;
}
 .link-info {
     color: #0dcaf0 !important;
}
 .link-info:hover, .link-info:focus {
     color: #3dd5f3 !important;
}
 .link-warning {
     color: #ffc107 !important;
}
 .link-warning:hover, .link-warning:focus {
     color: #ffcd39 !important;
}
 .link-danger {
     color: #dc3545 !important;
}
 .link-danger:hover, .link-danger:focus {
     color: #b02a37 !important;
}
 .link-light {
     color: #f8f9fa !important;
}
 .link-light:hover, .link-light:focus {
     color: #f9fafb !important;
}
 .link-dark {
     color: #212529 !important;
}
 .link-dark:hover, .link-dark:focus {
     color: #1a1e21 !important;
}
 .ratio {
     position: relative;
     width: 100%;
}
 .ratio::before {
     display: block;
     padding-top: var(--bs-aspect-ratio);
     content: "";
}
 .ratio > * {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}
 .ratio-1x1 {
     --bs-aspect-ratio: 100%;
}
 .ratio-4x3 {
     --bs-aspect-ratio: 75%;
}
 .ratio-16x9 {
     --bs-aspect-ratio: 56.25%;
}
 .ratio-21x9 {
     --bs-aspect-ratio: 42.8571428571%;
}
 .fixed-top {
     position: fixed;
     top: 0;
     right: 0;
     left: 0;
     z-index: 1030;
}
 .fixed-bottom {
     position: fixed;
     right: 0;
     bottom: 0;
     left: 0;
     z-index: 1030;
}
 .sticky-top {
     position: sticky;
     top: 0;
     z-index: 1020;
}
 .sticky-bottom {
     position: sticky;
     bottom: 0;
     z-index: 1020;
}
 @media (min-width: 576px) {
     .sticky-sm-top {
         position: sticky;
         top: 0;
         z-index: 1020;
    }
     .sticky-sm-bottom {
         position: sticky;
         bottom: 0;
         z-index: 1020;
    }
}
 @media (min-width: 768px) {
     .sticky-md-top {
         position: sticky;
         top: 0;
         z-index: 1020;
    }
     .sticky-md-bottom {
         position: sticky;
         bottom: 0;
         z-index: 1020;
    }
}
 @media (min-width: 992px) {
     .sticky-lg-top {
         position: sticky;
         top: 0;
         z-index: 1020;
    }
     .sticky-lg-bottom {
         position: sticky;
         bottom: 0;
         z-index: 1020;
    }
}
 @media (min-width: 1200px) {
     .sticky-xl-top {
         position: sticky;
         top: 0;
         z-index: 1020;
    }
     .sticky-xl-bottom {
         position: sticky;
         bottom: 0;
         z-index: 1020;
    }
}
 @media (min-width: 1400px) {
     .sticky-xxl-top {
         position: sticky;
         top: 0;
         z-index: 1020;
    }
     .sticky-xxl-bottom {
         position: sticky;
         bottom: 0;
         z-index: 1020;
    }
}
 .hstack {
     display: flex;
     flex-direction: row;
     align-items: center;
     align-self: stretch;
}
 .vstack {
     display: flex;
     flex: 1 1 auto;
     flex-direction: column;
     align-self: stretch;
}
 .visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
     position: absolute !important;
     width: 1px !important;
     height: 1px !important;
     padding: 0 !important;
     margin: -1px !important;
     overflow: hidden !important;
     clip: rect(0, 0, 0, 0) !important;
     white-space: nowrap !important;
     border: 0 !important;
}
 .stretched-link::after {
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     z-index: 1;
     content: "";
}
 .text-truncate {
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
}
 .vr {
     display: inline-block;
     align-self: stretch;
     width: 1px;
     min-height: 1em;
     background-color: currentcolor;
     opacity: 0.25;
}
 .align-baseline {
     vertical-align: baseline !important;
}
 .align-top {
     vertical-align: top !important;
}
 .align-middle {
     vertical-align: middle !important;
}
 .align-bottom {
     vertical-align: bottom !important;
}
 .align-text-bottom {
     vertical-align: text-bottom !important;
}
 .align-text-top {
     vertical-align: text-top !important;
}
 .float-start {
     float: left !important;
}
 .float-end {
     float: right !important;
}
 .float-none {
     float: none !important;
}
 .opacity-0 {
     opacity: 0 !important;
}
 .opacity-25 {
     opacity: 0.25 !important;
}
 .opacity-50 {
     opacity: 0.5 !important;
}
 .opacity-75 {
     opacity: 0.75 !important;
}
 .opacity-100 {
     opacity: 1 !important;
}
 .overflow-auto {
     overflow: auto !important;
}
 .overflow-hidden {
     overflow: hidden !important;
}
 .overflow-visible {
     overflow: visible !important;
}
 .overflow-scroll {
     overflow: scroll !important;
}
 .d-inline {
     display: inline !important;
}
 .d-inline-block {
     display: inline-block !important;
}
 .d-block {
     display: block !important;
}
 .d-grid {
     display: grid !important;
}
 .d-table {
     display: table !important;
}
 .d-table-row {
     display: table-row !important;
}
 .d-table-cell {
     display: table-cell !important;
}
 .d-flex {
     display: flex !important;
}
 .d-inline-flex {
     display: inline-flex !important;
}
 .d-none {
     display: none !important;
}
 .shadow {
     box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
 .shadow-sm {
     box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
 .shadow-lg {
     box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
 .shadow-none {
     box-shadow: none !important;
}
 .position-static {
     position: static !important;
}
 .position-relative {
     position: relative !important;
}
 .position-absolute {
     position: absolute !important;
}
 .position-fixed {
     position: fixed !important;
}
 .position-sticky {
     position: sticky !important;
}
 .top-0 {
     top: 0 !important;
}
 .top-50 {
     top: 50% !important;
}
 .top-100 {
     top: 100% !important;
}
 .bottom-0 {
     bottom: 0 !important;
}
 .bottom-50 {
     bottom: 50% !important;
}
 .bottom-100 {
     bottom: 100% !important;
}
 .start-0 {
     left: 0 !important;
}
 .start-50 {
     left: 50% !important;
}
 .start-100 {
     left: 100% !important;
}
 .end-0 {
     right: 0 !important;
}
 .end-50 {
     right: 50% !important;
}
 .end-100 {
     right: 100% !important;
}
 .translate-middle {
     transform: translate(-50%, -50%) !important;
}
 .translate-middle-x {
     transform: translateX(-50%) !important;
}
 .translate-middle-y {
     transform: translateY(-50%) !important;
}
 .border {
     border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
 .border-0 {
     border: 0 !important;
}
 .border-top {
     border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
 .border-top-0 {
     border-top: 0 !important;
}
 .border-end {
     border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
 .border-end-0 {
     border-right: 0 !important;
}
 .border-bottom {
     border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
 .border-bottom-0 {
     border-bottom: 0 !important;
}
 .border-start {
     border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
 .border-start-0 {
     border-left: 0 !important;
}
 .border-primary {
     --bs-border-opacity: 1;
     border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}
 .border-secondary {
     --bs-border-opacity: 1;
     border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}
 .border-success {
     --bs-border-opacity: 1;
     border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}
 .border-info {
     --bs-border-opacity: 1;
     border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}
 .border-warning {
     --bs-border-opacity: 1;
     border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}
 .border-danger {
     --bs-border-opacity: 1;
     border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}
 .border-light {
     --bs-border-opacity: 1;
     border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}
 .border-dark {
     --bs-border-opacity: 1;
     border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}
 .border-white {
     --bs-border-opacity: 1;
     border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}
 .border-1 {
     --bs-border-width: 1px;
}
 .border-2 {
     --bs-border-width: 2px;
}
 .border-3 {
     --bs-border-width: 3px;
}
 .border-4 {
     --bs-border-width: 4px;
}
 .border-5 {
     --bs-border-width: 5px;
}
 .border-opacity-10 {
     --bs-border-opacity: 0.1;
}
 .border-opacity-25 {
     --bs-border-opacity: 0.25;
}
 .border-opacity-50 {
     --bs-border-opacity: 0.5;
}
 .border-opacity-75 {
     --bs-border-opacity: 0.75;
}
 .border-opacity-100 {
     --bs-border-opacity: 1;
}
 .w-25 {
     width: 25% !important;
}
 .w-50 {
     width: 50% !important;
}
 .w-75 {
     width: 75% !important;
}
 .w-100 {
     width: 100% !important;
}
 .w-auto {
     width: auto !important;
}
 .mw-100 {
     max-width: 100% !important;
}
 .vw-100 {
     width: 100vw !important;
}
 .min-vw-100 {
     min-width: 100vw !important;
}
 .h-25 {
     height: 25% !important;
}
 .h-50 {
     height: 50% !important;
}
 .h-75 {
     height: 75% !important;
}
 .h-100 {
     height: 100% !important;
}
 .h-auto {
     height: auto !important;
}
 .mh-100 {
     max-height: 100% !important;
}
 .vh-100 {
     height: 100vh !important;
}
 .min-vh-100 {
     min-height: 100vh !important;
}
 .flex-fill {
     flex: 1 1 auto !important;
}
 .flex-row {
     flex-direction: row !important;
}
 .flex-column {
     flex-direction: column !important;
}
 .flex-row-reverse {
     flex-direction: row-reverse !important;
}
 .flex-column-reverse {
     flex-direction: column-reverse !important;
}
 .flex-grow-0 {
     flex-grow: 0 !important;
}
 .flex-grow-1 {
     flex-grow: 1 !important;
}
 .flex-shrink-0 {
     flex-shrink: 0 !important;
}
 .flex-shrink-1 {
     flex-shrink: 1 !important;
}
 .flex-wrap {
     flex-wrap: wrap !important;
}
 .flex-nowrap {
     flex-wrap: nowrap !important;
}
 .flex-wrap-reverse {
     flex-wrap: wrap-reverse !important;
}
 .justify-content-start {
     justify-content: flex-start !important;
}
 .justify-content-end {
     justify-content: flex-end !important;
}
 .justify-content-center {
     justify-content: center !important;
}
 .justify-content-between {
     justify-content: space-between !important;
}
 .justify-content-around {
     justify-content: space-around !important;
}
 .justify-content-evenly {
     justify-content: space-evenly !important;
}
 .align-items-start {
     align-items: flex-start !important;
}
 .align-items-end {
     align-items: flex-end !important;
}
 .align-items-center {
     align-items: center !important;
}
 .align-items-baseline {
     align-items: baseline !important;
}
 .align-items-stretch {
     align-items: stretch !important;
}
 .align-content-start {
     align-content: flex-start !important;
}
 .align-content-end {
     align-content: flex-end !important;
}
 .align-content-center {
     align-content: center !important;
}
 .align-content-between {
     align-content: space-between !important;
}
 .align-content-around {
     align-content: space-around !important;
}
 .align-content-stretch {
     align-content: stretch !important;
}
 .align-self-auto {
     align-self: auto !important;
}
 .align-self-start {
     align-self: flex-start !important;
}
 .align-self-end {
     align-self: flex-end !important;
}
 .align-self-center {
     align-self: center !important;
}
 .align-self-baseline {
     align-self: baseline !important;
}
 .align-self-stretch {
     align-self: stretch !important;
}
 .order-first {
     order: -1 !important;
}
 .order-0 {
     order: 0 !important;
}
 .order-1 {
     order: 1 !important;
}
 .order-2 {
     order: 2 !important;
}
 .order-3 {
     order: 3 !important;
}
 .order-4 {
     order: 4 !important;
}
 .order-5 {
     order: 5 !important;
}
 .order-last {
     order: 6 !important;
}
 .m-0 {
     margin: 0 !important;
}
 .m-1 {
     margin: 0.25rem !important;
}
 .m-2 {
     margin: 0.5rem !important;
}
 .m-3 {
     margin: 1rem !important;
}
 .m-4 {
     margin: 1.5rem !important;
}
 .m-5 {
     margin: 3rem !important;
}
 .m-auto {
     margin: auto !important;
}
 .mx-0 {
     margin-right: 0 !important;
     margin-left: 0 !important;
}
 .mx-1 {
     margin-right: 0.25rem !important;
     margin-left: 0.25rem !important;
}
 .mx-2 {
     margin-right: 0.5rem !important;
     margin-left: 0.5rem !important;
}
 .mx-3 {
     margin-right: 1rem !important;
     margin-left: 1rem !important;
}
 .mx-4 {
     margin-right: 1.5rem !important;
     margin-left: 1.5rem !important;
}
 .mx-5 {
     margin-right: 3rem !important;
     margin-left: 3rem !important;
}
 .mx-auto {
     margin-right: auto !important;
     margin-left: auto !important;
}
 .my-0 {
     margin-top: 0 !important;
     margin-bottom: 0 !important;
}
 .my-1 {
     margin-top: 0.25rem !important;
     margin-bottom: 0.25rem !important;
}
 .my-2 {
     margin-top: 0.5rem !important;
     margin-bottom: 0.5rem !important;
}
 .my-3 {
     margin-top: 1rem !important;
     margin-bottom: 1rem !important;
}
 .my-4 {
     margin-top: 1.5rem !important;
     margin-bottom: 1.5rem !important;
}
 .my-5 {
     margin-top: 3rem !important;
     margin-bottom: 3rem !important;
}
 .my-auto {
     margin-top: auto !important;
     margin-bottom: auto !important;
}
 .mt-0 {
     margin-top: 0 !important;
}
 .mt-1 {
     margin-top: 0.25rem !important;
}
 .mt-2 {
     margin-top: 0.5rem !important;
}
 .mt-3 {
     margin-top: 1rem !important;
}
 .mt-4 {
     margin-top: 1.5rem !important;
}
 .mt-5 {
     margin-top: 3rem !important;
}
 .mt-auto {
     margin-top: auto !important;
}
 .me-0 {
     margin-right: 0 !important;
}
 .me-1 {
     margin-right: 0.25rem !important;
}
 .me-2 {
     margin-right: 0.5rem !important;
}
 .me-3 {
     margin-right: 1rem !important;
}
 .me-4 {
     margin-right: 1.5rem !important;
}
 .me-5 {
     margin-right: 3rem !important;
}
 .me-auto {
     margin-right: auto !important;
}
 .mb-0 {
     margin-bottom: 0 !important;
}
 .mb-1 {
     margin-bottom: 0.25rem !important;
}
 .mb-2 {
     margin-bottom: 0.5rem !important;
}
 .mb-3 {
     margin-bottom: 1rem !important;
}
 .mb-4 {
     margin-bottom: 1.5rem !important;
}
 .mb-5 {
     margin-bottom: 3rem !important;
}
 .mb-auto {
     margin-bottom: auto !important;
}
 .ms-0 {
     margin-left: 0 !important;
}
 .ms-1 {
     margin-left: 0.25rem !important;
}
 .ms-2 {
     margin-left: 0.5rem !important;
}
 .ms-3 {
     margin-left: 1rem !important;
}
 .ms-4 {
     margin-left: 1.5rem !important;
}
 .ms-5 {
     margin-left: 3rem !important;
}
 .ms-auto {
     margin-left: auto !important;
}
 .p-0 {
     padding: 0 !important;
}
 .p-1 {
     padding: 0.25rem !important;
}
 .p-2 {
     padding: 0.5rem !important;
}
 .p-3 {
     padding: 1rem !important;
}
 .p-4 {
     padding: 1.5rem !important;
}
 .p-5 {
     padding: 3rem !important;
}
 .px-0 {
     padding-right: 0 !important;
     padding-left: 0 !important;
}
 .px-1 {
     padding-right: 0.25rem !important;
     padding-left: 0.25rem !important;
}
 .px-2 {
     padding-right: 0.5rem !important;
     padding-left: 0.5rem !important;
}
 .px-3 {
     padding-right: 1rem !important;
     padding-left: 1rem !important;
}
 .px-4 {
     padding-right: 1.5rem !important;
     padding-left: 1.5rem !important;
}
 .px-5 {
     padding-right: 3rem !important;
     padding-left: 3rem !important;
}
 .py-0 {
     padding-top: 0 !important;
     padding-bottom: 0 !important;
}
 .py-1 {
     padding-top: 0.25rem !important;
     padding-bottom: 0.25rem !important;
}
 .py-2 {
     padding-top: 0.5rem !important;
     padding-bottom: 0.5rem !important;
}
 .py-3 {
     padding-top: 1rem !important;
     padding-bottom: 1rem !important;
}
 .py-4 {
     padding-top: 1.5rem !important;
     padding-bottom: 1.5rem !important;
}
 .py-5 {
     padding-top: 3rem !important;
     padding-bottom: 3rem !important;
}
 .pt-0 {
     padding-top: 0 !important;
}
 .pt-1 {
     padding-top: 0.25rem !important;
}
 .pt-2 {
     padding-top: 0.5rem !important;
}
 .pt-3 {
     padding-top: 1rem !important;
}
 .pt-4 {
     padding-top: 1.5rem !important;
}
 .pt-5 {
     padding-top: 3rem !important;
}
 .pe-0 {
     padding-right: 0 !important;
}
 .pe-1 {
     padding-right: 0.25rem !important;
}
 .pe-2 {
     padding-right: 0.5rem !important;
}
 .pe-3 {
     padding-right: 1rem !important;
}
 .pe-4 {
     padding-right: 1.5rem !important;
}
 .pe-5 {
     padding-right: 3rem !important;
}
 .pb-0 {
     padding-bottom: 0 !important;
}
 .pb-1 {
     padding-bottom: 0.25rem !important;
}
 .pb-2 {
     padding-bottom: 0.5rem !important;
}
 .pb-3 {
     padding-bottom: 1rem !important;
}
 .pb-4 {
     padding-bottom: 1.5rem !important;
}
 .pb-5 {
     padding-bottom: 3rem !important;
}
 .ps-0 {
     padding-left: 0 !important;
}
 .ps-1 {
     padding-left: 0.25rem !important;
}
 .ps-2 {
     padding-left: 0.5rem !important;
}
 .ps-3 {
     padding-left: 1rem !important;
}
 .ps-4 {
     padding-left: 1.5rem !important;
}
 .ps-5 {
     padding-left: 3rem !important;
}
 .gap-0 {
     gap: 0 !important;
}
 .gap-1 {
     gap: 0.25rem !important;
}
 .gap-2 {
     gap: 0.5rem !important;
}
 .gap-3 {
     gap: 1rem !important;
}
 .gap-4 {
     gap: 1.5rem !important;
}
 .gap-5 {
     gap: 3rem !important;
}
 .font-monospace {
     font-family: var(--bs-font-monospace) !important;
}
 .fs-1 {
     font-size: calc(1.375rem + 1.5vw) !important;
}
 .fs-2 {
     font-size: calc(1.325rem + 0.9vw) !important;
}
 .fs-3 {
     font-size: calc(1.3rem + 0.6vw) !important;
}
 .fs-4 {
     font-size: calc(1.275rem + 0.3vw) !important;
}
 .fs-5 {
     font-size: 1.25rem !important;
}
 .fs-6 {
     font-size: 1rem !important;
}
 .fst-italic {
     font-style: italic !important;
}
 .fst-normal {
     font-style: normal !important;
}
 .fw-light {
     font-weight: 300 !important;
}
 .fw-lighter {
     font-weight: lighter !important;
}
 .fw-normal {
     font-weight: 400 !important;
}
 .fw-bold {
     font-weight: 700 !important;
}
 .fw-semibold {
     font-weight: 600 !important;
}
 .fw-bolder {
     font-weight: bolder !important;
}
 .lh-1 {
     line-height: 1 !important;
}
 .lh-sm {
     line-height: 1.25 !important;
}
 .lh-base {
     line-height: 1.5 !important;
}
 .lh-lg {
     line-height: 2 !important;
}
 .text-start {
     text-align: left !important;
}
 .text-end {
     text-align: right !important;
}
 .text-center {
     text-align: center !important;
}
 .text-decoration-none {
     text-decoration: none !important;
}
 .text-decoration-underline {
     text-decoration: underline !important;
}
 .text-decoration-line-through {
     text-decoration: line-through !important;
}
 .text-lowercase {
     text-transform: lowercase !important;
}
 .text-uppercase {
     text-transform: uppercase !important;
}
 .text-capitalize {
     text-transform: capitalize !important;
}
 .text-wrap {
     white-space: normal !important;
}
 .text-nowrap {
     white-space: nowrap !important;
}
/* rtl:begin:remove */
 .text-break {
     word-wrap: break-word !important;
     word-break: break-word !important;
}
/* rtl:end:remove */
 .text-primary {
     --bs-text-opacity: 1;
     color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
 .text-secondary {
     --bs-text-opacity: 1;
     color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
 .text-success {
     --bs-text-opacity: 1;
     color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
 .text-info {
     --bs-text-opacity: 1;
     color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}
 .text-warning {
     --bs-text-opacity: 1;
     color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
 .text-danger {
     --bs-text-opacity: 1;
     color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
 .text-light {
     --bs-text-opacity: 1;
     color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}
 .text-dark {
     --bs-text-opacity: 1;
     color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
 .text-black {
     --bs-text-opacity: 1;
     color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
 .text-white {
     --bs-text-opacity: 1;
     color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
 .text-body {
     --bs-text-opacity: 1;
     color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
 .text-muted {
     --bs-text-opacity: 1;
     color: #6c757d !important;
}
 .text-black-50 {
     --bs-text-opacity: 1;
     color: rgba(0, 0, 0, 0.5) !important;
}
 .text-white-50 {
     --bs-text-opacity: 1;
     color: rgba(255, 255, 255, 0.5) !important;
}
 .text-reset {
     --bs-text-opacity: 1;
     color: inherit !important;
}
 .text-opacity-25 {
     --bs-text-opacity: 0.25;
}
 .text-opacity-50 {
     --bs-text-opacity: 0.5;
}
 .text-opacity-75 {
     --bs-text-opacity: 0.75;
}
 .text-opacity-100 {
     --bs-text-opacity: 1;
}
 .bg-primary {
     --bs-bg-opacity: 1;
     background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
 .bg-secondary {
     --bs-bg-opacity: 1;
     background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
 .bg-success {
     --bs-bg-opacity: 1;
     background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
 .bg-info {
     --bs-bg-opacity: 1;
     background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}
 .bg-warning {
     --bs-bg-opacity: 1;
     background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
 .bg-danger {
     --bs-bg-opacity: 1;
     background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
 .bg-light {
     --bs-bg-opacity: 1;
     background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
 .bg-dark {
     --bs-bg-opacity: 1;
     background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
 .bg-black {
     --bs-bg-opacity: 1;
     background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
 .bg-white {
     --bs-bg-opacity: 1;
     background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
 .bg-body {
     --bs-bg-opacity: 1;
     background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
 .bg-transparent {
     --bs-bg-opacity: 1;
     background-color: transparent !important;
}
 .bg-opacity-10 {
     --bs-bg-opacity: 0.1;
}
 .bg-opacity-25 {
     --bs-bg-opacity: 0.25;
}
 .bg-opacity-50 {
     --bs-bg-opacity: 0.5;
}
 .bg-opacity-75 {
     --bs-bg-opacity: 0.75;
}
 .bg-opacity-100 {
     --bs-bg-opacity: 1;
}
 .bg-gradient {
     background-image: var(--bs-gradient) !important;
}
 .user-select-all {
     -webkit-user-select: all !important;
     -moz-user-select: all !important;
     user-select: all !important;
}
 .user-select-auto {
     -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
     user-select: auto !important;
}
 .user-select-none {
     -webkit-user-select: none !important;
     -moz-user-select: none !important;
     user-select: none !important;
}
 .pe-none {
     pointer-events: none !important;
}
 .pe-auto {
     pointer-events: auto !important;
}
 .rounded {
     border-radius: var(--bs-border-radius) !important;
}
 .rounded-0 {
     border-radius: 0 !important;
}
 .rounded-1 {
     border-radius: var(--bs-border-radius-sm) !important;
}
 .rounded-2 {
     border-radius: var(--bs-border-radius) !important;
}
 .rounded-3 {
     border-radius: var(--bs-border-radius-lg) !important;
}
 .rounded-4 {
     border-radius: var(--bs-border-radius-xl) !important;
}
 .rounded-5 {
     border-radius: var(--bs-border-radius-2xl) !important;
}
 .rounded-circle {
     border-radius: 50% !important;
}
 .rounded-pill {
     border-radius: var(--bs-border-radius-pill) !important;
}
 .rounded-top {
     border-top-left-radius: var(--bs-border-radius) !important;
     border-top-right-radius: var(--bs-border-radius) !important;
}
 .rounded-end {
     border-top-right-radius: var(--bs-border-radius) !important;
     border-bottom-right-radius: var(--bs-border-radius) !important;
}
 .rounded-bottom {
     border-bottom-right-radius: var(--bs-border-radius) !important;
     border-bottom-left-radius: var(--bs-border-radius) !important;
}
 .rounded-start {
     border-bottom-left-radius: var(--bs-border-radius) !important;
     border-top-left-radius: var(--bs-border-radius) !important;
}
 .visible {
     visibility: visible !important;
}
 .invisible {
     visibility: hidden !important;
}
 @media (min-width: 576px) {
     .float-sm-start {
         float: left !important;
    }
     .float-sm-end {
         float: right !important;
    }
     .float-sm-none {
         float: none !important;
    }
     .d-sm-inline {
         display: inline !important;
    }
     .d-sm-inline-block {
         display: inline-block !important;
    }
     .d-sm-block {
         display: block !important;
    }
     .d-sm-grid {
         display: grid !important;
    }
     .d-sm-table {
         display: table !important;
    }
     .d-sm-table-row {
         display: table-row !important;
    }
     .d-sm-table-cell {
         display: table-cell !important;
    }
     .d-sm-flex {
         display: flex !important;
    }
     .d-sm-inline-flex {
         display: inline-flex !important;
    }
     .d-sm-none {
         display: none !important;
    }
     .flex-sm-fill {
         flex: 1 1 auto !important;
    }
     .flex-sm-row {
         flex-direction: row !important;
    }
     .flex-sm-column {
         flex-direction: column !important;
    }
     .flex-sm-row-reverse {
         flex-direction: row-reverse !important;
    }
     .flex-sm-column-reverse {
         flex-direction: column-reverse !important;
    }
     .flex-sm-grow-0 {
         flex-grow: 0 !important;
    }
     .flex-sm-grow-1 {
         flex-grow: 1 !important;
    }
     .flex-sm-shrink-0 {
         flex-shrink: 0 !important;
    }
     .flex-sm-shrink-1 {
         flex-shrink: 1 !important;
    }
     .flex-sm-wrap {
         flex-wrap: wrap !important;
    }
     .flex-sm-nowrap {
         flex-wrap: nowrap !important;
    }
     .flex-sm-wrap-reverse {
         flex-wrap: wrap-reverse !important;
    }
     .justify-content-sm-start {
         justify-content: flex-start !important;
    }
     .justify-content-sm-end {
         justify-content: flex-end !important;
    }
     .justify-content-sm-center {
         justify-content: center !important;
    }
     .justify-content-sm-between {
         justify-content: space-between !important;
    }
     .justify-content-sm-around {
         justify-content: space-around !important;
    }
     .justify-content-sm-evenly {
         justify-content: space-evenly !important;
    }
     .align-items-sm-start {
         align-items: flex-start !important;
    }
     .align-items-sm-end {
         align-items: flex-end !important;
    }
     .align-items-sm-center {
         align-items: center !important;
    }
     .align-items-sm-baseline {
         align-items: baseline !important;
    }
     .align-items-sm-stretch {
         align-items: stretch !important;
    }
     .align-content-sm-start {
         align-content: flex-start !important;
    }
     .align-content-sm-end {
         align-content: flex-end !important;
    }
     .align-content-sm-center {
         align-content: center !important;
    }
     .align-content-sm-between {
         align-content: space-between !important;
    }
     .align-content-sm-around {
         align-content: space-around !important;
    }
     .align-content-sm-stretch {
         align-content: stretch !important;
    }
     .align-self-sm-auto {
         align-self: auto !important;
    }
     .align-self-sm-start {
         align-self: flex-start !important;
    }
     .align-self-sm-end {
         align-self: flex-end !important;
    }
     .align-self-sm-center {
         align-self: center !important;
    }
     .align-self-sm-baseline {
         align-self: baseline !important;
    }
     .align-self-sm-stretch {
         align-self: stretch !important;
    }
     .order-sm-first {
         order: -1 !important;
    }
     .order-sm-0 {
         order: 0 !important;
    }
     .order-sm-1 {
         order: 1 !important;
    }
     .order-sm-2 {
         order: 2 !important;
    }
     .order-sm-3 {
         order: 3 !important;
    }
     .order-sm-4 {
         order: 4 !important;
    }
     .order-sm-5 {
         order: 5 !important;
    }
     .order-sm-last {
         order: 6 !important;
    }
     .m-sm-0 {
         margin: 0 !important;
    }
     .m-sm-1 {
         margin: 0.25rem !important;
    }
     .m-sm-2 {
         margin: 0.5rem !important;
    }
     .m-sm-3 {
         margin: 1rem !important;
    }
     .m-sm-4 {
         margin: 1.5rem !important;
    }
     .m-sm-5 {
         margin: 3rem !important;
    }
     .m-sm-auto {
         margin: auto !important;
    }
     .mx-sm-0 {
         margin-right: 0 !important;
         margin-left: 0 !important;
    }
     .mx-sm-1 {
         margin-right: 0.25rem !important;
         margin-left: 0.25rem !important;
    }
     .mx-sm-2 {
         margin-right: 0.5rem !important;
         margin-left: 0.5rem !important;
    }
     .mx-sm-3 {
         margin-right: 1rem !important;
         margin-left: 1rem !important;
    }
     .mx-sm-4 {
         margin-right: 1.5rem !important;
         margin-left: 1.5rem !important;
    }
     .mx-sm-5 {
         margin-right: 3rem !important;
         margin-left: 3rem !important;
    }
     .mx-sm-auto {
         margin-right: auto !important;
         margin-left: auto !important;
    }
     .my-sm-0 {
         margin-top: 0 !important;
         margin-bottom: 0 !important;
    }
     .my-sm-1 {
         margin-top: 0.25rem !important;
         margin-bottom: 0.25rem !important;
    }
     .my-sm-2 {
         margin-top: 0.5rem !important;
         margin-bottom: 0.5rem !important;
    }
     .my-sm-3 {
         margin-top: 1rem !important;
         margin-bottom: 1rem !important;
    }
     .my-sm-4 {
         margin-top: 1.5rem !important;
         margin-bottom: 1.5rem !important;
    }
     .my-sm-5 {
         margin-top: 3rem !important;
         margin-bottom: 3rem !important;
    }
     .my-sm-auto {
         margin-top: auto !important;
         margin-bottom: auto !important;
    }
     .mt-sm-0 {
         margin-top: 0 !important;
    }
     .mt-sm-1 {
         margin-top: 0.25rem !important;
    }
     .mt-sm-2 {
         margin-top: 0.5rem !important;
    }
     .mt-sm-3 {
         margin-top: 1rem !important;
    }
     .mt-sm-4 {
         margin-top: 1.5rem !important;
    }
     .mt-sm-5 {
         margin-top: 3rem !important;
    }
     .mt-sm-auto {
         margin-top: auto !important;
    }
     .me-sm-0 {
         margin-right: 0 !important;
    }
     .me-sm-1 {
         margin-right: 0.25rem !important;
    }
     .me-sm-2 {
         margin-right: 0.5rem !important;
    }
     .me-sm-3 {
         margin-right: 1rem !important;
    }
     .me-sm-4 {
         margin-right: 1.5rem !important;
    }
     .me-sm-5 {
         margin-right: 3rem !important;
    }
     .me-sm-auto {
         margin-right: auto !important;
    }
     .mb-sm-0 {
         margin-bottom: 0 !important;
    }
     .mb-sm-1 {
         margin-bottom: 0.25rem !important;
    }
     .mb-sm-2 {
         margin-bottom: 0.5rem !important;
    }
     .mb-sm-3 {
         margin-bottom: 1rem !important;
    }
     .mb-sm-4 {
         margin-bottom: 1.5rem !important;
    }
     .mb-sm-5 {
         margin-bottom: 3rem !important;
    }
     .mb-sm-auto {
         margin-bottom: auto !important;
    }
     .ms-sm-0 {
         margin-left: 0 !important;
    }
     .ms-sm-1 {
         margin-left: 0.25rem !important;
    }
     .ms-sm-2 {
         margin-left: 0.5rem !important;
    }
     .ms-sm-3 {
         margin-left: 1rem !important;
    }
     .ms-sm-4 {
         margin-left: 1.5rem !important;
    }
     .ms-sm-5 {
         margin-left: 3rem !important;
    }
     .ms-sm-auto {
         margin-left: auto !important;
    }
     .p-sm-0 {
         padding: 0 !important;
    }
     .p-sm-1 {
         padding: 0.25rem !important;
    }
     .p-sm-2 {
         padding: 0.5rem !important;
    }
     .p-sm-3 {
         padding: 1rem !important;
    }
     .p-sm-4 {
         padding: 1.5rem !important;
    }
     .p-sm-5 {
         padding: 3rem !important;
    }
     .px-sm-0 {
         padding-right: 0 !important;
         padding-left: 0 !important;
    }
     .px-sm-1 {
         padding-right: 0.25rem !important;
         padding-left: 0.25rem !important;
    }
     .px-sm-2 {
         padding-right: 0.5rem !important;
         padding-left: 0.5rem !important;
    }
     .px-sm-3 {
         padding-right: 1rem !important;
         padding-left: 1rem !important;
    }
     .px-sm-4 {
         padding-right: 1.5rem !important;
         padding-left: 1.5rem !important;
    }
     .px-sm-5 {
         padding-right: 3rem !important;
         padding-left: 3rem !important;
    }
     .py-sm-0 {
         padding-top: 0 !important;
         padding-bottom: 0 !important;
    }
     .py-sm-1 {
         padding-top: 0.25rem !important;
         padding-bottom: 0.25rem !important;
    }
     .py-sm-2 {
         padding-top: 0.5rem !important;
         padding-bottom: 0.5rem !important;
    }
     .py-sm-3 {
         padding-top: 1rem !important;
         padding-bottom: 1rem !important;
    }
     .py-sm-4 {
         padding-top: 1.5rem !important;
         padding-bottom: 1.5rem !important;
    }
     .py-sm-5 {
         padding-top: 3rem !important;
         padding-bottom: 3rem !important;
    }
     .pt-sm-0 {
         padding-top: 0 !important;
    }
     .pt-sm-1 {
         padding-top: 0.25rem !important;
    }
     .pt-sm-2 {
         padding-top: 0.5rem !important;
    }
     .pt-sm-3 {
         padding-top: 1rem !important;
    }
     .pt-sm-4 {
         padding-top: 1.5rem !important;
    }
     .pt-sm-5 {
         padding-top: 3rem !important;
    }
     .pe-sm-0 {
         padding-right: 0 !important;
    }
     .pe-sm-1 {
         padding-right: 0.25rem !important;
    }
     .pe-sm-2 {
         padding-right: 0.5rem !important;
    }
     .pe-sm-3 {
         padding-right: 1rem !important;
    }
     .pe-sm-4 {
         padding-right: 1.5rem !important;
    }
     .pe-sm-5 {
         padding-right: 3rem !important;
    }
     .pb-sm-0 {
         padding-bottom: 0 !important;
    }
     .pb-sm-1 {
         padding-bottom: 0.25rem !important;
    }
     .pb-sm-2 {
         padding-bottom: 0.5rem !important;
    }
     .pb-sm-3 {
         padding-bottom: 1rem !important;
    }
     .pb-sm-4 {
         padding-bottom: 1.5rem !important;
    }
     .pb-sm-5 {
         padding-bottom: 3rem !important;
    }
     .ps-sm-0 {
         padding-left: 0 !important;
    }
     .ps-sm-1 {
         padding-left: 0.25rem !important;
    }
     .ps-sm-2 {
         padding-left: 0.5rem !important;
    }
     .ps-sm-3 {
         padding-left: 1rem !important;
    }
     .ps-sm-4 {
         padding-left: 1.5rem !important;
    }
     .ps-sm-5 {
         padding-left: 3rem !important;
    }
     .gap-sm-0 {
         gap: 0 !important;
    }
     .gap-sm-1 {
         gap: 0.25rem !important;
    }
     .gap-sm-2 {
         gap: 0.5rem !important;
    }
     .gap-sm-3 {
         gap: 1rem !important;
    }
     .gap-sm-4 {
         gap: 1.5rem !important;
    }
     .gap-sm-5 {
         gap: 3rem !important;
    }
     .text-sm-start {
         text-align: left !important;
    }
     .text-sm-end {
         text-align: right !important;
    }
     .text-sm-center {
         text-align: center !important;
    }
}
 @media (min-width: 768px) {
     .float-md-start {
         float: left !important;
    }
     .float-md-end {
         float: right !important;
    }
     .float-md-none {
         float: none !important;
    }
     .d-md-inline {
         display: inline !important;
    }
     .d-md-inline-block {
         display: inline-block !important;
    }
     .d-md-block {
         display: block !important;
    }
     .d-md-grid {
         display: grid !important;
    }
     .d-md-table {
         display: table !important;
    }
     .d-md-table-row {
         display: table-row !important;
    }
     .d-md-table-cell {
         display: table-cell !important;
    }
     .d-md-flex {
         display: flex !important;
    }
     .d-md-inline-flex {
         display: inline-flex !important;
    }
     .d-md-none {
         display: none !important;
    }
     .flex-md-fill {
         flex: 1 1 auto !important;
    }
     .flex-md-row {
         flex-direction: row !important;
    }
     .flex-md-column {
         flex-direction: column !important;
    }
     .flex-md-row-reverse {
         flex-direction: row-reverse !important;
    }
     .flex-md-column-reverse {
         flex-direction: column-reverse !important;
    }
     .flex-md-grow-0 {
         flex-grow: 0 !important;
    }
     .flex-md-grow-1 {
         flex-grow: 1 !important;
    }
     .flex-md-shrink-0 {
         flex-shrink: 0 !important;
    }
     .flex-md-shrink-1 {
         flex-shrink: 1 !important;
    }
     .flex-md-wrap {
         flex-wrap: wrap !important;
    }
     .flex-md-nowrap {
         flex-wrap: nowrap !important;
    }
     .flex-md-wrap-reverse {
         flex-wrap: wrap-reverse !important;
    }
     .justify-content-md-start {
         justify-content: flex-start !important;
    }
     .justify-content-md-end {
         justify-content: flex-end !important;
    }
     .justify-content-md-center {
         justify-content: center !important;
    }
     .justify-content-md-between {
         justify-content: space-between !important;
    }
     .justify-content-md-around {
         justify-content: space-around !important;
    }
     .justify-content-md-evenly {
         justify-content: space-evenly !important;
    }
     .align-items-md-start {
         align-items: flex-start !important;
    }
     .align-items-md-end {
         align-items: flex-end !important;
    }
     .align-items-md-center {
         align-items: center !important;
    }
     .align-items-md-baseline {
         align-items: baseline !important;
    }
     .align-items-md-stretch {
         align-items: stretch !important;
    }
     .align-content-md-start {
         align-content: flex-start !important;
    }
     .align-content-md-end {
         align-content: flex-end !important;
    }
     .align-content-md-center {
         align-content: center !important;
    }
     .align-content-md-between {
         align-content: space-between !important;
    }
     .align-content-md-around {
         align-content: space-around !important;
    }
     .align-content-md-stretch {
         align-content: stretch !important;
    }
     .align-self-md-auto {
         align-self: auto !important;
    }
     .align-self-md-start {
         align-self: flex-start !important;
    }
     .align-self-md-end {
         align-self: flex-end !important;
    }
     .align-self-md-center {
         align-self: center !important;
    }
     .align-self-md-baseline {
         align-self: baseline !important;
    }
     .align-self-md-stretch {
         align-self: stretch !important;
    }
     .order-md-first {
         order: -1 !important;
    }
     .order-md-0 {
         order: 0 !important;
    }
     .order-md-1 {
         order: 1 !important;
    }
     .order-md-2 {
         order: 2 !important;
    }
     .order-md-3 {
         order: 3 !important;
    }
     .order-md-4 {
         order: 4 !important;
    }
     .order-md-5 {
         order: 5 !important;
    }
     .order-md-last {
         order: 6 !important;
    }
     .m-md-0 {
         margin: 0 !important;
    }
     .m-md-1 {
         margin: 0.25rem !important;
    }
     .m-md-2 {
         margin: 0.5rem !important;
    }
     .m-md-3 {
         margin: 1rem !important;
    }
     .m-md-4 {
         margin: 1.5rem !important;
    }
     .m-md-5 {
         margin: 3rem !important;
    }
     .m-md-auto {
         margin: auto !important;
    }
     .mx-md-0 {
         margin-right: 0 !important;
         margin-left: 0 !important;
    }
     .mx-md-1 {
         margin-right: 0.25rem !important;
         margin-left: 0.25rem !important;
    }
     .mx-md-2 {
         margin-right: 0.5rem !important;
         margin-left: 0.5rem !important;
    }
     .mx-md-3 {
         margin-right: 1rem !important;
         margin-left: 1rem !important;
    }
     .mx-md-4 {
         margin-right: 1.5rem !important;
         margin-left: 1.5rem !important;
    }
     .mx-md-5 {
         margin-right: 3rem !important;
         margin-left: 3rem !important;
    }
     .mx-md-auto {
         margin-right: auto !important;
         margin-left: auto !important;
    }
     .my-md-0 {
         margin-top: 0 !important;
         margin-bottom: 0 !important;
    }
     .my-md-1 {
         margin-top: 0.25rem !important;
         margin-bottom: 0.25rem !important;
    }
     .my-md-2 {
         margin-top: 0.5rem !important;
         margin-bottom: 0.5rem !important;
    }
     .my-md-3 {
         margin-top: 1rem !important;
         margin-bottom: 1rem !important;
    }
     .my-md-4 {
         margin-top: 1.5rem !important;
         margin-bottom: 1.5rem !important;
    }
     .my-md-5 {
         margin-top: 3rem !important;
         margin-bottom: 3rem !important;
    }
     .my-md-auto {
         margin-top: auto !important;
         margin-bottom: auto !important;
    }
     .mt-md-0 {
         margin-top: 0 !important;
    }
     .mt-md-1 {
         margin-top: 0.25rem !important;
    }
     .mt-md-2 {
         margin-top: 0.5rem !important;
    }
     .mt-md-3 {
         margin-top: 1rem !important;
    }
     .mt-md-4 {
         margin-top: 1.5rem !important;
    }
     .mt-md-5 {
         margin-top: 3rem !important;
    }
     .mt-md-auto {
         margin-top: auto !important;
    }
     .me-md-0 {
         margin-right: 0 !important;
    }
     .me-md-1 {
         margin-right: 0.25rem !important;
    }
     .me-md-2 {
         margin-right: 0.5rem !important;
    }
     .me-md-3 {
         margin-right: 1rem !important;
    }
     .me-md-4 {
         margin-right: 1.5rem !important;
    }
     .me-md-5 {
         margin-right: 3rem !important;
    }
     .me-md-auto {
         margin-right: auto !important;
    }
     .mb-md-0 {
         margin-bottom: 0 !important;
    }
     .mb-md-1 {
         margin-bottom: 0.25rem !important;
    }
     .mb-md-2 {
         margin-bottom: 0.5rem !important;
    }
     .mb-md-3 {
         margin-bottom: 1rem !important;
    }
     .mb-md-4 {
         margin-bottom: 1.5rem !important;
    }
     .mb-md-5 {
         margin-bottom: 3rem !important;
    }
     .mb-md-auto {
         margin-bottom: auto !important;
    }
     .ms-md-0 {
         margin-left: 0 !important;
    }
     .ms-md-1 {
         margin-left: 0.25rem !important;
    }
     .ms-md-2 {
         margin-left: 0.5rem !important;
    }
     .ms-md-3 {
         margin-left: 1rem !important;
    }
     .ms-md-4 {
         margin-left: 1.5rem !important;
    }
     .ms-md-5 {
         margin-left: 3rem !important;
    }
     .ms-md-auto {
         margin-left: auto !important;
    }
     .p-md-0 {
         padding: 0 !important;
    }
     .p-md-1 {
         padding: 0.25rem !important;
    }
     .p-md-2 {
         padding: 0.5rem !important;
    }
     .p-md-3 {
         padding: 1rem !important;
    }
     .p-md-4 {
         padding: 1.5rem !important;
    }
     .p-md-5 {
         padding: 3rem !important;
    }
     .px-md-0 {
         padding-right: 0 !important;
         padding-left: 0 !important;
    }
     .px-md-1 {
         padding-right: 0.25rem !important;
         padding-left: 0.25rem !important;
    }
     .px-md-2 {
         padding-right: 0.5rem !important;
         padding-left: 0.5rem !important;
    }
     .px-md-3 {
         padding-right: 1rem !important;
         padding-left: 1rem !important;
    }
     .px-md-4 {
         padding-right: 1.5rem !important;
         padding-left: 1.5rem !important;
    }
     .px-md-5 {
         padding-right: 3rem !important;
         padding-left: 3rem !important;
    }
     .py-md-0 {
         padding-top: 0 !important;
         padding-bottom: 0 !important;
    }
     .py-md-1 {
         padding-top: 0.25rem !important;
         padding-bottom: 0.25rem !important;
    }
     .py-md-2 {
         padding-top: 0.5rem !important;
         padding-bottom: 0.5rem !important;
    }
     .py-md-3 {
         padding-top: 1rem !important;
         padding-bottom: 1rem !important;
    }
     .py-md-4 {
         padding-top: 1.5rem !important;
         padding-bottom: 1.5rem !important;
    }
     .py-md-5 {
         padding-top: 3rem !important;
         padding-bottom: 3rem !important;
    }
     .pt-md-0 {
         padding-top: 0 !important;
    }
     .pt-md-1 {
         padding-top: 0.25rem !important;
    }
     .pt-md-2 {
         padding-top: 0.5rem !important;
    }
     .pt-md-3 {
         padding-top: 1rem !important;
    }
     .pt-md-4 {
         padding-top: 1.5rem !important;
    }
     .pt-md-5 {
         padding-top: 3rem !important;
    }
     .pe-md-0 {
         padding-right: 0 !important;
    }
     .pe-md-1 {
         padding-right: 0.25rem !important;
    }
     .pe-md-2 {
         padding-right: 0.5rem !important;
    }
     .pe-md-3 {
         padding-right: 1rem !important;
    }
     .pe-md-4 {
         padding-right: 1.5rem !important;
    }
     .pe-md-5 {
         padding-right: 3rem !important;
    }
     .pb-md-0 {
         padding-bottom: 0 !important;
    }
     .pb-md-1 {
         padding-bottom: 0.25rem !important;
    }
     .pb-md-2 {
         padding-bottom: 0.5rem !important;
    }
     .pb-md-3 {
         padding-bottom: 1rem !important;
    }
     .pb-md-4 {
         padding-bottom: 1.5rem !important;
    }
     .pb-md-5 {
         padding-bottom: 3rem !important;
    }
     .ps-md-0 {
         padding-left: 0 !important;
    }
     .ps-md-1 {
         padding-left: 0.25rem !important;
    }
     .ps-md-2 {
         padding-left: 0.5rem !important;
    }
     .ps-md-3 {
         padding-left: 1rem !important;
    }
     .ps-md-4 {
         padding-left: 1.5rem !important;
    }
     .ps-md-5 {
         padding-left: 3rem !important;
    }
     .gap-md-0 {
         gap: 0 !important;
    }
     .gap-md-1 {
         gap: 0.25rem !important;
    }
     .gap-md-2 {
         gap: 0.5rem !important;
    }
     .gap-md-3 {
         gap: 1rem !important;
    }
     .gap-md-4 {
         gap: 1.5rem !important;
    }
     .gap-md-5 {
         gap: 3rem !important;
    }
     .text-md-start {
         text-align: left !important;
    }
     .text-md-end {
         text-align: right !important;
    }
     .text-md-center {
         text-align: center !important;
    }
}
 @media (min-width: 992px) {
     .float-lg-start {
         float: left !important;
    }
     .float-lg-end {
         float: right !important;
    }
     .float-lg-none {
         float: none !important;
    }
     .d-lg-inline {
         display: inline !important;
    }
     .d-lg-inline-block {
         display: inline-block !important;
    }
     .d-lg-block {
         display: block !important;
    }
     .d-lg-grid {
         display: grid !important;
    }
     .d-lg-table {
         display: table !important;
    }
     .d-lg-table-row {
         display: table-row !important;
    }
     .d-lg-table-cell {
         display: table-cell !important;
    }
     .d-lg-flex {
         display: flex !important;
    }
     .d-lg-inline-flex {
         display: inline-flex !important;
    }
     .d-lg-none {
         display: none !important;
    }
     .flex-lg-fill {
         flex: 1 1 auto !important;
    }
     .flex-lg-row {
         flex-direction: row !important;
    }
     .flex-lg-column {
         flex-direction: column !important;
    }
     .flex-lg-row-reverse {
         flex-direction: row-reverse !important;
    }
     .flex-lg-column-reverse {
         flex-direction: column-reverse !important;
    }
     .flex-lg-grow-0 {
         flex-grow: 0 !important;
    }
     .flex-lg-grow-1 {
         flex-grow: 1 !important;
    }
     .flex-lg-shrink-0 {
         flex-shrink: 0 !important;
    }
     .flex-lg-shrink-1 {
         flex-shrink: 1 !important;
    }
     .flex-lg-wrap {
         flex-wrap: wrap !important;
    }
     .flex-lg-nowrap {
         flex-wrap: nowrap !important;
    }
     .flex-lg-wrap-reverse {
         flex-wrap: wrap-reverse !important;
    }
     .justify-content-lg-start {
         justify-content: flex-start !important;
    }
     .justify-content-lg-end {
         justify-content: flex-end !important;
    }
     .justify-content-lg-center {
         justify-content: center !important;
    }
     .justify-content-lg-between {
         justify-content: space-between !important;
    }
     .justify-content-lg-around {
         justify-content: space-around !important;
    }
     .justify-content-lg-evenly {
         justify-content: space-evenly !important;
    }
     .align-items-lg-start {
         align-items: flex-start !important;
    }
     .align-items-lg-end {
         align-items: flex-end !important;
    }
     .align-items-lg-center {
         align-items: center !important;
    }
     .align-items-lg-baseline {
         align-items: baseline !important;
    }
     .align-items-lg-stretch {
         align-items: stretch !important;
    }
     .align-content-lg-start {
         align-content: flex-start !important;
    }
     .align-content-lg-end {
         align-content: flex-end !important;
    }
     .align-content-lg-center {
         align-content: center !important;
    }
     .align-content-lg-between {
         align-content: space-between !important;
    }
     .align-content-lg-around {
         align-content: space-around !important;
    }
     .align-content-lg-stretch {
         align-content: stretch !important;
    }
     .align-self-lg-auto {
         align-self: auto !important;
    }
     .align-self-lg-start {
         align-self: flex-start !important;
    }
     .align-self-lg-end {
         align-self: flex-end !important;
    }
     .align-self-lg-center {
         align-self: center !important;
    }
     .align-self-lg-baseline {
         align-self: baseline !important;
    }
     .align-self-lg-stretch {
         align-self: stretch !important;
    }
     .order-lg-first {
         order: -1 !important;
    }
     .order-lg-0 {
         order: 0 !important;
    }
     .order-lg-1 {
         order: 1 !important;
    }
     .order-lg-2 {
         order: 2 !important;
    }
     .order-lg-3 {
         order: 3 !important;
    }
     .order-lg-4 {
         order: 4 !important;
    }
     .order-lg-5 {
         order: 5 !important;
    }
     .order-lg-last {
         order: 6 !important;
    }
     .m-lg-0 {
         margin: 0 !important;
    }
     .m-lg-1 {
         margin: 0.25rem !important;
    }
     .m-lg-2 {
         margin: 0.5rem !important;
    }
     .m-lg-3 {
         margin: 1rem !important;
    }
     .m-lg-4 {
         margin: 1.5rem !important;
    }
     .m-lg-5 {
         margin: 3rem !important;
    }
     .m-lg-auto {
         margin: auto !important;
    }
     .mx-lg-0 {
         margin-right: 0 !important;
         margin-left: 0 !important;
    }
     .mx-lg-1 {
         margin-right: 0.25rem !important;
         margin-left: 0.25rem !important;
    }
     .mx-lg-2 {
         margin-right: 0.5rem !important;
         margin-left: 0.5rem !important;
    }
     .mx-lg-3 {
         margin-right: 1rem !important;
         margin-left: 1rem !important;
    }
     .mx-lg-4 {
         margin-right: 1.5rem !important;
         margin-left: 1.5rem !important;
    }
     .mx-lg-5 {
         margin-right: 3rem !important;
         margin-left: 3rem !important;
    }
     .mx-lg-auto {
         margin-right: auto !important;
         margin-left: auto !important;
    }
     .my-lg-0 {
         margin-top: 0 !important;
         margin-bottom: 0 !important;
    }
     .my-lg-1 {
         margin-top: 0.25rem !important;
         margin-bottom: 0.25rem !important;
    }
     .my-lg-2 {
         margin-top: 0.5rem !important;
         margin-bottom: 0.5rem !important;
    }
     .my-lg-3 {
         margin-top: 1rem !important;
         margin-bottom: 1rem !important;
    }
     .my-lg-4 {
         margin-top: 1.5rem !important;
         margin-bottom: 1.5rem !important;
    }
     .my-lg-5 {
         margin-top: 3rem !important;
         margin-bottom: 3rem !important;
    }
     .my-lg-auto {
         margin-top: auto !important;
         margin-bottom: auto !important;
    }
     .mt-lg-0 {
         margin-top: 0 !important;
    }
     .mt-lg-1 {
         margin-top: 0.25rem !important;
    }
     .mt-lg-2 {
         margin-top: 0.5rem !important;
    }
     .mt-lg-3 {
         margin-top: 1rem !important;
    }
     .mt-lg-4 {
         margin-top: 1.5rem !important;
    }
     .mt-lg-5 {
         margin-top: 3rem !important;
    }
     .mt-lg-auto {
         margin-top: auto !important;
    }
     .me-lg-0 {
         margin-right: 0 !important;
    }
     .me-lg-1 {
         margin-right: 0.25rem !important;
    }
     .me-lg-2 {
         margin-right: 0.5rem !important;
    }
     .me-lg-3 {
         margin-right: 1rem !important;
    }
     .me-lg-4 {
         margin-right: 1.5rem !important;
    }
     .me-lg-5 {
         margin-right: 3rem !important;
    }
     .me-lg-auto {
         margin-right: auto !important;
    }
     .mb-lg-0 {
         margin-bottom: 0 !important;
    }
     .mb-lg-1 {
         margin-bottom: 0.25rem !important;
    }
     .mb-lg-2 {
         margin-bottom: 0.5rem !important;
    }
     .mb-lg-3 {
         margin-bottom: 1rem !important;
    }
     .mb-lg-4 {
         margin-bottom: 1.5rem !important;
    }
     .mb-lg-5 {
         margin-bottom: 3rem !important;
    }
     .mb-lg-auto {
         margin-bottom: auto !important;
    }
     .ms-lg-0 {
         margin-left: 0 !important;
    }
     .ms-lg-1 {
         margin-left: 0.25rem !important;
    }
     .ms-lg-2 {
         margin-left: 0.5rem !important;
    }
     .ms-lg-3 {
         margin-left: 1rem !important;
    }
     .ms-lg-4 {
         margin-left: 1.5rem !important;
    }
     .ms-lg-5 {
         margin-left: 3rem !important;
    }
     .ms-lg-auto {
         margin-left: auto !important;
    }
     .p-lg-0 {
         padding: 0 !important;
    }
     .p-lg-1 {
         padding: 0.25rem !important;
    }
     .p-lg-2 {
         padding: 0.5rem !important;
    }
     .p-lg-3 {
         padding: 1rem !important;
    }
     .p-lg-4 {
         padding: 1.5rem !important;
    }
     .p-lg-5 {
         padding: 3rem !important;
    }
     .px-lg-0 {
         padding-right: 0 !important;
         padding-left: 0 !important;
    }
     .px-lg-1 {
         padding-right: 0.25rem !important;
         padding-left: 0.25rem !important;
    }
     .px-lg-2 {
         padding-right: 0.5rem !important;
         padding-left: 0.5rem !important;
    }
     .px-lg-3 {
         padding-right: 1rem !important;
         padding-left: 1rem !important;
    }
     .px-lg-4 {
         padding-right: 1.5rem !important;
         padding-left: 1.5rem !important;
    }
     .px-lg-5 {
         padding-right: 3rem !important;
         padding-left: 3rem !important;
    }
     .py-lg-0 {
         padding-top: 0 !important;
         padding-bottom: 0 !important;
    }
     .py-lg-1 {
         padding-top: 0.25rem !important;
         padding-bottom: 0.25rem !important;
    }
     .py-lg-2 {
         padding-top: 0.5rem !important;
         padding-bottom: 0.5rem !important;
    }
     .py-lg-3 {
         padding-top: 1rem !important;
         padding-bottom: 1rem !important;
    }
     .py-lg-4 {
         padding-top: 1.5rem !important;
         padding-bottom: 1.5rem !important;
    }
     .py-lg-5 {
         padding-top: 3rem !important;
         padding-bottom: 3rem !important;
    }
     .pt-lg-0 {
         padding-top: 0 !important;
    }
     .pt-lg-1 {
         padding-top: 0.25rem !important;
    }
     .pt-lg-2 {
         padding-top: 0.5rem !important;
    }
     .pt-lg-3 {
         padding-top: 1rem !important;
    }
     .pt-lg-4 {
         padding-top: 1.5rem !important;
    }
     .pt-lg-5 {
         padding-top: 3rem !important;
    }
     .pe-lg-0 {
         padding-right: 0 !important;
    }
     .pe-lg-1 {
         padding-right: 0.25rem !important;
    }
     .pe-lg-2 {
         padding-right: 0.5rem !important;
    }
     .pe-lg-3 {
         padding-right: 1rem !important;
    }
     .pe-lg-4 {
         padding-right: 1.5rem !important;
    }
     .pe-lg-5 {
         padding-right: 3rem !important;
    }
     .pb-lg-0 {
         padding-bottom: 0 !important;
    }
     .pb-lg-1 {
         padding-bottom: 0.25rem !important;
    }
     .pb-lg-2 {
         padding-bottom: 0.5rem !important;
    }
     .pb-lg-3 {
         padding-bottom: 1rem !important;
    }
     .pb-lg-4 {
         padding-bottom: 1.5rem !important;
    }
     .pb-lg-5 {
         padding-bottom: 3rem !important;
    }
     .ps-lg-0 {
         padding-left: 0 !important;
    }
     .ps-lg-1 {
         padding-left: 0.25rem !important;
    }
     .ps-lg-2 {
         padding-left: 0.5rem !important;
    }
     .ps-lg-3 {
         padding-left: 1rem !important;
    }
     .ps-lg-4 {
         padding-left: 1.5rem !important;
    }
     .ps-lg-5 {
         padding-left: 3rem !important;
    }
     .gap-lg-0 {
         gap: 0 !important;
    }
     .gap-lg-1 {
         gap: 0.25rem !important;
    }
     .gap-lg-2 {
         gap: 0.5rem !important;
    }
     .gap-lg-3 {
         gap: 1rem !important;
    }
     .gap-lg-4 {
         gap: 1.5rem !important;
    }
     .gap-lg-5 {
         gap: 3rem !important;
    }
     .text-lg-start {
         text-align: left !important;
    }
     .text-lg-end {
         text-align: right !important;
    }
     .text-lg-center {
         text-align: center !important;
    }
}

 @media (min-width: 1200px) {
     .float-xl-start {
         float: left !important;
    }
     .float-xl-end {
         float: right !important;
    }
     .float-xl-none {
         float: none !important;
    }
     .d-xl-inline {
         display: inline !important;
    }
     .d-xl-inline-block {
         display: inline-block !important;
    }
     .d-xl-block {
         display: block !important;
    }
     .d-xl-grid {
         display: grid !important;
    }
     .d-xl-table {
         display: table !important;
    }
     .d-xl-table-row {
         display: table-row !important;
    }
     .d-xl-table-cell {
         display: table-cell !important;
    }
     .d-xl-flex {
         display: flex !important;
    }
     .d-xl-inline-flex {
         display: inline-flex !important;
    }
     .d-xl-none {
         display: none !important;
    }
     .flex-xl-fill {
         flex: 1 1 auto !important;
    }
     .flex-xl-row {
         flex-direction: row !important;
    }
     .flex-xl-column {
         flex-direction: column !important;
    }
     .flex-xl-row-reverse {
         flex-direction: row-reverse !important;
    }
     .flex-xl-column-reverse {
         flex-direction: column-reverse !important;
    }
     .flex-xl-grow-0 {
         flex-grow: 0 !important;
    }
     .flex-xl-grow-1 {
         flex-grow: 1 !important;
    }
     .flex-xl-shrink-0 {
         flex-shrink: 0 !important;
    }
     .flex-xl-shrink-1 {
         flex-shrink: 1 !important;
    }
     .flex-xl-wrap {
         flex-wrap: wrap !important;
    }
     .flex-xl-nowrap {
         flex-wrap: nowrap !important;
    }
     .flex-xl-wrap-reverse {
         flex-wrap: wrap-reverse !important;
    }
     .justify-content-xl-start {
         justify-content: flex-start !important;
    }
     .justify-content-xl-end {
         justify-content: flex-end !important;
    }
     .justify-content-xl-center {
         justify-content: center !important;
    }
     .justify-content-xl-between {
         justify-content: space-between !important;
    }
     .justify-content-xl-around {
         justify-content: space-around !important;
    }
     .justify-content-xl-evenly {
         justify-content: space-evenly !important;
    }
     .align-items-xl-start {
         align-items: flex-start !important;
    }
     .align-items-xl-end {
         align-items: flex-end !important;
    }
     .align-items-xl-center {
         align-items: center !important;
    }
     .align-items-xl-baseline {
         align-items: baseline !important;
    }
     .align-items-xl-stretch {
         align-items: stretch !important;
    }
     .align-content-xl-start {
         align-content: flex-start !important;
    }
     .align-content-xl-end {
         align-content: flex-end !important;
    }
     .align-content-xl-center {
         align-content: center !important;
    }
     .align-content-xl-between {
         align-content: space-between !important;
    }
     .align-content-xl-around {
         align-content: space-around !important;
    }
     .align-content-xl-stretch {
         align-content: stretch !important;
    }
     .align-self-xl-auto {
         align-self: auto !important;
    }
     .align-self-xl-start {
         align-self: flex-start !important;
    }
     .align-self-xl-end {
         align-self: flex-end !important;
    }
     .align-self-xl-center {
         align-self: center !important;
    }
     .align-self-xl-baseline {
         align-self: baseline !important;
    }
     .align-self-xl-stretch {
         align-self: stretch !important;
    }
     .order-xl-first {
         order: -1 !important;
    }
     .order-xl-0 {
         order: 0 !important;
    }
     .order-xl-1 {
         order: 1 !important;
    }
     .order-xl-2 {
         order: 2 !important;
    }
     .order-xl-3 {
         order: 3 !important;
    }
     .order-xl-4 {
         order: 4 !important;
    }
     .order-xl-5 {
         order: 5 !important;
    }
     .order-xl-last {
         order: 6 !important;
    }
     .m-xl-0 {
         margin: 0 !important;
    }
     .m-xl-1 {
         margin: 0.25rem !important;
    }
     .m-xl-2 {
         margin: 0.5rem !important;
    }
     .m-xl-3 {
         margin: 1rem !important;
    }
     .m-xl-4 {
         margin: 1.5rem !important;
    }
     .m-xl-5 {
         margin: 3rem !important;
    }
     .m-xl-auto {
         margin: auto !important;
    }
     .mx-xl-0 {
         margin-right: 0 !important;
         margin-left: 0 !important;
    }
     .mx-xl-1 {
         margin-right: 0.25rem !important;
         margin-left: 0.25rem !important;
    }
     .mx-xl-2 {
         margin-right: 0.5rem !important;
         margin-left: 0.5rem !important;
    }
     .mx-xl-3 {
         margin-right: 1rem !important;
         margin-left: 1rem !important;
    }
     .mx-xl-4 {
         margin-right: 1.5rem !important;
         margin-left: 1.5rem !important;
    }
     .mx-xl-5 {
         margin-right: 3rem !important;
         margin-left: 3rem !important;
    }
     .mx-xl-auto {
         margin-right: auto !important;
         margin-left: auto !important;
    }
     .my-xl-0 {
         margin-top: 0 !important;
         margin-bottom: 0 !important;
    }
     .my-xl-1 {
         margin-top: 0.25rem !important;
         margin-bottom: 0.25rem !important;
    }
     .my-xl-2 {
         margin-top: 0.5rem !important;
         margin-bottom: 0.5rem !important;
    }
     .my-xl-3 {
         margin-top: 1rem !important;
         margin-bottom: 1rem !important;
    }
     .my-xl-4 {
         margin-top: 1.5rem !important;
         margin-bottom: 1.5rem !important;
    }
     .my-xl-5 {
         margin-top: 3rem !important;
         margin-bottom: 3rem !important;
    }
     .my-xl-auto {
         margin-top: auto !important;
         margin-bottom: auto !important;
    }
     .mt-xl-0 {
         margin-top: 0 !important;
    }
     .mt-xl-1 {
         margin-top: 0.25rem !important;
    }
     .mt-xl-2 {
         margin-top: 0.5rem !important;
    }
     .mt-xl-3 {
         margin-top: 1rem !important;
    }
     .mt-xl-4 {
         margin-top: 1.5rem !important;
    }
     .mt-xl-5 {
         margin-top: 3rem !important;
    }
     .mt-xl-auto {
         margin-top: auto !important;
    }
     .me-xl-0 {
         margin-right: 0 !important;
    }
     .me-xl-1 {
         margin-right: 0.25rem !important;
    }
     .me-xl-2 {
         margin-right: 0.5rem !important;
    }
     .me-xl-3 {
         margin-right: 1rem !important;
    }
     .me-xl-4 {
         margin-right: 1.5rem !important;
    }
     .me-xl-5 {
         margin-right: 3rem !important;
    }
     .me-xl-auto {
         margin-right: auto !important;
    }
     .mb-xl-0 {
         margin-bottom: 0 !important;
    }
     .mb-xl-1 {
         margin-bottom: 0.25rem !important;
    }
     .mb-xl-2 {
         margin-bottom: 0.5rem !important;
    }
     .mb-xl-3 {
         margin-bottom: 1rem !important;
    }
     .mb-xl-4 {
         margin-bottom: 1.5rem !important;
    }
     .mb-xl-5 {
         margin-bottom: 3rem !important;
    }
     .mb-xl-auto {
         margin-bottom: auto !important;
    }
     .ms-xl-0 {
         margin-left: 0 !important;
    }
     .ms-xl-1 {
         margin-left: 0.25rem !important;
    }
     .ms-xl-2 {
         margin-left: 0.5rem !important;
    }
     .ms-xl-3 {
         margin-left: 1rem !important;
    }
     .ms-xl-4 {
         margin-left: 1.5rem !important;
    }
     .ms-xl-5 {
         margin-left: 3rem !important;
    }
     .ms-xl-auto {
         margin-left: auto !important;
    }
     .p-xl-0 {
         padding: 0 !important;
    }
     .p-xl-1 {
         padding: 0.25rem !important;
    }
     .p-xl-2 {
         padding: 0.5rem !important;
    }
     .p-xl-3 {
         padding: 1rem !important;
    }
     .p-xl-4 {
         padding: 1.5rem !important;
    }
     .p-xl-5 {
         padding: 3rem !important;
    }
     .px-xl-0 {
         padding-right: 0 !important;
         padding-left: 0 !important;
    }
     .px-xl-1 {
         padding-right: 0.25rem !important;
         padding-left: 0.25rem !important;
    }
     .px-xl-2 {
         padding-right: 0.5rem !important;
         padding-left: 0.5rem !important;
    }
     .px-xl-3 {
         padding-right: 1rem !important;
         padding-left: 1rem !important;
    }
     .px-xl-4 {
         padding-right: 1.5rem !important;
         padding-left: 1.5rem !important;
    }
     .px-xl-5 {
         padding-right: 3rem !important;
         padding-left: 3rem !important;
    }
     .py-xl-0 {
         padding-top: 0 !important;
         padding-bottom: 0 !important;
    }
     .py-xl-1 {
         padding-top: 0.25rem !important;
         padding-bottom: 0.25rem !important;
    }
     .py-xl-2 {
         padding-top: 0.5rem !important;
         padding-bottom: 0.5rem !important;
    }
     .py-xl-3 {
         padding-top: 1rem !important;
         padding-bottom: 1rem !important;
    }
     .py-xl-4 {
         padding-top: 1.5rem !important;
         padding-bottom: 1.5rem !important;
    }
     .py-xl-5 {
         padding-top: 3rem !important;
         padding-bottom: 3rem !important;
    }
     .pt-xl-0 {
         padding-top: 0 !important;
    }
     .pt-xl-1 {
         padding-top: 0.25rem !important;
    }
     .pt-xl-2 {
         padding-top: 0.5rem !important;
    }
     .pt-xl-3 {
         padding-top: 1rem !important;
    }
     .pt-xl-4 {
         padding-top: 1.5rem !important;
    }
     .pt-xl-5 {
         padding-top: 3rem !important;
    }
     .pe-xl-0 {
         padding-right: 0 !important;
    }
     .pe-xl-1 {
         padding-right: 0.25rem !important;
    }
     .pe-xl-2 {
         padding-right: 0.5rem !important;
    }
     .pe-xl-3 {
         padding-right: 1rem !important;
    }
     .pe-xl-4 {
         padding-right: 1.5rem !important;
    }
     .pe-xl-5 {
         padding-right: 3rem !important;
    }
     .pb-xl-0 {
         padding-bottom: 0 !important;
    }
     .pb-xl-1 {
         padding-bottom: 0.25rem !important;
    }
     .pb-xl-2 {
         padding-bottom: 0.5rem !important;
    }
     .pb-xl-3 {
         padding-bottom: 1rem !important;
    }
     .pb-xl-4 {
         padding-bottom: 1.5rem !important;
    }
     .pb-xl-5 {
         padding-bottom: 3rem !important;
    }
     .ps-xl-0 {
         padding-left: 0 !important;
    }
     .ps-xl-1 {
         padding-left: 0.25rem !important;
    }
     .ps-xl-2 {
         padding-left: 0.5rem !important;
    }
     .ps-xl-3 {
         padding-left: 1rem !important;
    }
     .ps-xl-4 {
         padding-left: 1.5rem !important;
    }
     .ps-xl-5 {
         padding-left: 3rem !important;
    }
     .gap-xl-0 {
         gap: 0 !important;
    }
     .gap-xl-1 {
         gap: 0.25rem !important;
    }
     .gap-xl-2 {
         gap: 0.5rem !important;
    }
     .gap-xl-3 {
         gap: 1rem !important;
    }
     .gap-xl-4 {
         gap: 1.5rem !important;
    }
     .gap-xl-5 {
         gap: 3rem !important;
    }
     .text-xl-start {
         text-align: left !important;
    }
     .text-xl-end {
         text-align: right !important;
    }
     .text-xl-center {
         text-align: center !important;
    }
}
 @media (min-width: 1400px) {
     .float-xxl-start {
         float: left !important;
    }
     .float-xxl-end {
         float: right !important;
    }
     .float-xxl-none {
         float: none !important;
    }
     .d-xxl-inline {
         display: inline !important;
    }
     .d-xxl-inline-block {
         display: inline-block !important;
    }
     .d-xxl-block {
         display: block !important;
    }
     .d-xxl-grid {
         display: grid !important;
    }
     .d-xxl-table {
         display: table !important;
    }
     .d-xxl-table-row {
         display: table-row !important;
    }
     .d-xxl-table-cell {
         display: table-cell !important;
    }
     .d-xxl-flex {
         display: flex !important;
    }
     .d-xxl-inline-flex {
         display: inline-flex !important;
    }
     .d-xxl-none {
         display: none !important;
    }
     .flex-xxl-fill {
         flex: 1 1 auto !important;
    }
     .flex-xxl-row {
         flex-direction: row !important;
    }
     .flex-xxl-column {
         flex-direction: column !important;
    }
     .flex-xxl-row-reverse {
         flex-direction: row-reverse !important;
    }
     .flex-xxl-column-reverse {
         flex-direction: column-reverse !important;
    }
     .flex-xxl-grow-0 {
         flex-grow: 0 !important;
    }
     .flex-xxl-grow-1 {
         flex-grow: 1 !important;
    }
     .flex-xxl-shrink-0 {
         flex-shrink: 0 !important;
    }
     .flex-xxl-shrink-1 {
         flex-shrink: 1 !important;
    }
     .flex-xxl-wrap {
         flex-wrap: wrap !important;
    }
     .flex-xxl-nowrap {
         flex-wrap: nowrap !important;
    }
     .flex-xxl-wrap-reverse {
         flex-wrap: wrap-reverse !important;
    }
     .justify-content-xxl-start {
         justify-content: flex-start !important;
    }
     .justify-content-xxl-end {
         justify-content: flex-end !important;
    }
     .justify-content-xxl-center {
         justify-content: center !important;
    }
     .justify-content-xxl-between {
         justify-content: space-between !important;
    }
     .justify-content-xxl-around {
         justify-content: space-around !important;
    }
     .justify-content-xxl-evenly {
         justify-content: space-evenly !important;
    }
     .align-items-xxl-start {
         align-items: flex-start !important;
    }
     .align-items-xxl-end {
         align-items: flex-end !important;
    }
     .align-items-xxl-center {
         align-items: center !important;
    }
     .align-items-xxl-baseline {
         align-items: baseline !important;
    }
     .align-items-xxl-stretch {
         align-items: stretch !important;
    }
     .align-content-xxl-start {
         align-content: flex-start !important;
    }
     .align-content-xxl-end {
         align-content: flex-end !important;
    }
     .align-content-xxl-center {
         align-content: center !important;
    }
     .align-content-xxl-between {
         align-content: space-between !important;
    }
     .align-content-xxl-around {
         align-content: space-around !important;
    }
     .align-content-xxl-stretch {
         align-content: stretch !important;
    }
     .align-self-xxl-auto {
         align-self: auto !important;
    }
     .align-self-xxl-start {
         align-self: flex-start !important;
    }
     .align-self-xxl-end {
         align-self: flex-end !important;
    }
     .align-self-xxl-center {
         align-self: center !important;
    }
     .align-self-xxl-baseline {
         align-self: baseline !important;
    }
     .align-self-xxl-stretch {
         align-self: stretch !important;
    }
     .order-xxl-first {
         order: -1 !important;
    }
     .order-xxl-0 {
         order: 0 !important;
    }
     .order-xxl-1 {
         order: 1 !important;
    }
     .order-xxl-2 {
         order: 2 !important;
    }
     .order-xxl-3 {
         order: 3 !important;
    }
     .order-xxl-4 {
         order: 4 !important;
    }
     .order-xxl-5 {
         order: 5 !important;
    }
     .order-xxl-last {
         order: 6 !important;
    }
     .m-xxl-0 {
         margin: 0 !important;
    }
     .m-xxl-1 {
         margin: 0.25rem !important;
    }
     .m-xxl-2 {
         margin: 0.5rem !important;
    }
     .m-xxl-3 {
         margin: 1rem !important;
    }
     .m-xxl-4 {
         margin: 1.5rem !important;
    }
     .m-xxl-5 {
         margin: 3rem !important;
    }
     .m-xxl-auto {
         margin: auto !important;
    }
     .mx-xxl-0 {
         margin-right: 0 !important;
         margin-left: 0 !important;
    }
     .mx-xxl-1 {
         margin-right: 0.25rem !important;
         margin-left: 0.25rem !important;
    }
     .mx-xxl-2 {
         margin-right: 0.5rem !important;
         margin-left: 0.5rem !important;
    }
     .mx-xxl-3 {
         margin-right: 1rem !important;
         margin-left: 1rem !important;
    }
     .mx-xxl-4 {
         margin-right: 1.5rem !important;
         margin-left: 1.5rem !important;
    }
     .mx-xxl-5 {
         margin-right: 3rem !important;
         margin-left: 3rem !important;
    }
     .mx-xxl-auto {
         margin-right: auto !important;
         margin-left: auto !important;
    }
     .my-xxl-0 {
         margin-top: 0 !important;
         margin-bottom: 0 !important;
    }
     .my-xxl-1 {
         margin-top: 0.25rem !important;
         margin-bottom: 0.25rem !important;
    }
     .my-xxl-2 {
         margin-top: 0.5rem !important;
         margin-bottom: 0.5rem !important;
    }
     .my-xxl-3 {
         margin-top: 1rem !important;
         margin-bottom: 1rem !important;
    }
     .my-xxl-4 {
         margin-top: 1.5rem !important;
         margin-bottom: 1.5rem !important;
    }
     .my-xxl-5 {
         margin-top: 3rem !important;
         margin-bottom: 3rem !important;
    }
     .my-xxl-auto {
         margin-top: auto !important;
         margin-bottom: auto !important;
    }
     .mt-xxl-0 {
         margin-top: 0 !important;
    }
     .mt-xxl-1 {
         margin-top: 0.25rem !important;
    }
     .mt-xxl-2 {
         margin-top: 0.5rem !important;
    }
     .mt-xxl-3 {
         margin-top: 1rem !important;
    }
     .mt-xxl-4 {
         margin-top: 1.5rem !important;
    }
     .mt-xxl-5 {
         margin-top: 3rem !important;
    }
     .mt-xxl-auto {
         margin-top: auto !important;
    }
     .me-xxl-0 {
         margin-right: 0 !important;
    }
     .me-xxl-1 {
         margin-right: 0.25rem !important;
    }
     .me-xxl-2 {
         margin-right: 0.5rem !important;
    }
     .me-xxl-3 {
         margin-right: 1rem !important;
    }
     .me-xxl-4 {
         margin-right: 1.5rem !important;
    }
     .me-xxl-5 {
         margin-right: 3rem !important;
    }
     .me-xxl-auto {
         margin-right: auto !important;
    }
     .mb-xxl-0 {
         margin-bottom: 0 !important;
    }
     .mb-xxl-1 {
         margin-bottom: 0.25rem !important;
    }
     .mb-xxl-2 {
         margin-bottom: 0.5rem !important;
    }
     .mb-xxl-3 {
         margin-bottom: 1rem !important;
    }
     .mb-xxl-4 {
         margin-bottom: 1.5rem !important;
    }
     .mb-xxl-5 {
         margin-bottom: 3rem !important;
    }
     .mb-xxl-auto {
         margin-bottom: auto !important;
    }
     .ms-xxl-0 {
         margin-left: 0 !important;
    }
     .ms-xxl-1 {
         margin-left: 0.25rem !important;
    }
     .ms-xxl-2 {
         margin-left: 0.5rem !important;
    }
     .ms-xxl-3 {
         margin-left: 1rem !important;
    }
     .ms-xxl-4 {
         margin-left: 1.5rem !important;
    }
     .ms-xxl-5 {
         margin-left: 3rem !important;
    }
     .ms-xxl-auto {
         margin-left: auto !important;
    }
     .p-xxl-0 {
         padding: 0 !important;
    }
     .p-xxl-1 {
         padding: 0.25rem !important;
    }
     .p-xxl-2 {
         padding: 0.5rem !important;
    }
     .p-xxl-3 {
         padding: 1rem !important;
    }
     .p-xxl-4 {
         padding: 1.5rem !important;
    }
     .p-xxl-5 {
         padding: 3rem !important;
    }
     .px-xxl-0 {
         padding-right: 0 !important;
         padding-left: 0 !important;
    }
     .px-xxl-1 {
         padding-right: 0.25rem !important;
         padding-left: 0.25rem !important;
    }
     .px-xxl-2 {
         padding-right: 0.5rem !important;
         padding-left: 0.5rem !important;
    }
     .px-xxl-3 {
         padding-right: 1rem !important;
         padding-left: 1rem !important;
    }
     .px-xxl-4 {
         padding-right: 1.5rem !important;
         padding-left: 1.5rem !important;
    }
     .px-xxl-5 {
         padding-right: 3rem !important;
         padding-left: 3rem !important;
    }
     .py-xxl-0 {
         padding-top: 0 !important;
         padding-bottom: 0 !important;
    }
     .py-xxl-1 {
         padding-top: 0.25rem !important;
         padding-bottom: 0.25rem !important;
    }
     .py-xxl-2 {
         padding-top: 0.5rem !important;
         padding-bottom: 0.5rem !important;
    }
     .py-xxl-3 {
         padding-top: 1rem !important;
         padding-bottom: 1rem !important;
    }
     .py-xxl-4 {
         padding-top: 1.5rem !important;
         padding-bottom: 1.5rem !important;
    }
     .py-xxl-5 {
         padding-top: 3rem !important;
         padding-bottom: 3rem !important;
    }
     .pt-xxl-0 {
         padding-top: 0 !important;
    }
     .pt-xxl-1 {
         padding-top: 0.25rem !important;
    }
     .pt-xxl-2 {
         padding-top: 0.5rem !important;
    }
     .pt-xxl-3 {
         padding-top: 1rem !important;
    }
     .pt-xxl-4 {
         padding-top: 1.5rem !important;
    }
     .pt-xxl-5 {
         padding-top: 3rem !important;
    }
     .pe-xxl-0 {
         padding-right: 0 !important;
    }
     .pe-xxl-1 {
         padding-right: 0.25rem !important;
    }
     .pe-xxl-2 {
         padding-right: 0.5rem !important;
    }
     .pe-xxl-3 {
         padding-right: 1rem !important;
    }
     .pe-xxl-4 {
         padding-right: 1.5rem !important;
    }
     .pe-xxl-5 {
         padding-right: 3rem !important;
    }
     .pb-xxl-0 {
         padding-bottom: 0 !important;
    }
     .pb-xxl-1 {
         padding-bottom: 0.25rem !important;
    }
     .pb-xxl-2 {
         padding-bottom: 0.5rem !important;
    }
     .pb-xxl-3 {
         padding-bottom: 1rem !important;
    }
     .pb-xxl-4 {
         padding-bottom: 1.5rem !important;
    }
     .pb-xxl-5 {
         padding-bottom: 3rem !important;
    }
     .ps-xxl-0 {
         padding-left: 0 !important;
    }
     .ps-xxl-1 {
         padding-left: 0.25rem !important;
    }
     .ps-xxl-2 {
         padding-left: 0.5rem !important;
    }
     .ps-xxl-3 {
         padding-left: 1rem !important;
    }
     .ps-xxl-4 {
         padding-left: 1.5rem !important;
    }
     .ps-xxl-5 {
         padding-left: 3rem !important;
    }
     .gap-xxl-0 {
         gap: 0 !important;
    }
     .gap-xxl-1 {
         gap: 0.25rem !important;
    }
     .gap-xxl-2 {
         gap: 0.5rem !important;
    }
     .gap-xxl-3 {
         gap: 1rem !important;
    }
     .gap-xxl-4 {
         gap: 1.5rem !important;
    }
     .gap-xxl-5 {
         gap: 3rem !important;
    }
     .text-xxl-start {
         text-align: left !important;
    }
     .text-xxl-end {
         text-align: right !important;
    }
     .text-xxl-center {
         text-align: center !important;
    }
}
 @media (min-width: 1200px) {
     .fs-1 {
         font-size: 2.5rem !important;
    }
     .fs-2 {
         font-size: 2rem !important;
    }
     .fs-3 {
         font-size: 1.75rem !important;
    }
     .fs-4 {
         font-size: 1.5rem !important;
    }
}
 @media print {
     .d-print-inline {
         display: inline !important;
    }
     .d-print-inline-block {
         display: inline-block !important;
    }
     .d-print-block {
         display: block !important;
    }
     .d-print-grid {
         display: grid !important;
    }
     .d-print-table {
         display: table !important;
    }
     .d-print-table-row {
         display: table-row !important;
    }
     .d-print-table-cell {
         display: table-cell !important;
    }
     .d-print-flex {
         display: flex !important;
    }
     .d-print-inline-flex {
         display: inline-flex !important;
    }
     .d-print-none {
         display: none !important;
    }
}
/*t New Styles t*/
 .top-bar .nav-item {
     display: inline-block;
}
 nav {
     padding: 0px;
}
 nav.top-bar-wrap {
     background: #ffb66c;
}
 .top-bar-wrap {
     height: 40px;
     line-height: 40px;
}
 .main-nav-wrap {
     height: 80px;
     line-height: 80px;
}
 nav.main-nav-wrap {
     background: #7c2222;
     font-size: 1.25rem 
}
 nav.top-bar-wrap ul, nav.main-nav-wrap ul {
     margin-bottom: 0px;
     margin-top: 0px 
}
 a.nav-link:hover {
     background: rgba(0, 0, 0, 0.2);
     color: #fff;
     border-left: 12px solid rgba(0, 0, 0, 0.3);
}
 a.nav-link {
     border-left: 12px solid transparent;
     border-right: 12px solid transparent;
     color: #f9f9f9;
     text-transform: uppercase;
     font-family: 'Rubik', sans-serif;
     transform: skew(-25deg);
     transition: all 400ms ease-out 
}
 a .inner-link {
     display: inline-block;
     transform: skew(25deg) 
}
 .nav-link {
     padding: 0px;
}
 .top-bar-wrap a {
     padding-left: 12px;
}
 .main-nav-wrap a {
     padding-left: 18px;
}
 .brand-logo img {
     height: 40px;
     transform: skew(25deg) 
}
 .brand-phone a {
     display: block;
     font-size: 1.25em;
     text-decoration: none;
     color: #000000;
     letter-spacing: 2px;
     height: 40px;
     line-height: 1.5em;
     transform: skew(25deg) 
}
 .brand-phone, .brand-logo {
     padding: 40px;
     position: absolute;
     top: 0;
     height: 120px;
     transform: skewX(-25deg);
}
 .brand-logo {
     left: -30px;
     padding-left: 70px;
     background: #621616;
     border-right: 2px solid #ffb66c;
}
 .brand-phone {
     right: 0;
     right: -30px;
     padding-right: 70px;
     background: #ffb66c;
     border-left: 3px solid #6c4013;
}
/*! * SlickNav Responsive Mobile Menu v1.0.10 * (c) 2016 Josh Cope * licensed under MIT */
 .slicknav_btn {
     position: relative;
     display: block;
     vertical-align: middle;
     float: right;
     padding: 0.438em 0.625em 0.438em 0.625em;
     line-height: 1.125em;
     cursor: pointer;
}
 .slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
     margin-top: 0.188em;
}
 .slicknav_menu {
     *zoom: 1;
}
 .slicknav_menu .slicknav_menutxt {
     display: block;
     line-height: 1.188em;
     float: left;
}
 .slicknav_menu .slicknav_icon {
     float: left;
     width: 1.125em;
     height: 0.875em;
     margin: 0.188em 0 0 0.438em;
}
 .slicknav_menu .slicknav_icon:before {
     background: transparent;
     width: 1.125em;
     height: 0.875em;
     display: block;
     content: "";
     position: absolute;
}
 .slicknav_menu .slicknav_no-text {
     margin: 0;
}
 .slicknav_menu .slicknav_icon-bar {
     display: block;
     width: 1.125em;
     height: 0.125em;
     -webkit-border-radius: 1px;
     -moz-border-radius: 1px;
     border-radius: 1px;
     -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
     -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
     box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
 .slicknav_menu:before {
     content: " ";
     display: table;
}
 .slicknav_menu:after {
     content: " ";
     display: table;
     clear: both;
}
 .slicknav_nav {
     clear: both;
}
 .slicknav_nav ul {
     display: block;
}
 .slicknav_nav li {
     display: block;
}
 .slicknav_nav .slicknav_arrow {
     font-size: 0.8em;
     margin: 0 0 0 0.4em;
}
 .slicknav_nav .slicknav_item {
     cursor: pointer;
}
 .slicknav_nav .slicknav_item a {
     display: inline;
}
 .slicknav_nav .slicknav_row {
     display: block;
}
 .slicknav_nav a {
     display: block;
}
 .slicknav_nav .slicknav_parent-link a {
     display: inline;
}
 .slicknav_brand {
     float: left;
}
 .slicknav_menu {
     font-size: 16px;
     box-sizing: border-box;
     background: #4c4c4c;
     padding: 5px;
}
 .slicknav_menu * {
     box-sizing: border-box;
}
 .slicknav_menu .slicknav_menutxt {
     color: #fff;
     font-weight: bold;
     text-shadow: 0 1px 3px #000;
}
 .slicknav_menu .slicknav_icon-bar {
     background-color: #fff;
}
 .slicknav_btn {
     margin: 5px 5px 6px;
     text-decoration: none;
     text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
     -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
     border-radius: 4px;
     background-color: #222;
}
 .slicknav_nav {
     color: #fff;
     margin: 0;
     padding: 0;
     font-size: 0.875em;
     list-style: none;
     overflow: hidden;
     background-color: rgba(0, 0, 0, 0.7);
     border-radius: 5px;
}
 .slicknav_nav ul {
     list-style: none;
     overflow: hidden;
     padding: 0;
     margin: 0 0 0 20px;
}
 .slicknav_nav .slicknav_row {
     padding: 5px 10px;
     margin: 2px 5px;
}
 .slicknav_nav .slicknav_row:hover {
     -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
     border-radius: 6px;
     background: #ccc;
     color: #fff;
}
 .slicknav_nav a {
     padding: 5px 10px;
     margin: 2px 5px;
     text-decoration: none;
     color: #fff;
}
 .slicknav_nav a:hover {
     -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
     border-radius: 6px;
     background: #ccc;
     color: #222;
}
 .slicknav_nav .slicknav_txtnode {
     margin-left: 15px;
}
 .slicknav_nav .slicknav_item a {
     padding: 0;
     margin: 0;
}
 .slicknav_nav .slicknav_parent-link a {
     padding: 0;
     margin: 0;
}
 .slicknav_brand {
     color: #fff;
     font-size: 18px;
     line-height: 30px;
     padding: 7px 12px;
     height: 44px;
}
/* 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;
}
 @charset 'UTF-8';

/* Arrows */
 .slick-prev, .slick-next {
     font-size: 0;
     line-height: 0;
     position: absolute;
     top: 50%;
     display: block;
     width: 20px;
     height: 20px;
     padding: 0;
     -webkit-transform: translate(0, -50%);
     -ms-transform: translate(0, -50%);
     transform: translate(0, -50%);
     cursor: pointer;
     color: transparent;
     border: none;
     outline: none;
     background: transparent;
}
 .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
     color: transparent;
     outline: none;
     background: transparent;
}
 .slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
     opacity: 1;
}
 .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
     opacity: .25;
}
 .slick-prev:before, .slick-next:before {
     font-family: 'slick';
     font-size: 20px;
     line-height: 1;
     opacity: .75;
     color: white;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
}
 .slick-prev {
     left: -25px;
}
 [dir='rtl'] .slick-prev {
     right: -25px;
     left: auto;
}
 .slick-prev:before {
     content: '←';
}
 [dir='rtl'] .slick-prev:before {
     content: '→';
}
 .slick-next {
     right: -25px;
}
 [dir='rtl'] .slick-next {
     right: auto;
     left: -25px;
}
 .slick-next:before {
     content: '→';
}
 [dir='rtl'] .slick-next:before {
     content: '←';
}
/* Dots */
 .slick-dotted.slick-slider {
     margin-bottom: 30px;
}
 .slick-dots {
     position: absolute;
     bottom: -25px;
     display: block;
     width: 100%;
     padding: 0;
     margin: 0;
     list-style: none;
     text-align: center;
}
 .slick-dots li {
     position: relative;
     display: inline-block;
     width: 20px;
     height: 20px;
     margin: 0 5px;
     padding: 0;
     cursor: pointer;
}
 .slick-dots li button {
     font-size: 0;
     line-height: 0;
     display: block;
     width: 20px;
     height: 20px;
     padding: 5px;
     cursor: pointer;
     color: transparent;
     border: 0;
     outline: none;
     background: transparent;
}
 .slick-dots li button:hover, .slick-dots li button:focus {
     outline: none;
}
 .slick-dots li button:hover:before, .slick-dots li button:focus:before {
     opacity: 1;
}
 .slick-dots li button:before {
     font-family: 'slick';
     font-size: 6px;
     line-height: 20px;
     position: absolute;
     top: 0;
     left: 0;
     width: 20px;
     height: 20px;
     content: '•';
     text-align: center;
     opacity: .25;
     color: black;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
}
 .slick-dots li.slick-active button:before {
     opacity: .75;
     color: black;
}
/** * Swiper 5.1.0 * Most modern mobile touch slider and framework with hardware accelerated transitions * http://swiperjs.com * * Copyright 2014-2019 Vladimir Kharlampidi * * Released under the MIT License * * Released on: October 16, 2019 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root{
    --swiper-theme-color:#007aff
}
.swiper-container{
    margin-left:auto;
    margin-right:auto;
    position:relative;
    overflow:hidden;
    list-style:none;
    padding:0;
    z-index:1
}
.swiper-container-vertical>.swiper-wrapper{
    flex-direction:column
}
.swiper-wrapper{
    position:relative;
    width:100%;
    height:100%;
    z-index:1;
    display:flex;
    transition-property:transform;
    box-sizing:content-box
}
.swiper-container-android .swiper-slide,.swiper-wrapper{
    transform:translate3d(0px,0,0)
}
.swiper-container-multirow>.swiper-wrapper{
    flex-wrap:wrap
}
.swiper-container-multirow-column>.swiper-wrapper{
    flex-wrap:wrap;
    flex-direction:column
}
.swiper-container-free-mode>.swiper-wrapper{
    transition-timing-function:ease-out;
    margin:0 auto
}
.swiper-slide{
    flex-shrink:0;
    width:100%;
    height:100%;
    position:relative;
    transition-property:transform
}
.swiper-slide-invisible-blank{
    visibility:hidden
}
.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{
    height:auto
}
.swiper-container-autoheight .swiper-wrapper{
    align-items:flex-start;
    transition-property:transform,height
}
.swiper-container-3d{
    perspective:1200px
}
.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{
    transform-style:preserve-3d
}
.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:10
}
.swiper-container-3d .swiper-slide-shadow-left{
    background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-container-3d .swiper-slide-shadow-right{
    background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-container-3d .swiper-slide-shadow-top{
    background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-container-3d .swiper-slide-shadow-bottom{
    background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-container-css-mode>.swiper-wrapper{
    overflow:auto;
    scrollbar-width:none;
    -ms-overflow-style:none
}
.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{
    display:none
}
.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{
    scroll-snap-align:start start
}
.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{
    scroll-snap-type:x mandatory
}
.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{
    scroll-snap-type:y mandatory
}
:root{
    --swiper-navigation-size:44px
}
.swiper-button-next,.swiper-button-prev{
    position:absolute;
    top:50%;
    width:calc(var(--swiper-navigation-size)/ 44 * 27);
    height:var(--swiper-navigation-size);
    margin-top:calc(-1 * var(--swiper-navigation-size)/ 2);
    z-index:10;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--swiper-navigation-color,var(--swiper-theme-color))
}
.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{
    opacity:.35;
    cursor:auto;
    pointer-events:none
}
.swiper-button-next:after,.swiper-button-prev:after{
    font-family:swiper-icons;
    font-size:var(--swiper-navigation-size);
    text-transform:none!important
}
.swiper-button-prev,.swiper-container-rtl .swiper-button-next{
    left:10px;
    right:auto
}
.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{
    content:'prev'
}
.swiper-button-next,.swiper-container-rtl .swiper-button-prev{
    right:10px;
    left:auto
}
.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{
    content:'next'
}
.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{
    --swiper-navigation-color:#ffffff
}
.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{
    --swiper-navigation-color:#000000
}
.swiper-button-lock{
    display:none
}
.swiper-pagination{
    position:absolute;
    text-align:center;
    transition:.3s opacity;
    transform:translate3d(0,0,0);
    z-index:10
}
.swiper-pagination.swiper-pagination-hidden{
    opacity:0
}
.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{
    bottom:10px;
    left:0;
    width:100%
}
.swiper-pagination-bullets-dynamic{
    overflow:hidden;
    font-size:0
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{
    transform:scale(.33);
    position:relative
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{
    transform:scale(1)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{
    transform:scale(1)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{
    transform:scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{
    transform:scale(.33)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{
    transform:scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{
    transform:scale(.33)
}
.swiper-pagination-bullet{
    width:8px;
    height:8px;
    display:inline-block;
    border-radius:100%;
    background:#000;
    opacity:.2
}
button.swiper-pagination-bullet{
    border:none;
    margin:0;
    padding:0;
    box-shadow:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none
}
.swiper-pagination-clickable .swiper-pagination-bullet{
    cursor:pointer
}
.swiper-pagination-bullet-active{
    opacity:1;
    background:var(--swiper-pagination-color,var(--swiper-theme-color))
}
.swiper-container-vertical>.swiper-pagination-bullets{
    right:10px;
    top:50%;
    transform:translate3d(0px,-50%,0)
}
.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{
    margin:6px 0;
    display:block
}
.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{
    top:50%;
    transform:translateY(-50%);
    width:8px
}
.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{
    display:inline-block;
    transition:.2s transform,.2s top
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
    margin:0 4px
}
.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{
    left:50%;
    transform:translateX(-50%);
    white-space:nowrap
}
.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{
    transition:.2s transform,.2s left
}
.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{
    transition:.2s transform,.2s right
}
.swiper-pagination-progressbar{
    background:rgba(0,0,0,.25);
    position:absolute
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background:var(--swiper-pagination-color,var(--swiper-theme-color));
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    transform:scale(0);
    transform-origin:left top
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    transform-origin:right top
}
.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{
    width:100%;
    height:4px;
    left:0;
    top:0
}
.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{
    width:4px;
    height:100%;
    left:0;
    top:0
}
.swiper-pagination-white{
    --swiper-pagination-color:#ffffff
}
.swiper-pagination-black{
    --swiper-pagination-color:#000000
}
.swiper-pagination-lock{
    display:none
}
.swiper-scrollbar{
    border-radius:10px;
    position:relative;
    -ms-touch-action:none;
    background:rgba(0,0,0,.1)
}
.swiper-container-horizontal>.swiper-scrollbar{
    position:absolute;
    left:1%;
    bottom:3px;
    z-index:50;
    height:5px;
    width:98%
}
.swiper-container-vertical>.swiper-scrollbar{
    position:absolute;
    right:3px;
    top:1%;
    z-index:50;
    width:5px;
    height:98%
}
.swiper-scrollbar-drag{
    height:100%;
    width:100%;
    position:relative;
    background:rgba(0,0,0,.5);
    border-radius:10px;
    left:0;
    top:0
}
.swiper-scrollbar-cursor-drag{
    cursor:move
}
.swiper-scrollbar-lock{
    display:none
}
.swiper-zoom-container{
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center
}
.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{
    max-width:100%;
    max-height:100%;
    object-fit:contain
}
.swiper-slide-zoomed{
    cursor:move
}
.swiper-lazy-preloader{
    width:42px;
    height:42px;
    position:absolute;
    left:50%;
    top:50%;
    margin-left:-21px;
    margin-top:-21px;
    z-index:10;
    transform-origin:50%;
    animation:swiper-preloader-spin 1s infinite linear;
    box-sizing:border-box;
    border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
    border-radius:50%;
    border-top-color:transparent
}
.swiper-lazy-preloader-white{
    --swiper-preloader-color:#fff
}
.swiper-lazy-preloader-black{
    --swiper-preloader-color:#000
}
@keyframes swiper-preloader-spin{
    100%{
        transform:rotate(360deg)
    }
}
.swiper-container .swiper-notification{
    position:absolute;
    left:0;
    top:0;
    pointer-events:none;
    opacity:0;
    z-index:-1000
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide{
    transition-timing-function:ease-out
}
.swiper-container-fade .swiper-slide{
    pointer-events:none;
    transition-property:opacity
}
.swiper-container-fade .swiper-slide .swiper-slide{
    pointer-events:none
}
.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{
    pointer-events:auto
}
.swiper-container-cube{
    overflow:visible
}
.swiper-container-cube .swiper-slide{
    pointer-events:none;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
    z-index:1;
    visibility:hidden;
    transform-origin:0 0;
    width:100%;
    height:100%
}
.swiper-container-cube .swiper-slide .swiper-slide{
    pointer-events:none
}
.swiper-container-cube.swiper-container-rtl .swiper-slide{
    transform-origin:100% 0
}
.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{
    pointer-events:auto
}
.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{
    pointer-events:auto;
    visibility:visible
}
.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{
    z-index:0;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden
}
.swiper-container-cube .swiper-cube-shadow{
    position:absolute;
    left:0;
    bottom:0px;
    width:100%;
    height:100%;
    background:#000;
    opacity:.6;
    -webkit-filter:blur(50px);
    filter:blur(50px);
    z-index:0
}
.swiper-container-flip{
    overflow:visible
}
.swiper-container-flip .swiper-slide{
    pointer-events:none;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
    z-index:1
}
.swiper-container-flip .swiper-slide .swiper-slide{
    pointer-events:none
}
.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{
    pointer-events:auto
}
.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{
    z-index:0;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden
}
/* Magnific Popup CSS */
 .mfp-bg {
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1042;
     overflow: hidden;
     position: fixed;
     background: #0b0b0b;
     opacity: 0.8;
}
 .mfp-wrap {
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1043;
     position: fixed;
     outline: none !important;
     -webkit-backface-visibility: hidden;
}
 .mfp-container {
     text-align: center;
     position: absolute;
     width: 100%;
     height: 100%;
     left: 0;
     top: 0;
     padding: 0 8px;
     box-sizing: border-box;
}
 .mfp-container:before {
     content: '';
     display: inline-block;
     height: 100%;
     vertical-align: middle;
}
 .mfp-align-top .mfp-container:before {
     display: none;
}
 .mfp-content {
     position: relative;
     display: inline-block;
     vertical-align: middle;
     margin: 0 auto;
     text-align: left;
     z-index: 1045;
}
 .mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
     width: 100%;
     cursor: auto;
}
 .mfp-ajax-cur {
     cursor: progress;
}
 .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
     cursor: -moz-zoom-out;
     cursor: -webkit-zoom-out;
     cursor: zoom-out;
}
 .mfp-zoom {
     cursor: pointer;
     cursor: -webkit-zoom-in;
     cursor: -moz-zoom-in;
     cursor: zoom-in;
}
 .mfp-auto-cursor .mfp-content {
     cursor: auto;
}
 .mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
     -webkit-user-select: none;
     -moz-user-select: none;
     user-select: none;
}
 .mfp-loading.mfp-figure {
     display: none;
}
 .mfp-hide {
     display: none !important;
}
 .mfp-preloader {
     color: #CCC;
     position: absolute;
     top: 50%;
     width: auto;
     text-align: center;
     margin-top: -0.8em;
     left: 8px;
     right: 8px;
     z-index: 1044;
}
 .mfp-preloader a {
     color: #CCC;
}
 .mfp-preloader a:hover {
     color: #FFF;
}
 .mfp-s-ready .mfp-preloader {
     display: none;
}
 .mfp-s-error .mfp-content {
     display: none;
}
 button.mfp-close, button.mfp-arrow {
     overflow: visible;
     cursor: pointer;
     background: transparent;
     border: 0;
     -webkit-appearance: none;
     display: block;
     outline: none;
     padding: 0;
     z-index: 1046;
     box-shadow: none;
     touch-action: manipulation;
}
 button::-moz-focus-inner {
     padding: 0;
     border: 0;
}
 .mfp-close {
     width: 44px;
     height: 44px;
     line-height: 44px;
     position: absolute;
     right: 0;
     top: 0;
     text-decoration: none;
     text-align: center;
     opacity: 0.65;
     padding: 0 0 18px 10px;
     color: #FFF;
     font-style: normal;
     font-size: 28px;
     font-family: Arial, Baskerville, monospace;
}
 .mfp-close:hover, .mfp-close:focus {
     opacity: 1;
}
 .mfp-close:active {
     top: 1px;
}
 .mfp-close-btn-in .mfp-close {
     color: #333;
}
 .mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
     color: #FFF;
     right: -6px;
     text-align: right;
     padding-right: 6px;
     width: 100%;
}
 .mfp-counter {
     position: absolute;
     top: 0;
     right: 0;
     color: #CCC;
     font-size: 12px;
     line-height: 18px;
     white-space: nowrap;
}
 .mfp-arrow {
     position: absolute;
     opacity: 0.65;
     margin: 0;
     top: 50%;
     margin-top: -55px;
     padding: 0;
     width: 90px;
     height: 110px;
     -webkit-tap-highlight-color: transparent;
}
 .mfp-arrow:active {
     margin-top: -54px;
}
 .mfp-arrow:hover, .mfp-arrow:focus {
     opacity: 1;
}
 .mfp-arrow:before, .mfp-arrow:after {
     content: '';
     display: block;
     width: 0;
     height: 0;
     position: absolute;
     left: 0;
     top: 0;
     margin-top: 35px;
     margin-left: 35px;
     border: medium inset transparent;
}
 .mfp-arrow:after {
     border-top-width: 13px;
     border-bottom-width: 13px;
     top: 8px;
}
 .mfp-arrow:before {
     border-top-width: 21px;
     border-bottom-width: 21px;
     opacity: 0.7;
}
 .mfp-arrow-left {
     left: 0;
}
 .mfp-arrow-left:after {
     border-right: 17px solid #FFF;
     margin-left: 31px;
}
 .mfp-arrow-left:before {
     margin-left: 25px;
     border-right: 27px solid #3F3F3F;
}
 .mfp-arrow-right {
     right: 0;
}
 .mfp-arrow-right:after {
     border-left: 17px solid #FFF;
     margin-left: 39px;
}
 .mfp-arrow-right:before {
     border-left: 27px solid #3F3F3F;
}
 .mfp-iframe-holder {
     padding-top: 40px;
     padding-bottom: 40px;
}
 .mfp-iframe-holder .mfp-content {
     line-height: 0;
     width: 100%;
     max-width: 900px;
}
 .mfp-iframe-holder .mfp-close {
     top: -40px;
}
 .mfp-iframe-scaler {
     width: 100%;
     height: 0;
     overflow: hidden;
     padding-top: 56.25%;
}
 .mfp-iframe-scaler iframe {
     position: absolute;
     display: block;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
     background: #000;
}
/* Main image in popup */
 img.mfp-img {
     width: auto;
     max-width: 100%;
     height: auto;
     display: block;
     line-height: 0;
     box-sizing: border-box;
     padding: 40px 0 40px;
     margin: 0 auto;
}
/* The shadow behind the image */
 .mfp-figure {
     line-height: 0;
}
 .mfp-figure:after {
     content: '';
     position: absolute;
     left: 0;
     top: 40px;
     bottom: 40px;
     display: block;
     right: 0;
     width: auto;
     height: auto;
     z-index: -1;
     box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
     background: #444;
}
 .mfp-figure small {
     color: #BDBDBD;
     display: block;
     font-size: 12px;
     line-height: 14px;
}
 .mfp-figure figure {
     margin: 0;
}
 .mfp-bottom-bar {
     margin-top: -36px;
     position: absolute;
     top: 100%;
     left: 0;
     width: 100%;
     cursor: auto;
}
 .mfp-title {
     text-align: left;
     line-height: 18px;
     color: #F3F3F3;
     word-wrap: break-word;
     padding-right: 36px;
}
 .mfp-image-holder .mfp-content {
     max-width: 100%;
}
 .mfp-gallery .mfp-image-holder .mfp-figure {
     cursor: pointer;
}
 @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /** * Remove all paddings around the image on small screen */
     .mfp-img-mobile .mfp-image-holder {
         padding-left: 0;
         padding-right: 0;
    }
     .mfp-img-mobile img.mfp-img {
         padding: 0;
    }
     .mfp-img-mobile .mfp-figure:after {
         top: 0;
         bottom: 0;
    }
     .mfp-img-mobile .mfp-figure small {
         display: inline;
         margin-left: 5px;
    }
     .mfp-img-mobile .mfp-bottom-bar {
         background: rgba(0, 0, 0, 0.6);
         bottom: 0;
         margin: 0;
         top: auto;
         padding: 3px 5px;
         position: fixed;
         box-sizing: border-box;
    }
     .mfp-img-mobile .mfp-bottom-bar:empty {
         padding: 0;
    }
     .mfp-img-mobile .mfp-counter {
         right: 5px;
         top: 3px;
    }
     .mfp-img-mobile .mfp-close {
         top: 0;
         right: 0;
         width: 35px;
         height: 35px;
         line-height: 35px;
         background: rgba(0, 0, 0, 0.6);
         position: fixed;
         text-align: center;
         padding: 0;
    }
}
 @media all and (max-width: 900px) {
     .mfp-arrow {
         -webkit-transform: scale(0.75);
         transform: scale(0.75);
    }
     .mfp-arrow-left {
         -webkit-transform-origin: 0;
         transform-origin: 0;
    }
     .mfp-arrow-right {
         -webkit-transform-origin: 100%;
         transform-origin: 100%;
    }
     .mfp-container {
         padding-left: 6px;
         padding-right: 6px;
    }
}
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
 .fancybox-wrap, .fancybox-skin, .fancybox-outer, .fancybox-inner, .fancybox-image, .fancybox-wrap iframe, .fancybox-wrap object, .fancybox-nav, .fancybox-nav span, .fancybox-tmp {
     padding: 0;
     margin: 0;
     border: 0;
     outline: none;
     vertical-align: top;
}
 .fancybox-wrap {
     position: absolute;
     top: 0;
     left: 0;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
     z-index: 8020;
}
 .fancybox-skin {
     position: relative;
     background: #f9f9f9;
     color: #444;
     text-shadow: none;
     -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
     border-radius: 4px;
}
 .fancybox-opened {
     z-index: 8030;
}
 .fancybox-opened .fancybox-skin {
     -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
     -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
 .fancybox-outer, .fancybox-inner {
     position: relative;
}
 .fancybox-inner {
     overflow: hidden;
}
 .fancybox-type-iframe .fancybox-inner {
     -webkit-overflow-scrolling: touch;
}
 .fancybox-error {
     color: #444;
     font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
     margin: 0;
     padding: 15px;
     white-space: nowrap;
}
 .fancybox-image, .fancybox-iframe {
     display: block;
     width: 100%;
     height: 100%;
}
 .fancybox-image {
     max-width: 100%;
     max-height: 100%;
}
 #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
     background-image: url(../img/fancybox/fancybox_sprite.png);
}
 #fancybox-loading {
     position: fixed;
     top: 50%;
     left: 50%;
     margin-top: -22px;
     margin-left: -22px;
     background-position: 0 -108px;
     opacity: 0.8;
     cursor: pointer;
     z-index: 8060;
}
 #fancybox-loading div {
     width: 44px;
     height: 44px;
     background: url(../img/fancybox/fancybox_loading.gif) center center no-repeat;
}
 .fancybox-close {
     position: absolute;
     top: -18px;
     right: -18px;
     width: 36px;
     height: 36px;
     cursor: pointer;
     z-index: 8040;
}
 .fancybox-nav {
     position: absolute;
     top: 0;
     width: 40%;
     height: 100%;
     cursor: pointer;
     text-decoration: none;
     background: transparent url(../img/fancybox/blank.gif);
    /* helps IE */
     -webkit-tap-highlight-color: rgba(0,0,0,0);
     z-index: 8040;
}
 .fancybox-prev {
     left: 0;
}
 .fancybox-next {
     right: 0;
}
 .fancybox-nav span {
     position: absolute;
     top: 50%;
     width: 36px;
     height: 34px;
     margin-top: -18px;
     cursor: pointer;
     z-index: 8040;
     visibility: hidden;
}
 .fancybox-prev span {
     left: 10px;
     background-position: 0 -36px;
}
 .fancybox-next span {
     right: 10px;
     background-position: 0 -72px;
}
 .fancybox-nav:hover span {
     visibility: visible;
}
 .fancybox-tmp {
     position: absolute;
     top: -99999px;
     left: -99999px;
     max-width: 99999px;
     max-height: 99999px;
     overflow: visible !important;
}
/* Overlay helper */
 .fancybox-lock {
     overflow: visible !important;
     width: auto;
}
 .fancybox-lock body {
     overflow: hidden !important;
}
 .fancybox-lock-test {
     overflow-y: hidden !important;
}
 .fancybox-overlay {
     position: absolute;
     top: 0;
     left: 0;
     overflow: hidden;
     display: none;
     z-index: 8010;
     background: url(../img/fancybox/fancybox_overlay.png);
}
 .fancybox-overlay-fixed {
     position: fixed;
     bottom: 0;
     right: 0;
}
 .fancybox-lock .fancybox-overlay {
     overflow: auto;
     overflow-y: scroll;
}
/* Title helper */
 .fancybox-title {
     visibility: hidden;
     font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
     position: relative;
     text-shadow: none;
     z-index: 8050;
}
 .fancybox-opened .fancybox-title {
     visibility: visible;
}
 .fancybox-title-float-wrap {
     position: absolute;
     bottom: 0;
     right: 50%;
     margin-bottom: -35px;
     z-index: 8050;
     text-align: center;
}
 .fancybox-title-float-wrap .child {
     display: inline-block;
     margin-right: -100%;
     padding: 2px 20px;
     background: transparent;
    /* Fallback for web browsers that doesn't support RGBa */
     background: rgba(0, 0, 0, 0.8);
     -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
     border-radius: 15px;
     text-shadow: 0 1px 2px #222;
     color: #FFF;
     font-weight: bold;
     line-height: 24px;
     white-space: nowrap;
}
 .fancybox-title-outside-wrap {
     position: relative;
     margin-top: 10px;
     color: #fff;
}
 .fancybox-title-inside-wrap {
     padding-top: 10px;
}
 .fancybox-title-over-wrap {
     position: absolute;
     bottom: 0;
     left: 0;
     color: #fff;
     padding: 10px;
     background: #000;
     background: rgba(0, 0, 0, .8);
}
/*Retina graphics!*/
 @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5){
     #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
         background-image: url(../img/fancybox/fancybox_sprite@2x.png);
         background-size: 44px 152px;
        /*The size of the normal image, half the size of the hi-res image*/
    }
     #fancybox-loading div {
         background-image: url(../img/fancybox/fancybox_loading@2x.gif);
         background-size: 24px 24px;
        /*The size of the normal image, half the size of the hi-res image*/
    }
}
/** * Owl Carousel v2.2.1 * Copyright 2013-2017 David Deutsch * Licensed under () */
 .owl-carousel,.owl-carousel .owl-item{
    -webkit-tap-highlight-color:transparent;
    position:relative
}
.owl-carousel{
    display:none;
    width:100%;
    z-index:1
}
.owl-carousel .owl-stage{
    position:relative;
    -ms-touch-action:pan-Y;
    -moz-backface-visibility:hidden
}
.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(0,0,0)
}
.owl-carousel .owl-item,.owl-carousel .owl-wrapper{
    -webkit-backface-visibility:hidden;
    -moz-backface-visibility:hidden;
    -ms-backface-visibility:hidden;
    -webkit-transform:translate3d(0,0,0);
    -moz-transform:translate3d(0,0,0);
    -ms-transform:translate3d(0,0,0)
}
.owl-carousel .owl-item{
    min-height:1px;
    float:left;
    -webkit-backface-visibility:hidden;
    -webkit-touch-callout:none
}
.owl-carousel .owl-item img{
    display:block;
    width:100%
}
.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{
    display:none
}
.no-js .owl-carousel,.owl-carousel.owl-loaded{
    display:block
}
.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-loading{
    opacity:0;
    display:block
}
.owl-carousel.owl-hidden{
    opacity:0
}
.owl-carousel.owl-refresh .owl-item{
    visibility:hidden
}
.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:grab
}
.owl-carousel.owl-rtl{
    direction:rtl
}
.owl-carousel.owl-rtl .owl-item{
    float:right
}
.owl-carousel .animated{
    animation-duration:1s;
    animation-fill-mode:both
}
.owl-carousel .owl-animated-in{
    z-index:0
}
.owl-carousel .owl-animated-out{
    z-index:1
}
.owl-carousel .fadeOut{
    animation-name:fadeOut
}
@keyframes fadeOut{
    0%{
        opacity:1
    }
    100%{
        opacity:0
    }
}
.owl-height{
    transition:height .5s ease-in-out
}
.owl-carousel .owl-item .owl-lazy{
    opacity:0;
    transition:opacity .4s ease
}
.owl-carousel .owl-item img.owl-lazy{
    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;
    transition:transform .1s ease
}
.owl-carousel .owl-video-play-icon:hover{
    -ms-transform:scale(1.3,1.3);
    transform: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;
    background-size:contain;
    transition:opacity .4s ease
}
.owl-carousel .owl-video-frame{
    position:relative;
    z-index:1;
    height:100%;
    width:100%
}
 ::-moz-selection {
     background: #b3d4fc;
     text-shadow: none;
}
 ::selection {
     background: #b3d4fc;
     text-shadow: none;
}
/* * A better looking default horizontal rule */
 hr {
     display: block;
     height: 1px;
     border: 0;
     border-top: 1px solid #ccc;
     margin: 1em 0;
     padding: 0;
}
/* * Remove the gap between audio, canvas, iframes, * images, videos and the bottom of their containers: * https://github.com/h5bp/html5-boilerplate/issues/440 */
 audio, canvas, iframe, img, svg, video {
     vertical-align: middle;
}
/* * Remove default fieldset styles. */
 fieldset {
     border: 0;
     margin: 0;
     padding: 0;
}
/* * Allow only vertical resizing of textareas. */
 textarea {
     resize: vertical;
}
/* ========================================================================== Browser Upgrade Prompt ========================================================================== */
 .browserupgrade {
     margin: 0.2em 0;
     background: #ccc;
     color: #000;
     padding: 0.2em 0;
}
 .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
     clip: auto;
     height: auto;
     margin: 0;
     overflow: visible;
     position: static;
     width: auto;
     white-space: inherit;
}
/* * Clearfix: contain floats * * For modern browsers * 1. The space content is one way to avoid an Opera bug when the * `contenteditable` attribute is included anywhere else in the document. * Otherwise it causes space to appear at the top and bottom of elements * that receive the `clearfix` class. * 2. The use of `table` rather than `block` is only necessary if using * `:before` to contain the top-margins of child elements. */
 .clearfix:before, .clearfix:after {
     content: " ";
    /* 1 */
     display: table;
    /* 2 */
}
 .clearfix:after {
     clear: both;
}
/* ========================================================================== EXAMPLE Media Queries for Responsive Design. These examples override the primary ('mobile first') styles. Modify as content requires. ========================================================================== */
 @media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}
 @media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}
/* ========================================================================== Print styles. Inlined to avoid the additional HTTP request: https://www.phpied.com/delay-loading-your-print-css/ ========================================================================== */
 @media print {
     *, *:before, *:after {
         background: transparent !important;
         color: #000 !important;
        /* Black prints faster */
         -webkit-box-shadow: none !important;
         box-shadow: none !important;
         text-shadow: none !important;
    }
     a, a:visited {
         text-decoration: underline;
    }
     a[href]:after {
         content: " (" attr(href) ")";
    }
     abbr[title]:after {
         content: " (" attr(title) ")";
    }
    /* * Don't show links that are fragment identifiers, * or use the `javascript:` pseudo protocol */
     a[href^="#"]:after, a[href^="javascript:"]:after {
         content: "";
    }
     pre {
         white-space: pre-wrap !important;
    }
     pre, blockquote {
         border: 1px solid #999;
         page-break-inside: avoid;
    }
    /* * Printing Tables: * http://css-discuss.incutio.com/wiki/Printing_Tables */
     thead {
         display: table-header-group;
    }
     tr, img {
         page-break-inside: avoid;
    }
     p, h2, h3 {
         orphans: 3;
         widows: 3;
    }
     h2, h3 {
         page-break-after: avoid;
    }
}
/*--------------------------- Fonts ----------------------------*/
 body {
     font-family: "Poppins", sans-serif;
     font-weight: normal;
     font-style: normal;
     overflow-x:hidden;
}
 .img {
     max-width: 100%;
     transition: all 0.3s ease-out 0s;
}
 .f-left {
     float: left 
}
 .f-right {
     float: right 
}
 .fix {
     overflow: hidden 
}
 a, .mp-button {
     -webkit-transition: all 0.3s ease-out 0s;
     -moz-transition: all 0.3s ease-out 0s;
     -ms-transition: all 0.3s ease-out 0s;
     -o-transition: all 0.3s ease-out 0s;
     transition: all 0.3s ease-out 0s;
}
 a:focus, .button:focus {
     text-decoration: none;
     outline: none;
     list-style:none 
}
 a:focus, a:hover, .portfolio-cat a:hover, .footer -menu li a:hover {
     color:#ff3939;
     text-decoration: none;
}
 a, button {
     color: ;
     outline: medium none;
     text-decoration: none;
}
 button{
    cursor: pointer;
}
 h1, h2, h3, h4, h5, h6 {
     font-family: "montserrat", sans-serif;
     color: #313131;
     margin-top: 0px;
     font-style: normal;
     text-transform: normal;
}
 h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
     color: inherit;
}
 p{
     font-family: "Poppins", sans-serif;
     font-weight:300;
}
 * {
     box-sizing:border-box;
}
 .slicknav_menu{
     display:none;
}
 .slicknav_nav a {
     font-weight: 600;
}
 img {
     display: inline-block;
     max-width: 100%;
     transition: all 0.3s ease-out 0s;
     vertical-align: middle;
     border-style: none;
}
 .form-control:focus {
     box-shadow:none;
}
 .btn.focus, .btn:focus {
     box-shadow:none;
}
 .menu-area .mainmenu .scroll-click{
     transition:0.5sec;
}
 .menu-pack{
     padding:0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 999;
     top: 0px 
}
 .menu-area .logo{
    margin:0px;
}
 .menu-btm-bar{
     border-bottom:1px solid #ddd;
}
 .menu-area .mainmenu ul li{
     color:#fff;
     margin-top:8px;
     padding:0px;
}
 .menu-area .mainmenu ul li a:hover{
     color:black;
     text-decoration:vasiable;
}
 .hero-main-img-inner img {
     height: auto;
     max-width: 100%;
     vertical-align: top;
}
 .hero-banner {
     position: relative;
     display: table;
     width: 100%;
     min-height: 400px;
     background-repeat: no-repeat;
     background-position: center;
     background-size: cover;
}
 .hero-banner-main {
     background-color: #283593;
     background-image: url(../img/banner.jpg);
     background-attachment: fixed;
     padding: 100px 0px;
     overflow-x: hidden;
     overflow-y: auto;
}
 .hero-banner-main:before {
     content: "";
     background: linear-gradient(to right, #643094f0, #d40044e8);
     width: 100%;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0;
}
 .hero-banner-inside {
     position: relative;
     display: table-cell;
     vertical-align: middle;
     color: #fff;
     z-index: 1;
}
 .hero-main-img {
     position: relative;
}
 .hero-main-img-inner {
     margin-top: 90px;
}
 .hero-main-info {
     vertical-align: bottom;
     margin-top:130px;
}
 .banner-subtitle {
     font-family: "Poppins", sans-serif;
     font-size: 32px;
     font-weight: 400;
     margin-bottom: 10px;
     letter-spacing: 5.5px;
}
 .banner-title {
     font-family: "Poppins", sans-serif;
     font-size: 60px;
     font-weight: 700;
     margin-bottom: 35px;
     line-height:1.2;
}
 .mp-button {
     display: inline;
     margin: 0 6px;
     text-align: center;
}
 .mp-button a {
     display: inline-block;
     color: #fff;
     text-decoration: none;
     width: auto;
     font-size: 14px;
     font-weight: 600;
     text-transform: uppercase;
     padding: 12px 20px;
     border-radius: 4px;
     -webkit-box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.25);
     -moz-box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.25);
     box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.25);
     -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
     -o-transition: all 0.2s ease-in-out;
     transition: all 0.2s ease-in-out;
}
 .mp-button a:hover {
     top:-5px;
     -webkit-box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.5);
     -moz-box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.5);
     box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.5);
}
 .mp-button.btn-color-1 a {
     background-color: #3aaee7;
}
 .hero-banner-main .button.btn-color-1 a {
     background: #202020;
}
 .mp-button a {
     display: inline-block;
     color: #fff;
     text-decoration: none;
     width: 123px;
     font-size: 14px;
     font-weight: 600;
     text-transform: uppercase;
     padding: 12px 20px;
     border-radius: 4px;
     -webkit-box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.25);
     -moz-box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.25);
     box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.25);
     -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
     -o-transition: all 0.2s ease-in-out;
     transition: all 0.2s ease-in-out;
}
 .mp-button.btn-color-2 a {
     background-color: #e41239;
}
 .mp-section {
     position: relative;
     padding: 100px 0;
}
 .section-whatsnew {
     position: relative;
     color: #fff;
     background:linear-gradient(180deg, #d60b0b 0%, #4c74b7 100%);
     overflow: hidden;
     padding-bottom: 0;
     padding: 80px 0 0;
}
 .section-whatsnew:after {
     left: 12%;
     border-bottom: 43vw solid #80d4f9;
     border-left: 100vw solid transparent;
}
 .section-whatsnew:after {
     position: absolute;
     content: "";
     bottom: 0;
     left: 0;
     width: 0;
     height: 0;
     border-bottom: 40vw solid #80d4f9;
     border-left: 100vw solid transparent;
     opacity: 0.12;
     z-index: 0;
}
 .section-whatsnew > .container {
     position: relative;
     z-index: 1;
}
 .whatsnew-title-wrapper {
     position: relative;
     padding: 0 15px;
}
 .whatsnew-list, .whatsnew-title-wrapper {
     padding: 0 30px;
}
 .section-whatsnew .section-title {
     font-size: 52px;
     text-align: left;
     letter-spacing: 1px 
}
 .whatsnew-title .li h2{
     position: relative;
     z-index: 1;
     padding: 0;
     white-space: nowrap;
}
 .section-title.section-title-light {
     color: #fff;
}
 .whatsnew-title .divider {
     margin-bottom: 60px;
}
 .whatsnew-title .divider {
     margin-bottom: 50px;
}
 .whatsnew-title .mp-divider {
     display: none;
}
 .mp-divider.divider-dark-color span {
     opacity: 1;
     background: url(../img/divider-style8-white.png) no-repeat;
}
 .whatsnew-list {
     padding: 30px 15px;
     margin: 0 0 60px;
}
 .whatsnew-list li {
     position: relative;
     padding: 0 30px 0 35px;
     margin-bottom: 30px;
}
 .whatsnew-list li {
     padding: 0 30px 0 40px;
     list-style: none;
}
 .whatsnew-list-icon {
     position: absolute;
     top: -6px;
     left: 0;
     font-size: 25px;
     color: #2afb2a;
}
 .whatsnew-list-icon img {
     width: 23px;
     height: auto;
}
 .whatsnew-list-desc {
     color: #e1e1e1;
}
 .whatsnew-list-desc p {
     font-size: 16px;
     line-height: 1.6;
     margin: 0 0 1.42857143em;
}
 .whatsnew-list h4 {
    color:#fff;
     margin-bottom: 1rem;
     font-weight: 500;
     line-height: 1.2;
     font-size: 1.5rem;
     font-family: "montserrat", sans-serif;
}
 .whatsnew-mockup-col {
     position: relative;
}
 .whatsnew-mockup {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 700px;
}
 .section-features{
     padding: 60px 0 80px;
     background: #f9f9f9;
}
 .section-features .single-service-features.box-border {
     background: #fff;
     transition: 0.4s;
     margin-top:40px;
     -webkit-transition: 0.5s;
     -ms-transition: 0.5s;
     box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
     border-radius: 5px;
}
 .section-features .single-service-features {
     background: #ddd;
     padding: 25px;
     margin: 0 0 30px;
}
 .single-service-features.box-border .service-icon {
     margin-bottom: 25px;
}
 .single-service-features.box-border .service-icon i {
     font-size: 35px;
     width: 80px;
     height: 80px;
     line-height: 80px;
     border-radius: 50%;
     background: transparent;
     color: #324cec;
     transition: 0.4s;
     -webkit-transition: 0.4s;
     -ms-transition: 0.4s;
}
 .single-service-features .services-content h3 {
     margin-bottom: 0;
     font-weight: 400;
     font-size: 17px;
     text-transform:capitalize;
     letter-spacing: 1px;
     font-weight:500;
}
 .single-service-features.box-border:hover .services-content h3 {
     color:#fff;
}
 .single-service-features.box-border:hover {
     background: #324cec;
}
 .single-service-features.box-border:hover .service-icon i {
     background: #fff;
     color: #324cec;
}
 .section-dash {
     padding-top: 100px;
     padding-bottom: 100px;
     position: relative;
     background-color: #fff;
}
 .section-dash h2{
     font-size:30px;
}
 .btn-custom {
     background-color: #324cec;
     border:1px solid #324cec;
     display: inline-block;
     color: #fff;
     text-decoration: none;
     width: 158px;
     font-size: 14px;
     font-weight: 600;
     text-transform: uppercase;
     padding: 12px 20px;
     border-radius: 4px;
     -webkit-box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.25);
     transition: all 0.2s ease-in-out;
}
 .btn-custom:hover{
     color:#324cec;
     background:#fff;
     border:1px solid #324cec;
}
 .section-dash .ml-40{
     margin-bottom:80px;
}
 .section-dash .home-page-run .counter-icon i {
     font-size: 35px;
}
 .section-dash .home-page-run.counter-up-three .counter-wrapper{
     border: 3px solid #ddd;
     padding: 40px;
}
 .section-dash .home-page-run.counter-up-three .counter-wrapper:hover{
     border: 3px solid #324cec;
}
 .section-demo{
     padding:100px 0px;
     background: #f9f9f9;
}
 .mp-box {
     margin-bottom: 30px;
}
 .section-title {
     font-size: 28px;
     font-weight: 800;
     color: #212121;
     text-transform: uppercase;
     text-align: center;
     margin-bottom: 12px;
     letter-spacing: 3px;
}
 .mp-divider {
     position: relative;
     width: 100%;
     height: 5px;
     margin: 0 0 30px;
}
 .section-features .divider {
     margin: 0 0 80px;
}
 .mp-divider:before {
     left: 0;
}
 .mp-divider:before, .divider:after {
     position: absolute;
     content: '';
     top: 2px;
     width: calc(50% - 50px);
     height: 1px;
     background-color: #e9e9e9;
}
 .mp-divider span {
     display: block;
     width: 86px;
     height: 5px;
     margin: auto;
     opacity: 0.25;
     background: url(../img/divider-style8-black.png) no-repeat;
}
 .mp-divider:after {
     right: 0;
}
 .mp-divider:before, .mp-divider:after {
     position: absolute;
     content: '';
     top: 2px;
     width: calc(50% - 50px);
     height: 1px;
     background-color: #e9e9e9;
}
 .icon-list-wrapper {
     text-align: inherit;
     padding-bottom: 20px;
}
 .icon-list-wrapper .icon-list-icon {
     width: 80px;
     margin: 0;
}
 .icon-list-wrapper .icon-list-icon {
     margin-bottom: 42px;
}
 .icon-list-wrapper .icon-list-icon, .icon-list-wrapper .icon-list-details {
     display: table-cell;
     vertical-align: top;
}
 .icon-list-wrapper .icon-list-icon span {
     display: block;
     margin: 0 auto;
     text-align:inherit;
     font-size:45px;
     position: relative;
     top: -14px;
}
 .icon-list-wrapper .icon-list-icon img {
     width: 50px;
}
 .icon-list-wrapper h4 {
     font-size: 1.3rem;
     font-weight: 500;
     text-transform: uppercase;
     margin: 0 0 8px;
     font-family: "Poppins", sans-serif;
     color: #212121;
}
 .icon-list-wrapper p {
     margin: 0 0 1.42857143em;
     color: #969696;
     font-size:15px;
}
 .fade:not(.show) {
     opacity: 1;
}
 .th-tbs2{
     width:100%;
}
 .nav-tabs .nav-link.active {
     color: #000000;
     background: #ffffff;
}
 .nav-tabs .nav-link {
     color:#000;
     font-weight: 500;
     font-size: 15px;
     text-transform: uppercase;
     background: #e8e8e8;
     border-top: 1px solid #e0e0e0;
     border-left: 1px solid #e0e0e0;
     border-right: 1px solid #e0e0e0;
     border-top-left-radius: 0rem;
     border-top-right-radius: 0rem;
}
 .th-tbs2 .nav-tabs{
     text-align:center;
     display:block;
}
 .th-tbs2 .tablinks ul li {
     border-bottom: none;
     border-radius: 0;
     margin-bottom: 0;
     display: inline-block;
     float: none;
     margin-right: 11px;
     background: white;
}
 .th-tbs2 .tablinks .active a {
     color: #000000;
     background: #ffffff;
}
 .nav-tabs .nav-item {
     margin-bottom: -1px;
     margin-right: 15px;
     display: inline-block;
}
 .nav-link {
     display: block;
     padding: .5rem 1rem;
     font-size: 16px;
     font-weight: 500;
     font-family: "Rubik" Sans-serif;
     text-align: center;
}
 .tab-content {
     padding: 10px 0px 0px 0px;
}
 .widget-container {
     -webkit-transition: background .3s,border .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
     transition: background .3s,border .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
     -o-transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
     transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
     transition: background .3s,border .3s,border-radius .3s,box-shadow .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
}
 .mini-box {
     width: 20%;
     padding: 15px;
     margin-top: 10px;
}
 .minibox1-wrap {
     margin: 0px -11px;
}
 .minibox1-wrap .mini-box{
     float:left;
     width:20%;
}
 .minibox1-wrap .more-btn {
     position: absolute;
     width: 100%;
     top: 0;
     bottom: 0;
     left: 0;
     z-index: 3;
}
 .minibox1-wrap .contentbox{
     position:relative;
     top:0px;
     box-shadow: 0 0 0 rgba(0,0,0,0.14);
     -webkit-transition: all 0.3s ease;
     -ms-transition: all 0.3s ease;
     transition: all 0.3s ease;
}
 .minibox1-wrap .contentbox:hover {
     box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
     -ms-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
     -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
}
 .minibox1-wrap .contentbox:hover::after {
     width: 100%;
}
 .minibox1-wrap .contentbox::after {
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 0%,#ff0505 100%);
     bottom: 0;
     content: "";
     height: 2px;
     left: 0;
     position: absolute;
     transition: all 0.4s ease-in-out 0s;
     width: 0;
}
 .minibox1-wrap .contentbox {
     text-align: center;
     height: 160px;
     position: relative;
     background-color: #FFFFFF;
     box-shadow: 0 10px 20px 0 rgba(0,0,0,0.06);
     -moz-box-shadow: 0 10px 20px 0 rgba(0,0,0,0.06);
     -ms-box-shadow: 0 10px 20px 0 rgba(0,0,0,0.06);
     -webkit-box-shadow: 0 10px 20px 0 rgba(0,0,0,0.06);
}
 .minibox1-wrap .contentbox:hover {
     top: -5px;
}
 .minibox1-wrap .tbinr {
     position: relative;
     top: 50%;
     transform: translateY(-50%);
}
 .img-wrap {
     font-size: 47px;
}
 .mp-title {
     margin: 0px 0px 0px 0px;
     color: #595959;
     font-family: "Poppins", Sans-serif;
     font-size: 15px;
     font-weight:500;
     text-transform: capitalize;
}
 .scroll-header {
     animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
     background: #324ece none repeat scroll 0 0;
     border-bottom: 1px solid #ccc9c7;
     left: 0;
     position: fixed ;
     top: 0;
     width: 100%;
     z-index: 99999;
}
 .scroll-header {
     position: fixed !important;
}
 .bounce {
     -webkit-animation: bounce 2s infinite;
     animation: bounce 2s infinite;
}
/* Scroll down indicator (bouncing) */
 @-webkit-keyframes bounce {
     0%, 20%, 50%, 80%, 100% {
         -webkit-transform: translateY(0);
         transform: translateX(0);
    }
     40% {
         -webkit-transform: translateY(-30px);
         transform: translateY(-30px);
    }
     60% {
         -webkit-transform: translateY(-15px);
         transform: translateY(-15px);
    }
}
 @-moz-keyframes bounce {
     0%, 20%, 50%, 80%, 100% {
         transform: translateY(0);
    }
     40% {
         transform: translateY(-30px);
    }
     60% {
         transform: translateY(-15px);
    }
}
 @keyframes bounce {
     0%, 20%, 50%, 80%, 100% {
         -ms-transform: translateY(0);
         transform: translateY(0);
    }
     40% {
         -ms-transform: translateY(-30px);
         transform: translateY(-30px);
    }
     60% {
         -ms-transform: translateY(-15px);
         transform: translateY(-15px);
    }
}
 .fa-chevron-down {
     color: #d41212 !important;
     bottom: 10px;
     margin-left: 11em;
     margin-top:10px;
     cursor: pointer;
     opacity: 1;
     -webkit-transition: 1.2s ease;
     text-align:center;
}
 #scrollUp {
     background-color: #e33939;
     bottom: 80px;
     color: #fff;
     font-size: 16px;
     height: 40px;
     line-height: 41px;
     right: 30px;
     text-align: center;
     transition: all 0.3s ease 0s;
     width: 40px;
}
 #scrollUp:hover {
     background:#ff0505;
     color:#fff;
}
/* layout */
 .wrap_nav{
     width:100%;
     height:70px;
}
 .bg-1{
     background-color: #5175C0;
}
 .bg-2{
     border-bottom: 1px solid #ddd;
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 2;
     width: 100%;
     top: 0px;
}
 .bg-3{
     background-color: #444444bf;
}
 .bg-4{
     border-bottom: 1px solid #ddd;
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 2;
     width: 100%;
     top: 0px;
}
 .bg-5{
     background-color:#066188;
}
 .bg-6{
     border-bottom: 1px solid #fff;
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 2;
     width: 100%;
     top: 0px;
}
 .bg-7{
     background-color:#9bb0c5;
}
 .bg-8{
     border-bottom: 1px solid #ddd;
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 2;
     width: 100%;
     top: 0px;
}
 .bg-9{
     background-color:#2618f3;
}
 .bg-10{
     border-bottom: 1px solid #ddd;
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 2;
     width: 100%;
     top: 0px;
}
 .bg-11{
     background-color:#119696;
}
 .bg-12{
     border-bottom: 0px solid #ddd;
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 2;
     width: 100%;
     top: 0px;
}
 .bg-12 .mainmenu ul{
     padding-left:40px;
}
 .bg-13{
     background-color:#ececec;
}
 .bg-13 .mainmenu ul li a:hover {
     color: #000000;
}
 .bg-13 .slicknav_nav a {
     color: #757575;
}
 .bg-14{
     border-bottom: 0px solid #ddd;
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 2;
     width: 100%;
     top: 0px;
}
 .bg-14 .slicknav_nav a {
     background: #757575;
}
 .bg-15{
     background: linear-gradient(to right, #3264f5 2%, #0080ff 82%);
}
 .bg-16{
     border-bottom: 1px solid #ddd;
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 2;
     width: 100%;
     top: 0px;
}
 .bg-17{
     background-color:#1ec100;
}
 .bg-18{
     border-bottom: 1px solid #ddd;
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 2;
     width: 100%;
     top: 0px;
}
 .bg-19{
     background-color:#e33939;
}
 .bg-20{
     border-bottom: 1px solid #ddd;
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 2;
     width: 100%;
     top: 0px;
}
 .bg-20 .mainmenu ul li #logo-navbar-middle{
     margin-top: -6px;
}
 .bg-27 .mainmenu ul li #logo-navbar-middle{
     margin-top: -2px;
}
 .bg-21{
     background-color:#000;
}
 .bg-21 .logo{
     border-bottom: 1px solid #b3b3b3;
}
 .bg-22{
     border-bottom: 0px solid #ddd;
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 2;
     width: 100%;
     top:65px;
}
 .bg-22{
     border-bottom: 0px solid #ddd;
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 2;
     width: 100%;
     top:65px;
}
 .bg-23{
     background-color:#b3af24;
     z-index:88888888;
     position: relative;
}
 .nav-barger-25 .social{
     text-align:left;
}
 .bg-27{
     background-color:#c71111;
}
 .logo-area-mp{
     border-bottom: 0px solid #ddd;
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 2;
     width: 100%;
     top: 0px;
}
 .bdt-advanced-icon-box-badge {
     transform: translate(6px, 6px) rotate(0deg);
     position: absolute;
}
 .bdt-advanced-icon-box-badge span {
     background-color: #ff0000;
     border-radius: 3px 3px 3px 3px;
     padding: 8px 10px 8px 10px;
     font-size: 10px;
     color: #fff;
     font-weight: 600;
}
 .mmp{
     text-align:right;
}
 .mmp .sub-menu{
     text-align:left;
}
 .mainmenu .sub-menu{
     text-align:left;
}
 #nav-21 .sub-menu{
     text-align:left;
}
 .logo-area-mp-21{
     background:#000;
}
 .logo-area-mp .mp-nam{
     border-bottom:1px solid #fff;
}
 .mp-nam{
     border-bottom:1px solid #fff;
}
 .form{
     position:relative;
     margin-top: 16px;
}
 input {
     padding: 6px 35px 6px 15px;
     border: 1px solid #ececec;
     -webkit-box-shadow: none;
     box-shadow: none;
}
 .form button {
     background: transparent;
     border: 0;
     outline: 0;
     color: #acabab;
     position: absolute;
     right: 18px;
     top: 0;
}
 .ftp i{
     color:#fff;
}
 .header-button{
     margin-top: 12px;
}
 .header-button a {
     border: 1px solid #fff;
     border-radius: 30px;
     color: #fff;
     display: inline-block;
     font-family:'Montserrat', sans-serif;
     font-size: 14px;
     font-weight: 400;
     line-height: 1;
     padding: 15px 38px;
     position: relative;
     text-transform: capitalize;
     transform: perspective(1px) translateZ(0px);
     transition: color 0.3s ease 0s;
     vertical-align: middle;
}
 .header-button a:hover{
    color:#000;
}
 .header-button a::before {
     background: #fff none repeat scroll 0 0;
     border-radius: 30px;
     bottom: 0;
     content: "";
     left: 0;
     position: absolute;
     right: 0;
     top: 0;
     transform: scaleX(0);
     transform-origin: 50% 0 0;
     transition-duration: 0.3s;
     transition-property: transform;
     transition-timing-function: ease-out;
     z-index: -1;
}
 .header-button a:hover::before {
     transform: scaleY(1);
}
 .logo_text {
     width:  80px !important;
     height:  80px !important;
}
 .social ul{
     padding:0px;
}
 .social{
     text-align:right;
}
 .social ul li{
     padding-right:13px;
     display:inline-block;
}
 .social ul li a {
     font-size: 14px;
     font-size: 1.06667rem;
     color: #fff;
}
 .social ul li a:hover{
     color:#e33939;
}
 .tmp ul{
     padding-left: 90px;
}
 .tmp ul li{
     margin-top:22px;
     display:inline-block;
     position:relative;
     list-style:none;
}
 .tmp ul li a {
     color: #fff;
     font-size: 16px;
     padding: 18px 8px 0 10px;
     margin: 0px 10px;
     font-weight:600;
     text-decoration:none;
     transition:0.4sec;
     border-right: 2px dotted transparent;
}
 .tmp ul li a:hover {
     border-right: 2px dotted #ffffff;
     padding-bottom: 24px;
}
 .tmp ul li .sub-menu {
     background: #ffffff none repeat scroll 0 0;
     border-top: 2px solid #e33939;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
     left:-8px;
     opacity: 0;
     position: absolute;
     top: 150%;
     transition: all 0.3s ease 0s;
     visibility: hidden;
     width:220px;
     z-index: 9;
     padding:0px;
     margin-top: 20px;
}
 .tmp ul li:hover .sub-menu{
    opacity:1;
    top:100%;
    visibility:visible
}
 .tmp ul li .sub-menu li{
     display:block;
     position:relative;
     margin:0px;
     padding:0px;
}
 .tmp ul li .sub-menu li a {
     color: #666666;
     font-size: 12px;
     font-weight: 400;
     margin: 0;
     padding: 15px 30px;
     text-transform: capitalize;
     display:block;
}
 .tmp ul li:hover > .sub-menu li > a:hover{
     color:#fff;
     background:#525252;
     border-right:none;
}
 .pack ul{
     padding: 0px;
     margin-bottom: 0rem;
     padding-left: 90px;
}
 .pack ul li{
     margin-top:22px;
     display:inline-block;
     position:relative;
     list-style:none;
}
 .pack ul li a{
     color: #fff;
     font-size: 16px;
     padding: 0px 10px;
     margin: 0px 10px;
     font-weight:600;
     text-decoration:none;
     transition:0.4sec;
}
 .pack ul li >a:hover{
     background-color:#fff ;
     color:#000;
     padding: 26px 10px;
}
 .pack ul li .sub-menu {
     background: #ffffff none repeat scroll 0 0;
     border-top: 2px solid #e33939;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
     left:-8px;
     opacity: 0;
     position: absolute;
     top: 150%;
     transition: all 0.3s ease 0s;
     visibility: hidden;
     width:220px;
     z-index: 9;
     padding:0px;
     margin-top: 20px;
}
 .pack ul li:hover .sub-menu{
    opacity:1;
    top:100%;
    visibility:visible
}
 .pack ul li .sub-menu li{
     display:block;
     position:relative;
     margin:0px;
     padding:0px;
}
 .pack ul li .sub-menu li a {
     color: #666666;
     font-size: 12px;
     font-weight: 400;
     margin: 0;
     padding: 15px 30px;
     text-transform: capitalize;
     display:block;
}
 .pack ul li:hover > .sub-menu li > a:hover{
     color:#fff;
     background:#525252;
}
 .mainmenu ul{
     margin:0;
     padding-left:90px;
}
 .main ul li {
     overflow: hidden;
}
 .mainmenu ul li{
     position:relative;
     height:50px;
     line-height: 45px;
     position:relative;
     display:inline-block;
     padding:0;
     font-size:0;
     margin-top: 8px;
}
 .bg-13 .mainmenu ul li a{
     color: #656565;
}
 .bg-13 .social ul li a {
     color: #545454;
}
 .bg-20 .mainmenu ul li {
     margin-top: 0px;
}
 .bg-27 .mainmenu ul li {
     margin-top: -4px;
}
 .mainmenu ul li a{
     margin:0 auto;
     position:relative;
     padding:5px 12px;
     color:#fff;
     font-weight:600;
     font-family:"montserrat",sans-serif;
     display:block;
     font-size:16px;
     text-transform:capitalize;
     text-decoration:none;
}
 .mainmenu a i {
     float: left;
     font-size: 14px;
     margin-right: 6px;
     line-height: 47px !important;
}
 .mainmenu ul li a:hover{
    color:#e33939;
}
 .mainmenu ul li .sub-menu {
     background: #ffffff none repeat scroll 0 0;
     border-top: 2px solid #e33939;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
     left:-8px;
     opacity: 0;
     position: absolute;
     top: 150%;
     transition: all 0.3s ease 0s;
     visibility: hidden;
     width:220px;
     z-index: 9;
     padding:0px;
     margin-top: 5px;
}
 .mainmenu ul li:hover .sub-menu{
    opacity:1;
    top:100%;
    visibility:visible
}
 .mainmenu ul li .sub-menu li{
     display:block;
     position:relative;
     margin:0px;
     padding:0px;
}
 .mainmenu ul li .sub-menu li a {
     color: #666666;
     font-size: 13px;
     font-weight: 400;
     margin: 0;
     padding: 3px 22px;
     text-transform: capitalize;
     display:block;
}
 .mainmenu ul li:hover > .sub-menu li > a:hover{
     color:#fff;
     background:#525252;
}
 .form .form-control {
     display: block;
     width: 100%;
     height: calc(2.25rem + 2px);
     padding: .375rem .75rem;
     font-size: 13px;
     line-height: 1.5;
     color: #495057;
     background-color: #fff;
     background-clip: padding-box;
     border: 0px;
     border-radius:0rem;
     transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
 .form button {
     background: transparent;
     border: 0;
     outline: 0;
     color: #acabab;
     position: absolute;
     right: 18px;
     top: 4px;
     font-size: 14px;
}
 .logo-nav-25{
     position: fixed;
     top: 10px;
     right: 40px;
     z-index: 10;
}
 .nav-barger-25 .burger span, .nav-barger-25 .burger span::before, .nav-barger-25 .burger span::after {
     background-color: #ffffff;
}
 .nav-barger-25 .burger{
     left: 20px;
     width: 50px;
     height: 50px;
     position: fixed;
     top: 20px;
     border-radius: 4px;
     z-index: 10;
}
 .nav-barger-25 nav {
     background-color: #2a2a2a;
     position: fixed;
     z-index: 9;
     top: 0;
     left: 0;
     height: 100%;
     max-width: 515px;
     width: 100%;
     padding: 100px 40px 60px 40px;
     overflow-y: auto;
     -webkit-transform: translateX(100%);
     -moz-transform: translateX(100%);
     -ms-transform: translateX(100%);
     -o-transform: translateX(100%);
     transform: translateX(-100%);
     -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
     -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
     -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
     transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
/* BURGER ========================================== */
 .burger {
     width: 50px;
     height: 50px;
     position: fixed;
     top: 20px;
     right: 20px;
     border-radius: 4px;
     z-index: 10;
}
 .logo-nav-26{
     position: fixed;
     top: 10px;
     left: 20px;
     z-index: 10;
}
 .burger span {
     position: relative;
     margin-top: 9px;
     margin-bottom: 9px;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     position: absolute;
     top: 50%;
     left: 50%;
     margin-left: -15px;
     margin-top: -1.5px;
}
 .burger span, .burger span::before, .burger span::after {
     display: block;
     width: 30px;
     height: 3px;
     background-color: #fff;
     outline: 1px solid transparent;
     -webkit-transition-property: background-color, -webkit-transform;
     -moz-transition-property: background-color, -moz-transform;
     -o-transition-property: background-color, -o-transform;
     transition-property: background-color, transform;
     -webkit-transition-duration: 0.3s;
     -moz-transition-duration: 0.3s;
     -o-transition-duration: 0.3s;
     transition-duration: 0.3s;
}
 .burger span::before, .burger span::after {
     position: absolute;
     content: "";
}
 .burger span::before {
     top: -9px;
}
 .burger span::after {
     top: 9px;
}
 .burger.clicked span {
     background-color: transparent;
}
 .burger.clicked span::before {
     -webkit-transform: translateY(9px) rotate(45deg);
     -moz-transform: translateY(9px) rotate(45deg);
     -ms-transform: translateY(9px) rotate(45deg);
     -o-transform: translateY(9px) rotate(45deg);
     transform: translateY(9px) rotate(45deg);
}
 .burger.clicked span::after {
     -webkit-transform: translateY(-9px) rotate(-45deg);
     -moz-transform: translateY(-9px) rotate(-45deg);
     -ms-transform: translateY(-9px) rotate(-45deg);
     -o-transform: translateY(-9px) rotate(-45deg);
     transform: translateY(-9px) rotate(-45deg);
}
 .burger.clicked span:before, .burger.clicked span:after {
     background-color: #ffffff;
}
 .burger:hover {
     cursor: pointer;
}
/* NAV-26 ========================================== */
 nav:not(.pagination) {
     background-color: #2a2a2a;
     position: fixed;
     z-index: -1;
     opacity: 0;
     top: 0;
     right: 0;
     height: 100%;
     max-width: 515px;
     width: 100%;
     padding: 100px 40px 60px 40px;
     overflow-y: auto;
     -webkit-transform: translateX(100%);
     -moz-transform: translateX(100%);
     -ms-transform: translateX(100%);
     -o-transform: translateX(100%);
     transform: translateX(100%);
     -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
     -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
     -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
     transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
 nav.show {
     -webkit-transform: translateX(0px);
     -moz-transform: translateX(0px);
     -ms-transform: translateX(0px);
     -o-transform: translateX(0px);
     transform: translateX(0px);
     z-index: 1000;
     opacity: 1;
}
 nav.show ul.main li {
     -webkit-transform: translateX(0px);
     -moz-transform: translateX(0px);
     -ms-transform: translateX(0px);
     -o-transform: translateX(0px);
     transform: translateX(0px);
     opacity: 1;
}
 nav.show ul.main li:nth-child(1) {
     transition-delay: 0.15s;
}
 nav.show ul.main li:nth-child(2) {
     transition-delay: 0.3s;
}
 nav.show ul.main li:nth-child(3) {
     transition-delay: 0.45s;
}
 nav.show ul.main li:nth-child(4) {
     transition-delay: 0.6s;
}
 nav.show ul.main li:nth-child(5) {
     transition-delay: 0.75s;
}
 nav.show ul.main li:nth-child(6) {
     transition-delay: 0.9s;
}
 nav.show ul.main li:nth-child(7) {
     transition-delay: 1.05s;
}
 nav.show ul.main li:nth-child(8) {
     transition-delay: 1.2s;
}
 nav.show ul.main li:nth-child(9) {
     transition-delay: 1.35s;
}
 nav.show .about, nav.show .social, nav.show ul.sub {
     -webkit-transform: translateY(0px);
     -moz-transform: translateY(0px);
     -ms-transform: translateY(0px);
     -o-transform: translateY(0px);
     transform: translateY(0px);
     opacity: 1;
     transition-delay: .85s;
}
 @media (min-width: 667px) {
     nav:not(.pagination) {
         padding: 120px 90px 70px 90px;
    }
}
 nav ul.main {
     list-style-type: none;
}
 nav ul.main li {
     margin-bottom: 20px;
     -webkit-transform: translateX(40px);
     -moz-transform: translateX(40px);
     -ms-transform: translateX(40px);
     -o-transform: translateX(40px);
     transform: translateX(40px);
     opacity: 0;
     -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
     transition: all 0.3s ease;
}
 nav ul.main li:last-of-type {
     margin-bottom: 0px;
}
 nav ul.main li a {
     color: #ffffff;
     text-decoration: none;
     text-transform: capitalize;
     font-size: 1.5rem;
     display: block;
     letter-spacing: 0px;
     font-weight: 600;
     padding: 10px 0;
     -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
     transition: all 0.3s ease;
}
 nav .main li .active{
     color:#d41212;
}
 nav ul.main li a span {
     color: #b7ac7f;
}
 nav ul.main li a:hover {
     color: #b7ac7f;
}
 .list-unstyled {
     padding-left: 43px;
}
 nav ul li .sub-menu {
     top: 150%;
     transition: all 0.3s ease 0s;
}
 nav ul li:hover .sub-menu{
    opacity:1;
    top:100%;
    visibility:visible
}
 nav ul li .sub-menu li{
     display:block;
     position:relative;
     margin:0px;
     padding:0px;
}
 nav ul li .sub-menu li a {
     color: #fff;
     font-size: 14px;
     font-weight: 400;
     margin: 0;
     padding: 3px 22px;
     text-transform: capitalize;
     display:block;
}
 nav ul li:hover > .sub-menu li > a:hover{
     color:#fff;
     padding-left:8px;
}
 nav .social {
     margin-left:25px;
     margin-top: 40px;
     position: relative;
     padding-bottom: 30px;
     -webkit-transform: translateY(30px);
     -moz-transform: translateY(30px);
     -ms-transform: translateY(30px);
     -o-transform: translateY(30px);
     transform: translateY(30px);
     opacity: 0;
     -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
     -o-transition: all 0.4s ease;
     transition: all 0.4s ease;
}
 nav .social a i {
     display: inline-block;
     margin-right: 18px;
     width: 39px;
     height: 39px;
     line-height: 24px;
     border-width: 0px;
     border-style: solid;
     border-radius: 26px;
     color: #0c0c0c;
     padding: 8px 13px;
     background: #eeeeee;
}
 nav .social a i:hover{
     color:#fff;
     background:#d41212;
}
/* OVERLAY ========================================== */
 .overlay {
     position: fixed;
     top: 0;
     left: 0;
     z-index: 1;
     width: 100%;
     height: 100%;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
     background-color: #b7ac7f;
     opacity: 0;
     visibility: hidden;
}
 .overlay.show {
     opacity: 0.8;
     visibility: visible;
}
 .main-header-2 {
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     border-bottom:1px solid #fff;
     z-index: 999;
     top: 0px;
}
 .megamenu-area-2 {
     padding: 0px;
     left: 0;
     position: absolute;
     right: 0;
     z-index: 999;
     top: 70px;
}
 .header-area {
     position: relative;
     background:#b3af24;
     border-bottom:1px solid #fff;
}
 .scroll-header {
     top: 0px !important;
}
 .exo-menu p {
     font-size: 14px;
     line-height: 1.6;
     font-family: "Montserrat", sans-serif;
     margin: 0 0 1.42857143em;
}
 .exo-menu{
     width: 100%;
     float: left;
     list-style: none;
     position:relative;
     margin-bottom: 0em;
}
 .exo-menu > li {
     display: inline-block;
     float:left;
     padding: 8px 0px;
}
 .megamenu-area ul {
     margin-bottom: 0rem;
}
 .exo-menu > li > a{
     color: #fff;
     font-size: 16px;
     font-weight: 600;
     text-decoration: none;
     text-transform: capitalize;
     -webkit-transition: color 0.2s linear, background 0.2s linear;
     -moz-transition: color 0.2s linear, background 0.2s linear;
     -o-transition: color 0.2s linear, background 0.2s linear;
     transition: color 0.2s linear, background 0.2s linear;
}
 .exo-menu > li:hover .Home{
     display:block;
}
 .exo-menu > li > a.active, .exo-menu > li > a:hover, li.drop-down ul > li > a:hover{
     color:#fff;
     position: relative;
}
 .exo-menu > li > a:hover, li .drop-icon a{
     background:transparent;
}
 .exo-menu > li > .active a:hover{
     background:transparent;
}
/*Home*/
 .Home{
     right: 0;
     min-height: 100%;
     left:0;
     display:none;
     color:#fefefe;
     padding:15px;
     background:#fff;
}
 .Home .Home-title{
     color:#000;
     padding-top: 20px;
     font-size:18px;
     font-weight:600;
     text-transform:capitalize;
}
 .Home .Home-des{
     margin: 0 0 1.42857143em;
     color: #969696;
}
 .Home a.view-more{
     margin-top:0px;
}
 .mp-megamenu {
}
 .visible-xs-block{
     display:none;
}
 .list-style-16 li {
     line-height: 24px;
     margin-bottom: 10px;
     position: relative;
     padding-left: 30px;
     -webkit-transition: all 0.3s ease 0s;
     -moz-transition: all 0.3s ease 0s;
     -o-transition: all 0.3s ease 0s;
     transition: all 0.3s ease 0s;
}
 .list-style-16 li:after {
     color: #86bc42;
}
 .whatsnew-list-icon .fa-check:before {
     content: "\f00c";
}
 .list-style-16 li:after {
     content: "\f00c";
     font-family:FontAwesome;
     position: absolute;
     left: 0px;
     top: 1px;
     z-index: 1;
     color: #d41212;
}
 .exo-menu a i{
     float: left;
     font-size: 14px;
     margin-right: 6px;
     line-height: 27px !important;
}
/*mega menu*/
 .mega-menu {
     left: 0;
     right: 0;
     padding: 15px;
     display:none;
     padding-top: 0;
     min-height: 100%;
}
 .mega-menu {
     background-color: #fff;
}
 .mega-menu .img-responsive{
     margin-top:10px;
}
 h4.row.mega-title {
     color: #0a0a0a;
     margin-top: 0px;
     font-size: 14px;
     font-weight: 600;
     padding-left: 15px;
     padding-bottom: 13px;
     text-transform: uppercase;
     border-bottom: 1px solid #ad160a;
     padding-top: 15px;
}
 .mega-menu ul li a {
     line-height: 27px;
     font-size: 13px;
     font-family: "Rubik", sans-serif;
     display: block;
     opacity:0.7;
     color:#000;
}
 .mega-menu ul li a:hover{
     opacity:1;
}
 .mega-menu ul li .view-more{
     color:#fff;
}
 .exo-menu ul {
     margin-right: 0px;
     list-style:none;
     padding: 0;
}
 ul.stander li a {
     padding: 3px 0px;
}
 ul.description li {
     padding-bottom: 12px;
     line-height: 8px;
     color:#000;
}
 ul.description li span {
     color: #a8a8a8;
     font-family: "Rubik", sans-serif;
     font-size: 85%;
}
 a.view-more{
     font-size: 12px;
    /* padding: 4px 6px;
     */
     border-radius: 1px;
     margin-top: 15px;
     color: #fff;
     background-color: #d41212;
     padding: 8px 16px !important;
     line-height: 21px !important;
     display: inline-block !important;
}
 a.view-more:hover{
     color:#fff;
     background:#d41212;
}
 ul.icon-des li a i {
     color: #fff;
     width: 35px;
     height: 35px;
     border-radius: 50%;
     text-align: center;
     background-color: #d41212;
     line-height: 35px !important;
}
 ul.icon-des li {
     width: 100%;
     display: table;
     margin-bottom: 11px;
}
/*pages DropDown*/
 .pages{
     display:none;
     color:#fefefe;
     background:#fff;
}
 .exo-menu .pages .sub-menu {
     background: #ffffff none repeat scroll 0 0;
     border-top: 2px solid #b62929;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
     left:-8px;
     opacity: 0;
     position: absolute;
     top: 150%;
     transition: all 0.3s ease 0s;
     visibility: hidden;
     width:220px;
     z-index: 9;
     padding:0px;
     margin-top: 0px;
}
 .exo-menu .pages .sub-menu{
    opacity:1;
    top:100%;
    visibility:visible
}
 .exo-menu .pages .sub-menu li{
     display:block;
     position:relative;
     margin:0px;
     padding:0px;
}
 .exo-menu .pages .sub-menu li a {
     color: #666666;
     font-size: 14px;
     font-weight: 400;
     margin: 0;
     padding: 15px 30px;
     text-transform: capitalize;
     display:block;
}
 .exo-menu .pages:hover > .sub-menu li > a:hover{
     color:#fff;
     background: #e33939;
}
/*service*/
 .service{
     left:0;
     display:none;
     color:#fefefe;
     border-top:2px solid #b62929;
     padding:15px;
     background:#fff;
}
 .service h4 {
     color:#545454;
     padding-top: 20px;
     font-size:18px;
     font-weight:600;
     text-transform:capitalize;
}
 .exo-menu .service p{
     color: #929292;
     font-size: 17px;
     padding: 20px 16px;
     margin:0px;
     display: inline-block;
}
/*hover*/
 .Home:hover, .pages:hover, .service:hover, .mega-menu:hover, .pages-drop-down >a:hover+.pages, .Home-drop-down>a:hover +.Home, .service-drop-down>a:hover +.service, .mega-drop-down a:hover+.mega-menu{
     display:block;
}
/*responsive*/
 @media (min-width:767px){
     .exo-menu > li > a{
         display:block;
         padding: 15px 18px;
    }
     .Home, .mega-menu, .service, .pages{
         position:absolute;
         margin-top: 0px;
    }
}
 @media (max-width:767px){
     .exo-menu {
         min-height: 60px;
         width: 100%;
    }
     .exo-menu > li > a{
         width:100% ;
         display:none ;
    }
     .exo-menu > li{
         width:100%;
    }
     .display.exo-menu > li > a{
         display:block ;
         padding: 20px 22px;
    }
     .Home, .mega-menu, .service, .pages{
         position:relative;
    }
}
 a.toggle-menu{
     position: absolute;
     right: 0px;
     padding: 21px 30px;
     font-size: 13px;
     color: #ffffff;
     top: 0px;
     font-weight: 700;
}
 .d-flex {
     align-items: center;
     display: flex;
}
 .vh {
     height: 100vh;
}
 .slider-wrapper:before {
     background: rgba(0,0,0,0.3);
     content: "";
     height: 100%;
     filter: alpha(opacity=80);
     position: absolute;
     width: 100%;
     z-index: -1;
}
 .particles-effect {
     position: absolute;
     left: 50%;
     top: 50%;
     -webkit-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
     -o-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
     color: #fff;
     z-index: 10;
}
 #intro{
     background: url(../img/slider/01.jpg) fixed no-repeat;
     background-position: center center;
     background-size: cover;
     position:relative;
     height: 657px;
     color: #fff;
     overflow: hidden;
}
 #intro-2{
     background: url(../img/slider/8.jpg) fixed no-repeat;
     background-position: center center;
     background-size: cover;
     position:relative;
     height: 657px;
     color: #fff;
}
 .slider-wrapper {
     background-position: center center;
     background-size: cover;
     position:relative;
     min-height:500px;
}
 .slider-wrapper h1{
     font-family:'Montserrat', sans-serif;
     font-weight:600;
     padding: 12px 0px;
     font-size:55px;
     color:#fff;
     margin-bottom:0;
     text-transform: capitalize;
     text-align:center;
     letter-spacing:0px;
}
 .slider-text-animation h3, .slider-text-animation h1, .slider-text-animation p, .header-button.new-btn > a {
     animation-duration:1s;
     animation-fill-mode:both;
     animation-name: fadeOutDown;
}
 .active .slider-text-animation h3, .active .slider-text-animation h1, .active .slider-text-animation p, .active .header-button.new-btn > a {
     animation-name: fadeInUp;
}
 .slider-text-animation h3{
    animation-delay: 0.2s;
}
 .slider-text-animation h1{
     animation-delay: 0.6s;
}
 .slider-text-animation p {
     animation-delay: 1.2s;
}
 .header-button.new-btn > a {
     animation-delay: 1.5s;
}
 .slider-active-owl .owl-nav div {
     background:#2618f3;
     border-radius: 0%;
     color: #ffffff;
     font-size: 30px;
     height: 60px;
     left: 0;
     line-height: 60px;
     opacity: 0;
     position: absolute;
     text-align: center;
     top: 50%;
     transform: translateY(-50%);
     transition: all 0.3s ease 0s;
     width: 60px;
}
 .slider-active-owl .owl-nav div.owl-next {
     left: auto;
     right:0;
}
 .slider-active-owl .owl-nav div:hover {
     background: #fff;
     color:#000;
}
 .slider-active-owl:hover .owl-nav div{
    left:40px;
    opacity:1;
}
 .slider-active-owl:hover .owl-nav div.owl-next{
    left:auto;
    right:60px;
}
 .banner-inner .slider-wrapper h1{
     text-align:left;
}
 .banner-inner .slider-wrapper h3 {
     text-align: left;
}
 .banner-inner .header-button {
     text-align: left;
}
 .banner-inner-right .slider-wrapper h1{
     text-align:right;
}
 .banner-inner-right .slider-wrapper h3 {
     text-align: right;
}
 .banner-inner-right .slider-wrapper .slider-btn {
     margin-top:18px;
     text-align: right;
}
 .banner-inner-right .slider-wrapper .slider-btn a{
     text-align: center;
}

 .slider-wrapper h3 {
     font-size: 2.2rem;
     margin-top: 0rem;
     text-align: center;
     color: #fff;
     font-weight:500;
     margin-bottom:0;
     padding:4px 0px;
}
 .slider-wrapper .slider-btn {
     margin-top:12px;
     text-align: center;
}
 .slider-wrapper .header-button a{
     border: 1px solid #ffffff;
     background: #2618f3;
}
 .banner-inner .slider-wrapper .slider-btn {
     margin-top:18px;
     text-align: left;
}
 .banner-inner .slider-wrapper .slider-btn a{
     text-align: center;
}
 .slider-wrapper p {
     font-size: 17px;
     margin-top: 0rem;
     width: 65%;
     text-align:center;
     margin: 5px auto;
     color: #fff 
}
 .banner-inner .slider-wrapper p {
     text-align:left;
     margin:0;
     width:60%;
}
 .slider-wrapper h4{
     font-family:'Poppins', sans-serif;
     font-weight:500;
     margin:0 auto;
     font-size:24px;
     color:#c1c1c1;
     text-transform: capitalize;
     text-align:center;
     letter-spacing:0px;
     display:table;
}
 .particles-js-canvas-el{
     position:absolute;
}
 .video-background{
     position:absolute;
     right:0;
     bottom:0;
     min-width:100%;
     min-height:100%;
     width:auto;
     height:auto;
     z-index:-100;
}
 .myphoto {
     height: 200px;
     width: 200px;
     margin-left: 28em;
     position: relative;
     border: 5px solid #ffffff;
     display: inline-block;
     -webkit-border-radius: 50%;
     border-radius: 50%;
     overflow: hidden;
}
 .bg-new-13 .slider-wrapper:before{
     height:auto;
}
 .mp-margin{
     margin-top:25px;
}
 .hero-img {
     animation-delay: 1s;
     animation: move 4.2s linear infinite;
}
 #message_wrapper {
     width: 100%;
     background-color: #fff;
     min-height: 100px;
}
 .contentleft {
     float: left;
     line-height: 1.6em;
}
 #message_wrapper .contentleft p {
     font-size: 20px;
     font-family: 'Montserrat',sans-serif;
     color: #5f5f5f;
     margin-top: 33px;
     font-weight: 500;
}
 .contentright {
     float: right;
     line-height: 1.6em;
}
 .button_green_image {
     display: block;
     position: relative;
     margin: 28px 0;
}
 .button_green_image a {
     text-decoration: none;
     float: left;
     display: block;
     color: #fff;
     font-size: 14px;
     font-weight: 500;
     border: none;
     border-bottom: 3px solid #460006;
     padding: 10px 30px 7px 46px;
     background: url(../img/link.png) no-repeat scroll 19px 13px #d41212;
     transition: all .5s ease-in;
     -o-transition: all .5s ease-in;
     -moz-transition: all .5s ease-in;
     -webkit-transition: all .5s ease-in;
     text-transform: uppercase;
}
 .home_btn {
     margin-top: 20px;
}
 .home_btn a {
     margin-bottom: 20px;
     margin-right: 20px;
}
 .bg-new-13.banner-inner .slider-wrapper p {
     width: 100%;
}
 .bg-new-13 .get_btn {
     background: #fff;
     color:#4776e6;
     border-color:#fff 
}
 .learn_btn {
     background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
     border: 2px solid #fff;
     border-radius: 40px;
     color: #fff;
     display: inline-block;
     font-size: 14px;
     font-weight: 700;
     overflow: hidden;
     padding: 12px 45px;
     text-transform: uppercase;
     transition: all 0.3s ease 0s;
}
 .learn_btn:hover {
     background: #fff;
     color: #333;
     border: 2px solid #fff;
}
 .get_btn {
     background: #e33939;
     border: 2px solid #e33939;
     border-radius: 40px;
     color: #fff;
     display: inline-block;
     font-size: 14px;
     font-weight: 700;
     overflow: hidden;
     padding: 12px 45px;
     text-transform: uppercase;
     transition: all 0.3s ease 0s;
}
 .get_btn:hover, .get_btn:focus {
     background: #fff;
     color: #333;
     border: 2px solid #fff;
}
 .video_btn {
     position: relative;
     height: 80px;
     width: 80px;
     background: #3aaee7;
     text-align: center;
     display: inline-block;
     line-height: 80px;
     color: #fff;
     border-radius: 50%;
     transition-duration: 0s;
     -ms-transition-duration: 0s;
     -moz-transition-duration: 0s;
     -webkit-transition-duration: 0s;
     -o-transition-duration: 0s;
}
 .video_btn:before {
     content: "";
     position: absolute;
     left: 50%;
     top: 50%;
     height: 95px;
     width: 95px;
     border: 3px solid #3aaee7;
     border-radius: 50%;
     transform: translate(-50%, -50%);
     -moz-transform: translateX(-50%) translateY(-50%);
     -webkit-transform: translateX(-50%) translateY(-50%);
     -ms-transform: translateX(-50%) translateY(-50%);
     -o-transform: translateX(-50%) translateY(-50%);
     transform: translateX(-50%) translateY(-50%);
     opacity: .3;
     animation: pulse-border 1500ms ease-out infinite;
}
 @keyframes pulse-border{
     0%{
         transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);
         opacity:1 
    }
     100%{
         transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
         opacity:0 
    }
}
 .video_btn.small{
     width:50px;
     height:50px;
     line-height:50px 
}
 .video_btn.small:after{
     height:50px;
     width:50px 
}
 .video_btn.small:before{
     height:65px;
     width:65px 
}
 .Home .video_btn i {
     font-size: 18px;
     float: none;
     margin-right: 0px;
     line-height: 26px !important;
}
 .video_btn:after {
     content: "";
     position: absolute;
     left: 50%;
     top: 50%;
     height: 80px;
     width: 80px;
     border: 3px solid #3aaee7;
     border-radius: 50%;
     transform: translate(-50%, -50%);
     -moz-transform: translateX(-50%) translateY(-50%);
     -webkit-transform: translateX(-50%) translateY(-50%);
     -ms-transform: translateX(-50%) translateY(-50%);
     -o-transform: translateX(-50%) translateY(-50%);
     transform: translateX(-50%) translateY(-50%);
     opacity: .3;
     animation: pulse-border 1500ms ease-out infinite;
}
 .banner-inner-wrapper .slider-wrapper:before{
     content: "";
     background: url(../img/slider/green-banner.png) center center/cover no-repeat local;
     width: 100%;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0;
     z-index: 1;
}
 .banner-inner-wrapper .slider-wrapper .new-tittle{
     position:relative;
     z-index:999;
     top: 0px;
}
 .banner-inner-wrapper .slider-wrapper h1{
     color:#000;
     text-align:left;
}
 .banner-inner-wrapper .slider-wrapper p{
     color:#000;
     width: 100%;
     text-align:left;
}
 .banner-inner-wrapper .slider-wrapper .slider-btn{
     text-align:left;
}
 .banner-inner-wrapper .slider-wrapper .slider-btn a {
     text-align: center;
}
 .new-banner-two{
     overflow:hidden;
}
 .new-banner-two .slider-wrapper:before{
     content: "";
     background: url(../img/slider/paint.png) center center/cover no-repeat local;
     width: 761.367px;
     height: 947.004px;
     position: absolute;
     left: 285px;
     top: -140px;
     z-index: 1;
}
 .new-banner-two .home_btn{
     text-align:center;
}
 .new-banner-two .mp-rool{
     z-index:999;
}
 #particles-js-two.slider-wrapper:before {
     background: rgba(0,0,0,0);
}
 .amar-new-btn .home_btn {
     text-align: center;
}
 .new-banner-btn .home_btn {
     text-align: center;
}
 .new-banner-btn .slider-wrapper h1 {
     color: #fff;
}
 .new-look-up{
     margin-top:50px;
}
 .box-warp{
     margin-left:28em;
}
 .new-box-warp{
     z-index: 5;
     min-width: 454px;
     max-width: 454px;
     white-space: nowrap;
     background: transparent;
     border: 4px solid rgb(255, 255, 255);
     visibility: inherit;
     transition: none 0s ease 0s;
     text-align: inherit;
     margin: 0px;
     padding: 62px 10px;
     min-height: 416px;
     max-height: 416px;
     opacity: 1;
     transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
     transform-origin: 50% 50% 0px;
}
 .tittle-warper-slider.owl-dots .owl-dot {
     width: 15px;
     height: 15px;
}
 .tittle-warper-slider .owl-dots {
     text-align:center;
     margin-top:20px;
}
 .banner-inner .tittle-warper-slider .owl-dots {
     text-align: left;
     margin-top: 20px;
}
 .mp-top{
     margin-top:20px;
}
 .tittle-warper-slider .owl-dots .owl-dot {
     height: 12px;
     width: 12px;
     margin: 2px 3px;
     position: relative;
     display: inline-block;
     -webkit-border-radius: 50%;
     border-radius: 50%;
     background: #ffffff;
     cursor: pointer;
}
 .tittle-warper-slider .owl-dots .owl-dot.active::after, .owl-dots .owl-dot:hover:after {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
     visibility: visible;
}
 .tittle-warper-slider .owl-dots .owl-dot::after {
     background-color: #e33939;
     -webkit-border-radius: 50%;
     border-radius: 50%;
     content: "";
     height: 100%;
     left: 0;
     opacity: 0;
     position: absolute;
     -webkit-transform: translate3d(0, 100%, 0);
     transform: translate3d(0, 100%, 0);
     visibility: hidden;
     width: 100%;
}
 .countdown.one>span{
     color: #fff;
     position: relative;
     padding: 0px 10px;
     display: inline-block;
     text-align: center;
}
 .countdown span{
     padding: 0px 17px;
     font-size:55px;
     font-weight:600;
     font-family:'Poppins', sans-serif;
}
 .countdown.one span span{
     padding: 0px 17px;
     font-size:22px;
     font-weight:500;
     font-family:'Poppins', sans-serif;
}
 .countdown.two>span{
     color: #fff;
     position: relative;
     padding: 0px 10px;
     display: inline-block;
     text-align: center;
}
 .countdown.one>span::before {
     content: ":";
     color: #fff;
     position:relative;
     top:0px;
     left:-10px 
}
 .countdown.one>span:first-child:before {
     content: '';
}
 .countdown.one span span,.countdown.two span span{
     clear:both;
     display:block;
     position: relative;
     top:-5px;
}
 .slider-area .conutdown-heading h2{
     font-size: 32px;
     font-weight: 700;
     color:#3aaee7;
     padding: 22px 13px;
     line-height: 1.4em;
     text-shadow: 0px 0px 23px rgba(0,0,0,0.56);
}
 .countdown-divider{
     padding: 0px 12px;
     margin-top: 20px;
     display:inline-flex;
}
 .countdown-divider-separator {
     border-top-style: solid;
     border-top-width: 2px;
     border-top-color: #3aaee7;
     width: 67px;
}
 .new-countdown-2{
     text-align:center;
}
 .text-rr .slider-wrapper.text-rotating-wd h3{
     margin-left: -180px;
}
 .text-rr .slider-wrapper.text-rotating-wd .word {
     position: absolute;
     width: 220px;
     opacity: 0;
     padding-left:10px;
}
 .letter {
     display: inline-block;
     position: relative;
     float: left;
     transform: translateZ(25px);
     transform-origin: 50% 50% 25px;
}
 .letter.out {
     transform: rotateX(90deg);
     transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
 .letter.behind {
     transform: rotateX(-90deg);
}
 .letter.in {
     transform: rotateX(0deg);
     transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
 .wisteria {
     color: #8e44ad;
}
 .belize {
     color: #2980b9;
}
 .pomegranate {
     color: #c0392b;
}
 .green {
     color: #16a085;
}
 .midnight {
     color: #2c3e50;
}
 #nav-20{
     padding:0px;
}
 #nav-1 a:after, #nav-2 a:after, #nav-3 a:after, #nav-4 a:before, #nav-4 a:after, #nav-5 a:before, #nav-5 a:after, #nav-6 a:before, #nav-7 a:before, #nav-8 a:before, #nav-9 a:before, #nav-9 a:after, #nav-10 a:before, #nav-10 a:after, #nav-10 a span:before, #nav-10 a span:after, #nav-12 a:after, #nav-14 a:after{
    content:"";
     display:block;
}
/* left-right-full */
 #nav-1 a:after{
     position:absolute;
     left:0;
     bottom: 0px;
     width:0%;
     height:3px;
     background-color:#e33939;
     -webkit-transition:all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     -o-transition:all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     transition:all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
 #nav-1 a:hover:after{
    width:100%;
}
 #nav-1 .sub-menu a:after{
     display:none;
}
/* right-left-full */
 #nav-2 a:after{
     position:absolute;
     right:0;
     bottom:0px;
     width:0%;
     height:3px;
     background-color:#e33939;
     -webkit-transition:all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     -o-transition:all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     transition:all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
 #nav-2 a:hover:after{
    width:100%;
}
 #nav-2 .sub-menu a:after{
     display:none;
}
/* center-side-full-1 */
 #nav-3 a:after{
     position:absolute;
     left:50%;
     bottom:0;
     width:0%;
     height:3px;
     background-color:#e33939;
     transform:translateX( -50% );
     -webkit-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     -o-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
 #nav-3 a:hover:after{
    width:100%;
}
 #nav-3 .sub-menu a:after{
     display:none;
}
/* center-side-full-2 */
 #nav-4 a:after{
     position:absolute;
     left:50%;
     bottom:0;
     width:0%;
     height:3px;
     background-color:#e33939;
     transform:translateX( -50% );
     -webkit-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     -o-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
 #nav-4 a:before{
     position:absolute;
     left:50%;
     top:0;
     width:0%;
     height:3px;
     background-color:#e33939;
     transform:translateX( -50% );
     -webkit-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     -o-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
 #nav-4 a:hover:after{
    width:100%;
}
 #nav-4 a:hover:before{
    width:100%;
}
 #nav-4 .sub-menu a:after{
     display:none;
}
 #nav-4 .sub-menu a:before{
     display:none;
}
/* side-full */
 #nav-5 a:after{
     position:absolute;
     left:0;
     top:50%;
     width:3px;
     height:0%;
     background-color:#fff;
     transform:translateY( -50% );
     -webkit-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     -o-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
 #nav-5 a:before{
     position:absolute;
     right:0;
     top:50%;
     width:3px;
     height:0%;
     background-color:#fff;
     transform:translateY( -50% );
     -webkit-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     -o-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
 #nav-5 a:hover:after{
    height:100%;
}
 #nav-5 a:hover:before{
    height:100%;
}
 #nav-5 .sub-menu a:after{
     display:none;
}
 #nav-5 .sub-menu a:before{
     display:none;
}
/* left-right-vertical */
 #nav-6 a{
    overflow: hidden;
     z-index:2
}
 #nav-6 a:before{
     position:absolute;
     right:100%;
     top:0;
     width:100%;
     height:100%;
     background-color:#a94646;
     z-index:-1;
     opacity:0;
     -webkit-transition:all .2s ease-out;
     -o-transition:all .2s ease-out;
     transition:all .2s ease-out;
     border-right:2px solid #e33939;
}
 #nav-6 a:hover:before{
    opacity:1;
     right:0;
}
 #nav-6 .sub-menu a:before{
     display:none;
}
/* bottom-top-horizontal */
 #nav-7{
}
 #nav-7 a{
    z-index:2;
    position:relative;
    overflow: hidden;
}
 #nav-7 a:before{
     position:absolute;
     left:0;
     top:100%;
     width:100%;
     height:100%;
     background-color:#a94646;
     z-index:-1;
     opacity:0;
     -webkit-transition:all .2s ease-out;
     -o-transition:all .2s ease-out;
     transition:all .2s ease-out;
     border-top:2px solid #e33939;
}
 #nav-7 a:hover:before{
    opacity:1;
     top:0;
}
 #nav-7 .sub-menu a:before{
     display:none;
}
/* btn-8 */
 #nav-8{
}
 #nav-8 a{
    z-index:2;
    overflow: hidden;
}
 #nav-8 a:before{
     position:absolute;
     left:0;
     bottom:100%;
     width:100%;
     height:100%;
     background-color:#a94646;
     z-index:-1;
     opacity:0;
     -webkit-transition:all .2s ease-out;
     -o-transition:all .2s ease-out;
     transition:all .2s ease-out;
     border-bottom:2px solid #e33939;
}
 #nav-8 a:hover:before{
    opacity:1;
     bottom:0;
}
 #nav-8 .sub-menu a:before{
     display:none;
}
/* btn-9 */
 #nav-9 a:after{
     position:absolute;
     left:50%;
     bottom:0;
     width:60%;
     height:3px;
     background-color:#e33939;
     transform:translateX( -50% );
     -webkit-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     -o-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     opacity:0;
}
 #nav-9 a:before{
     position:absolute;
     left:50%;
     top:0;
     width:60%;
     height:3px;
     background-color:#e33939;
     transform:translateX( -50% );
     -webkit-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     -o-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     opacity:0;
}
 #nav-9 a:hover:after{
    opacity:1;
     bottom:5px;
}
 #nav-9 a:hover:before{
    opacity:1;
     top:5px;
}
 #nav-9 .sub-menu a:after{
     display:none;
}
 #nav-9 .sub-menu a:before{
     display:none;
}
/* btn-10 */
 #nav-10 a{
    padding:0;
    display: block;
}
 #nav-10 a span{
     display:block;
     padding:4px 15px;
}
 #nav-10 a:before, #nav-10 a:after, #nav-10 a span:before, #nav-10 a span:after{
     position:absolute;
     background-color:#e33939;
}
 #nav-10 a:before{
     width:3px;
     height:0;
     left:0;
     bottom:0;
     -webkit-transition:all .1s .3s;
     -o-transition:all .1s .3s;
     transition:all .1s .3s;
}
 #nav-10 a:after{
     width:0;
     height:3px;
     left:0;
     top:0;
     -webkit-transition:all .1s .2s;
     -o-transition:all .1s .2s;
     transition:all .1s .2s;
}
 #nav-10 a span:before{
     width:3px;
     height:0;
     right:0;
     top:0;
     -webkit-transition:all .1s .1s;
     -o-transition:all .1s .1s;
     transition:all .1s .1s;
}
 #nav-10 a span:after{
     width:0;
     height:3px;
     right:0;
     bottom:0;
     -webkit-transition:all .1s;
     -o-transition:all .1s;
     transition:all .1s;
}
 #nav-10 a:hover:before{
     height:100%;
     -webkit-transition:all .1s;
     -o-transition:all .1s;
     transition:all .1s;
}
 #nav-10 a:hover:after{
     width:100%;
     -webkit-transition:all .1s .1s;
     -o-transition:all .1s .1s;
     transition:all .1s .1s;
}
 #nav-10 .sub-menu a{
     padding: 3px 22px;
}
 #nav-10 .sub-menu a:before{
     display:none;
}
 #nav-10 .sub-menu a:after{
     display:none;
}
 #nav-10 a:hover span:before{
    height:100%;
     -webkit-transition:all .1s .2s;
     -o-transition:all .1s .2s;
     transition:all .1s .2s;
}
 #nav-10 a:hover span:after{
    width:100%;
     -webkit-transition:all .1s .3s;
     -o-transition:all .1s .3s;
     transition:all .1s .3s;
}
/* btn-11 */
 #nav-11{
    position:relative;
}
 #nav-11 span.effect{
     position:absolute;
     left:0;
     bottom:0;
     width:0;
     height:3px;
     background-color:#e33939;
     -webkit-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     -o-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
 #nav-11 .sub-menu a span.effect{
     display:none;
}
/* btn-12 */
 #nav-12 a:after{
     position:absolute;
     left:50%;
     top:50%;
     width:0%;
     height:2px;
     background-color:#e33939;
     transform:translateX( -50% );
     -webkit-transition:width .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     -o-transition:width .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     transition:width .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
 #nav-12 a.off:after{
    width:90%;
}
 #nav-12 .sub-menu a:after{
     display:none;
     overflow: hidden;
}
/* btn-13 */
 #nav-13{
    position:relative;
}
 #nav-13 span.dot{
     width:7px;
     height:7px;
     position:absolute;
     left:0;
     bottom:0;
     transform:translateY( 50% );
     background-color:#000;
     border-radius:50%;
     -webkit-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     -o-transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     transition:all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     opacity:0;
}
 #nav-13 .sub-menu li:hover span.dot{
     opacity:0;
     display:none;
}
/* btn-14 */
 #nav-14 a{
     position:relative;
}
 #nav-14 a:after{
     width:100%;
     height:100%;
     position:absolute;
     left:0;
     top:0;
     border:0px solid #e33939;
     box-sizing:border-box;
     -webkit-transition:all .2s ease-in-out;
     -o-transition:all .2s ease-in-out;
     transition:all .2s ease-in-out;
     opacity:0;
}
 #nav-14 a:hover:after{
    border-width:5px;
     opacity:1;
}
 #nav-14 .sub-menu a:after{
     display:none;
}
/* btn-15 */
 #nav-15{
    overflow: hidden;
}
 #nav-15 a{
     position:relative;
     -webkit-transition:all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     -o-transition:all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     transition:all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
 #nav-15 a:after{
     content:attr( data-menu-name );
     display:block;
     width:100%;
     height:100%;
     position:absolute;
     left:0;
     top:0;
     text-align:center;
     -webkit-transform:translateY( -100% );
     -ms-transform:translateY( -100% );
     -o-transform:translateY( -100% );
     transform:translateY( -100% );
}
 #nav-15 a:hover{
     -webkit-transform:translateY( 100% );
     -ms-transform:translateY( 100% );
     -o-transform:translateY( 100% );
     transform:translateY( 100% );
}
 #nav-15 .sub-menu a:after{
     display:none;
}
 .footer {
     text-align: center;
     background: #0a0a0a;
     padding: 80px 0;
}
 .footer-info-wrapper:before {
     margin-bottom: 40px;
}
 .footer-info-wrapper:before, .footer-info-wrapper:after {
     display: block;
     content: '';
     width: 1px;
     height: 40px;
     background: #717171;
     margin-left: auto;
     margin-right: auto;
}
 .footer-logo {
     margin-bottom: 19px;
}
 .footer-desc {
     font-size: 14px;
     font-weight: 500;
     color:#d2cbcb;
     text-transform: uppercase;
     letter-spacing: 1.5px;
}
 .footer-info-wrapper:after {
     margin-top: 35px;
}
 .footer-info-wrapper:before, .footer-info-wrapper:after {
     display: block;
     content: '';
     width: 1px;
     height: 40px;
     background: #717171;
     margin-left: auto;
     margin-right: auto;
}
 .copyright-1 {
     text-align: center;
     background: #000;
     font-size: 12px;
     color: #b9b9b9;
     padding: 15px 0;
}
 .copyright-1 a {
     color:#b9b9b9;
     text-decoration: none;
     -webkit-transition: color 0.2s ease-in-out;
     -moz-transition: color 0.2s ease-in-out;
     -o-transition: color 0.2s ease-in-out;
     transition: color 0.2s ease-in-out;
}
 .copyright-1 a:hover {
     color: #fff;
}
 .footer-top-area{
     padding:100px 0px 45px 0px;
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 0%,#ff057c 100%);
}
 .footer-wrapper{
}
 .footer-text {
     color: #fff;
     font-size: 25px;
     font-weight: 600;
     margin-bottom: 32px;
}
 .footer-wrapper ul{
     margin:0px;
     padding:0px;
}
 .footer-link li {
     color: #cccccc;
     list-style:none;
     font-size: 14px;
     font-weight: 400;
     padding-bottom: 11px;
}
 .footer-link li:last-child{
    padding-bottom:0;
}
 .footer-icon {
     margin-top: 30px;
}
 .footer-icon a {
     color: #fff;
     font-size: 14px;
     margin-right: 14px;
     transition: .3s;
     border: 1px solid white;
     padding: 7px 10px;
     border-style: solid;
}
 .footer-icon a:hover{
    color:#000;
    background:#fff;
}
 .footer-icon a:last-child{
    margin-right:0;
}
 .footer-menu {
     padding: 0px;
     overflow: hidden;
     padding-right: 19px;
}
 .footer-menu li {
     display:block;
     padding-bottom: 10px;
     position: relative;
     width: 50%;
     float: left;
     list-style:none;
     transition: all ease-in-out .5s;
     -webkit-transition: all ease-in-out .5s;
}
 .footer-menu li:last-child{
    padding-bottom:0;
}
 .footer-menu li:before{
}
 .footer-menu li a {
     color: #cccccc;
     display: block;
     font-size: 15px;
     font-weight: 500;
     transition: .3s;
}
 .footer-menu li a:hover{
     color:#e33939;
     padding-left:15px;
}
 .footer-menu li a i {
     font-size: 10px;
     margin-right: 15px;
}
 .footers > li {
     margin-bottom: 24px;
     overflow: hidden;
}
 .footers > li:last-child{
    margin-bottom:0;
}
 .footer-img {
     float: left;
     margin-right: 20px;
}
 .footer-img a{
}
 .footer-info {
     overflow: hidden;
}
 .footer-info h4 {
    color:#fff;
     font-size: 18px;
     position: relative;
     line-height: 1.5em;
     font-weight: 600;
     margin-bottom: 4px;
}
 .footer-info h4 a:hover{
    color:#e33939;
}
 .footer-info span {
     color: #a9a9a9;
     display: inline-block;
     font-size: 12px;
}
 .footer-bootom-area {
     background-color: transparent;
     background-image: linear-gradient(144deg,#2f1171 0%,#710036 100%);
     padding:12px 18px;
}
 .copyright{
}
 .copyright > p {
     font-size: 15px;
     color: #fff;
     margin-bottom: 0;
     margin-top: 16px;
     padding-left: 50px;
}
 .footer-bottom-link {
     text-align: right;
     padding-right:25px;
}
 .footer-bottom-link li {
     display: inline-block;
     padding-right: 15px;
     margin-top: 14px;
}
 .footer-bottom-link li:last-child{
    margin-right:0;
}
 .footer-bottom-link li a {
     color: #fff;
     font-size: 15px;
     transition:.3s;
}
 .site-footer .upper-footer {
     background: #f3f5fa;
     padding: 80px 0;
}
 .site-footer .upper-footer ul {
     list-style: none;
}
 .site-footer .upper-footer ul, .site-footer .upper-footer li, .site-footer .upper-footer p, .site-footer .upper-footer a {
     color: #7a8595;
     margin: 0;
     padding: 0;
}
 .site-footer .widget > h3, .site-footer .widget .footer-logo {
     font-size: 24px;
     color: #1e2331;
     font-weight:600;
     text-transform: uppercase;
     margin: 0 0 2em;
     position: relative;
}
 .site-footer .about-widget .footer-logo:before {
     display: none;
}
 .site-footer .about-widget p {
     margin-top: -20px;
     margin-bottom: 2em;
     font-size: 14px;
}
 .site-footer .about-widget ul li {
     font-weight: 500;
     color: #7a8595;
     position: relative;
     padding-left: 45px;
     line-height: 1.78em;
     font-size: 15px;
}
 .site-footer .about-widget ul li i {
     background-color: #09a223;
     width: 30px;
     height: 30px;
     line-height: 30px;
     text-align: center;
     font-size: 18px;
     color: #fff;
     position: absolute;
     left: 0;
     top: 3px;
}
 .site-footer .about-widget ul > li + li {
     margin-top: 28px;
}
 .site-footer .quick-links-widget {
     overflow: hidden;
     margin-top: 20px;
}
 .newsletter-widget {
     margin-top: 20px;
}
 .site-footer .quick-links-widget a {
     font-weight: 500;
     color: #7a8595;
     font-size: 15px;
}
 .site-footer .quick-links-widget a:hover {
     color: #09a223;
     text-decoration:underline;
}
 .site-footer .quick-links-widget ul li + li {
     margin-top: 15px;
}
 .site-footer .quick-links-widget ul {
     width: 50%;
     float: left;
}
 .site-footer .recent-post-widget {
     padding-right: 65px;
     margin-top: 20px;
}
 .site-footer .recent-post-widget ul > li + li {
     margin-top: 20px;
     padding-top: 20px;
     border-top: 1px solid #e0e6ea;
}
 .site-footer .recent-post-widget li {
     position: relative;
}
 .site-footer .recent-post-widget .entry-details h4 {
     font-size: 16px;
     font-size: 1.06667rem;
     line-height: 1.5em;
     font-weight: 600;
     margin: 0;
     position: relative;
     top: -5px;
}
 .site-footer .recent-post-widget .entry-details h4 a {
     color: #1e2331;
}
 .site-footer .recent-post-widget .entry-details h4 a:hover {
     color: #09a223;
}
 .site-footer .recent-post-widget .entry-details .date {
     font-size: 12px;
     color: #7a8595;
     font-weight: 500;
}
 .site-footer .newsletter-widget p {
     margin-bottom: 1.5em;
     font-size: 15px;
}
 .site-footer .newsletter-widget input {
     width: calc(100% - 44px);
     height: 35px;
     font-size: 13px;
     padding: 6px 15px;
     border: 0;
     border-radius: 0;
     -webkit-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.05);
     box-shadow: 0 5px 7px rgba(0, 0, 0, 0.05);
}
 .site-footer .newsletter-widget form div {
     position: relative;
}
 .site-footer .newsletter-widget form div button {
     background-color: #09a223;
     width: 44px;
     height: 35px;
     text-align: center;
     color: #fff;
     border: 0;
     outline: 0;
     position: absolute;
     right: 0;
     top: 0;
     -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
     -o-transition: all 0.3s;
     -ms-transition: all 0.3s;
     transition: all 0.3s;
}
 .site-footer .newsletter-widget form div button:hover {
     background-color: #067219;
}
 .site-footer .copyright-info {
     background-color: #09a223;
     padding: 30px 0 15px 
}
 .site-footer .copyright-info p {
     color: #fff;
     margin: 0;
     font-size: 15px;
     float: left;
}
 .site-footer .copyright-info ul {
     display: inline-block;
     list-style: none;
     float: right;
     overflow: hidden;
}
 .site-footer .copyright-info ul li {
     float: left;
     font-size: 15px;
}
 .site-footer .copyright-info ul > li + li {
     margin-left: 25px;
}
 .site-footer .copyright-info a {
     color: #fff;
}
 .footer-top-area-3{
     padding:100px 0px 45px 0px;
     background-color: transparent;
     background-image: linear-gradient(144deg,#cccccc 0%,#ffffff 100%);
}
 .footer-top-area-3 .footer-text {
     color: #000;
     font-size: 25px;
     font-weight: 600;
     margin-bottom: 32px;
}
 .footer-top-area-3 .footer-link li {
     color: #000;
}
 .map-wrapper iframe {
     border: 0;
     width: 290px;
     height: 0%;
}
 .footer-top-area-3 .footer-info h4 {
     color:#00000094;
}
 .footer-top-area-3 .footer-info h4 a:hover {
     color: #000;
}
 .footer-top-area-3 .footer-menu li a {
     color:#666666;
}
 .footer-top-area-3 .footer-menu li a:hover{
     color:#000;
     padding-left:15px;
}
 .footer-top-area-3 .footer-icon {
     padding-left: 0px;
     text-align: left;
}
 .footer-top-area-3 .footer-icon a {
     width: 40px;
    /* display: inline-block;
     */
     text-align: center;
     height: 40px;
     line-height: 40px;
     border-width: 0px;
     margin-right: 8px;
     border-style: solid;
     border-radius: 26px;
     color: #0c0c0c;
     padding: 12px 15px;
     background: #eeeeee;
}
 .footer-top-area-3 .footer-icon a:hover{
     color:#fff;
     background:#000;
}
 .footer-bootom-area-3{
     background:#858788;
     padding: 12px 18px;
}
 .footer-top-area-4{
     background:#242C33;
     background-size: cover;
}
 .footer-top-area-4 .footer-top{
     background:rgba(15, 21, 26, 0.72);
     padding:70px 0;
}
 .footer-top-area-4 .footer-subscribe {
     border-top: 1px solid rgba(240, 240, 240, 0.2);
     position: relative;
     z-index: 10;
     background: rgba(15, 21, 26, 0.72);
     padding: 40px 0;
}
 .footer-top-area-4 .footer-subscribe h3 {
     margin: 0;
     font-family:"Montserrat", sans-serif;
     font-size: 24px;
     color: #FFFFFF;
     line-height: 45px;
     font-weight: 600;
}
 .footer-top-area-4 .footer-menu li a:hover {
     color: #e33939;
     padding-left: 15px;
}
 .footer-top-area-4 .footer-info h4 a:hover {
     color: #e33939;
}
 .footer-top-area-4 .footer-icon a:hover {
     color:#e33939;
}
 .footer-top-area-4 .footer-subscribe form.footer-subscribe-form {
     position: relative;
     width: 500px;
     max-width: 100%;
     height: 45px;
}
 .footer-top-area-4 .footer-subscribe form.footer-subscribe-form input {
     display: inline-block;
     vertical-align: middle;
     width: 100%;
     border-radius: 4px;
     height: 45px;
     border: none;
     outline: none;
     color: #C5C5C5;
     font-size: 15px;
     padding-left: 20px;
     position: absolute;
     top: 0;
     left: 0;
}
 .footer-top-area-4 .footer-subscribe form.footer-subscribe-form button {
     background: #e33939;
     color: #FFFFFF;
     font-size: 16px;
     font-family:"Poppins", sans-serif;
     font-weight: 500;
     text-transform: uppercase;
     width: 131px;
     height: 45px;
     border-top-right-radius: 4px;
     border-bottom-right-radius: 4px;
     display: inline-block;
     vertical-align: middle;
     border: none;
     outline: none;
     position: absolute;
     top: 0;
     right: 0;
     -webkit-transition: all .4s ease;
     transition: all .4s ease;
}
 .footer-bootom-area-4 {
     background:rgba(15, 21, 26, 0.93);
     padding:12px 18px;
}
 .subscribe-box {
     padding: 40px 0px;
     background-color: #fdc800;
     margin-bottom: -73px;
     position: relative;
     z-index: 8;
}
 .subscribe-text h1 {
     margin: 0;
     font-size: 36px;
     font-family: "Poppins", sans-serif;
     font-weight: 800;
     color: #002147;
     line-height: 1;
}
 .subscribe-text span {
     font-size: 14px;
     color: #002147;
     line-height: 1;
     margin: 0;
     margin-top: 10px;
     display: block;
}
 .email-submit-form {
     margin-top: 7px;
}
 .subscribe-form form {
     position: relative;
}
 .subscribe-form form input {
     height: 46px;
     background: #fff;
     border: 0;
     border-radius: 30px;
     padding-left: 20px;
     width: 100%;
}
 .subscribe-form form i {
     top: 50%;
     position: absolute;
     right: 35px;
     color: #002147;
     font-size: 15px;
     transform: translateY(-50%);
}
 .footer-area-5{
     padding:0px 0;
}
 .pt-150 {
     padding-top: 150px;
}
 .primary-bg {
     background: #002147;
}
 .footer-top {
     border-bottom: 1px solid rgba(255, 255, 255, .15);
}
 .pb-35 {
     padding:0px 35px;
}
 .mb-30 {
     margin-bottom: 30px;
}
 .gp-10{
     margin-top:23px;
}
 .footer-logo {
     margin-bottom: 19px;
}
 .footer-area-5 .footer-menu li {
     padding-bottom: 0px;
}
 .footer-para p {
     font-size: 13px;
     line-height: 26px;
     color: #fff;
     opacity: .66;
     margin: 0;
}
 .footer-socila-icon {
     margin-top: 24px;
}
 .footer-socila-icon span {
     font-size: 20px;
     color: #cbcbcb;
     font-weight: 700;
     line-height: 1;
}
 .footer-social-icon-list ul li a {
     color: #ffffff;
     opacity: .66;
}
 .footer-social-icon-list ul li a:hover {
     color: #fff;
     opacity: 1;
}
 .footer-social-icon-list {
     margin-top: 13px;
}
 .footer-social-icon-list ul {
     margin: 0px;
     padding: 0px;
}
 .footer-social-icon-list ul li {
     display: inline-block;
     margin-right: 19px;
     transition: .3s;
}
 .footer-heading h1 {
     font-size: 24px;
     color: #fdc800;
     font-family: "Poppins", sans-serif;
     font-weight: 700;
     line-height: 1;
     margin: 0;
     margin-bottom: 31px;
}
 .footer-menu ul {
     margin: 0px;
     padding: 0px;
}
 .footer-menu ul li {
     float: left;
     width: 50%;
     line-height: 1;
}
 .footer-menu ul li a {
     font-size: 13px;
     color: #fff;
     opacity: .66;
     padding: 0;
     display: block;
     line-height: 1;
     margin-bottom: 14px;
}
 .footer-area-5 .footer-menu ul li a:hover {
     color: #fdc800;
     opacity: 1;
     padding-left:0px;
}
 .mb-25 {
     margin-bottom: 25px;
}
 .recent-post-text {
     margin-left: 20px;
}
 .recent-post-text p {
     font-size: 13px;
     color: #fff;
     opacity: .66;
     line-height: 24px;
     margin-top: -8px;
     margin-bottom: 0;
}
 .footer-time {
     margin-top: 5px;
}
 .footer-time span {
     font-size: 12px;
     line-height: 1;
     margin: 0;
     color: #fdc800;
}
 span.footer-published-time {
     margin-left: 9px;
     color: #fff;
}
 .single-footer-contact-info {
     margin-bottom: 5px;
}
 .single-footer-contact-info span {
     font-size: 14px;
     color: #fdc800;
}
 span.footer-contact-list-text {
     font-size: 13px;
     color: #fff;
     opacity: .66;
     margin-left: 9px;
}
 .opening-time{
     margin-top: 15px;
}
 .opening-time span {
     display: block;
     color: #fff;
     font-size: 17px;
     font-weight: 500;
     font-family: "Poppins", sans-serif;
}
 span.opening-date {
     font-weight: inherit;
     font-size: 14px;
     font-family: "Poppins", sans-serif;
     margin-top: 10px;
}
 .pb-25 {
     padding-bottom: 25px;
}
 .pt-25 {
     padding-top: 25px;
}
 .footer-copyright span {
     font-size: 15px;
     color: #949494;
}
 .footer-top-area-6{
     padding:20px 0px 40px 0px;
     background:#656565;
}
 .footer-top-area-6 .footer-icon a:hover {
     color: #ab0505;
     background:#fff;
}
 .footer-top-area-6 .site-footer .newsletter-widget form div button {
     background-color: #fff;
     color: #000;
}
 .footer-subscribe-1{
     border-bottom: 1px solid rgba(255, 255, 255, 0.54);
     margin-bottom: 60px;
}
 .footer-top-area-6 .footer-menu li a:hover {
     color: #fff;
     padding-left: 15px;
}
 .footer-top-area-6 .gallery-widget {
     position: relative;
}
 .footer-top-area-6 .footer-widget {
     position: relative;
     z-index: 1;
}
 .footer-top-area-6 .gallery-widget .images-outer {
     position: relative;
     margin: 0px -3px;
}
 .footer-top-area-6 .gallery-widget .image-box {
     position: relative;
     float: left;
     width: 32%;
     padding: 0px 3px;
     margin-bottom: 6px;
     cursor: pointer;
}
 .footer-top-area-6 .gallery-widget .image-box img {
     position: relative;
     float: left;
     width: 100%;
     padding: 0px 3px;
     margin-bottom: 6px;
     cursor: pointer;
}
 .footer-bootom-area-6{
     background: #1d1d1d;
     padding: 12px 18px;
}
 .footer-top-area-7{
}
 .footer-top-area-7 .site-footer .upper-footer {
     background: #fff;
     padding: 100px 0;
}
 .footer-bootom-area-7{
     padding: 30px 0px;
}
 .footer-top-area-7 .copyright-info-7 p {
     font-size: 16px;
     color: #000;
     margin-bottom: 0;
     padding: 20px 0px;
}
 .site-footer .about-widget h3{
     margin-top:20px;
}
 .footer-top-area-7 .footer-icon {
     text-align: right;
}
 .footer-top-area-7 .footer-icon a {
     width: 39px;
     height: 39px;
     line-height: 39px;
     border-width: 0px;
     border-style: solid;
     border-radius: 26px;
     color: #0c0c0c;
     padding: 8px 13px;
     background: #eeeeee;
}
 .footer-top-area-7 .footer-icon a:hover{
     color:#fff;
     background:#000;
}
 .footer-top-area-7 .footer-socila-icon {
     margin-top: -15px;
}
 .footer-top-area-7 .site-footer .newsletter-widget input {
     border: 1px solid #ececec;
}
 .footer-top-area-7 .copyright-info-7{
     border-top: 1px solid #cac6c6;
}
 .copyright-info-7 p a{
     color: #09a223;
}
 .copyright-info-7 p a:hover{
     color: #067219;
}
 .bdt-section-muted {
     background-color: #5571ed;
     padding-top: 80px;
     padding-bottom: 80px;
     background: url(../img/slider/newsletter_bg.jpg) no-repeat;
     -webkit-background-size: cover;
     background-size: cover;
     background-position: center center;
     position: relative;
}
 .bdt-grid {
     margin: 0;
     padding: 0;
     list-style: none;
}
 .bdt-section-muted h1 {
     font-size: 1.8rem;
     margin-bottom: 0 !important;
     color:#fff;
     text-transform: uppercase;
     padding-bottom: 10px;
}
 .bdt-breadcrumb {
     display: inline-flex;
     flex-wrap: wrap;
     padding: 0;
     list-style: none;
}
 .bdt-breadcrumb>*>* {
     display: inline-block;
     font-size: .875rem;
     color: #fff;
}
 .bdt-breadcrumb>:nth-child(n+2):not(.bdt-first-column)::before {
     content: "/";
     display: inline-block;
     margin: 0 12px;
     color: #fff;
     font-size: 12px;
}
 .tp-divid {
     padding: 0px 0px;
}
 .tp-separator {
     display: -webkit-box;
     display: -webkit-flex;
     display: -ms-flexbox;
     flex-direction: row;
     align-items: center;
     padding: 60px 0px;
}
 .tp-separator .tp-sep-hldr {
     position: relative;
     -webkit-box-flex: 1;
     -webkit-flex: 1 1 auto;
     -ms-flex: 1 1 auto;
     flex: 1 1 auto;
     min-width: 11%;
}
 .heading {
     padding: 0px 15px;
     font-size: 16px;
     color: #6b6b6b;
     font-weight: 500;
}
 .tp-separator .tp-sep-hldr .tp-sep-lne {
     border-top: 1px solid #eeee;
     display: block;
     position: relative;
     width: 100%;
}
/** start google map **/
 .google-map-area{
     padding:80px 0px;
}
 .google-map-one .map-wrapper iframe{
     width:100%;
     height:481px;
}
 .google-map-one .map-info {
     left: 50%;
     margin-left: -29%;
     background: #fff;
     top: 50%;
     box-shadow: 0 5px 40px rgba(0,0,0,.07);
     position: absolute;
     width: 100%;
     max-width: 300px;
     transform: translate(-50%, -50%);
     -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
}
 .google-map-one .map-info {
     max-width: 340px;
     margin-left: -24%;
     padding: 2em 2.5em 2em 2.5em;
}
 .google-map-one .title {
     font-family: "Poppins", Sans-serif;
     font-size: 19px;
     margin: 20px 0px 10px 0px;
}
 .google-map-one.map-two .title {
     color:#fff;
}
 .google-map-one .openhrs {
     font-family: "Poppins", Sans-serif;
     font-size: 14px;
     color: #333333;
     font-weight: 300;
     margin: 4px 0px 5px 0px;
}
 .google-map-one .open {
     float: right;
}
 .google-map-one.map-two .openhrs {
     color: #fff;
}
 .google-map-one .iconinfo i {
     margin-right: 10px;
}
 .google-map-one .iconinfo{
     font-size:14px;
     font-weight: 300;
     font-family: "Poppins", Sans-serif;
}
 .google-map-one.map-two .iconinfo{
     color:#fff;
}
 .google-map-one.map-two .map-info {
     background-color: transparent;
     background-image: linear-gradient(144deg,#3e14a0 30%,#bf0707 100%);
}
 .google-map-one.map-four:before {
     background: rgba(0,0,0,0.3);
     content: "";
     height: 481px;
     filter: alpha(opacity=80);
     position: absolute;
     width: 100%;
     z-index:111;
     cursor: pointer;
}
 .google-map-one.map-four .map-info {
     z-index:333;
}
 .mr-30{
     margin-right:28px;
}
 .google-map-one.map-five .contact-text {
     border-bottom: 1px solid #cccccc;
     margin-bottom: 37px;
     padding-bottom: 27px;
     margin-top: 7px;
}
 .google-map-one.map-five .contact-text h4 {
     color: #3f3f3f;
     font-size: 26px;
     font-weight: 600;
     margin-bottom: 30px;
}
 .google-map-one.map-five .contact-text p {
     color: #595959;
     font-size: 15px;
     font-weight: 400;
     line-height: 25px;
     margin-bottom: 0;
}
 .google-map-one.map-five .contact-menu {
     padding: 0px;
}
 .google-map-one.map-five .contact-menu li {
     list-style: none;
     padding-bottom: 15px;
}
 .google-map-one.map-five .address i{
     margin-right: 6px;
}
 .google-map-one.map-five .address {
     color: #595959;
     font-size: 14px;
     font-weight: 600;
     font-family: 'poppins', sans-serif;
}
 .google-map-one.map-five .contact-link:last-child {
     padding-bottom: 0;
}
 .google-map-one.map-five .contact-link {
     color: #595959;
     font-size: 15px;
     font-weight: 400;
     padding-bottom: 16px;
     float: right;
}
 .google-map-one.map-five .contact-icon {
     display: block;
     float: right;
}
 .google-map-one.map-five .contact-icon a {
     width: 40px;
     display: inline-block;
     text-align: center;
     height: 40px;
     font-size: 14px;
     line-height: 40px;
     border-width: 0px;
     margin-right: 8px;
     border-style: solid;
     border-radius: 26px;
     color: #0c0c0c;
     background: #eeeeee;
}
 .google-map-one.map-five .contact-icon a:hover {
     color:#fff;
     background:#324ece;
}
 .google-map-one.map-five .contact-icon a:last-child {
     margin-right: 0;
}
/** end google map **/
/** start pricing tab **/
 .pricing-tab-one{
     padding:80px 0px;
     background: #f9f9f9;
}
 .tb-pricing3 {
     position: relative;
     padding: 40px;
     background-color: #fff;
}
 .tb-pricing3 {
     text-align: center;
}
 .tb-pricing3.bxshdw {
     box-shadow: 0px 20px 140px #d6dee49e;
}
 .tb-pricing3 .feat {
     width: 74px;
     height: 74px;
     border-radius: 0px;
     background: #324ece;
     color: #ffffff;
     font-family: "poppins", Sans-serif;
     font-size: 13px;
     font-weight: 600;
     line-height: 1.3em;
}
 .tb-pricing3 .title {
     color:#324ece;
     font-family: "Poppins", Sans-serif;
     font-size: 20px;
     font-weight: 600;
     text-transform: uppercase;
     margin: 0px 0px 0px 0px;
}
 .price {
     margin: 12px 0px 19px 0px;
}
 .pricee {
     color: #000000;
     font-family: "Poppins", Sans-serif;
     font-size: 44px;
     font-weight: 600;
}
 .tb-pricing3 ul {
     margin: 0;
     padding: 0;
     list-style-type: none;
}
 .tb-pricing3 .tooltip-sub {
     text-align: left;
     font-family: "poppins", Sans-serif;
     font-size: 15px;
     color: #ffffff;
     background: #324ece;
}
 .tb-pricing3 .tooltip-sub {
     color: #fff;
     width: 300px;
     padding: 20px;
     z-index: 1;
     font-size:14px;
     margin-top: 0px;
     opacity: 0;
     line-height: 1.7;
     background: #324ece;
     visibility: hidden;
     position: absolute;
     transition: opacity .3s ease-in;
}
 .tb-pricing3 .featur {
     position: relative;
}
 .tb-pricing3 li:hover .tooltip-sub {
     opacity: 1;
     visibility: visible;
     overflow: visible;
     margin-top: -10px;
}
 .tb-pricing3.ml-60 li:hover .tooltip-sub {
     left: -308px;
}
 .tb-pricing3.ml-60 li .tooltip-sub {
     text-align:right;
}
 .tb-pricing3 .feat {
     height: 80px;
     width: 80px;
     display: block;
     position: absolute;
     top: -20px;
     right: -20px;
     background-color:#324ece;
     text-align: center;
}
 .tb-pricing3 .feat span {
     position: absolute;
     left: 50%;
     top: 50%;
     -webkit-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
}
 .tb-pricing3 .tour-btn, .tb-pricing3 .dura {
     display: inline-block;
}
 .tb-pricing3 .dura {
     padding-left: 14px;
     color: #324ece;
     font-family: "poppins", Sans-serif;
     font-size: 15px;
     line-height: 1em;
     font-weight: 400;
}
 .tb-pricing3 li:not(:last-child) {
     margin-bottom: 9px;
}
 .tb-pricing3 .featur {
     font-family: "Poppins", Sans-serif;
     font-size: 14px;
}
 .tb-pricing3 .tour-btn {
     margin-top: 35px;
     width: 284px;
     padding: 13px 0px 13px 0px;
     font-family: "Poppins", Sans-serif;
     font-weight: 600;
     font-size:14px;
     text-transform: uppercase;
     background: #324ece;
     color: #ffffff;
     border-width: 0px;
     border-radius: 0px;
}
 .tb-pricing3.mr-60{
     margin-right:80px;
}
 .tb-pricing3.ml-60{
     margin-left:80px;
}
 .tb-pricing3 .featur {
     position: relative;
}
 .tb-pricing3 .dura {
     text-align: left;
}
 @media all and (min-width:0px) and (max-width: 960px) {
     .tb-pricing3 .tooltip-sub {
         display: none;
    }
}
 .tb-pricing3 .diskunt {
     padding-right: 14px;
     color: #cecece;
}
 .pricing-tab-one.ptab-two .tb-pricing3 .feat {
     width: 80px;
     height: 80px;
     border-radius: 50%;
}
 .pricing-tab-one.ptab-two .tb-pricing3 .tour-btn {
     border-radius: 42px;
}
 .ptab-three .tb-pricing3.bxshdw-active {
     box-shadow: 0px 20px 140px #d6dee49e;
     background:#fff;
}
 .ptab-three .tb-pricing3 {
     background: rgba(0,0,0,0);
}
 .ptab-three .tb-pricing3:hover{
     background:#fff;
     box-shadow: 0px 20px 140px #d6dee49e;
}
 .ptab-three .tb-pricing3 .feat{
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 43%,#ff0505 100%);
     border-radius: 50%;
}
 .ptab-three .tb-pricing3 .tour-btn {
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 43%,#ff0505 100%);
     border-radius:42px;
}
 .ptab-three .tb-pricing3 .tooltip-sub {
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 43%,#ff0505 100%);
     border-radius:10px;
}
 .ptab-four .tb-pricing3 .tour-btn {
     width: 170px;
     font-size: 13px;
}
 .ptab-four .tb-pricing3 {
     padding: 0px 0px 40px 0px;
}
 .ptab-four .tb-pricing3 .title {
     padding: 30px 0px;
}
 .ptab-five .tb-pricing3 .tour-btn {
     width: 170px;
     font-size: 13px;
}
 .ptab-five .tb-pricing3 {
     padding: 0px 0px 40px 0px;
     z-index: 2;
     -webkit-transition: 0.2s;
     transition: 0.2s;
}
 .ptab-five .tb-pricing3 .title {
     padding: 30px 0px;
     border-bottom: 1px solid #f75983;
     position: relative;
}
 .ptab-five .tb-pricing3 .title {
     color: #f75983;
}
 .ptab-five .tb-pricing3 .dura {
     color: #f75983;
}
 .ptab-five.twarp-five .tb-pricing3 i{
     border-color: #f75983 transparent transparent;
     background-color: #ffffff;
     border-radius: 0!important;
     border-style: solid;
     border-width: 84px 84px 0 0;
     content: "";
     height: 0;
     left: 0px;
     position: absolute;
     top: 0;
     width: 0;
     transition: transform ease-out 0.1s, background 0.2s;
}
 .ptab-five.twarp-five .tb-pricing3 i:hover:after {
     -webkit-animation: sonarEffect 1.3s ease-out 75ms;
     -moz-animation: sonarEffect 1.3s ease-out 75ms;
     animation: sonarEffect 1.3s ease-out 75ms;
}
 .ptab-five.twarp-five .tb-pricing3 i:hover{
     background: rgba(255,255,255,0.05);
     -webkit-transform: scale(0.93);
     -moz-transform: scale(0.93);
     -ms-transform: scale(0.93);
     transform: scale(0.93);
     color: #fff;
}
 .ptab-five.twarp-five .tb-pricing3::after{
     color: white;
     content: "";
     font-family: FontAwesome;
     font-size: 1.4rem;
     left: 12px;
     position: absolute;
     text-shadow: rgb(55, 197, 182) 0px 0px 2px;
     top: 8px;
}
 .ptab-five .tb-pricing3 .tour-btn {
     color: #545454;
     background: #f75983;
     background: transparent;
     border: 1px solid #f75983;
}
 .ptab-five .tb-pricing3.active {
     box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
     -webkit-transform: scale(1.1);
     transform: scale(1.1);
     -webkit-transform: translate(0, -10px);
     transform: translate(0, -10px);
     z-index: 3;
}
 .ptab-five .tb-pricing3:hover .tour-btn {
     color: #fff;
     background: #f75983;
     border: 1px solid #f75983;
}
 .ptab-five .tb-pricing3 .tour-btn.active{
     color: #fff;
     background: #f75983;
     border: 1px solid #f75983;
}
 .ptab-five .tb-pricing3:hover{
     box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
     -webkit-transform: scale(1.1);
     transform: scale(1.1);
     -webkit-transform: translate(0, -10px);
     transform: translate(0, -10px);
     z-index: 3;
}
 .ptab-six .tb-pricing3 li {
     border-bottom: 1px solid #eee;
}
 .ptab-six .tb-pricing3 li:last-child {
     border: none;
}
 .ptab-six .tb-pricing3 ul {
     margin: 0;
     padding: 0px 92px;
     list-style-type: none;
     line-height: 29px;
}
 .ptab-seven .tb-pricing3 .title {
     color:#fff;
     background:#f75983;
}
 .ptab-seven .tb-pricing3 .title {
     border-bottom: 0px solid #324ece;
}
 .ptab-five.ptab-seven .tb-pricing3.active{
     box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
     -webkit-transform: scale(1.1);
     transform: scale(1.1);
     -webkit-transform: translate(0, -10px);
     transform: translate(0, -10px);
     z-index: 3;
}
 .ptab-five.ptab-seven .tb-pricing3 .tour-btn {
     color: #fff;
     background: #f75983;
     border: 1px solid #f75983;
}
 .ptab-eight .tb-pricing3.bxshdw {
     box-shadow: none;
     border: 3px solid #324ece;
     border-radius: 10px;
}
 .ptab-eight .tb-pricing3 {
     background-color: transparent;
}
 .ptab-eight .tb-pricing3 .tour-btn {
     background: transparent;
     border:1px solid #324ece;
     border-radius:26px;
     color: #000;
}
 .ptab-eight .tb-pricing3:hover .tour-btn {
     background:#324ece;
     border:1px solid #324ece;
     border-radius:26px;
     color: #fff;
}
 .ptab-eight .tb-pricing3{
     transition: margin-top 0.3s linear 0s;
     -moz-transition: margin-top 0.3s linear 0s;
     -ms-transition: margin-top 0.3s linear 0s;
     -webkit-transition: margin-top 0.3s linear 0s;
}
 .ptab-eight .tb-pricing3:hover {
     margin-top: -30px;
     transition: margin-top 0.3s linear 0s;
     -moz-transition: margin-top 0.3s linear 0s;
     -ms-transition: margin-top 0.3s linear 0s;
     -webkit-transition: margin-top 0.3s linear 0s;
}
 .ptab-eight .tb-pricing3 .tooltip-sub {
     border-radius:10px;
}
 .ptab-eight .tb-pricing3 i{
     border-color: #324ece transparent transparent;
     background-color: #ffffff;
     border-radius: 0!important;
     border-style: solid;
     border-width: 64px 64px 0 0;
     content: "";
     height: 0;
     left: 0px;
     position: absolute;
     top: 0;
     width: 0;
}
 .pricing-tab-one.ptab-eight {
     background: #ffffff;
}
 .ptab-eight .tb-pricing3::after{
     color: white;
     content: "";
     font-family: FontAwesome;
     font-size: 1.4rem;
     left: 9px;
     position: absolute;
     text-shadow: rgb(55, 197, 182) 0px 0px 2px;
     top: 6px;
}
 .ptab-nine .tb-pricing3 {
     padding: 0px 0px 40px 0px;
}
 .ptab-nine .price {
     margin: 0px 0px 0px 0px;
     padding:12px 0px 19px 0px;
     background: #324ece;
     color:#fff;
}
 .ptab-nine .pricee {
     color: #fff;
}
 .ptab-nine .tb-pricing3 .dura {
     color: #fff;
}
 .ptab-nine .tb-pricing3 .title {
     background: #324ece;
     color:#fff;
     padding-top: 28px;
}
 .ptab-nine .tb-pricing3 li:not(:last-child) {
     margin-bottom: 0px;
     padding:14px 0px;
}
 .ptab-nine .tb-pricing3 li{
     margin-bottom: 0px;
     padding:14px 0px;
}
 .ptab-nine .tb-pricing3 li.list-padding{
     margin-bottom: 0px;
     margin-top:35px;
}
 .ptab-nine .tb-pricing3 li.list-bg{
     background:#f5f5f5;
}
 .ptab-nine .tb-pricing3{
     transition: margin-top 0.3s linear 0s;
     -moz-transition: margin-top 0.3s linear 0s;
     -ms-transition: margin-top 0.3s linear 0s;
     -webkit-transition: margin-top 0.3s linear 0s;
}
 .ptab-nine .tb-pricing3:hover {
     margin-top: -30px;
     transition: margin-top 0.3s linear 0s;
     -moz-transition: margin-top 0.3s linear 0s;
     -ms-transition: margin-top 0.3s linear 0s;
     -webkit-transition: margin-top 0.3s linear 0s;
}
 .ptab-ten .tb-pricing3 .tour-btn {
     width: 160px;
}
 .ptab-ten .tb-pricing3 {
     background-color: transparent;
     background-image: linear-gradient(144deg,#3e14a0 30%,#bb4242 100%);
}
 .ptab-ten .tb-pricing3 .title {
     color: #fff;
     padding: 30px 0px 20px 0px;
}
 .ptab-ten .tb-pricing3 {
     padding: 0px 0px 40px 0px;
}
 .ptab-ten .pricee {
     color: #fff;
}
 .ptab-ten .tb-pricing3 .dura {
     color: #fff;
}
 .ptab-ten .tb-pricing3 .featur {
     color: #fff;
}
 .ptab-ten .tb-pricing3 .tour-btn {
     background-color: transparent;
     background-image: linear-gradient(144deg,#3e14a0 30%,#bf0707 100%);
}
 .ptab-ten .tb-pricing3:hover .tour-btn {
     padding-left:15px;
}
 .ptab-ten .price {
     margin: 20px 0px 19px 0px;
}
 .ptab-eleven .tb-pricing3{
     -webkit-box-shadow: 0 15px 44px 0px rgba(171, 171, 171, 0.1);
     box-shadow: 0 15px 44px 0px rgba(171, 171, 171, 0.1);
     -webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
     -o-transition: all 0.5s;
     -ms-transition: all 0.5s;
     transition: all 0.5s;
}
 .ptab-eleven .tb-pricing3:hover {
     background: url(../img/tab.jpg) center center/cover no-repeat local;
}
 .ptab-eleven .tb-pricing3:before {
     content: "";
     height: 100%;
     filter: alpha(opacity=80);
     width: 100%;
     left: 0;
     top: 0;
}
 .ptab-eleven .tb-pricing3 .title {
     margin: 0px 0px 25px 0px;
}
 .ptab-eleven .tb-pricing3:hover .title {
     color: #fff;
}
 .ptab-eleven .tb-pricing3:hover .pricee {
     color: #fff;
}
 .ptab-eleven .tb-pricing3:hover .dura {
     color: #fff;
}
 .ptab-eleven .tb-pricing3:hover .featur {
     color: #fff;
}
 .ptab-eleven .tb-pricing3:hover .tour-btn {
     padding-left:15px;
}
 .ptab-twelve .tb-pricing3.bxshdw{
     box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
     border: 0px solid #f75983;
     -webkit-transition: 0.2s;
     transition: 0.2s;
     padding: 0px 0px 40px 0px;
}
 .ptab-twelve .tb-pricing3:hover{
     box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
     -webkit-transform: scale(1.1);
     transform: scale(1.1);
     -webkit-transform: translate(0, -10px);
     transform: translate(0, -10px);
     z-index: 3;
}
 .ptab-twelve .tb-pricing3 .title {
     padding: 30px 0px;
     position: relative;
}
 .ptab-twelve .tb-pricing3 .title {
     color:#000;
     border-bottom:1px solid #f75983;
     background: #fff;
}
 .ptab-twelve .tb-pricing3:hover .title {
     color:#fff;
     background: #f75983;
}
 .ptab-twelve .tb-pricing3.active .title {
     color:#fff;
     background: #f75983;
}
 .ptab-twelve .tb-pricing3 .dura {
     color: #f75983;
}
 .ptab-twelve .tb-pricing3 .tour-btn {
     background:transparent;
     border: 1px solid #f75983;
     color:#000;
}
 .ptab-twelve .tb-pricing3:hover .tour-btn {
     background:#f75983;
     color:#fff;
}
 .ptab-twelve .tb-pricing3.active .tour-btn {
     background:#f75983;
     color:#fff;
}
 .ptab-twelve .tb-pricing3 .tooltip-sub {
     background: #f75983;
}
 .ptab-twelve .tb-pricing3.active {
     box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
     -webkit-transform: scale(1.1);
     transform: scale(1.1);
     -webkit-transform: translate(0, -10px);
     transform: translate(0, -10px);
     z-index: 3;
}
/** end pricing tab **/
/** start accordion **/
 .accordion-area {
     padding:80px 20px;
}
 .accordion-bg{
     background:#f9f9f9;
}
 .accordion {
     max-width: 590px;
     margin: 0 auto;
     padding: 0;
}
 .accordion li {
     border-top: 1px solid #d9e5e8;
     position: relative;
     list-style:none;
}
 .accordion li p {
     display: none;
     padding: 30px 30px 30px;
     color: #777;
     margin-bottom: 0;
}
 .accordion a {
     width: 100%;
     display: block;
     cursor: pointer;
     font-weight: 600;
     line-height: 3;
     padding:6px 12px;
     font-size: 16px;
     background-color: #f7f9fb;
     text-indent: 15px;
     user-select: none;
}
 .accordion a:after {
     width: 8px;
     height: 8px;
     border-right: 1px solid #4a6e78;
     border-bottom: 1px solid #4a6e78;
     position: absolute;
     right: 24px;
     content: " ";
     top: 22px;
     transform: rotate(-45deg);
     -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
     transition: all 0.2s ease-in-out;
}
 .accordion p {
     font-size: 14px;
     line-height: 2;
     color:#9a9a9a;
     padding: 10px;
}
 .accordion a.active:after {
     transform: rotate(45deg);
     -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
     transition: all 0.2s ease-in-out;
}
 .accordion-two .accordion a{
     background:#324ece;
     color:#fff;
}
 .accordion-two .accordion a:after {
     border-right: 1px solid #fff;
     border-bottom: 1px solid #fff;
}
 .accordion-two .accordion a.active:after {
     border-right: 1px solid #fff;
     border-bottom: 1px solid #fff;
}
 .accordion-two .accordion a:hover{
     color:#fff !important;
}
 .accordion-three .accordion a.active{
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 30%,#ff0505 100%);
     color:#fff;
}
 .accordion-three .accordion a.active:after {
     border-right: 1px solid #fff;
     border-bottom: 1px solid #fff;
}
 .accordion{
     position:relative;
}
 .accordion-four .accordion:before {
     width: 1px;
     left: 16px;
     background: rgba(0,0,0,0.38);
}
 .accordion-four .accordion li {
     margin-bottom: 15px;
     border-top: none;
}
 .accordion-four .accordion a{
     background: #ffffff;
     border: 1px solid #ddd !important;
}
 .accordion-four .accordion li:(last-child) {
     margin-bottom: 0px;
}
 .accordion-four .accordion p {
     margin-bottom: 0px;
}
 .accordion-four .accordion a {
     padding-left: 38px;
}
 .accordion-four .accordion li p {
     margin-left: 25px;
}
 .accordion-four .accordion li p {
     padding: 30px 30px 15px;
}
 .accordion-four .accordion:before {
     position: absolute;
     content: '';
     height: 85%;
     width: 1px;
     background: #eeeeee;
     left: 26px;
     top: 16px;
     z-index: 1;
}
 .accordion-four .accordion span.bpack-accordion-icon {
     height: 35px;
     width: 35px;
     line-height: 35px;
     left: 8px;
     position: absolute;
     z-index: 1;
     top: 12px;
     border-radius: 50%;
     border: 1px solid #eee;
     text-align: center;
     color:#000000;
     display: inline-block;
     margin-right: 15px;
     background: #fff;
     -webkit-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
}
 .accordion-four .accordion a.active span.bpack-accordion-icon {
     color:#fff;
     background: #000;
}
 .accordion-four .accordion span i {
     position: absolute;
     left: -29px;
     top: 9px;
}
 .accordion-four .accordion span.accordion-wrap{
     position: relative;
     left: 0px;
}
 .accordion-four .accordion a:after {
     border-right: none;
     border-bottom: none;
}
.accordion-four .accordion a.active:after {
     border-right: none;
     border-bottom: none;
}
 .accordion-five .accordion-four .accordion li {
     border-top: 1px solid #fff;
}
 .accordion-five .accordion-four .accordion a{
     border: 1px solid #ddd !important;
}
 .accordion-five .accordion-four .accordion span.bpack-accordion-icon {
     color:#fff;
     background: #000;
}
 .accordion-five .accordion-four .accordion a.active span.bpack-accordion-icon {
     color:#000;
     background: #fff;
}
 .accordion-five .accordion-four .accordion a.active{
     background:#324ece;
     color:#fff;
}
 .accordion-six .accordion li {
     border-top:none;
}
 .accordion-six .accordion a{
     box-shadow: 0px 3px 15px 0px rgba(0,0,0,0.05);
     background:#fff;
}
 .accordion-six .accordion li {
     margin-bottom: 15px;
}
 .accordion-six .accordion li:(last-child) {
     margin-bottom: 0px;
}
 .accordion-seven .accordion a{
     background:#324ece;
     color:#fff;
}
 .accordion-seven .accordion a.active .bp-icon {
     content: "\f067";
     font-family:FontAwesome;
     width: 30px;
     height: 30px;
     line-height: 25px;
     border-radius: 50%;
     background: #fe7725;
     font-size: 12px;
     color: #fff;
     text-align: center;
     border: 3px solid #fff;
     position: absolute;
     top: 12px;
     right: 14px;
}
 .accordion-seven .accordion a.active .bp-icon i:before{
     top: 6px;
     text-align: center;
     right: 6px;
     position: absolute;
     content: "\f068";
     font-family:FontAwesome;
}
 .accordion-seven .accordion a .bp-icon i:before{
     content: "\f067";
     font-family:FontAwesome;
     position: absolute;
     right: 5px;
     top: 5px;
}
 .accordion-seven .accordion a .bp-icon {
     content: "\f067";
     font-family:FontAwesome;
     background: #696969;
     border: 3px solid #fff;
     position: absolute;
     width: 30px;
     font-size: 14px;
     vertical-align: middle;
     height: 30px;
     line-height: 25px;
     border-radius: 50%;
     top: 12px;
     right: 14px;
}
 .accordion-seven .accordion li {
     margin-bottom: 15px;
}
 .accordion-seven .accordion li:(last-child) {
     margin-bottom: 0px;
}
 .accordion-seven .accordion a:after {
     content: "";
     width: 17px;
     height: 7px;
     background: #fff;
     position: absolute;
     top: 24px;
     right: 0;
}
 .accordion-seven .accordion a:after {
     border-right: none;
     border-bottom: none;
     transform: rotate(0deg);
     -webkit-transition: ;
     -moz-transition: none;
     transition: none;
}
 .accordion-seven .accordion a:hover{
     color:#fff !important;
}
 .accordion-eight .accordion li {
     border-top:none;
}
 .accordion-eight .accordion a.active{
     background: #f5414a;
     color: #fff;
}
 .accordion-eight .accordion a{
     box-shadow: 0px 3px 15px 0px rgba(0,0,0,0.05);
     border-radius: 50px;
     background:#ffffff;
}
 .accordion-eight .accordion a:after {
     border-right: 1px solid #000;
     border-bottom: 1px solid #000;
}
 .accordion-eight .accordion a.active:after {
     border-right: 1px solid #fff;
     border-bottom: 1px solid #fff;
}
 .accordion-eight .accordion li {
     margin-bottom: 15px;
}
 .accordion-eight .accordion li:(last-child) {
     margin-bottom: 0px;
}
 .accordion-nine .accordion a{
     border-radius: 50px;
     background: #ffffff;
     border: 1px solid #ddd !important;
     border-top: none;
     padding: 2px 0px;
     padding-left: 50px;
}
 .accordion-nine .accordion li {
     border-top: none;
}
 .accordion-nine .accordion a:after {
     border-right: none;
     border-bottom: none;
     transform: rotate(0deg);
     -webkit-transition: ;
     -moz-transition: none;
     transition: none;
}
 .accordion-nine .accordion a.active:after {
     border-right: none;
     border-bottom: none;
}
 .accordion-nine .accordion li {
     margin-bottom: 15px;
}
 .accordion-nine .accordion li:(last-child) {
     margin-bottom: 0px;
}
 .accordion-nine .accordion a.active .bp-icon {
     content: "\f068";
     font-family:FontAwesome;
     font-weight: 900;
     width: 50px;
     height: 50px;
     line-height: 50px;
     border-radius: 50%;
     background: #ebb710;
     font-size: 16px;
     color: #fff;
     vertical-align: middle;
     text-align: center;
     border: 1px solid transparent;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.58);
     position: absolute;
     top: 0px;
     left: 0px;
     transition: all 0.3s ease 0s;
}
 .accordion-nine .accordion a.active .bp-icon i:before{
     top: 16px;
     text-align: center;
     left: 4px;
     position: absolute;
     content: "\f068";
     font-family:FontAwesome;
}
 .accordion-nine .accordion a .bp-icon i:before{
     content: "\f067";
     font-family:FontAwesome;
     position: absolute;
     left: 4px;
     top: 16px;
}
 .accordion-nine .accordion a .bp-icon {
     content: "\f067";
     background: #fff;
     font-family:FontAwesome;
     color: #0d345d;
     border: 1px solid #ddd;
     box-shadow: none;
     text-align: center;
     top: 0px;
     font-size: 16px;
     left: 0px;
     position:absolute;
     vertical-align: middle;
     width: 50px;
     height: 50px;
     line-height: 50px;
     border-radius:50%;
     transition: all 0.3s ease 0s;
}
 .accordion-nine .accordion li p {
     padding: 30px 30px 15px;
}
 .accordion-ten .accordion p:before {
     content: "";
     border-top: 15px solid #f7f9fb;
     border-left: 15px solid transparent;
     border-right: 15px solid transparent;
     position: absolute;
     top: 57px;
     left: 30px;
}
 .accordion-ten .accordion a:after {
     border-right: none;
     border-bottom: none;
     transform: rotate(0deg);
     -webkit-transition: ;
     -moz-transition: none;
     transition: none;
}
 .accordion-ten .accordion a.active:after {
     border-right: none;
     border-bottom: none;
}
 .accordion-ten .accordion a.active:before {
     font-family: FontAwesome;
     content: "\f176";
     font-weight: 600;
     width: 30px;
     height: 30px;
     line-height: 25px;
     font-size: 14px;
     color: #ddd;
     text-align: center;
     position: absolute;
     top: 15px;
     right: 14px;
}
 .accordion-ten .accordion a:before {
     font-family: FontAwesome;
     content: "\f175";
     font-weight: 600;
     width: 30px;
     height: 30px;
     line-height: 25px;
     font-size: 14px;
     color: #ddd;
     text-align: center;
     position: absolute;
     top: 15px;
     right: 14px;
}
/** end accordion **/
/** start tab **/
 .tab-area{
     padding:80px 20px;
}
 .tab-bg{
     background:#f9f9f9;
}
 .tab-warp{
     max-width: 590px;
     position:relative;
     margin:0 auto;
}
 .tab {
     position: relative;
     overflow: hidden;
     margin: 0 auto;
     line-height: 1.5;
     font-weight: 300;
     -webkit-font-smoothing: antialiased;
}
 .tabs {
     display: table;
     position: relative;
     margin: 0;
     padding: 0;
     width: 100%;
}
 .tabs li {
     list-style:none;
     float: left;
     line-height: 38px;
     padding: 0;
     position: relative;
}
 .tabs a {
     background-color: #eff0f2;
     border-bottom: 1px solid #fff;
     color: #888;
     font-weight: 500;
     display: block;
     letter-spacing: 0;
     outline: none;
     padding: 6px 25px;
     text-decoration: none;
     -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
     transition: all 0.2s ease-in-out;
     border-bottom: 2px solid blue;
}
 .tabs_item {
     display: none;
     padding: 30px 16px;
}
 .tabs_item p{
     padding: 0;
     margin:0;
     line-height: 2;
     color: #9a9a9a;
     font-size:14px;
}
 .tabs_item h4 {
     font-weight: bold;
     color: blue;
     font-size: 20px;
}
 .tabs_item img {
     width: 200px;
     float: left;
     margin-right: 30px;
}
 .tabs_item:first-child {
     display: block;
}
 .current a {
     color: #fff;
     background: #324ece;
}
 .tab-two .tabs a {
     border-bottom: none;
     border: 1px solid #ddd;
     background:#fff;
     position:relative;
}
 .tab-two .tabs li {
     padding-right: 10px;
}
 .tab-two .tabs .current a {
     color: #fff;
     background:#324ece;
}
 .tab-three .tabs .current a {
     color: #fff;
     background:#f75983;
}
 .tab-three .tabs a {
     border-bottom: 2px solid #f75983;
}
 .tab-three .tabs .current:before {
     content: "";
     border-top: 12px solid #f75983;
     border-left: 12px solid transparent;
     border-right: 12px solid transparent;
     position: absolute;
     top: 52px;
     left: 30px;
}
 .tab-four .tabs a {
     border-bottom: none;
     border-top: 2px solid #ddd;
}
 .tab-four .current a {
     color: #000;
     background: #ddd;
     border-top: 2px solid #324ece;
}
 .tab-five .tabs a {
     border-bottom: none;
}
 .tab-five .tabs_item {
     padding: 30px 16px;
     background: #324ece;
     color:#fff;
}
 .tab-five .tabs_item p{
     color:#fff;
}
 .tab-six .tabs a {
     box-shadow: 0px 3px 15px 0px rgba(0,0,0,0.05);
     background: #fff;
}
 .tab-six .tabs a {
     border-bottom: none;
}
 .tab-six .current a {
     color: #324ece;
     background: #fff;
}
 .tab-seven .current a {
     color: #fff;
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 30%,#ff0505 100%);
}
 .tab-seven .tabs a {
     border-bottom:none;
}
 .tab-eight .current a {
     color: #fff;
     background-color: transparent;
     background-image: linear-gradient(to right, #643094, #00bcd4e0);
}
 .tab-eight .tabs a {
     border-bottom: none;
}
 .tab-eight .tabs_item {
     padding: 30px 16px;
     background: linear-gradient(to right, #643094, #00bcd4e0);
     color:#fff;
}
 .tab-eight .tabs_item p{
     color:#fff;
}
/** end tab **/
/** start timeline **/
 .timeline_new_one {
     position: relative;
     min-height: 500px;
     width: 80%;
     padding: 60px 0;
     margin:0 auto;
}
 .timeline__bar {
     position: absolute;
     top: 0;
     left: 50%;
     width: 6px;
     height: 100%;
     -webkit-transform: translateX(-50%);
     transform: translateX(-50%);
     background-image: linear-gradient(144deg,#ff0505 30%,#e33939 100%);
}
 .timeline__bar:before, .timeline__bar:after {
     position: absolute;
     left: 50%;
     display: block;
     width: 15px;
     height: 15px;
     content: '';
     -webkit-transform: translateX(-50%);
     transform: translateX(-50%);
     border-radius: 50%;
}
 .timeline__bar:before {
     top: -1px;
     background-image: linear-gradient(144deg,#ff0505 30%,#e33939 100%);
}
 .timeline__bar:after {
     bottom: -1px;
     background-image: linear-gradient(144deg,#ff0505 30%,#e33939 100%);
}
 .timeline__date{
     background-image: linear-gradient(144deg, rgb(255, 5, 5) 30%, rgb(50, 21, 117) 100%);
     background-size: 100% 1162px;
     background-position: 0px -144px;
}
 .timeline__elem {
     position: relative;
     display: flex;
     flex-direction: column;
     margin-bottom: 30px;
}
 .timeline__elem:last-child {
     margin-bottom: 0;
}
 @media (min-width: 900px) {
     .timeline__elem {
         flex-direction: row;
    }
}
 @media (min-width: 900px) {
     .timeline__elem--right {
         justify-content: flex-end;
    }
}
 .timeline__date {
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     width: 70px;
     height: 70px;
     margin: auto;
     color: #fff;
     background-repeat: no-repeat;
     border-radius: 50%;
     border: 6px solid #fff;
}
 @media (min-width: 900px) {
     .timeline__date {
         position: absolute;
         top: 50%;
         left: 50%;
         -webkit-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
    }
}
 .timeline__date-day {
     font-size: 1.35rem;
     font-weight: 600;
}
 .timeline__date-month {
     font-size: .85rem;
}
 .timeline__event {
     position: relative;
     width: 90%;
     margin: 30px auto 0;
     box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
     background-color: #fff;
}
 @media (min-width: 900px) {
     .timeline__event {
         width: calc((100% - 70px - 8px * 4) / 2);
         margin: 0;
    }
}
 .timeline__event:before {
     position: absolute;
     top: 50%;
     display: none;
     width: 0;
     height: 0;
     content: '';
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
     border-top: 8px solid transparent;
     border-bottom: 8px solid transparent;
}
 .timeline__event:after {
     position: absolute;
     top: 50%;
     display: none;
     width: 16px;
     height: 16px;
     content: '';
     -webkit-transform: translateY(-50%) rotate(45deg);
     transform: translateY(-50%) rotate(45deg);
}
 .timeline__event--left:before {
     right: -8px;
     border-left: 8px solid #fff;
}
 .timeline__event--left:after {
     right: -7px;
     box-shadow: 2px -1px 1px 0 rgba(0, 0, 0, 0.08);
}
 .timeline__event--right:before {
     left: -8px;
     border-right: 8px solid #fff;
}
 .timeline__event--right:after {
     left: -7px;
     box-shadow: -2px 2px 1px 0 rgba(0, 0, 0, 0.08);
}
 .timeline__event-date-time {
     padding: 20px 15px 0;
     display: flex;
     margin-bottom: 15px;
     font-size: .8rem;
     color: rgba(44, 44, 44, 0.7);
}
 .timeline__event-date {
     margin-right: 10px;
}
 .timeline__event-title {
     padding: 0 15px;
     margin-bottom: 15px;
     font-size: 1.25rem;
     font-weight: 600;
}
 .timeline__event-descr {
     padding: 0 15px 20px;
     font-size: .9rem;
     line-height: 20px;
     color: #909090;
}
 .timeline__event-descr p {
     margin-bottom: 10px;
}
 .timeline__event-descr p:last-child {
     margin-bottom: 0;
}
 .timeline__event-actions {
     padding: 20px 15px;
     border-top: 1px solid rgba(160, 160, 160, 0.2);
}
 .timeline__event-action {
     transition-property: all;
     transition-duration: 0.2s;
     transition-timing-function: linear;
     transition-delay: 0s;
     margin-right: 24px;
     font-size: .9rem;
     font-weight: 500;
     color:#324ece;
     text-transform: uppercase;
}
 .timeline__event-action.bg {
     color:#ff3939;
}
 .timeline__event-action.bg:hover {
     color:#324ece;
}
 .timeline-bg{
     background:#f7f7f7;
}
 .timeline-area{
     padding:80px 0px 80px 0px;
}
 .roadmap-outer{
     overflow: hidden;
     position: relative;
}
 .roadmap-outer .roadmap{
     position: relative;
     margin-top: -63px;
}
 .roadmap-outer .roadmap:first-child{
     margin-top: 0px;
}
 .roadmap-outer .roadmap:before, .roadmap-outer .roadmap:after{
     content: "";
     display: block;
     width: 100%;
     clear: both;
}
 .roadmap-outer .roadmap:before{
     content: "";
     width: 100%;
     height: 100%;
     position: absolute;
     top: 0;
     right: 0;
     z-index: 2;
}
 .roadmap-outer .roadmap-icon{
     width: 210px;
     height: 210px;
     border-radius: 50%;
     border: 25px solid transparent;
     border-top-color: #f75983;
     border-right-color: #f75983;
     margin: auto;
     position: absolute;
     top: 0;
     left: 0;
     bottom: 0;
     right: 0;
     z-index: 1;
     transform: rotate(45deg);
}
 .roadmap-outer .year{
     display: block;
     width: 110px;
     height: 110px;
     line-height: 110px;
     border-radius: 50%;
     background: #fff;
     box-shadow: 0 10px 40px rgba(165,165,165,0.2);
     margin: auto;
     font-size: 24px;
     font-weight: 600;
     color: #f75983;
     text-align: center;
     position: absolute;
     top: 0;
     left: 0;
     bottom: 0;
     right: 0;
     transform: rotate(-45deg);
}
 .roadmap-outer .roadmap-content{
     width: 35%;
     float: right;
     background: #f75983;
     padding: 20px 20px;
     margin: 50px 0 51px;
     z-index: 1;
     position: relative;
     border-radius:5px;
}
 .roadmap-outer .roadmap-content:before{
     content: "";
     width: 20%;
     height: 15px;
     background:#f75983;
     position: absolute;
     top: 50%;
     left: -20%;
     z-index: -1;
     transform: translateY(-50%);
}
 .roadmap-outer h3{
     color: #fff;
     font-size: 20px;
     margin-bottom: 17px;
}
 .roadmap-outer p{
     color: rgba(255,255,255,0.7);
     margin: 0;
     font-size:15px;
}
 .roadmap-outer .roadmap:nth-child(2n) .roadmap-icon{
     transform: rotate(-135deg);
}
 .roadmap-outer .roadmap:nth-child(2n) .year{
     transform: rotate(135deg);
}
 .roadmap-outer .roadmap:nth-child(2n) .roadmap-content{
     float: left;
}
 .roadmap-outer .roadmap:nth-child(2n) .roadmap-content:before{
     left: auto;
     right: -20%;
}
 .roadmap-outer .roadmap:nth-child(2n) .roadmap-icon{
     border-top-color: #f75983;
     border-right-color: #f75983;
}
 .roadmap-outer .roadmap:nth-child(2n) .year{
     color: #f75983;
}
 .roadmap-outer .roadmap:nth-child(2n) .roadmap-content, .roadmap-outer .roadmap:nth-child(2n) .roadmap-content:before{
     background: #f75983;
}
 .roadmap-outer .roadmap:nth-child(3n) .roadmap-icon{
     border-top-color: #f75983;
     border-right-color: #f75983;
}
 .roadmap-outer .roadmap:nth-child(3n) .year{
     color: #f75983;
}
 .roadmap-outer .roadmap:nth-child(3n) .roadmap-content, .roadmap-outer .roadmap:nth-child(3n) .roadmap-content:before{
     background: #f75983;
}
 .roadmap-outer .roadmap:nth-child(4n) .roadmap-icon{
     border-top-color: #f75983;
     border-right-color: #f75983;
}
 .roadmap-outer .roadmap:nth-child(4n) .year{
     color: #f75983;
}
 .roadmap-outer .roadmap:nth-child(4n) .roadmap-content, .roadmap-outer .roadmap:nth-child(4n) .roadmap-content:before{
     background: #f75983;
}
 .timeline-three{
     position:relative;
}
 .timeline-three .roadmap-outer:before {
     position: absolute;
     left: 50%;
     width: 2px;
     height: 100%;
     margin-left: -1px;
     content: "";
     background: rgba(39, 37, 37, 0.07);
}
 .timeline-three .roadmap-outer .roadmap-icon {
     border-top-color: transparent;
     border-right-color: transparent;
}
 .timeline-three .roadmap-outer .roadmap:nth-child(2n) .roadmap-icon {
     border-top-color: transparent;
     border-right-color:transparent;
}
 .timeline-three .roadmap-outer .roadmap:nth-child(3n) .roadmap-icon {
     border-top-color: transparent;
     border-right-color: transparent;
}
 .timeline-three .roadmap-outer .roadmap-content {
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 30%,#ff0505 100%);
}
 .timeline-three .roadmap-outer .roadmap:nth-child(2n) .roadmap-content{
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 30%,#ff0505 100%);
}
 .timeline-three .roadmap-outer .roadmap:nth-child(3n) .roadmap-content {
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 30%,#ff0505 100%);
}
 .timeline-three .roadmap-outer .roadmap:nth-child(2n) .roadmap-content, .timeline-three .roadmap-outer .roadmap:nth-child(2n) .roadmap-content:before {
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 30%,#ff0505 100%);
}
 .timeline-three .roadmap-outer .roadmap:nth-child(3n) .roadmap-content, .timeline-three .roadmap-outer .roadmap:nth-child(3n) .roadmap-content:before {
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 30%,#ff0505 100%);
}
 .timeline-three .roadmap-outer .roadmap-content:before {
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 30%,#ff0505 100%);
}
 .timeline-area.bp-tl{
     background:#fff;
}
 .timeline_six .timeline__event {
     position: relative;
     width: 40%;
     margin:0;
     box-shadow: none;
     background: linear-gradient(to right, #643094, #00bcd4e0);
     border:1px solid #ddd;
}
 .timeline_six .timeline__date {
     border: 6px solid #ddd;
}
 .timeline_six .timeline__event-date-time {
     color: rgba(245, 245, 245, 0.7);
}
 .timeline_six .timeline__event-title {
     color:#fff;
}
 .timeline_six .timeline__event-descr p {
     color: #eaeaea;
}
 .timeline_six .timeline__event-actions {
     border-top: 1px solid #b5b5b5;
}
 .timeline_six .timeline__event-action {
     color: #bfbfbf;
}
 .timeline_six .timeline__event-action.bg {
     color: #000000d9;
}
 .timeline_six .timeline__event-action.bg:hover, .timeline_six .timeline__event-action:hover {
     color: #fff;
}
 .timeline_six .timeline__date{
     background-image: linear-gradient(144deg, rgb(169, 169, 169) 30%, rgb(158, 158, 158) 100%) !important;
     background-size: 100% 1162px !important;
     background-position: 0px -0px !important;
}
 .timeline_six .timeline__bar {
     background-image:linear-gradient(144deg, rgb(169, 169, 169) 30%, rgb(158, 158, 158) 100%);
}
 .timeline_six .timeline__bar:before {
     top: -1px;
     background-image: linear-gradient(144deg,#d8d8d8 30%,#505050 100%);
}
 .timeline_six .timeline__bar:after {
     background-image: linear-gradient(144deg,#d8d8d8 30%,#505050 100%);
}
/** end timeline **/
/** start button **/
 .button-bg{
     background:#f9f9f9;
}
 .button-area{
     padding:80px 0px;
}
 .button-bp{
     max-width: 700px;
     margin: 0 auto;
     padding: 0;
}
 .bpack-btn:hover {
     color: black !important;
}
 .bpack-btn {
     border: none;
     background-color: #000;
     color: #fff !important;
     padding: 14px 30px;
     display: inline-block;
     cursor:pointer;
     text-transform: capitalize;
     font-weight: 500;
     margin-left: 75px;
     outline: none;
     position: relative;
     overflow: hidden;
     font-size: 16px;
     -webkit-transform: translateZ(0);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
}
 .bpack-btn:before {
     z-index: -1;
     opacity: 0;
     content: "";
     position: absolute;
     top: 0px;
     bottom: 0px;
     left: 0px;
     right: 0px;
     border-radius: inherit;
     color:#000;
     background-color: #ffffff;
     -webkit-transition: all 0.3s;
     transition: all 0.3s;
     -webkit-transform: translateY(100%);
     transform: translateY(100%);
}
 .bpack-btn:after {
     position: absolute;
     top: 0px;
     bottom: 0px;
     left: 0px;
     right: 0px;
     border: 2px solid #000;
     content: '';
     border-radius: inherit;
}
 .btn-wht:hover:after {
     color:#000 !important;
}
 .bpack-btn:hover:before{
     -webkit-transform: translateY(0%);
     transform: translateY(0%);
     opacity:1;
}
 .bpack-btn-two {
     border: none;
     background-color: #000;
     color: #ffffff !important;
     cursor: pointer;
     display: inline-block;
     padding: 14px 30px;
     margin-left: 75px;
     text-transform: capitalize;
     font-weight: 500;
     outline: none;
     position: relative;
     overflow: hidden;
     font-size: 16px;
     border-radius: 30px;
     -webkit-transform: translateZ(0);
     -webkit-transition: all 0.35s ease;
     transition: all 0.35s ease;
}
 .bpack-btn-two:before {
     z-index:-1;
     opacity: 0;
     content: "";
     position: absolute;
     top: 0px;
     bottom: 0px;
     left: 0px;
     right: 0px;
     color:#000;
     border-radius: inherit;
     background-color: #ffffff;
     -webkit-transition: all 0.3s;
     transition: all 0.3s;
     -webkit-transform: translateY(-100%);
     transform: translateY(-100%);
}
 .bpack-btn-two:after {
     position: absolute;
     top: 0px;
     bottom: 0px;
     left: 0px;
     right: 0px;
     border: 2px solid #000;
     content: '';
     border-radius: inherit;
}
 .bpack-btn-two:hover {
     color: #000 !important;
}
 .bpack-btn-two:hover:before, .bpack-btn-two.hover:before {
     -webkit-transform: translateY(0%);
     transform: translateY(0%);
     opacity:1;
}
 .bpack-btn-three {
     background-color: #c47135;
     border: none;
     color: #ffffff !important;
     cursor: pointer;
     display: inline-block;
     margin-left:65px;
     font-size: 16px;
     line-height: 1em;
     outline: none;
     padding: 15px 40px 15px;
     position: relative;
     text-transform: capitalize;
     font-weight: 500;
}
 .bpack-btn-three:before, .bpack-btn-three:after {
     border-color: transparent;
     -webkit-transition: all 0.25s;
     transition: all 0.25s;
     border-style: solid;
     border-width: 0;
     content: "";
     height: 24px;
     position: absolute;
     width: 24px;
}
 .bpack-btn-three:before {
     border-color: #c47135;
     border-left-width: 2px;
     border-top-width: 2px;
     left: -5px;
     top: -5px;
}
 .bpack-btn-three:after {
     border-bottom-width: 2px;
     border-color: #c47135;
     border-right-width: 2px;
     bottom: -5px;
     right: -5px;
}
 .bpack-btn-three:hover, .bpack-btn-three.hover {
     background-color: #c47135;
}
 .bpack-btn-three:hover:before, .bpack-btn-three.hover:before, .bpack-btn-three:hover:after, .bpack-btn-three.hover:after {
     height: 100%;
     width: 100%;
}
 .bpack-btn-four {
     background-color: #c47135;
     border: none;
     color: #ffffff !important;
     cursor: pointer;
     display: inline-block;
     font-size: 16px;
     line-height: 1em;
     margin-left: 65px;
     outline: none;
     padding: 15px 40px 15px;
     position: relative;
     text-transform: capitalize;
     font-weight: 500;
}
 .bpack-btn-four:before, .bpack-btn-four:after {
     border-color: transparent;
     -webkit-transition: all 0.25s;
     transition: all 0.25s;
     border-style: solid;
     border-width: 0;
     content: "";
     height: 24px;
     position: absolute;
     width: 24px;
}
 .bpack-btn-four:before {
     border-color: #c47135;
     border-right-width: 2px;
     border-top-width: 2px;
     right: -5px;
     top: -5px;
}
 .bpack-btn-four:after {
     border-bottom-width: 2px;
     border-color: #c47135;
     border-left-width: 2px;
     bottom: -5px;
     left: -5px;
}
 .bpack-btn-four:hover, .bpack-btn-four.hover {
     background-color: #c47135;
}
 .bpack-btn-four:hover:before, .bpack-btn-four.hover:before, .bpack-btn-four:hover:after, .bpack-btn-four.hover:after {
     height: 100%;
     width: 100%;
}
 .button-five .bpack-btn-five {
     border: none;
     background-color: #000000;
     border-radius: 5px;
     color: #ffffff !important;
     cursor: pointer;
     padding: 14px 30px;
     display: inline-block;
     margin-left:75px;
     text-transform: capitalize;
     font-weight: 500;
     font-size: 16px;
     outline: none;
     position: relative;
     -webkit-transition: all 0.3s;
     transition: all 0.3s;
}
 .button-five .bpack-btn-five span {
     display: inline-block;
     -webkit-transition: all 0.3s;
     transition: all 0.3s;
     opacity: 0.8;
}
 .button-five .bpack-btn-five i {
     font-size: 15px;
     left: 20px;
     position:absolute;
     top: 18px;
     opacity: 0;
     -webkit-transition: all 0.3s;
     transition: all 0.3s;
}
 .button-five .bpack-btn-five:hover span, .button-five .bpack-btn-five.hover span {
     -webkit-transform: translate3d(10px, 0px, 0px);
     transform: translate3d(10px, 0px, 0px);
     opacity: 1;
}
 .button-five .bpack-btn-five:hover i, .button-five .bpack-btn-five.hover i {
     opacity: 0.8;
}
 .button-five .bpack-btn-five:active span {
     -webkit-transform: translate3d(14px, 0px, 0px);
     transform: translate3d(14px, 0px, 0px);
}
 .button-five .bpack-btn-five:active i {
     left: 18px;
}
 .button-five .bpack-btn-five.blue {
     background-color: #20638f;
}
 .button-five .bpack-btn-five.red {
     background-color: #962d22;
}
 .bpack-btn-six {
     color: #ffffff;
     cursor: pointer;
     padding: 14px 40px;
     display: inline-block;
     margin-left: 60px;
     font-weight:500;
     text-transform: capitalize;
     outline: none;
     position: relative;
     font-size: 16px;
     border: 3px solid #fff;
     background-color: transparent;
     border-radius: 15px 15px 0;
     -webkit-transition: all 0.3s;
     transition: all 0.3s;
}
 .bpack-btn-six:before {
     content: "";
     position: absolute;
     left: -3px;
     top: -3px;
     width: 0;
     height: 0;
     border-style: solid;
     border-width: 35px 35px 0 0;
     border-color: #c87f0a transparent transparent transparent;
     z-index: 1;
}
 .bpack-btn-six:hover, .bpack-btn-six.hover {
     border-color: #c87f0a;
}
 .bpack-btn-seven{
     text-decoration: none;
     color: #fff !important;
     background-color: #e33939;
     cursor:pointer;
     margin-left: 70px;
     font-weight:500;
     font-size:16px;
     text-transform: capitalize;
     padding: 12px 35px;
     border-radius: 3px;
     display: inline-block;
     position: relative;
     overflow: hidden;
}
 .bpack-btn-seven:before {
     position: absolute;
     content: "";
     top: 0px;
     height: 100%;
     left: -25%;
     width: 0%;
     background-color: #041230;
     transform: skew(50deg);
     transition-duration: .6s;
     z-index: 1;
}
 .bpack-btn-seven span {
     position: relative;
     z-index: 2;
}
 .bpack-btn-seven:hover:before {
     width: 180%;
}
 .bpack-btn-eight{
     text-decoration: none;
     color: #000 !important;
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     background: #fff;
     margin-left: 70px;
     font-weight:500;
     font-size:15px;
     cursor:pointer;
     text-transform: capitalize;
     padding: 12px 35px;
     border-radius: 3px;
     display: inline-block;
     position: relative;
     overflow: hidden;
     -webkit-transition: all 0.3s;
     transition: all 0.3s;
}
 .bpack-btn-eight:hover{
     background:#324ece;
     color:#fff !important;
}
 .bpack-btn-eight.active{
     background:#324ece;
     color:#fff !important;
}
 .bpack-btn-nine{
     text-decoration: none;
     color: #fff !important;
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 30%,#ff0505 100%);
     margin-left: 70px;
     font-weight:500;
     font-size:15px;
     cursor:pointer;
     text-transform: capitalize;
     padding: 12px 35px;
     border-radius: 3px;
     display: inline-block;
     position: relative;
     overflow: hidden;
     -webkit-transition: all 0.3s;
     transition: all 0.3s;
}
 .bpack-btn-nine:hover{
     background-color: transparent;
     background-image: linear-gradient(144deg,#e42020 30%,#e33939 100%);
}
 .bpack-btn-ten{
     text-decoration: none;
     color: #000 !important;
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     margin-left: 70px;
     border:2px solid #324ece;
     font-weight:500;
     font-size:15px;
     cursor:pointer;
     text-transform: capitalize;
     padding: 12px 35px;
     border-radius: 3px;
     display: inline-block;
     position: relative;
     overflow: hidden;
     -webkit-transition: all 0.3s;
     transition: all 0.3s;
}
 .bpack-btn-ten:hover{
     color:#fff !important;
     background:#324ece;
}
/** end button **/
/** start icon **/
 .icon-area{
     padding:80px 0px;
}
 .icon-bg{
     background:#c5c5c5;
}
 .icon-bp{
     max-width: 650px;
     margin: 0 auto;
     padding: 0;
}
 .bpack-icon-one {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-perspective: 50em;
     perspective: 50em;
     -webkit-transition: all 0.4s ease;
     transition: all 0.4s ease;
     background-color: #7e1946;
     border-radius: 5px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-sizing: 0 0 5px rgba(0, 0, 0, 0.5);
     color: #e6e6e6;
     display: inline-block;
     font-size: 35px;
     height: 75px;
     line-height: 75px;
     margin: 40px;
     position: relative;
     text-align: center;
     text-decoration: none;
     width: 75px;
}
 .bpack-icon-one:before {
     color: #fff;
     text-shadow: 1px 1px 5px #000000;
     opacity: 0.75;
}
 .bpack-icon-one:after {
     -webkit-transition: all 0.45s ease;
     transition: all 0.45s ease;
     -webkit-transform-origin: 100% 0;
     -ms-transform-origin: 100% 0;
     transform-origin: 100% 0;
     position: absolute;
     top: 0;
     left: 0;
     right: 50%;
     bottom: 0;
     content: '';
     background-color: #69153a;
     border-radius: 5px 0 0 5px;
     z-index: -1;
}
 .bpack-icon-one:hover, .bpack-icon-one:active, .bpack-icon-one.hover {
     color: #fff;
     background-color: #1d5599;
}
 .bpack-icon-one:hover:after, .bpack-icon-one:active:after, .bpack-icon-one.hover:after {
     -webkit-transform: rotateY(180deg);
     transform: rotateY(180deg);
     background-color: #2468bb;
}
 .bpack-icon-two {
     position: relative;
     font-size: 35px;
     color: #fff;
     width: 75px;
     margin: 40px;
     height: 75px;
     line-height: 75px;
     display: inline-block;
     text-align: center;
     -webkit-perspective: 50em;
     perspective: 50em;
     text-decoration: none;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
}
 .bpack-icon-two:after {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     border: 2px solid #fff;
     content: '';
     z-index: -1;
     border-radius: 50%;
}
 .bpack-icon-two:before {
     color: #fff;
}
 .bpack-icon-two:before, .bpack-icon-two:after {
     -webkit-transition: all 0.45s ease-in-out;
     transition: all 0.45s ease-in-out;
}
 .bpack-icon-two:hover, .bpack-icon-two:active, .bpack-icon-two.hover {
     color: #c0392b;
}
 .bpack-icon-two:hover:after, .bpack-icon-two:active:after, .bpack-icon-two.hover:after {
     border-color: transparent #c0392b;
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
}
 .bpack-icon-three {
     position: relative;
     font-size: 35px;
     color: #000;
     width: 75px;
     margin: 40px;
     height: 75px;
     line-height: 75px;
     display: inline-block;
     text-align: center;
     -webkit-perspective: 50em;
     perspective: 50em;
     text-decoration: none;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
}
 .bpack-icon-three:after {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     border: 2px solid #e6e6e6;
     content: '';
     z-index: -1;
     border-radius: 50%;
     -webkit-transform: rotateY(360deg);
     transform: rotateY(360deg);
}
 .bpack-icon-three:before, .bpack-icon-three:after {
     -webkit-transition: all 0.8s ease-in-out;
     transition: all 0.8s ease-in-out;
}
 .bpack-icon-three:hover, .bpack-icon-three:active, .bpack-icon-three.hover {
     color: #c0392b;
}
 .bpack-icon-three:hover:after, .bpack-icon-three:active:after, .bpack-icon-three.hover:after {
     border-color: #c0392b;
     -webkit-transform: rotateY(0);
     transform: rotateY(0);
}
 .bpack-icon-four {
     position: relative;
     font-size: 35px;
     color: #fff;
     width: 75px;
     margin: 40px;
     height: 75px;
     line-height: 75px;
     display: inline-block;
     text-align: center;
     -webkit-perspective: 50em;
     perspective: 50em;
     text-decoration: none;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
}
 .bpack-icon-four:after {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     border: 2px solid #fff;
     content: '';
     z-index: -1;
     border-radius: 50%;
     -webkit-transform: rotateX(360deg);
     transform: rotateX(360deg);
}
 .bpack-icon-four:before, .bpack-icon-four:after {
     -webkit-transition: all 0.8s ease-in-out;
     transition: all 0.8s ease-in-out;
}
 .bpack-icon-four:hover, .bpack-icon-four:active, .bpack-icon-four.hover {
     color: #324ece;
}
 .bpack-icon-four:hover:after, .bpack-icon-four:active:after, .bpack-icon-four.hover:after {
     border-color: #324ece;
     -webkit-transform: rotateX(0);
     transform: rotateX(0);
}
 .bpack-icon-five {
     position: relative;
     overflow: hidden;
     font-size: 35px;
     color: rgba(255, 255, 255, 0.8);
     margin: 38px;
     padding: 3px;
     display: inline-block;
     text-align: center;
     text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
     text-decoration: none;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
}
 .bpack-icon-five i::before {
     background-color: #2b2b2b;
     width: 75px;
     height: 75px;
     line-height: 75px;
     display:block;
}
 .bpack-icon-five:after {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     background-color: #f39c12;
     content: '';
     z-index: -1;
     display: inline-block;
     -webkit-transform: rotate(-45deg) scale(1.5) translate(0%, -100%);
     transform: rotate(-45deg) scale(1.5) translate(0%, -100%);
}
 .bpack-icon-five:before, .bpack-icon-five:after {
     -webkit-transition: all 0.4s ease-in-out;
     transition: all 0.4s ease-in-out;
}
 .bpack-icon-five:hover, .bpack-icon-five:active, .bpack-icon-five.hover {
     color: #ffffff;
}
 .bpack-icon-five:hover:after, .bpack-icon-five:active:after, .bpack-icon-five.hover:after {
     -webkit-transform: rotate(-45deg) scale(1.5) translate(0%, 0%);
     transform: rotate(-45deg) scale(1.5) translate(0%, 0%);
}
 .bpack-icon-six {
     position: relative;
     font-size: 35px;
     background-color: #7b7b7b;
     color: #ffffff;
     width: 75px;
     margin: 40px;
     height: 75px;
     line-height: 75px;
     display: inline-block;
     text-align: center;
     text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
     -webkit-transition: all 0.25s ease-in-out;
     transition: all 0.25s ease-in-out;
     text-decoration: none;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
}
 .bpack-icon-six:after {
     position: absolute;
     bottom: 0;
     height: 4px;
     left: 50%;
     right: 50%;
     background: #fff;
     content: '';
}
 .bpack-icon-six:before, .bpack-icon-six:after {
     -webkit-transition: all 0.25s ease-in-out;
     transition: all 0.25s ease-in-out;
}
 .bpack-icon-six:hover, .bpack-icon-six:active, .bpack-icon-six.hover {
     color: #ffffff;
     text-shadow: 3px 5px 5px rgba(0, 0, 0, 0.8);
}
 .bpack-icon-six:hover:after, .bpack-icon-six:active:after, .bpack-icon-six.hover:after {
     left: 0;
     right: 0;
}
 .bpack-icon-seven {
     position: relative;
     font-size: 35px;
     background-color: rgba(50, 50, 50, 0.3);
     color: #000;
     width: 75px;
     margin: 40px;
     height: 75px;
     line-height: 75px;
     display: inline-block;
     text-align: center;
     -webkit-transition: all 0.25s ease-in-out;
     transition: all 0.25s ease-in-out;
     text-decoration: none;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
}
 .bpack-icon-seven:before {
     z-index: 2;
     display: block;
     line-height: 75px;
}
 .bpack-icon-seven:after {
     position: absolute;
     bottom: 0;
     top: 100%;
     left: 0;
     right: 0;
     background: #d61313;
     content: '';
     z-index: -1;
}
 .bpack-icon-seven:before, .bpack-icon-seven:after {
     -webkit-transition: all 0.25s ease-in-out;
     transition: all 0.25s ease-in-out;
}
 .bpack-icon-seven:hover, .bpack-icon-seven:active, .bpack-icon-seven.hover {
     color: #ffffff;
}
 .bpack-icon-seven:hover:after, .bpack-icon-seven:active:after, .bpack-icon-seven.hover:after {
     top: 0;
}
 .bpack-icon-eight {
     position: relative;
     font-size: 35px;
     border: 1px solid #000000;
     color: #ffffff;
     width: 75px;
     margin: 40px;
     height: 75px;
     line-height: 70px;
     display: inline-block;
     text-align: center;
     border-radius: 50%;
     -webkit-transition: all 0.5s;
     transition: all 0.5s;
}
 .bpack-icon-eight * {
     -webkit-box-sizing: content-box;
     box-sizing: content-box;
}
 .bpack-icon-eight:before {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
}
 .bpack-icon-eight:after {
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 100%;
     background: #1a1a1a;
     content: '';
     z-index: -1;
     border-radius: 50%;
     -webkit-transition: all 0.5s;
     transition: all 0.5s;
     -webkit-transform: scale(0.98);
     transform: scale(0.98);
}
 .bpack-icon-eight:hover, .bpack-icon-eight .hover {
     color: #000000;
}
 .bpack-icon-eight:hover:after, .bpack-icon-eight .hover:after {
     -webkit-transform: scale(0);
     transform: scale(0);
     opacity: 0;
}
 .bpack-icon-eight:hover.blue, .bpack-icon-eight .hover.blue {
     color: #2980b9;
}
 .bpack-icon-eight:hover.yellow, .bpack-icon-eight .hover.yellow {
     color: #e67e22;
}
 .bpack-icon-eight:hover.green, .bpack-icon-eight .hover.green {
     color: #27ae60;
}
 .bpack-icon-eight:hover.red, .bpack-icon-eight .hover.red {
     color: #c0392b;
}
 .bpack-icon-eight.blue {
     border: 2px solid #2980b9;
}
 .bpack-icon-eight.blue:after {
     background: #409ad5;
}
 .bpack-icon-eight.yellow {
     border: 2px solid #e67e22;
}
 .bpack-icon-eight.yellow:after {
     background: #eb9950;
}
 .bpack-icon-eight.green {
     border: 2px solid #27ae60;
}
 .bpack-icon-eight.green:after {
     background: #36d278;
}
 .bpack-icon-eight.red {
     border: 2px solid #c0392b;
}
 .bpack-icon-eight.red:after {
     background: #d65548;
}
 .bpack-icon-nine {
     position: relative;
     font-size: 35px;
     background-color: #2b2b2b;
     color: #ffffff;
     width: 75px;
     margin: 40px;
     height: 75px;
     line-height: 75px;
     display: inline-block;
     text-align: center;
     text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
     -webkit-transition: all 0.25s ease-in-out;
     transition: all 0.25s ease-in-out;
     text-decoration: none;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
}
 .bpack-icon-nine:after {
     position: absolute;
     top: 0px;
     bottom: 0px;
     left: 0px;
     right: 0px;
     border: solid;
     border-width: 0 5px 5px 0;
     border-color: transparent #c87f0a #4f3204 transparent;
     content: '';
     z-index: -1;
}
 .bpack-icon-nine:before, .bpack-icon-nine:after {
     -webkit-transition: all 0.25s ease-in-out;
     transition: all 0.25s ease-in-out;
}
 .bpack-icon-nine:hover, .bpack-icon-nine:active, .bpack-icon-nine.hover {
     color: #ffffff;
     text-shadow: 3px 5px 5px rgba(0, 0, 0, 0.8);
}
 .bpack-icon-nine:hover:after, .bpack-icon-nine:active:after, .bpack-icon-nine.hover:after {
     -webkit-transform: translate(4px, 4px);
     transform: translate(4px, 4px);
}
 .bpack-icon-ten {
     position: relative;
     font-size: 35px;
     background-color: #262626;
     color: #ffffff;
     width: 75px;
     margin: 40px;
     height: 75px;
     line-height: 75px;
     display: inline-block;
     text-align: center;
     border-radius: 4px;
     background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 100%);
     background-image: linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 100%);
     box-shadow: inset 0px 1px 1px rgba(255, 255, 255, 0.2), inset 0px -1px 1px rgba(0, 0, 0, 0.5), 1px 1px 4px rgba(0, 0, 0, 0.5);
     text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
     -webkit-transform: rotate(45deg);
     transform: rotate(45deg);
     -webkit-transition: all 0.25s ease-in-out;
     transition: all 0.25s ease-in-out;
     z-index: 1;
     -webkit-box-sizing: content-box;
     box-sizing: content-box;
}
 .bpack-icon-ten i:before {
     z-index: 2;
     opacity: 0.75;
     display:block;
     -webkit-transform: rotate(-45deg);
     transform: rotate(-45deg);
}
 .bpack-icon-ten:after {
     position: absolute;
     display: block;
     top: 0;
     height: 100%;
     width: 100%;
     background: #000000;
     content: '';
     border-radius: 4px;
     z-index: -1;
     background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
     background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
     box-shadow: inset 0px 1px 1px rgba(255, 255, 255, 0.25), inset 0px -1px 1px rgba(0, 0, 0, 0.6);
}
 .bpack-icon-ten:before, .bpack-icon-ten:after {
     -webkit-transition: all 0.25s ease-in-out;
     transition: all 0.25s ease-in-out;
}
 .bpack-icon-ten:hover, .bpack-icon-ten.hover {
     text-shadow: 3px 5px 5px rgba(0, 0, 0, 0.8);
     color: #ffffff;
}
 .bpack-icon-ten:hover:after, .bpack-icon-ten.hover:after {
     opacity: 0;
}
 .bpack-icon-ten:hover i:before, .bpack-icon-ten.hover i:before {
     opacity: 1;
}
 .bpack-icon-ten:active {
     text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
     color: #ffffff;
}
 .bpack-icon-ten.blue {
     background-color: #2980b9;
}
 .bpack-icon-ten.blue:after {
     background-color: #2980b9;
}
 .bpack-icon-ten.yellow {
     background-color: #f39c12;
}
 .bpack-icon-ten.yellow:after {
     background-color: #f39c12;
}
 .bpack-icon-ten.green {
     background-color: #27ae60;
}
 .bpack-icon-ten.green:after {
     background-color: #27ae60;
}
 .bpack-icon-ten.red {
     background-color: #c0392b;
}
 .bpack-icon-ten.red:after {
     background-color: #c0392b;
}
/** end iocn **/

/** start images **/
 .images-bg{
     background:#f7f7f7;
}
 .images-area{
     padding:80px 0px;
}
 .images-area figcaption h3{
     font-family:"montserrat",sans-serif;
}
 .bpack-images-one {
     background-color: #000;
     color: #fff;
     display: inline-block;
     font-size: 24px;
     overflow: hidden;
     position: relative;
     text-align: center;
}
 .bpack-images-one:before, .bpack-images-one:after {
     background-color: rgba(0, 0, 0, 0.5);
     border-top: 50px solid rgba(0, 0, 0, 0.5);
     border-bottom: 50px solid rgba(0, 0, 0, 0.5);
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     content: '';
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
     z-index: 1;
     opacity: 0;
}
 .bpack-images-one:before {
     -webkit-transform: scaleY(2);
     transform: scaleY(2);
}
 .bpack-images-one:after {
     -webkit-transform: scaleY(2);
     transform: scaleY(2);
}
 .bpack-images-one img {
     vertical-align: top;
     max-width: 100%;
     backface-visibility: hidden;
}
 .bpack-images-one figcaption {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     align-items: center;
     z-index: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     line-height: 1.1em;
     opacity: 0;
     z-index: 2;
     -webkit-transition-delay: 0s;
     transition-delay: 0s;
}
 .bpack-images-one h3 {
     font-size: 1em;
     font-weight: 400;
     letter-spacing: 1px;
     font-size:14px;
     font-family:"montserrat",sans-serif;
     text-transform: capitalize;
     color: #fff;
}
 .bpack-images-one h3 span {
     display: block;
     font-weight: 600;
     font-size:20px;
     padding-top: 4px;
}
 .bpack-images-one a {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 3;
}
 .bpack-images-one:hover > img {
     opacity: 0.7;
}
 .bpack-images-one:hover:before, .bpack-images-one:hover:after{
     -webkit-transform: scale(1);
     transform: scale(1);
     opacity: 1;
}
 .bpack-images-one:hover figcaption{
     opacity: 1;
     -webkit-transition-delay: 0.1s;
     transition-delay: 0.1s;
}
 .bpack-images-two {
     position: relative;
     display: inline-block;
     overflow: hidden;
     margin: 10px;
     text-align: left;
     box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
 .bpack-images-two * {
     -webkit-transition: all 0.35s;
     transition: all 0.35s;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
}
 .bpack-images-two figcaption {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 20px;
     background-color: rgba(0, 0, 0, 0.75);
}
 .bpack-images-two h3 {
     font-size: 20px;
     font-weight: 500;
     line-height: 20px;
     margin: 4px 0;
     color: #fff;
}
 .bpack-images-two h5 {
     font-weight: 400;
     margin: 8px 0px;
     color: #bbb;
     letter-spacing: 0px;
     font-size: 13px;
}
 .bpack-images-two a {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
}
 .bpack-images-two:hover figcaption {
     top: 20px;
     left: 20px;
     right: 20px;
     bottom: 20px;
     background-color: #fff;
}
 .bpack-images-two:hover h3, .bpack-images-two:hover h5 {
     color: #333;
}
 .bpack-images-three {
     position: relative;
     display: inline-block;
     overflow: hidden;
     color: #fff;
     text-align: left;
     background: #000;
}
 .bpack-images-three *, .bpack-images-three:before, .bpack-images-three:after {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.4s ease;
     transition: all 0.4s ease;
}
 .bpack-images-three img {
     max-width: 100%;
     backface-visibility: hidden;
     vertical-align: top;
}
 .bpack-images-three:before, .bpack-images-three:after {
     position: absolute;
     top: 20px;
     right: 20px;
     content: '';
     background-color: #fff;
     z-index: 1;
     opacity: 0;
}
 .bpack-images-three:before {
     width: 0;
     height: 1px;
}
 .bpack-images-three:after {
     height: 0;
     width: 1px;
}
 .bpack-images-three figcaption {
     position: absolute;
     left: 0;
     bottom: 0;
     padding: 15px 20px;
}
 .bpack-images-three h3 {
     font-size: 20px;
     font-weight: 500;
     line-height: 20px;
     margin: 4px 0;
     color: #fff;
     opacity:0;
}
 .bpack-images-three h4 {
     font-weight: 400;
     margin: 8px 0px;
     color: #bbb;
     letter-spacing: 0px;
     font-size: 14px;
     opacity:0;
}
 .bpack-images-three a {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 1;
}
 .bpack-images-three:hover img{
     zoom: 1;
     filter: alpha(opacity=20);
     -webkit-opacity: 0.2;
     opacity: 0.2;
}
 .bpack-images-three:hover:before, .bpack-images-three:hover:after {
     opacity: 1;
     -webkit-transition-delay: 0.25s;
     transition-delay: 0.25s;
}
 .bpack-images-three:hover:before{
     width: 40px;
}
 .bpack-images-three:hover:after{
     height: 40px;
}
 .bpack-images-three:hover h3, .bpack-images-three:hover h4 {
     opacity: 1;
}
 .bpack-images-four {
     display: inline-block;
     overflow: hidden;
     position: relative;
     text-align: center;
}
 .bpack-images-four * {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.35s ease;
     transition: all 0.35s ease;
}
 .bpack-images-four:before, .bpack-images-four:after {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     -webkit-transition: all 0.35s ease;
     transition: all 0.35s ease;
     background-color: #000000;
     border-left: 3px solid #fff;
     border-right: 3px solid #fff;
     content: '';
     opacity: 0.9;
     z-index: 1;
}
 .bpack-images-four:before {
     -webkit-transform: skew(45deg) translateX(-155%);
     transform: skew(45deg) translateX(-155%);
}
 .bpack-images-four:after {
     -webkit-transform: skew(45deg) translateX(155%);
     transform: skew(45deg) translateX(155%);
}
 .bpack-images-four img {
     backface-visibility: hidden;
     max-width: 100%;
     vertical-align: top;
}
 .bpack-images-four figcaption {
     top: 50%;
     left: 50%;
     position: absolute;
     z-index: 2;
     -webkit-transform: translate(-50%, -50%) scale(0.5);
     transform: translate(-50%, -50%) scale(0.5);
     opacity: 0;
     -webkit-box-shadow: 0 0 10px #000000;
     box-shadow: 0 0 10px #000000;
}
 .bpack-images-four h3 {
     background-color: #000000;
     border: 2px solid #fff;
     color: #fff;
     font-size: 1em;
     font-weight: 500;
     margin: 0;
     font-size: 14px;
     padding: 10px 20px;
     text-transform: capitalize;
}
 .bpack-images-four a {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 3;
}
 .bpack-images-four:hover > img{
     opacity: 0.5;
}
 .bpack-images-four:hover:before{
     -webkit-transform: skew(45deg) translateX(-55%);
     transform: skew(45deg) translateX(-55%);
}
 .bpack-images-four:hover:after{
     -webkit-transform: skew(45deg) translateX(55%);
     transform: skew(45deg) translateX(55%);
}
 .bpack-images-four:hover figcaption {
     -webkit-transform: translate(-50%, -50%) scale(1);
     transform: translate(-50%, -50%) scale(1);
     opacity: 1;
}
 .bpack-images-five {
     position: relative;
     overflow: hidden;
     display: inline-block;
     background: #700877;
     background: -moz-linear-gradient(90deg, #700877 0%, #ff2759 100%, #ff2759 100%);
     background: -webkit-linear-gradient(90deg, #700877 0%, #ff2759 100%, #ff2759 100%);
     background: linear-gradient(90deg, #700877 0%, #ff2759 100%, #ff2759 100%);
}
 .bpack-images-five img, .bpack-images-five:before, .bpack-images-five:after {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.4s ease;
     transition: all 0.4s ease;
}
 .snip1561 img {
     max-width: 100%;
     backface-visibility: hidden;
     vertical-align: top;
}
 .bpack-images-five:before, .bpack-images-five:after {
     content: '';
     background-color: #fff;
     position: absolute;
     z-index: 1;
     top: 50%;
     left: 50%;
     opacity: 0;
     -webkit-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
}
 .bpack-images-five:before {
     width: 60px;
     height: 1px;
     left: 100%;
}
 .bpack-images-five:after {
     height: 60px;
     width: 1px;
     top: 0%;
}
 .bpack-images-five a {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 1;
}
 .bpack-images-five:hover img{
     zoom: 1;
     filter: alpha(opacity=50);
     -webkit-opacity: 0.5;
     opacity: 0.5;
}
 .bpack-images-five:hover:before, .bpack-images-five:hover:after {
     opacity: 1;
     top: 50%;
     left: 50%;
}
 .bpack-images-six {
     background-color: #222222;
     overflow: hidden;
     display: inline-block;
     position: relative;
     text-align: center;
}
 .bpack-images-six * {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.45s ease;
     transition: all 0.45s ease;
}
 .bpack-images-six:after {
     background-color: #de0000;
     bottom: 0;
     content: '';
     height: 0%;
     right: 0;
     position: absolute;
     width: 10px;
     -webkit-transition: all 0.45s ease;
     transition: all 0.45s ease;
}
 .bpack-images-six img {
     vertical-align: top;
     max-width: 100%;
     backface-visibility: hidden;
}
 .bpack-images-six figcaption {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     align-items: center;
     z-index: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     line-height: 1em;
     opacity: 0;
}
 .bpack-images-six h3 {
     font-size: 1em;
     font-weight: 400;
     letter-spacing: 1px;
     font-size:13px;
     text-transform: capitalize;
     color: #fff;
}
 .bpack-images-six h3 span {
     display: block;
     font-weight: 600;
     font-size:20px;
     padding-top: 4px;
}
 .bpack-images-six a {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 1;
}
 .bpack-images-six:hover > img {
     opacity: 0.1;
}
 .bpack-images-six:hover:after {
     height: 100%;
}
 .bpack-images-six:hover figcaption {
     opacity: 1;
}
 .bpack-images-seven {
     position: relative;
     overflow: hidden;
     display: inline-block;
     cursor:pointer;
     line-height: 1.2em;
}
 .bpack-images-seven *, .bpack-images-seven *:before, .bpack-images-seven *:after {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.35s ease;
     transition: all 0.35s ease;
}
 .bpack-images-seven:before {
     position: absolute;
     top: 10px;
     bottom: 10px;
     left: 10px;
     right: 10px;
     content: '';
     background-color: #c7c7c7;
     opacity: 0;
     -webkit-transition: all 0.35s ease;
     transition: all 0.35s ease;
}
 .bpack-images-seven img {
     max-width: 100%;
     vertical-align: top;
}

 .bpack-images-seven .icons {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .bpack-images-seven a {
     margin: 0px 8px;
     opacity: 0;
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
}
 .bpack-images-seven a i {
     display: block;
     font-size: 18px;
     line-height: 40px;
     width: 40px;
     background-color: #ffffff;
     text-align: center;
     color: #000000;
}
 .bpack-images-seven a i:hover {
     background-color: #000000;
     color: #ffffff;
     cursor: pointer;
}
 .bpack-images-seven:hover:before{
     opacity: 0.5;
}
 .bpack-images-seven:hover a{
     opacity: 1;
     -webkit-transform: translateX(0);
     transform: translateX(0);
}
 .bpack-images-seven:hover a:nth-child(2){
     -webkit-transition-delay: 0.1s;
     transition-delay: 0.1s;
}
 .bpack-images-seven:hover a:nth-child(3) {
     -webkit-transition-delay: 0.2s;
     transition-delay: 0.2s;
}
 .bpack-images-eight {
     position: relative;
     display: inline-block;
     overflow: hidden;
     text-align: left;
     background: #505050;
}
 .bpack-images-eight *, .bpack-images-eight:before, .bpack-images-eight:after {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.4s ease;
     transition: all 0.4s ease;
}
 .bpack-images-eight img {
     max-width: 100%;
     backface-visibility: hidden;
     vertical-align: top;
}
 .bpack-images-eight:before, .bpack-images-eight:after {
     content: '';
     background-color: #fff;
     position: absolute;
     z-index: 1;
     top: 50%;
     left: 50%;
     opacity: 0;
     -webkit-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
}
 .bpack-images-eight:before {
     width: 300px;
     height: 2px;
}
 .bpack-images-eight:after {
     height: 300px;
     width: 2px;
}
 .bpack-images-eight figcaption {
     position: absolute;
     left: 0;
     bottom: 0;
}
 .bpack-images-eight h3 {
     font-weight: 500;
     padding: 20px 20px;
     margin: 0;
     font-size: 20px;
     color: #fff;
     opacity: 0;
     -webkit-transform: translateY(100%);
     transform: translateY(100%);
}
 .bpack-images-eight a {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 1;
}
 .bpack-images-eight:hover img {
     zoom: 1;
     filter: alpha(opacity=25);
     -webkit-opacity: 0.25;
     opacity: 0.25;
}
 .bpack-images-eight:hover:before, .bpack-images-eight:hover:after{
     opacity: 1;
}
 .bpack-images-eight:hover:before {
     width: 50px;
}
 .bpack-images-eight:hover:after {
     height: 50px;
}
 .bpack-images-eight:hover h3 {
     -webkit-transform: translateY(0%);
     transform: translateY(0%);
     opacity: 1;
}
 .bpack-images-nine {
     position: relative;
     overflow: hidden;
     display: inline-block;
     text-align: center;
}
 .bpack-images-nine * {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.35s ease;
     transition: all 0.35s ease;
}
 .bpack-images-nine img {
     opacity: 1;
     width: 100%;
}
 .bpack-images-nine:after, .bpack-images-nine:before, .bpack-images-nine figcaption:after, .bpack-images-nine figcaption:before {
     background: #0a0a0a;
     width: 25%;
     position: absolute;
     content: '';
     opacity: 0;
     -webkit-transition: all 0.3s steps(4);
     transition: all 0.3s steps(4);
     z-index: 1;
     top: 100%;
     bottom: 0;
}
 .bpack-images-nine:before {
     left: 0;
     -webkit-transition-delay: 0;
     transition-delay: 0;
}
 .bpack-images-nine:after {
     left: 25%;
     -webkit-transition-delay: 0.1s;
     transition-delay: 0.1s;
}
 .bpack-images-nine figcaption:before {
     left: 50%;
     -webkit-transition-delay: 0.2s;
     transition-delay: 0.2s;
     z-index: -1;
}
 .bpack-images-nine figcaption:after {
     left: 75%;
     -webkit-transition-delay: 0.3s;
     transition-delay: 0.3s;
     z-index: -1;
}
 .bpack-images-nine figcaption {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 2;
     padding: 30px;
}
 .bpack-images-nine h2, .bpack-images-nine p, .bpack-images-nine .icons {
     margin: 0;
     width: 100%;
     opacity: 0;
}
 .bpack-images-nine h2 {
     font-weight: 600;
     text-transform: capitalize;
     color: #fff;
     font-size: 20px;
     margin: 15px 0px 25px 0px;
}
 .bpack-images-nine p {
     font-weight: 300;
     font-size: 14px;
     color: #fff;
}
 .bpack-images-nine .icons {
     position: absolute;
     bottom: 35px;
     left: 0;
     width: 100%;
}
 .bpack-images-nine i {
     padding: 0px 10px;
     display: inline-block;
     font-size: 20px;
     color: #ffffff;
     text-align: center;
     opacity: 0.8;
}
 .bpack-images-nine i:hover {
     opacity: 1;
}
 .bpack-images-nine:hover:after, .bpack-images-nine:hover:before, .bpack-images-nine:hover figcaption:after, .bpack-images-nine:hover figcaption:before {
     top: 0;
     opacity: 0.8;
}
 .bpack-images-nine:hover figcaption h2, .bpack-images-nine:hover figcaption p, .bpack-images-nine:hover figcaption .icons {
     -webkit-transition-delay: 0.4s;
     transition-delay: 0.4s;
}
 .bpack-images-nine:hover figcaption h2, .bpack-images-nine:hover figcaption .icons {
     opacity: 1;
}
 .bpack-images-nine:hover figcaption p{
     opacity: 0.7;
}
 .bpack-images-ten {
     position: relative;
     overflow: hidden;
     color: #ffffff;
     display: inline-block;
     font-size: 16px;
     background-color: #000000;
     border: 3px solid #fff;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transform: translateZ(0);
     transform: translateZ(0);
}
 .bpack-images-ten *, .bpack-images-ten *:before, .bpack-images-ten *:after {
     -webkit-transition: all 0.4s ease;
     transition: all 0.4s ease;
}
 .bpack-images-ten img {
     max-width: 100%;
     backface-visibility: hidden;
     vertical-align: top;
}
 .bpack-images-ten i {
     position: absolute;
     line-height: 50px;
     width: 50px;
     color: #fff;
     text-align: center;
     font-size: 22px;
     z-index: 1;
     bottom: 0;
     left: 0;
     -webkit-transform: translate(-100%, 100%);
     transform: translate(-100%, 100%);
}
 .bpack-images-ten i:after {
     position: absolute;
     bottom: 3px;
     left: 3px;
     content: '';
     width: 0;
     height: 0;
     border-style: solid;
     border-width: 75px 0 0 75px;
     border-color: transparent transparent transparent #34495e;
     z-index: -1;
}
 .bpack-images-ten a {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 1;
}
 .bpack-images-ten:hover img {
     zoom: 1;
     filter: alpha(opacity=70);
     -webkit-opacity: 0.7;
     opacity: 0.7;
     -webkit-transform: scale(1.2);
     transform: scale(1.2);
}
 .bpack-images-ten:hover i{
     -webkit-transform: translate(0, 0);
     transform: translate(0, 0);
}
/** end images **/
/** start profile card**/
 .profile-area{
     padding:80px 0px;
}
 .profile-card-one {
     position: relative;
     display: inline-block;
     overflow: hidden;
     margin: 10px;
     min-width: 250px;
     max-width: 310px;
     width: 100%;
     background-color: #ffffff;
     color: #2B2B2B;
     text-align: center;
     font-size: 16px;
     box-shadow: 0 0 20px rgba(0,0,0,.1);
}
 .profile-card-one .profile-image {
     padding: 15% 10% 0;
}
 .profile-card-one .profile-image img {
     max-width: 100%;
     vertical-align: top;
     position: relative;
     border-radius: 50%;
     max-width: 45%;
}
 .profile-card-one figcaption {
     padding: 5% 10% 15%;
}
 .profile-card-one h3 {
     text-transform: capitalize;
     font-size: 20px;
     font-weight: 600;
     font-family:"montserrat",sans-serif;
     margin: 5px 0;
     color: #000;
}
 .profile-card-one h5 {
     font-weight: 400;
     margin: 10px;
     text-transform: uppercase;
     color: #888;
     font-size: 12px;
}
 .profile-card-one p{
     color: #888;
     font-size: 14px;
     margin: 18px 0px 25px 0px;
}
 .profile-card-one .icons a {
     width: 35px;
     text-align: center;
     height: 35px;
     line-height: 35px;
     border-width: 0px;
     margin-right: 8px;
     border-style: solid;
     border-radius: 26px;
     color: #0c0c0c;
     padding: 11px 15px;
     background: #eeeeee;
}
 .profile-card-one .icons a:hover i{
     color: #ff3939;
}
 .profile-card-one .icons i a {
     text-decoration: none;
}
 .profile-two .profile-card-one {
     background-color: rgba(255,22,55, .7);
     box-shadow: 0 0 20px rgba(0,0,0,.1);
}
 .profile-two .profile-card-one.bg-gray {
     background-color: rgba(82, 26, 144, 0.7);
     box-shadow: 0 0 20px rgba(0,0,0,.1);
}
 .profile-two .profile-card-one.bg-black {
     background-color: rgba(24,25,29, .7);
     box-shadow: 0 0 20px rgba(0,0,0,.1);
}
 .profile-two .profile-card-one h3 {
     color: #fff;
     font-family:"montserrat",sans-serif;
}
 .profile-two .profile-card-one h5 {
     color: #fff;
}
 .profile-two .profile-card-one p{
     color: #fff;
}
 .profile-three .profile-card-one {
     background-color: transparent;
     background-image: linear-gradient(170deg,#e33939 30%,#ff0505 100%);
     box-shadow: 0 0 20px rgba(0,0,0,.1);
}
 .profile-three .profile-card-one h3 {
     color: #fff;
}
 .profile-three .profile-card-one h5 {
     color: #fff;
}
 .profile-three .profile-card-one p{
     color: #fff;
}
 .profile-card-four {
     position: relative;
     display: inline-block;
     margin: 10px;
     text-align: left;
     line-height: 1.4em;
     font-size: 14px;
     box-shadow: none !important;
}
 .profile-card-four .profile-image img {
     border-radius: 5px;
     max-width: 100%;
     height: 80px;
     vertical-align: top;
     float: left;
}
 .profile-card-four figcaption {
     width: 100%;
     background-color: #333333;
     color: #fff;
     padding: 25px;
     display: inline-block;
     margin-bottom: 15px;
     border-radius: 5px;
     position: relative;
}
 .profile-card-four figcaption:after {
     content: '';
     position: absolute;
     left: 32px;
     top: 100%;
     width: 0;
     height: 0;
     border-style: solid;
     border-width: 10px 10px 0 10px;
     border-color: #333333 transparent transparent transparent;
}
 .profile-card-four h3, .profile-card-four h4, .profile-card-four p {
     margin: 0 0 6px;
}
 .profile-card-four h3 {
     font-weight: 600;
     font-size: 20px;
     color: #fff;
     font-family:"montserrat",sans-serif;
}
 .profile-card-four h4 {
     color: #8c8c8c;
     font-weight: 400;
     font-size: 14px;
}
 .profile-card-four p {
     font-size: 0.9em;
     opacity: 0.9;
}
 .profile-card-four .icons {
     padding: 20px 90px;
}
 .profile-card-four a {
     padding: 10px 2px;
     display: inline-block;
     font-size: 16px;
     width:35px;
     height:35px;
     margin-left: 10px;
     line-height:16px;
     text-align: center;
     border-radius: 10px;
     background: #eeeeee;
     color: #000;
}
 .profile-card-four a:hover {
     background:#000;
     color:#fff;
}
 .profile-card-five {
     position: relative;
     margin: 10px;
     color: #000000;
     text-align: center;
     line-height: 1.4em;
     font-size: 14px;
     box-shadow: none !important;
}
 .profile-card-five .profile-image {
     display: inline-block;
     width: 80%;
     z-index: 1;
     position: relative;
     padding: 10px;
     border: 2px solid #e8b563;
}
 .profile-card-five .profile-image img {
     max-width: 100%;
     vertical-align: top;
}
 .profile-card-five figcaption {
     width: 100%;
     background-color: #F2F2F2;
     color: #555;
     padding: 125px 25px 25px;
     margin-top: -100px;
     display: inline-block;
}
 .profile-card-five h3, .profile-card-five h4, .profile-card-five p {
     margin: 0 0 10px;
}
 .profile-card-five h3 {
     font-weight: 600;
     font-size: 20px;
     color: #000;
     font-family:"montserrat",sans-serif;
     text-transform: capitalize;
}
 .profile-card-five h5 {
     color: #8c8c8c;
     font-weight: 400;
     font-size: 12px;
     text-transform: uppercase;
}
 .profile-card-five p {
     font-size: 0.9em;
     letter-spacing: 1px;
     opacity: 0.9;
}
 .profile-card-five .icons {
     text-align: center;
     width: 100%;
}
 .profile-card-five i {
     padding: 10px 8px;
     display: inline-block;
     font-size: 16px;
     font-weight: normal;
     color: #e8b563;
     opacity: 0.75;
}
 .profile-card-five i:hover {
     opacity: 1;
     -webkit-transition: all 0.35s ease;
     transition: all 0.35s ease;
}
 .profile-card-six {
     position: relative;
     overflow: hidden;
     margin: 10px;
     color: #ffffff;
     text-align: left;
     line-height: 1.4em;
     background-color: #141414;
}
 .profile-card-six * {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.25s ease;
     transition: all 0.25s ease;
}
 .profile-card-six img {
     width: 100%;
     vertical-align: top;
     opacity: 0.85;
}
 .profile-card-six figcaption {
     width: 100%;
     background-color: #141414;
     padding: 25px;
     position: relative;
}
 .profile-card-six figcaption:before {
     position: absolute;
     content: '';
     bottom: 100%;
     left: 0;
     width: 0;
     height: 0;
     border-style: solid;
     border-width: 55px 0 0 400px;
     border-color: transparent transparent transparent #141414;
}
 .profile-card-six figcaption a {
     padding: 10px 0px;
     border: 1px solid #ffffff;
     color: #ffffff;
     font-size: 0.7em;
     text-transform: uppercase;
     margin: 10px 0;
     display: inline-block;
     opacity: 0.65;
     width: 47%;
     text-align: center;
     text-decoration: none;
     font-weight: 600;
     letter-spacing: 1px;
}
 .profile-card-six figcaption a:hover {
     opacity: 1;
}
 .profile-card-six .profile {
     border-radius: 50%;
     position: absolute;
     bottom: 100%;
     left: 25px;
     z-index: 1;
     max-width: 90px;
     opacity: 1;
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
 .profile-card-six .follow {
     margin-right: 4%;
     border-color: #b92929;
     color: #b92929;
    ;
}
 .profile-card-six h2 {
     margin: 0 0 5px;
     font-weight: 600;
     font-family:"montserrat",sans-serif;
     font-size: 20px;
     color: #fff;
}
 .profile-card-six h2 span {
     display: block;
     font-size: 14px;
     color: #afafaf;
     font-weight: 400;
     padding: 10px 0px;
}
 .profile-card-six p {
     margin: 0 0 10px;
     font-size: 0.8em;
     opacity: 0.8;
}
 .profile-card-seven {
     position: relative;
     overflow: hidden;
     margin: 10px;
     background: #000000;
     color: #333;
     text-align: left;
     box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
 .profile-card-seven * {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
     transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
 .profile-card-seven img {
     width: 100%;
     vertical-align: top;
}
 .profile-card-seven figcaption {
     position: relative;
     background-color: #ffffff;
     padding: 20px 25px 50px;
}
 .profile-card-seven h3 {
     position: absolute;
     font-size: 20px;
     bottom: 100%;
     font-family:"montserrat",sans-serif;
     text-transform: capitalize;
     padding: 10px 25px;
     border-radius: 0 5px 0 0;
     margin: 0;
     left: 0;
     font-weight: 600;
     background-color: #000000;
     color: #ffffff;
}
 .profile-card-seven h3 span {
     font-weight: 400;
     text-transform: uppercase;
     font-size: 12px;
     padding-left: 10px;
}
 .profile-card-seven p {
     font-size: 14px;
     font-weight: 400;
     color:#737373;
     text-align: left;
     margin: 0;
     line-height: 1.6em;
}
 .profile-card-seven .icons {
     position: absolute;
     bottom: 0;
     right: 25px;
}
 .profile-card-seven i {
     margin: 0 2px;
     display: inline-block;
     font-size: 16px;
     color: #ffffff;
     width: 35px;
     height: 35px;
     line-height: 35px;
     text-align: center;
     background: #000000;
     box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
     border-radius: 5px 5px 0 0;
}
 .profile-card-seven i:hover {
     background-color: #000000;
     color: white !important;
}
 .profile-card-seven a {
     opacity: 0.8;
     display: inline-block;
}
 .profile-card-seven a:hover {
     opacity: 1;
}
 .profile-card-seven.blue {
     background-color: #2472a4;
}
 .profile-card-seven.blue figcaption:after, .profile-card-seven.blue h3, .profile-card-seven.blue i {
     background-color: #2472a4;
}
 .profile-card-seven.red {
     background-color: #ab3326;
}
 .profile-card-seven.red figcaption:after, .profile-card-seven.red h3, .profile-card-seven.red i {
     background-color: #ab3326;
}
 .profile-card-seven.green {
     background-color: #229955;
}
 .profile-card-seven.green figcaption:after, .profile-card-seven.green h3, .profile-card-seven.green i {
     background-color: #229955;
}
 .profile-card-seven.orange {
     background-color: #d67118;
}
 .profile-card-seven.orange figcaption:after, .profile-card-seven.orange h3, .profile-card-seven.orange i {
     background-color: #d67118;
}
 figure.snip1165.navy {
     background-color: #2b3c4e;
}
 .profile-card-seven.navy figcaption:after, .profile-card-seven.navy h3, .profile-card-seven.navy i {
     background-color: #2b3c4e;
}
 .profile-card-seven:hover img {
     -webkit-transform: scale(1.1);
     transform: scale(1.1);
}
 .profile-card-eight {
     position: relative;
     overflow: hidden;
     margin: 10px;
     background: #ffffff;
     color: #000000;
}
 .profile-card-eight * {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.35s ease-in-out;
     transition: all 0.35s ease-in-out;
}
 .profile-card-eight img {
     max-width: 100%;
     position: relative;
     display: block;
}
 .profile-card-eight:before {
     position: absolute;
     content: '';
     height: 120%;
     width: 150%;
     z-index: 1;
     top: -60%;
     left: -60%;
     background: rgba(255, 255, 255, 0.7);
     border: 1px solid #fff;
     border-radius: 50%;
     -webkit-transition: all 0.4s ease-in-out;
     transition: all 0.4s ease-in-out;
     -webkit-transform: skewX(-30deg) translateX(-20%);
     transform: skewX(-30deg) translateX(-20%);
     -webkit-box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.5);
     box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.5);
}
 .profile-card-eight figcaption {
     padding-left: 30px;
     position: absolute;
     left: 0;
     top: 30px;
     width: 60%;
     z-index: 1;
     opacity: 0;
}
 .profile-card-eight figcaption h2, .profile-card-eight figcaption p {
     margin: 0;
     text-align: left;
     padding: 5px 0 0;
     width: 100%;
}
 .profile-card-eight figcaption h2 {
     font-size: 20px;
     font-weight: 600;
     font-family:"montserrat",sans-serif;
     text-transform: uppercase;
}
 .profile-card-eight figcaption h2 span {
     font-weight: 400;
     font-size:14px;
     text-transform: capitalize;
}
 .profile-card-eight figcaption p {
     font-weight: 400;
     font-size: 0.8em;
     opacity: 0.8;
}
 .profile-card-eight figcaption .icons {
     width: 100%;
     padding: 8px 0;
}
 .profile-card-eight figcaption .icons i {
     display: inline-block;
     font-size: 16px;
     background: #000000;
     color: #ffffff;
     opacity: 0;
     margin-right: 5px;
     height: 35px;
     width: 35px;
     text-align: center;
     line-height: 35px;
     border-radius: 50%;
}
 .profile-card-eight figcaption a {
     opacity: 0.7;
}
 .profile-card-eight figcaption a:hover {
     opacity: 1;
}
 .profile-card-eight .position {
     position: absolute;
     bottom: 0;
     width: 100%;
     text-align: right;
     padding: 15px 30px;
     font-size: 0.9em;
     opacity: 1;
     font-weight: 500;
     color: #ffffff;
     background: #000000;
}
 .profile-card-eight.blue .icons i {
     background: #164666;
}
 .profile-card-eight.blue .position {
     background: #20638f;
}
 .profile-card-eight.red .icons i {
     background: #6d2018;
}
 .profile-card-eight.red .position {
     background: #962d22;
}
 .profile-card-eight.yellow .icons i {
     background: #924d10;
}
 .profile-card-eight.yellow .position {
     background: #bf6516;
}
 .profile-card-eight.green .icons i {
     background: #145b32;
}
 .profile-card-eight.green .position {
     background: #1e8449;
}
 .profile-card-eight:hover figcaption, .profile-card-eight.hover figcaption, .profile-card-eight:hover .icons i, .profile-card-eight.hover .icons i {
     opacity: 1;
     -webkit-transition-delay: 0.2s;
     transition-delay: 0.2s;
}
 .profile-card-eight:hover:before, .profile-card-eight.hover:before {
     -webkit-transform: skewX(0deg) translateX(0px);
     transform: skewX(0deg) translateX(0px);
}
/** end profile card **/
/** start product card **/
 .product-area{
     padding:80px 0px;
}
 .product-card-one {
     position: relative;
     display: inline-block;
     overflow: hidden;
     margin: 10px;
     font-size: 16px;
     background-color: #fff;
     color: #111;
     line-height: 1.2em;
     text-align: left;
}
 .product-card-one *, .product-card-one *:before, .product-card-one *:after {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.35s ease;
     transition: all 0.35s ease;
}
 .product-card-one img {
     max-width: 100%;
     vertical-align: top;
}
 .product-card-one figcaption {
     padding: 16px 20px;
     background: #f7f7f7;
}
 .product-card-one h3 {
     font-size: 20px;
     font-weight: 600;
     text-transform:capitalize;
     margin: 0 0 4px;
}
 .product-card-one .price {
     margin: 8px 0;
     font-weight: 400;
     color: #4da3e2;
     font-size: 1.2rem;
}
 .product-card-one .icons {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 10px;
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
}
 .product-card-one .icons a {
     margin: 2px;
     opacity: 0;
     -webkit-transform: translateY(50%);
     transform: translateY(50%);
}
 .product-card-one .icons a i {
     display: block;
     font-size: 18px;
     line-height: 40px;
     width: 40px;
     background-color: #ffffff;
     text-align: center;
     color: #000000;
}
 .product-card-one .icons a i:hover {
     background-color: #4da3e2;
     color: #ffffff;
     cursor: pointer;
}
 .product-card-one:hover a, .product-card-one.hover a {
     opacity: 1;
     -webkit-transform: translateX(0);
     transform: translateX(0);
}
 .product-card-one:hover a:nth-child(2), .product-card-one.hover a:nth-child(2) {
     -webkit-transition-delay: 0.1s;
     transition-delay: 0.1s;
}
 .product-card-one:hover a:nth-child(3), .product-card-one.hover a:nth-child(3) {
     -webkit-transition-delay: 0.2s;
     transition-delay: 0.2s;
}
 .product-card-two {
     position: relative;
     margin: 10px;
     background: #ffffff;
     text-align: center;
     display:inline-block;
     color: #000000;
     box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
     font-size: 16px;
}
 .product-card-two * {
     -webkit-box-sizing: border-box;
     box-sizing: padding-box;
     -webkit-transition: all 0.2s ease-out;
     transition: all 0.2s ease-out;
}
 .product-card-two img {
     width: 100%;
     vertical-align: top;
     position: relative;
     background-color: #666666;
     padding-top: 40px;
}
 .product-card-two figcaption {
     padding: 20px;
}
 .product-card-two h3, .product-card-two p {
     margin: 0;
}
 .product-card-two h3 {
     font-size: 20px;
     margin-top: 14px;
     font-weight: 600;
     margin-bottom: 5px;
     text-transform: capitalize;
}
 .product-card-two p {
     font-size: 14px;
     letter-spacing: 0px;
     font-weight: 400;
     color: #9c9c9c;
     margin-top: 10px;
}
 .product-card-two .price {
     font-weight: 500;
     font-size: 1.4em;
}
 .product-card-two .price s {
     margin-right: 5px;
     opacity: 0.5;
     font-size: 0.9em;
}
 .product-card-two i {
     position: absolute;
     top: 0;
     left: 50%;
     -webkit-transform: translate(-50%, 0%);
     transform: translate(-50%, 0%);
     width: 56px;
     line-height: 56px;
     text-align: center;
     border-radius: 50%;
     background-color: #666666;
     color: #ffffff;
     font-size: 20px;
}
 .product-card-two a {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 1;
}
 .product-card-two:hover i, .product-card-two:hover img {
     background-color: #324cec;
}
 .product-card-two:hover i {
     -webkit-transform: translate(-50%, 5px);
     transform: translate(-50%, 5px);
}
 .product-three .product-card-two {
     box-shadow: none;
     border:1px solid #ddd;
}
 .product-three .product-card-two img {
     background: #324cec;
}
 .product-three .product-card-two:hover img {
     background: #fff;
}
 .product-three .product-card-two i {
     background-color: #fff;
     color: #000;
}
 .product-three .product-card-two:hover i {
     background-color: #324cec;
     color: #fff;
}
 .product-three .product-card-two:hover i {
     -webkit-transform: translate(-50%, 0px);
     transform: translate(-50%, 0px);
}
 .product-card-four {
     position: relative;
     margin: 10px;
     background: #ffffff;
     text-align: center;
     color: #000000;
     box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
     font-size: 16px;
     padding: 15px;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.2s ease-out;
     transition: all 0.2s ease-out;
}
 .product-card-four * {
     -webkit-box-sizing: padding-box;
     box-sizing: padding-box;
     -webkit-transition: all 0.2s ease-out;
     transition: all 0.2s ease-out;
}
 .product-card-four img {
     max-width: 100%;
     vertical-align: top;
     position: relative;
}
 .product-card-four figcaption {
     padding: 20px 15px;
}
 .product-card-four h3, .product-card-four p {
     margin: 0;
}
 .product-card-four h3 {
     font-size:20px;
     font-weight: 600;
     margin-top: 18px;
     margin-bottom: 5px;
     text-transform: capitalize;
}
 .product-card-four p {
     font-size: 14px;
     letter-spacing: 0px;
     font-weight: 400;
     color: #9c9c9c;
     margin-top: 14px;
}
 .product-card-four .price {
     font-weight: 500;
     font-size: 1.4em;
     line-height: 48px;
     letter-spacing: 1px;
}
 .product-card-four .price s {
     margin-right: 5px;
     opacity: 0.5;
     font-size: 0.9em;
}
 .product-card-four i {
     position: absolute;
     bottom: 0;
     left: 50%;
     -webkit-transform: translate(-50%, 50%);
     transform: translate(-50%, 50%);
     width: 60px;
     height:60px;
     line-height: 52px;
     text-align: center;
     border-radius: 50%;
     background-color: #666666;
     color: #ffffff;
     font-size: 20px;
     border: 4px solid #d2d2d2;
}
 .product-card-four a {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 1;
}
 .product-card-four:hover {
     -webkit-transform: translateY(-5px);
     transform: translateY(-5px);
}
 .product-card-four:hover i {
     background-color: #324ece;
}
 .product-card-five {
     position: relative;
     overflow: hidden;
     background: #1a1a1a;
     color: #ffffff;
     text-align: center;
     border-radius: 8px;
     box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
 .product-card-five * {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.35s ease;
     transition: all 0.35s ease;
}
 .product-card-five .images-poduct {
     background-color: #000000;
     width: 50%;
     overflow: hidden;
}
 .product-card-five img {
     max-width: 100%;
     vertical-align: top;
}
 .product-card-five figcaption {
     position: absolute;
     width: 50%;
     right: 0;
     top: 50%;
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
     padding: 10px 35px;
}
 .product-card-five h3, .product-card-five p, .product-card-five .price {
     margin: 0 0 8px;
}
 .product-card-five h3 {
     position: absolute;
     width: 50%;
     top: 10px;
     text-transform: uppercase;
     font-weight: 600;
     color: #ffffff;
     font-size:18px;
     letter-spacing: 0px;
     z-index: 1;
}
 .product-card-five p {
     font-size:12px;
     color: #9c9c9c;
     font-weight:400;
}
 .product-card-five .rating {
     position: absolute;
     width: 50%;
     line-height: 44px;
     left: 0;
     bottom: 0;
     background-color: rgba(0, 0, 0, 0.3);
}
 .product-card-five .rating a{
     color: #efcc25;
}
 .product-card-five .rating a:last-child{
     color: #;
}
 .product-card-five .price {
     color: #ffffff;
     font-size: 1.3em;
     opacity: 0.8;
}
 .product-card-five .price s {
     display: inline-block;
     padding: 0 8px 0 0;
     font-size: 0.85em;
     color: #f39c12;
}
 .product-card-five .add-to-cart {
     text-decoration: none;
     position: absolute;
     bottom: 0;
     right: 0;
     font-weight: 600;
     width: 50%;
     background-color: rgba(0, 0, 0, 0.2);
     line-height: 44px;
     font-size: 0.75em;
     text-transform: uppercase;
     color: #ffffff;
}
 .product-card-five:hover img{
     opacity: 0.6;
     -webkit-transform: scale(1.1);
     transform: scale(1.1);
}
 .product-card-five:hover .add-to-cart {
     background-color: rgba(0, 0, 0, 0.5);
}
 .product-card-six {
     position: relative;
     overflow: hidden;
     margin: 10px;
     background: #000000;
     display:inline-block;
     color: #333;
     text-align: left;
     box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
 .product-card-six * {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
     transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
 .product-card-six img {
     width: 100%;
     vertical-align: top;
}
 .product-card-six figcaption {
     position: relative;
     background-color: #ffffff;
     padding: 30px 25px 50px;
}
 .product-card-six h3 {
     position: absolute;
     bottom: 100%;
     text-transform: capitalize;
     padding: 0px 25px;
     line-height: 44px;
     margin: 0;
     font-size:18px;
     left: 0;
     font-weight: 600;
     background-color: #000000;
     color: #ffffff;
}
 .product-card-six h3 span {
     font-weight: 500;
}
 .product-card-six h3:before {
     position: absolute;
     left: 100%;
     border-style: solid;
     border-width: 44px 0 0 12px;
     border-color: transparent transparent transparent #000000;
     content: '';
     top: 0;
}
 .product-card-six p {
     font-size: 14px;
     font-weight: 400;
     text-align: left;
     margin: 0;
     color: #9c9c9c;
     line-height:26px;
}
 .product-card-six .price {
     position: absolute;
     top: -12px;
     right: 0;
     color: #ffffff;
     background-color: #000000;
     padding: 0 10px;
     line-height: 40px;
     font-weight: 500;
}
 .product-card-six .price:before {
     position: absolute;
     right: 100%;
     border-style: solid;
     border-width: 0 12px 40px 0;
     border-color: transparent #000000 transparent;
     content: '';
     top: 0;
}
 .product-card-six a {
     text-decoration: none;
     position: absolute;
     bottom: 0;
     right: 0;
     background-color: #000000;
     line-height: 40px;
     padding: 0 10px;
     color: #ffffff;
     font-weight: 500;
     font-size:14px;
     text-transform: uppercase;
}
 .product-card-six a:before {
     position: absolute;
     right: 100%;
     border-style: solid;
     border-width: 0 0 40px 12px;
     border-color: transparent transparent #000000;
     content: '';
     top: 0;
}
 .product-card-six.blue {
     background-color: #2472a4;
}
 .product-card-six.blue h3, .product-card-six.blue a, .product-card-six.blue .price {
     background-color: #2472a4;
}
 .product-card-six.blue .price:before {
     border-color: transparent #2472a4 transparent;
}
 .product-card-six.blue h3:before {
     border-color: transparent transparent transparent #2472a4;
}
 .product-card-six.blue a:before {
     border-color: transparent transparent #2472a4;
}
 figure.snip1171.red {
     background-color: #ab3326;
}
 .product-card-six.red h3, .product-card-six.red a, .product-card-six.red .price {
     background-color: #ab3326;
}
 .product-card-six.red .price:before {
     border-color: transparent #ab3326 transparent;
}
 .product-card-six.red h3:before {
     border-color: transparent transparent transparent #ab3326;
}
 .product-card-six.red a:before {
     border-color: transparent transparent #ab3326;
}
 .product-card-six.orange {
     background-color: #d67118;
}
 .product-card-six.orange h3, .product-card-six.orange a, .product-card-six.orange .price {
     background-color: #d67118;
}
 .product-card-six.orange .price:before {
     border-color: transparent #d67118 transparent;
}
 .product-card-six.orange h3:before {
     border-color: transparent transparent transparent #d67118;
}
 .product-card-six.orange a:before {
     border-color: transparent transparent #d67118;
}
 .product-card-six:hover img {
     -webkit-transform: scale(1.1);
     transform: scale(1.1);
}
 .product-card-seven {
     position: relative;
     overflow: hidden;
     margin: 10px;
     color: #333333;
     display:inline-block;
     text-align: center;
     border: 1px solid #ddd;
     line-height: 1.6em;
}
 .product-card-seven * {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.6s ease;
     transition: all 0.6s ease;
}
 .product-card-seven .image {
     position: relative;
}
 .product-card-seven img {
     width: 100%;
     vertical-align: top;
     -webkit-transition: opacity 0.35s;
     transition: opacity 0.35s;
}
 .product-card-seven .icons, .product-card-seven .add-to-cart {
     position: absolute;
     left: 20px;
     right: 20px;
     opacity: 0;
}
 .product-card-seven .icons {
     -webkit-transform: translateY(-100%);
     transform: translateY(-100%);
     top: 20px;
     display: flex;
     justify-content: space-between;
}
 .product-card-seven .icons a {
     width: 32.5%;
     background: #ffffff;
}
 .product-card-seven .icons a:hover {
     background: #000000;
}
 .product-card-seven .icons a:hover i {
     color: #ffffff;
     opacity: 1;
}
 .product-card-seven .icons i {
     line-height: 46px;
     font-size: 20px;
     color: #000000;
     text-align: center;
     opacity: 0.7;
     margin: 0;
}
 .product-card-seven .add-to-cart {
     position: absolute;
     bottom: 20px;
     -webkit-transform: translateY(100%);
     transform: translateY(100%);
     font-size: 0.8em;
     color: #000000;
     line-height: 46px;
     letter-spacing: 1.5px;
     background-color: #ffffff;
     font-weight: 700;
     text-decoration: none;
     text-transform: uppercase;
}
 .product-card-seven .add-to-cart:hover {
     background: #000000;
     color: #ffffff;
}
 .product-card-seven figcaption {
     padding: 20px 20px 30px;
}
 .product-card-seven h3, .product-card-seven p {
     margin: 0;
     text-align: left;
}
 .product-card-seven h3 {
     text-transform:capitalize;
     margin-bottom: 10px;
     margin-top: 15px;
     font-weight: 600;
     font-size:20px;
}
 .product-card-seven p {
     margin-bottom: 15px;
     font-size: 0.85em;
     color: #9c9c9c;
     font-weight: 400;
}
 .product-card-seven .price {
     font-size: 1.3em;
     opacity: 0.5;
     font-weight: 700;
     text-align: right;
}
 .product-card-seven:hover img{
     opacity: 0.8;
}
 .product-card-seven:hover .icons, .product-card-seven:hover .add-to-cart{
     -webkit-transform: translateY(0);
     transform: translateY(0);
     opacity: 1;
}
 .product-card-eight{
     position: relative;
     overflow: hidden;
     margin: 10px;
     background: #1a1a1a;
     color: #ffffff;
     text-align: left;
     display:inline-block;
     box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
     background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
     background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}
 .product-card-eight * {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.35s ease-in-out;
     transition: all 0.35s ease-in-out;
}
 .product-card-eight .image {
     position: relative;
}
 .product-card-eight img {
     width: 100%;
     vertical-align: top;
}
 .product-card-eight i {
     position: absolute;
     top: 15px;
     left: 17px;
     color: #fff;
     font-size: 20px;
     opacity: 0;
     z-index: 2;
     -webkit-transition-delay: 0;
     transition-delay: 0;
}
 .product-card-eight h3 {
     margin: 0;
     font-size:20px;
     font-weight: 600;
     margin-bottom: 12px;
     text-transform: capitalize;
}
 .product-card-eight:before, .product-card-eight:after {
     width: 120px;
     height: 120px;
     position: absolute;
     top: 0;
     left: 0;
     content: '';
     -webkit-transition: all 0.35s ease;
     transition: all 0.35s ease;
     z-index: 1;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
     background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
     background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
     -webkit-transition-delay: 0.2s;
     transition-delay: 0.2s;
}
 .product-card-eight:before {
     background-color: #324ece;
     -webkit-transform: skew(-45deg) translateX(-150%);
     transform: skew(-45deg) translateX(-150%);
     border-right: 1px solid #324ece;
}
 .product-card-eight:after {
     background-color: #962d22;
     -webkit-transform: skew(-45deg) translateX(-175%);
     transform: skew(-45deg) translateX(-175%);
     border-right: 1px solid #962d22;
}
 .product-card-eight figcaption {
     padding: 25px 80px 25px 25px;
     background-color: #ffffff;
     color: #000000;
     position: relative;
     font-size: 0.9em;
}
 .product-card-eight figcaption p {
     margin-bottom: 15px;
     font-size:13px;
     font-weight:400;
}
 .product-card-eight figcaption:before {
     width: 150px;
     height: 150px;
     position: absolute;
     bottom: 0;
     right: 0;
     content: '';
     z-index: 1;
     background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
     background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
     background-color: #324ece;
     -webkit-transform: skew(-45deg) translateX(50%);
     transform: skew(-45deg) translateX(50%);
     border-right: 1px solid #324ece;
}
 .product-card-eight .add-to-cart {
     display: inline-block;
     width: auto;
     border: 1px solid #324ece;
     padding: 10px 15px;
     color: #324ece;
     text-decoration: none;
     font-weight: 500;
     font-size: 13px;
     text-transform: uppercase;
}
 .product-card-eight .add-to-cart:hover {
     background-color: #324ece;
     color: #ffffff;
}
 .product-card-eight .price {
     position: absolute;
     right: 0;
     bottom: -24px;
     color: #ffffff;
     z-index: 2;
     text-transform: uppercase;
     padding: 20px;
     font-weight: 500;
     font-size: 1.2em;
     text-align: center;
}
 .product-card-eight .price s {
     display: block;
     font-size: 0.85em;
     font-weight: 400;
     opacity: 0.8;
}
 .product-card-eight:hover i {
     opacity: 0.7;
     -webkit-transition-delay: 0.3s;
     transition-delay: 0.3s;
}
 .product-card-eight:hover h3 {
     -webkit-transform: translateY(0);
     transform: translateY(0);
     opacity: 1;
}
 .product-card-eight:hover:before {
     -webkit-transition-delay: 0s;
     transition-delay: 0s;
     -webkit-transform: skew(-45deg) translateX(-50%);
     transform: skew(-45deg) translateX(-50%);
}
 .product-card-eight:hover:after{
     -webkit-transition-delay: 0.1s;
     transition-delay: 0.1s;
     -webkit-transform: skew(-45deg) translateX(-75%);
     transform: skew(-45deg) translateX(-75%);
}
/** end product card **/
/** start icon card **/
 .icon-card-area{
     padding:100px 0px;
}
 .icon-card-one .wrp {
     text-align: center;
     height: 100%;
     width: 100%;
}
 .icon-card-one .wrp::before {
     content: '';
     display: inline-block;
     height: 100%;
     vertical-align: middle;
}
 .icon-card-one .wrp .icon {
     display: inline-block;
     font-size: 42px;
     line-height: 90px;
     height: 90px;
     width: 90px;
     color: #4099ff;
     border-radius: 100%;
     position: relative;
}
 .icon-card-one .wrp .icon::before {
     content: '';
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     border-radius: 100%;
     background: rgba(0,0,0,0.1);
     z-index: -1;
}
 .icon-card-one .wrp .icon::after {
     content: '';
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     margin: auto;
     vertical-align: middle;
     width: 100%;
     height: 100%;
     transform: scale(0);
     background: #e33939;
     border-radius: 100%;
     z-index: -1;
}
 .icon-card-one .grid-wrp:hover .icon {
     animation-name: bubble2;
     animation-duration: 0.5s;
     animation-delay: 0.1s;
     animation-fill-mode: forwards;
}
 .icon-card-one .grid-wrp:hover .icon::after {
     animation-name: bubble;
     animation-duration: 0.5s;
     animation-fill-mode: forwards;
}
 .wrp .icon-twitter {
     color: #e33939;
}
 .icon-card-one .wrp .icon-twitter::after {
     background: #e33939;
}
 @-moz-keyframes bubble {
     100% {
         transform: scale(1);
    }
}
 @-webkit-keyframes bubble {
     100% {
         transform: scale(1);
    }
}
 @-o-keyframes bubble {
     100% {
         transform: scale(1);
    }
}
 @keyframes bubble {
     100% {
         transform: scale(1);
    }
}
 @-moz-keyframes bubble2 {
     100% {
         color: #fff;
    }
}
 @-webkit-keyframes bubble2 {
     100% {
         color: #fff;
    }
}
 @-o-keyframes bubble2 {
     100% {
         color: #fff;
    }
}
 @keyframes bubble2 {
     100% {
         color: #fff;
    }
}
 .icon-card-one .wrp{
     padding:10px;
}
 .icon-card-one .grid-wrp:hover .wrp h4,.wrp-icon {
     color:#e33939;
}
 .icon-card-one .wrp h4{
     font-size:20px;
     margin:0px;
     margin-top: 14px;
     padding:14px;
     display:block;
     font-weight:600;
}
 .icon-card-one .wrp p{
     color: #7a8595;
     font-size: 14px;
     line-height: 30px;
     margin-bottom: 0;
}
 .icon-card-two {
     position: relative;
     z-index: 1;
}
 .icon-card-two .bpack-wrapper:hover{
     background:#e33939;
}
 .icon-card-two .bpack-wrapper:hover h4, .icon-card-two .bpack-wrapper:hover p, .icon-card-two .bpack-wrapper:hover i{
     color:#fff;
}
 .bpack-wrapper {
     border-right:1px solid #e33939;
     padding: 57px 30px 50px;
     background:#fff;
     -webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
     -o-transition: all 0.5s;
     -ms-transition: all 0.5s;
     transition: all 0.5s;
}
 .icon-card-two {
     background:#fff none repeat scroll 0 0;
     border-radius: 0px;
}
 .tp{
     padding:0px;
}
 .icon-card-two .col-xl-4:last-child .bpack-wrapper{
    border-right:0;
}
 .bpack-icon i {
     color:#000;
     font-size: 30px;
}
 .bpack-content h4 {
     color:#e33939;
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 18px;
     margin-top: 25px;
}
 .bpack-content p {
     color: #7a8595;
     font-size: 14px;
     line-height: 25px;
     margin-bottom: 0;
}
 .icon-card-three .bpack-grid .grid {
     width: calc(33.33% - 30px);
     float: left;
     margin: 0 15px 30px;
     text-align: center;
     border: 1px solid #e6e6e6;
     padding: 60px 50px;
     -webkit-box-shadow: 0 15px 44px 0px rgba(171, 171, 171, 0.1);
     box-shadow: 0 15px 44px 0px rgba(171, 171, 171, 0.1);
     -webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
     -o-transition: all 0.5s;
     -ms-transition: all 0.5s;
     transition: all 0.5s;
}
 .gf{
    padding:0px;
}
 .icon-card-three .bpack-grid .grid .icon i{
     color:#595959;
     font-size: 30px;
     margin-bottom: 15px;
}
 .icon-card-three .grid h3{
     font-weight: 600;
     color: #e33939;
     font-size:20px;
     padding-top:7px;
}
 .icon-card-three .grid p {
     font-size: 14px;
     padding-top: 15px;
     color: #a2a2a2;
     line-height: 27px;
}
 .icon-card-three .grid a {
     border: 1px solid #e33939;
     border-radius: 30px;
     color: #595959;
     display: inline-block;
     font-size: 13px;
     font-weight: 500;
     line-height: 1;
     margin-top: 15px;
     padding: 10px 17px;
     position: relative;
     text-transform: capitalize;
     transform: perspective(1px) translateZ(0px);
     transition: color 0.3s ease 0s;
     vertical-align: middle;
}
 .icon-card-three .bpack-grid .grid:hover i{
     color:#e33939;
}
 .icon-card-three .grid:hover h3, .icon-card-three .grid:hover p, .icon-card-three .grid:hover a{
     color: #fff;
}
 .icon-card-three .grid a::before {
     background: #e33939 none repeat scroll 0 0;
     border-radius: 30px;
     bottom: 0;
     content: "";
     left: 0;
     position: absolute;
     right: 0;
     top: 0;
     transform: scaleX(0);
     transform-origin: 50% 0 0;
     transition-duration: 0.3s;
     transition-property: transform;
     transition-timing-function:ease-out;
     z-index: -1;
}
 .icon-card-three .grid a:hover::before {
     transform: scaleY(1);
}
 .icon-card-three .grid:hover {
    background-color: rgba(0, 0, 0, 0.95);
     background: url(../img/service-grid-bg.jpg) center center/cover no-repeat local;
}
 .icon-card-four .bpack-wrapper {
     border-right:none;
     border:1px solid #ddd;
     -webkit-transition: all 0.2s ease-out;
     transition: all 0.2s ease-out;
}
 .icon-card-four .bpack-wrapper:hover {
     -webkit-transform: translateY(-10px);
     transform: translateY(-10px);
}
 .icon-card-four .bpack-wrapper:hover{
     border:2px solid #e33939;
}
 .icon-card-four .bpack-wrapper a.read-more{
     margin-top: 16px;
     font-size: 14px;
     display: block;
}
 .icon-card-five .bpack-wrapper {
     border-right:none;
     -webkit-transition: all 0.2s ease-out;
     transition: all 0.2s ease-out;
}
 .icon-card-five .bpack-wrapper a.read-more{
     margin-top: 16px;
     font-size: 14px;
     display: block;
}
 .icon-card-five .bg-black{
     background:#000;
}
 .icon-card-five .bg-blue{
     background:#324ece;
}
 .icon-card-five .bg-orange{
     background:#d67118;
}
 .icon-card-five .bpack-content h4, .icon-card-five .bpack-content i,.icon-card-five .bpack-content p{
     color:#fff;
}
 .icon-card-five .bpack-content a.read-more{
     color:#fff;
     padding:5px 0px;
}
 .icon-card-five .bpack-content:hover a.read-more{
     text-decoration:underline;
}
 .icon-card-five .bpack-wrapper:hover{
     box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
     -webkit-transform: scale(1.1);
     transform: scale(1.1);
     -webkit-transform: translate(0, -10px);
     transform: translate(0, -10px);
     z-index: 3;
}
 .icon-card-six .bpack-wrapper {
     border-right:none;
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     -webkit-transition: all 0.2s ease-out;
     transition: all 0.2s ease-out;
}
 .icon-card-six .bpack-content h4{
     color:#000;
}
 .icon-card-six .bpack-wrapper a.read-more{
     margin-top: 16px;
     font-size: 15px;
     display: block;
     color: #7b7b7b;
     font-weight: 500;
}
 .icon-card-six .bpack-wrapper:hover a.read-more{
     color: #000;
}
 .icon-card-six .bpack-wrapper:hover {
     -webkit-transform: translateY(-10px);
     transform: translateY(-10px);
}
 .icon-card-seven .bpack-wrapper {
     border-right:none;
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 30%,#ff0505 100%);
     -webkit-transition: all 0.2s ease-out;
     transition: all 0.2s ease-out;
}
 .icon-card-seven .bpack-content h4, .icon-card-seven .bpack-content i,.icon-card-seven .bpack-content p{
     color:#fff;
}
 .icon-card-seven .bpack-wrapper a.read-more{
     margin-top: 16px;
     font-size: 15px;
     display: block;
     color: #fff;
     font-weight: 500;
}
 .icon-card-seven .bpack-wrapper:hover a.read-more{
     color: #324ece;
}
 .icon-card-eight .bpack-wrapper {
     border-right:none;
     border-radius: 12px;
}
 .icon-card-eight .bpack-icon{
     position: relative;
     margin-bottom: 26px;
     width: 80px;
     height: 80px;
     left: 110px;
}
 .icon-card-eight .bpack-wrapper:hover{
     -webkit-box-shadow: 0 2px 13px 2px rgba(252, 87, 42, .4);
     -moz-box-shadow: 0 2px 13px 2px rgba(252, 87, 42, .4);
     box-shadow: 0 2px 13px 2px rgba(252, 87, 42, .4);
}
 .icon-card-eight .bpack-wrapper.active{
     -webkit-box-shadow: 0 2px 13px 2px rgba(252, 87, 42, .4);
     -moz-box-shadow: 0 2px 13px 2px rgba(252, 87, 42, .4);
     box-shadow: 0 2px 13px 2px rgba(252, 87, 42, .4);
}
 .icon-card-eight .bpack-wrapper .bpack-content i{
     color: #dc2626;
}
 .icon-card-eight .bpack-content h4{
     color:#000;
}
 .icon-card-eight .bpack-wrapper a.read-more{
     margin-top: 16px;
     font-size: 15px;
     display: block;
     color: #dc2626;
     font-weight: 500;
}
 .icon-card-eight .bpack-icon .circle1 {
     position: absolute;
     width: 63px;
     height: 63px;
     border-radius: 50%;
     background-color: #f93069;
     opacity: .1;
}
 .icon-card-eight .bpack-icon .circle2{
     position: absolute;
     right: 0;
     bottom: 0;
     width: 23px;
     height: 23px;
     border-radius: 50%;
     background-color: #fc572a;
     opacity: .1;
}
 .icon-card-eight .bpack-icon .circle3{
     position: absolute;
     left: 0;
     bottom: 0;
     width: 63px;
     height: 63px;
     border-radius: 50%;
     background-color: #f93069;
     opacity: .1;
}
 .icon-card-eight .bpack-icon .circle4{
     position: absolute;
     right: 0;
     top: 0;
     width: 23px;
     height: 23px;
     border-radius: 50%;
     background-color: #fc572a;
     opacity: .1;
}
 .icon-card-eight .bpack-icon .circle5{
     position: absolute;
     left: -20px;
     top: 0;
     width: 23px;
     height: 23px;
     border-radius: 50%;
     background-color: #fc572a;
     opacity: .1;
}
 .icon-card-eight .bpack-icon .circle6{
     position: absolute;
     right: 20px;
     bottom: 0;
     width: 63px;
     height: 63px;
     border-radius: 50%;
     background-color: #f93069;
     opacity: .1;
}
/** end icon card **/
/** start counter-up **/
 .counter-up-area{
     padding: 100px 0px;
}
 .counter-bg{
     background:#f7f7f7;
}
 .counter-wrapper{
}
 .counter-img {
     margin-bottom: 13px;
}
 .counter-img img{
}
 .counter-text{
}
 .counter-text h2 {
     color: #000;
     font-size: 32px;
     font-weight: 600;
     margin-bottom: 6px;
}
 .counter-text span {
     font-size: 15px;
     color: #808080;
     font-family:"montserrat",sans-serif;
     display: inline-block;
     font-weight: 600;
}
 .counter-icon i{
     font-size: 26px;
     color: #8e8e8e;
     margin-bottom: 14px;
}
 .counter-up-four .counter-wrapper{
     border-right:1px solid #ddd;
}
 .counter-up-four .cp{
     padding:0;
}
 .counter-up-four .c-bp:last-child .counter-wrapper{
     border-right:none;
}
 .counter-up-five .bg-black{
     background:#000;
}
 .counter-up-five .bg-blue{
     background:#324ece;
}
 .counter-up-five .bg-orange{
     background:#d67118;
}
 .counter-up-five .bg-red{
     background:#d61212;
}
 .counter-up-five .counter-text h2 {
     color: #fff;
}
 .counter-up-five .counter-text span {
     color: #fff;
}
 .counter-up-five .counter-icon i{
     color: #fff;
}
 .counter-up-five .counter-wrapper {
     padding: 40px;
}
 .counter-up-six .counter-wrapper{
     padding: 40px;
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     -webkit-transition: all 0.2s ease-out;
     transition: all 0.2s ease-out;
}
 .counter-up-seven .counter-wrapper{
     padding: 40px;
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 30%,#ff0505 100%);
}
 .counter-up-seven .counter-text h2 {
     color: #fff;
}
 .counter-up-seven .counter-text span {
     color: #fff;
}
 .counter-up-seven .counter-icon i{
     color: #fff;
}
 .counter-up-eight .counter-wrapper{
     padding: 40px;
     border:1px solid #ddd;
}
 .counter-up-nine .counter-wrapper{
     padding: 40px;
}
 .counter-up-nine .bg-black{
     background-color: transparent;
     background-image: linear-gradient(180deg,#616161 50%,#080808 100%);
}
 .counter-up-nine .bg-blue{
     background-color: transparent;
     background-image: linear-gradient(180deg,#324ece 45%,#091446 100%);
}
 .counter-up-nine .bg-orange{
     background-color: transparent;
     background-image: linear-gradient(180deg,#d67118 45%,#734014 100%);
}
 .counter-up-nine .bg-red{
     background-color: transparent;
     background-image: linear-gradient(180deg,#d61212 45%,#751414 100%);
}
 .counter-up-nine .counter-text h2 {
     color: #fff;
}
 .counter-up-nine .counter-text span {
     color: #fff;
}
 .counter-up-nine .counter-icon i{
     color: #fff;
}
 .counter-up-area.counter-bg-ten{
     padding: 100px 0px;
     background-image: url(../img/slider_03.jpg);
     background-attachment: fixed;
     -webkit-background-size: cover;
     background-size: cover;
     background-position: 100% 16px;
     background-repeat: no-repeat;
     position: relative;
     color: #fff;
}
 .counter-up-area.counter-bg-ten:after {
     position: absolute;
     height: 100%;
     background-color: rgba(17, 147, 212, 0.9);
     background-repeat: repeat;
     width: 100%;
     content: "";
     top: 0;
     left: 0;
     z-index: 0;
}
 .counter-up-area.counter-bg-ten .cp{
     color: #fff;
     z-index: 1;
}
 .counter-up-ten .counter-text h2 {
     color: #fff;
}
 .counter-up-ten .counter-text span {
     color: #fff;
}
 .counter-up-ten .counter-icon i{
     color: #fff;
}
/** end icon card **/
/** start social-icon **/
 .social-icon-area{
     padding:100px 0px;
}
 .social-icon{
     width: 385px;
     margin: 0 auto;
}
 .social-icon a{
     width: 45px;
     height: 45px;
     text-align: center;
     margin: 0px 7px;
     line-height: 45px;
     display: inline-block;
     border-width: 0px;
     border-style: solid;
     border-radius: 26px;
     color: #0c0c0c;
     background: #eeeeee;
     font-size: 14px;
}
 .social-icon a:hover{
     color:#fff;
     background:#000;
}
 .social-icon-two .social-icon a{
     border-radius: 0px;
}
 .social-icon-three .social-icon a{
     color:#fff;
     background-color: transparent;
     background-image: linear-gradient(180deg,#d61212 45%,#751414 100%);
}
 .social-icon-four .social-icon a{
     border:1px solid #ddd;
     border-radius:0px;
     background:#fff;
     color:#000;
}
 .social-icon-four .social-icon a:hover{
     color:#fff;
     background:#000;
}
 .social-icon-five .social-icon a{
     border-radius:0px;
}
 .social-icon-five .social-icon a.bg-blue{
     background:#0921c5;
     color:#fff;
     border:1px solid #0921c5;
}
 .social-icon-five .social-icon a.bg-blue:hover{
     background:#fff;
     color:#0921c5;
}
 .social-icon-five .social-icon a.bg-gray{
     background:#1DA1F3;
     color:#fff;
     border:1px solid #1DA1F3;
}
 .social-icon-five .social-icon a.bg-gray:hover{
     background:#fff;
     color:#1DA1F3;
}
 .social-icon-five .social-icon a.bg-red{
     background:#e42525;
     color:#fff;
     border:1px solid #e42525;
}
 .social-icon-five .social-icon a.bg-red:hover{
     background:#fff;
     color:#e42525;
}
 .social-icon-five .social-icon a.bg-orange{
     background:#BE31A1;
     color:#fff;
     border:1px solid #BE31A1;
}
 .social-icon-five .social-icon a.bg-orange:hover{
     background:#fff;
     color:#BE31A1;
}
 .social-icon-five .social-icon a.bg-red2{
     background:#bd081c;
     color:#fff;
     border:1px solid #bd081c;
}
 .social-icon-five .social-icon a.bg-red2:hover{
     background:#fff;
     color:#bd081c;
}
 .social-icon-five .social-icon a.bg-green{
     background:#E74D89;
     color:#fff;
     border:1px solid #E74D89;
}
 .social-icon-five .social-icon a.bg-green:hover{
     background:#fff;
     color:#E74D89;
}
 .social-icon-six .social-icon a{
     border-radius:0px;
     background:#fff;
     font-size:40px;
}
 .social-icon-six .social-icon a.bg-blue{
     color:#0921c5;
}
 .social-icon-six .social-icon a.bg-gray{
     color:#1DA1F3;
}
 .social-icon-six .social-icon a.bg-red{
     color:#e42525;
}
 .social-icon-six .social-icon a.bg-orange{
     color:#BE31A1;
}
 .social-icon-six .social-icon a.bg-red2{
     color:#bd081c;
}
 .social-icon-six .social-icon a.bg-green{
     color:#E74D89;
}
 .social-icon-seven .social-icon a{
     border-radius:0px;
}
 .social-icon-seven .social-icon a.bg-blue{
     background:#fff;
     color:#0921c5;
     border:1px solid #0921c5;
}
 .social-icon-seven .social-icon a.bg-blue:hover{
     background:#0921c5;
     color:#fff;
}
 .social-icon-seven .social-icon a.bg-gray{
     background:#fff;
     color:#1DA1F3;
     border:1px solid #1DA1F3;
}
 .social-icon-seven .social-icon a.bg-gray:hover{
     background:#1DA1F3;
     color:#fff;
}
 .social-icon-seven .social-icon a.bg-red{
     background:#fff;
     color:#e42525;
     border:1px solid #e42525;
}
 .social-icon-seven .social-icon a.bg-red:hover{
     background:#e42525;
     color:#fff;
}
 .social-icon-seven .social-icon a.bg-orange{
     background:#fff;
     color:#BE31A1;
     border:1px solid #BE31A1;
}
 .social-icon-seven .social-icon a.bg-orange:hover{
     background:#BE31A1;
     color:#fff;
}
 .social-icon-seven .social-icon a.bg-red2{
     background:#fff;
     color:#bd081c;
     border:1px solid #bd081c;
}
 .social-icon-seven .social-icon a.bg-red2:hover{
     background:#bd081c;
     color:#fff;
}
 .social-icon-seven .social-icon a.bg-green{
     background:#fff;
     color:#E74D89;
     border:1px solid #E74D89;
}
 .social-icon-seven .social-icon a.bg-green:hover{
     background:#E74D89;
     color:#fff;
}
 .social-icon-eight .social-icon a{
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     background:#fff;
     color:#000;
}
 .social-icon-eight .social-icon a.bg-blue:hover{
     background:#0921c5;
     color:#fff;
}
 .social-icon-eight .social-icon a.bg-gray:hover{
     background:#1DA1F3;
     color:#fff;
}
 .social-icon-eight .social-icon a.bg-red:hover{
     background:#e42525;
     color:#fff;
}
 .social-icon-eight .social-icon a.bg-orange:hover{
     background:#BE31A1;
     color:#fff;
}
 .social-icon-eight .social-icon a.bg-red2:hover{
     background:#bd081c;
     color:#fff;
}
 .social-icon-eight .social-icon a.bg-green:hover{
     background:#E74D89;
     color:#fff;
}
 .social-icon-nine .social-icon {
     width: 720px;
}
 .social-icon-nine .social-icon a{
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     background:#fff;
     border-radius:0px;
     color:#000;
     width:100px;
}
 .social-icon-nine .social-icon a.bg-blue:hover{
     background:#0921c5;
     color:#fff;
}
 .social-icon-nine .social-icon a.bg-gray:hover{
     background:#1DA1F3;
     color:#fff;
}
 .social-icon-nine .social-icon a.bg-red:hover{
     background:#e42525;
     color:#fff;
}
 .social-icon-nine .social-icon a.bg-orange:hover{
     background:#BE31A1;
     color:#fff;
}
 .social-icon-nine .social-icon a.bg-red2:hover{
     background:#bd081c;
     color:#fff;
}
 .social-icon-nine .social-icon a.bg-green:hover{
     background:#E74D89;
     color:#fff;
}
 .social-icon-ten .social-icon {
     width: 720px;
}
 .social-icon-ten .social-icon a{
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     background:#fff;
     border-radius:0px;
     color:#000;
     width:100px;
}
 .social-icon-ten .social-icon a.bg-blue{
     background:#0921c5;
     color:#fff;
     border:1px solid #0921c5;
}
 .social-icon-ten .social-icon a.bg-blue:hover{
     background:#fff;
     color:#0921c5;
}
 .social-icon-ten .social-icon a.bg-gray{
     background:#1DA1F3;
     color:#fff;
     border:1px solid #1DA1F3;
}
 .social-icon-ten .social-icon a.bg-gray:hover{
     background:#fff;
     color:#1DA1F3;
}
 .social-icon-ten .social-icon a.bg-red{
     background:#e42525;
     color:#fff;
     border:1px solid #e42525;
}
 .social-icon-ten .social-icon a.bg-red:hover{
     background:#fff;
     color:#e42525;
}
 .social-icon-ten .social-icon a.bg-orange{
     background:#BE31A1;
     color:#fff;
     border:1px solid #BE31A1;
}
 .social-icon-ten .social-icon a.bg-orange:hover{
     background:#fff;
     color:#BE31A1;
}
 .social-icon-ten .social-icon a.bg-red2{
     background:#bd081c;
     color:#fff;
     border:1px solid #bd081c;
}
 .social-icon-ten .social-icon a.bg-red2:hover{
     background:#fff;
     color:#bd081c;
}
 .social-icon-ten .social-icon a.bg-green{
     background:#E74D89;
     color:#fff;
     border:1px solid #E74D89;
}
 .social-icon-ten .social-icon a.bg-green:hover{
     background:#fff;
     color:#E74D89;
}
/** end social-icon **/
/** start image-accordion **/
 .image-accordion-area{
     padding:80px 0px;
}
 .accordion-image {
     width: 100%;
     max-width: 1080px;
     height: 500px;
     overflow: hidden;
     margin: 50px auto;
}
 .accordion-image ul {
     width: 100%;
     display: table;
     table-layout: fixed;
     margin: 0;
     padding: 0;
}
 .accordion-image ul li {
     display: table-cell;
     vertical-align: bottom;
     position: relative;
     width: 20%;
     height: 500px;
     background-repeat: no-repeat;
     background-position: center center;
     transition: all 500ms ease;
}
 .accordion-image ul li div {
     display: block;
     overflow: hidden;
     width: 100%;
}
 .accordion-image ul li div a {
     display: block;
     height: 500px;
     width: 100%;
     position: relative;
     z-index: 3;
     vertical-align: bottom;
     padding: 15px 20px;
     box-sizing: border-box;
     color: #fff;
     text-decoration: none;
     transition: all 200ms ease;
}
 .accordion-image ul li div a * {
     opacity: 0;
     margin: 0;
     width: 100%;
     text-overflow: ellipsis;
     position: relative;
     z-index: 5;
     white-space: nowrap;
     overflow: hidden;
     -webkit-transform: translateX(-20px);
     transform: translateX(-20px);
     -webkit-transition: all 400ms ease;
     transition: all 400ms ease;
}
 .accordion-image ul li div a h2 {
     text-overflow: clip;
     font-size: 24px;
     font-weight:600;
     text-transform: capitalize;
     margin-bottom: 6px;
     top: 200px;
     color:#fff;
     -webkit-transform: translateY(30px);
     -ms-transform: translateY(30px);
     transform: translateY(30px);
     opacity: 0;
     -webkit-transition: opacity 0.7s linear, -webkit-transform 0.5s linear;
     transition: opacity 0.7s linear, -webkit-transform 0.5s linear;
     -o-transition: transform 0.5s linear, opacity 0.7s linear;
     transition: transform 0.5s linear, opacity 0.7s linear;
     transition: transform 0.5s linear, opacity 0.7s linear, -webkit-transform 0.5s linear 
}
 .accordion-image ul li:hover div a h2 {
     -webkit-transform: translateY(0);
     -ms-transform: translateY(0);
     transform: translateY(0);
     opacity: 1;
}
 .accordion-image ul li div a p {
     top: 200px;
     font-size: 14px;
     -webkit-transform: translateY(30px);
     -ms-transform: translateY(30px);
     transform: translateY(30px);
     opacity: 0;
     -webkit-transition: opacity 0.7s linear, -webkit-transform 0.5s linear;
     transition: opacity 0.7s linear, -webkit-transform 0.5s linear;
     -o-transition: transform 0.5s linear, opacity 0.7s linear;
     transition: transform 0.5s linear, opacity 0.7s linear;
     transition: transform 0.5s linear, opacity 0.7s linear, -webkit-transform 0.5s linear 
}
 .accordion-image ul li:hover div a p{
     -webkit-transform: translateY(0);
     -ms-transform: translateY(0);
     transform: translateY(0);
     opacity: 1;
}
 .accordion-image ul li:nth-child(1) {
     background-image: url(../img/gallery/accor1.jpg);
}
 .accordion-image ul li:nth-child(2) {
     background-image: url(../img/gallery/accor2.jpg);
}
 .accordion-image ul li:nth-child(3) {
     background-image:url(../img/gallery/accor3.jpg);
}
 .accordion-image ul li:nth-child(4) {
     background-image: url(../img/gallery/accor4.jpg);
}
 .accordion-image ul li:nth-child(5) {
     background-image: url(../img/gallery/accor5.jpg);
}
 .accordion-image ul:hover li, .accordion-image ul:focus-within li {
     width: 8%;
}
 .accordion-image ul li:focus {
     outline: none;
}
 .accordion-image ul:hover li:hover, .accordion-image ul li:focus, .accordion-image ul:focus-within li:focus {
     width: 60%;
}
 .accordion-image ul:hover li:hover a, .accordion-image ul li:focus a, .accordion-image ul:focus-within li:focus a {
     background: rgba(0, 0, 0, 0.4);
}
 .accordion-image ul:hover li:hover a *, .accordion-image ul li:focus a *, .accordion-image ul:focus-within li:focus a * {
     opacity: 1;
     -webkit-transform: translateX(0);
     transform: translateX(0);
}
 .accordion-image ul:hover li {
     width: 8% !important;
}
 .accordion-image ul:hover li a * {
     opacity: 0 !important;
}
 .accordion-image ul:hover li:hover {
     width: 60% !important;
}
 .accordion-image ul:hover li:hover a {
     background: rgba(0, 0, 0, 0.4);
}
 .accordion-image ul:hover li:hover a * {
     opacity: 1 !important;
     -webkit-transform: translateX(0);
     transform: translateX(0);
}
 .image-accordion-four .accordion-image ul li a .social-icon{
     top: 50%;
     transform: translateY(-50%);
}
 .image-accordion-four .accordion-image ul li a i{
     width: 45px;
     height: 45px;
     text-align: center;
     margin: 0px 6px;
     line-height: 45px;
     display: inline-block;
     border-width: 0px;
     border-style: solid;
     border-radius: 26px;
     color: #0c0c0c;
     background: #eeeeee;
     font-size: 16px;
}
 .image-accordion-four .accordion-image ul li a i:hover{
     color:#fff;
     background:#000;
}
 .image-accordion-five .accordion-image ul li a .accordion-btn-new{
     top: 50%;
     transform: translateY(-50%);
     padding: 10px 12px;
}
 .image-accordion-five .accordion-image ul li a .accordion-btn{
     display: inline;
     color: #fff;
     background:#000;
     text-decoration: none;
     font-size: 14px;
     font-weight: 600;
     text-transform: uppercase;
     padding: 12px 20px;
     border-radius: 4px;
     -webkit-box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.25);
     -moz-box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.25);
     box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.25);
     -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
     -o-transition: all 0.2s ease-in-out;
     transition: all 0.2s ease-in-out;
}
 .image-accordion-five .accordion-image ul li a .accordion-btn:hover{
     color: #000;
     background:#fff;
}
/** end image-accordion **/
/** start image-card **/
 .bg-img-card{
     background:#f7f7f7;
}
 .image-card-area{
     padding:100px 0px;
}
.image-card-one {
max-width: 900px;
  margin: 0 auto;
}
 .image-card-img{
     position: relative;
     overflow: hidden;
}
 .image-card-one .image-card-img img {
     -webkit-transform: rotate(15deg) scale(1.4);
     transform: rotate(15deg) scale(1.4);
     -webkit-transition: .3s ease-in-out;
     transition: .3s ease-in-out;
}
 .image-card-one .image-card-wrapper:hover .image-card-img img {
     -webkit-transform: rotate(0) scale(1);
     transform: rotate(0) scale(1);
}
 .image-card-text {
     padding:40px 20px;
}
 .image-card-text h4 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 14px;
}
 .image-card-text h4 a {
     color: #3f3f3f;
     transition: .3s;
}
 .image-card-text > p {
     font-size: 14px;
     line-height: 25px;
     font-weight: 300;
     color: #7a8595;
     margin-bottom: 0;
}
 .image-card-text > a {
     border: 1px solid #e33939;
     border-radius: 40px;
     color: #595959;
     display: inline-block;
     font-size: 12px;
     font-weight: 600;
     line-height: 1;
     margin-top: 20px;
     padding: 13px 28px;
     position: relative;
     text-transform: capitalize;
     transform: perspective(1px) translateZ(0px);
     transition: color 0.3s ease 0s;
     vertical-align: middle;
}
 .image-card-text > a::before {
     background: #e33939 none repeat scroll 0 0;
     border-radius: 40px;
     bottom: 0;
     content: "";
     left: 0;
     position: absolute;
     right: 0;
     top: 0;
     transform: scaleX(0);
     transform-origin: 50% 0 0;
     transition-duration: 0.3s;
     transition-property: transform;
     transition-timing-function: ease-out;
     z-index: -1;
}
 .image-card-text>a:hover::before {
     transform: scaleY(1);
}
 .image-card-text >a:hover {
     color: #fff;
}
 .image-card-two .image-card-text {
     border:1px solid #ddd;
     text-align:center;
}
 .image-card-two .image-card-img img {
     -webkit-transform: rotate(15deg) scale(1.4);
     transform: rotate(15deg) scale(1.4);
     -webkit-transition: .3s ease-in-out;
     transition: .3s ease-in-out;
}
 .image-card-two .image-card-wrapper:hover .image-card-img img {
     -webkit-transform: rotate(0) scale(1);
     transform: rotate(0) scale(1);
}
 .image-card-three .image-card-img img {
     -webkit-transform: rotate(15deg) scale(1.4);
     transform: rotate(15deg) scale(1.4);
     -webkit-transition: .3s ease-in-out;
     transition: .3s ease-in-out;
}
 .image-card-three .image-card-wrapper:hover .image-card-img img {
     -webkit-transform: rotate(0) scale(1);
     transform: rotate(0) scale(1);
}
 .image-card-three .image-card-text {
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     text-align:right;
}
 .image-card-text i {
     border: 1px solid #ddd;
     border-radius: 50%;
     color: #595959;
     display: inline-block;
     font-size: 15px;
     line-height: 1;
     cursor: pointer;
     margin-top: 20px;
     padding: 16px 18px;
     position: relative;
     text-transform: capitalize;
}
 .image-card-wrapper:hover .image-card-text i {
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     background:#000;
     color:#fff;
}
 .image-card-four .image-card-wrapper.bg-black {
     background:#c30303;
}
 .image-card-four .image-card-wrapper.bg-gray {
     background:#324ece;
}
 .image-card-four .image-card-wrapper.bg-orange {
     background:#bb5f00;
}
 .image-card-four .image-card-text {
     text-align:center;
}
 .image-card-four .image-card-text h4 a {
     color: #fff;
}
 .image-card-four .image-card-text p {
     color: #ccc;
}
 .image-card-four .image-card-text > a{
     border: 1px solid #fff;
     border-radius: 5px;
     color: #e33939;
     background:#fff;
     display: inline-block;
     font-size: 14px;
     font-weight: 500;
     line-height: 1;
     margin-top: 20px;
     -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
     -o-transition: all 0.2s ease-in-out;
     transition: all 0.2s ease-in-out;
     padding: 13px 28px;
}
 .image-card-four .image-card-text > a::before {
     display:none;
}
 .image-card-four .image-card-wrapper:hover .image-card-text > a{
     top: -5px;
     -webkit-box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.5);
     -moz-box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.5);
     box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.5);
}
 .image-card-five .image-card-img img {
     margin-left: 30px;
     -webkit-transform: scale(1.5);
     transform: scale(1.5);
     -webkit-transition: .3s ease-in-out;
     transition: .3s ease-in-out;
}
 .image-card-five .image-card-wrapper:hover .image-card-img img {
     margin-left: 0;
}
 .image-card-six .image-card-img img {
     margin-left: 30px;
     -webkit-transform: scale(1.5);
     transform: scale(1.5);
     -webkit-transition: .3s ease-in-out;
     transition: .3s ease-in-out;
}
 .image-card-six .image-card-wrapper:hover .image-card-img img {
     margin-left: 0;
}
 .image-card-six .image-card-text {
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     text-align:center;
}
 .image-card-seven .image-card-wrapper{
     background-color: transparent;
     background-image: linear-gradient(224deg,#6338c5 50%,#3adbff 100%);
}
 .image-card-seven .image-card-text {
     text-align:right;
}
 .image-card-seven .image-card-text h4 a {
     color: #fff;
}
 .image-card-seven .image-card-text p {
     color: #ccc;
}
 .image-card-seven .image-card-text > a{
     border: 1px solid #fff;
     border-radius: 5px;
     color: #e33939;
     background:#fff;
     display: inline-block;
     font-size: 14px;
     font-weight: 500;
     line-height: 1;
     margin-top: 20px;
     -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
     -o-transition: all 0.2s ease-in-out;
     transition: all 0.2s ease-in-out;
     padding: 13px 28px;
}
 .image-card-seven .image-card-text > a::before {
     display:none;
}
 .image-card-seven .image-card-wrapper:hover .image-card-text > a{
     top: -0px;
     -webkit-box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.5);
     -moz-box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.5);
     box-shadow: 0px 8px 30px 0px rgba(0,0,0,0.5);
}
 .image-card-eight .image-card-text {
     border:1px solid #ddd;
     text-align:center;
     background:#f7f7f7;
}
 .image-card-eight .image-card-text i {
     background:#fff;
     color: #595959;
}
 .image-card-nine .image-card-img img {
     -webkit-filter: sepia(100%);
     filter: sepia(100%);
     -webkit-transition: .3s ease-in-out;
     transition: .3s ease-in-out;
}
 .image-card-nine .image-card-wrapper:hover .image-card-img img {
     -webkit-filter: sepia(0);
     filter: sepia(0);
}
 .image-card-nine .image-card-text > a{
     border: 1px solid #e33939;
     border-radius: 5px;
     color: #e33939;
     display: inline-block;
     font-size: 14px;
     font-weight: 500;
     line-height: 1;
     margin-top: 20px;
     padding: 13px 28px;
}
 .image-card-nine .image-card-text > a::before {
     display:none;
}
 .image-card-nine .image-card-wrapper:hover .image-card-text > a{
     color: #fff;
     background:#e33939;
}
 .image-card-ten .image-card-text{
     text-align:right;
     border:1px solid #ddd;
}
 .image-card-ten .image-card-text > a{
     border: 1px solid #e33939;
     border-radius: 5px;
     color: #e33939;
     display: inline-block;
     font-size: 14px;
     font-weight: 500;
     line-height: 1;
     margin-top: 20px;
     padding: 13px 28px;
}
 .image-card-ten .image-card-text > a::before {
     display:none;
}
 .image-card-ten .image-card-wrapper:hover .image-card-text > a{
     color: #fff;
     background:#e33939;
}
 .image-card-eleven .image-card-text{
     text-align:center;
     box-shadow: 0 0 20px rgba(0,0,0,.1);
}
 .image-card-eleven .image-card-text > a{
     border: 1px solid #e33939;
     border-radius: 5px;
     color: #e33939;
     display: inline-block;
     font-size: 14px;
     font-weight: 500;
     line-height: 1;
     margin-top: 20px;
     padding: 13px 28px;
}
 .image-card-eleven .image-card-img::before {
     position: absolute;
     top: 0;
     left: -75%;
     z-index: 2;
     display: block;
     content: '';
     width: 50%;
     height: 100%;
     background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
     background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
     -webkit-transform: skewX(-25deg);
     transform: skewX(-25deg);
}
 .image-card-eleven .image-card-wrapper:hover .image-card-img::before {
     -webkit-animation: shine .75s;
     animation: shine .75s;
}
 @-webkit-keyframes shine {
     100% {
         left: 125%;
    }
}
 @keyframes shine {
     100% {
         left: 125%;
    }
}
 .image-card-eleven .image-card-text > a::before {
     display:none;
}
 .image-card-eleven .image-card-wrapper:hover .image-card-text > a{
     color: #fff;
     background:#e33939;
}
 .image-card-twelve .image-card-text{
     text-align:center;
     position: relative;
     box-shadow: 0 0 20px rgba(0,0,0,.1);
}
 .image-card-twelve .image-card-text > a{
     border: 1px solid #e33939;
     border-radius: 5px;
     color: #e33939;
     display: inline-block;
     font-size: 14px;
     font-weight: 500;
     line-height: 1;
     margin-top: 20px;
     padding: 13px 28px;
}
 .image-card-twelve .image-card-img::before {
     position: absolute;
     top: 0;
     left: -75%;
     z-index: 2;
     display: block;
     content: '';
     width: 50%;
     height: 100%;
     background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
     background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
     -webkit-transform: skewX(-25deg);
     transform: skewX(-25deg);
}
 .image-card-twelve .image-card-wrapper:hover .image-card-img::before {
     -webkit-animation: shine .75s;
     animation: shine .75s;
}
 @-webkit-keyframes shine {
     100% {
         left: 125%;
    }
}
 @keyframes shine {
     100% {
         left: 125%;
    }
}
 .image-card-twelve .image-card-text::after {
     background-color: transparent;
     background-image: linear-gradient(144deg,#e33939 0%,#ff0505 100%);
     bottom: 0;
     content: "";
     height: 2px;
     left: 0;
     position: absolute;
     transition: all 0.4s ease-in-out 0s;
     width: 0;
}
 .image-card-twelve .image-card-wrapper:hover .image-card-text::after {
     width: 100%;
}
 .image-card-twelve .image-card-text > a::before {
     display:none;
}
 .image-card-twelve .image-card-wrapper:hover .image-card-text > a{
     color: #fff;
     background:#e33939;
}
/** end image-card **/
/** start call-out **/
 .call-out-area{
     padding:100px 0px;
}
 .call-out-tittle{
}
 .call-out-tittle h2{
     font-size:36px;
     color:#000;
     margin-bottom:20px;
     font-weight:600;
     font-family:'Montserrat' ,sans-serif;
     text-transform:capitalize;
}
 .call-out-tittle h2 span{
     color:#324ece;
}
 .call-out-tittle p{
     font-size:15px;
     color:#929292;
     line-height: 25px;
}
 .call-out-btn {
     text-align:center;
     margin-top:25px;
}
 .call-out-btn a{
     border: 1px solid #000;
     border-radius: 5px;
     color: #fff;
     background:#000;
     text-transform:capitalize;
     display: inline-block;
     font-size: 16px;
     font-weight: 500;
     line-height: 1;
     margin-top: 20px;
     padding: 18px 35px;
}
 .call-out-btn a:hover{
     background:#fff;
     color:#000;
}
 .call-bg-two{
     background:#324ece;
}
 .call-out-two .call-out-btn a{
     border: 1px solid #324ece;
     border-radius: 5px;
     color: #324ece;
     background:#fff;
}
 .call-out-two .call-out-btn a:hover{
     color: #fff;
     border: 1px solid #fff;
     background:#324ece;
}
 .call-out-two .call-out-tittle h2{
     color:#fff;
}
 .call-out-two .call-out-tittle p{
     color:#e4e4e4;
}
 .call-out-three .call-out-tittle h2{
     width: 60%;
     text-align: center;
     margin: 0 auto;
}
 .call-out-three .call-out-tittle h2 span{
     color:#ff2323;
}
 .call-out-three .call-out-tittle p{
     width: 50%;
     text-align: center;
     margin: 20px auto;
}
 .call-bg-four{
     background:#ff3939;
}
 .call-out-four .call-out-tittle h2{
     width: 60%;
     color:#fff;
     text-align: center;
     margin: 0 auto;
}
 .call-out-four .call-out-tittle p{
     width: 50%;
     color:#e4e4e4;
     text-align: center;
     margin: 20px auto;
}
 .call-out-four .call-out-btn a{
     color: #ff3939;
     border: 1px solid #fff;
     background:#fff;
     border-radius: 40px;
}
 .call-out-four .call-out-btn a:hover{
     color: #fff;
     border: 1px solid #fff;
     background:#ff3939;
}
 .call-out-area.call-bg-five{
     background-image: url(../img/slider_03.jpg);
     background-attachment: fixed;
     -webkit-background-size: cover;
     background-size: cover;
     background-position: 100% 16px;
     background-repeat: no-repeat;
     position: relative;
     color: #fff;
}
 .call-out-area.call-bg-five:after {
     position: absolute;
     height: 100%;
     background-color:rgba(255,22,55, .7);
     background-repeat: repeat;
     width: 100%;
     content: "";
     top: 0;
     left: 0;
     z-index: 0;
}
 .call-out-five{
     position: relative;
     z-index: 2;
}
 .call-out-five .call-out-tittle h2{
     width: 60%;
     color:#fff;
     text-align: center;
     margin: 0 auto;
}
 .call-out-five .call-out-tittle p{
     width: 50%;
     color:#e4e4e4;
     text-align: center;
     margin: 20px auto;
}
 .call-out-five .call-out-btn a{
     color: #ff3939;
     border: 1px solid #fff;
     background:#fff;
}
 .call-out-five .call-out-btn a:hover{
     color: #fff;
     border: 1px solid #fff;
     background:#ff3939;
}
 .call-out-six .call-out-btn {
     text-align: left;
}
 .call-out-area.call-bg-seven{
     background-image: url(../img/slider_03.jpg);
     background-attachment: fixed;
     -webkit-background-size: cover;
     background-size: cover;
     background-position: 100% 16px;
     background-repeat: no-repeat;
     position: relative;
     color: #fff;
}
 .call-out-area.call-bg-seven:after {
     position: absolute;
     height: 100%;
     background-color:rgba(143, 21, 255, 0.7);
     background-repeat: repeat;
     width: 100%;
     content: "";
     top: 0;
     left: 0;
     z-index: 0;
}
 .call-out-seven{
     position: relative;
     z-index: 2;
}
 .call-out-seven .call-out-tittle h2{
     color:#fff;
}
 .call-out-seven .call-out-tittle p{
     color:#e4e4e4;
}
 .call-out-seven .call-out-btn a{
     color: #8f15ff;
     border: 1px solid #fff;
     background:#fff;
     border-radius: 40px;
}
 .call-out-seven .call-out-btn a:hover{
     color: #fff;
     border: 1px solid #fff;
     background:#8f15ff;
}
 .call-bg-eight{
     background:#cc5500;
}
 .call-out-eight .call-out-btn {
     text-align: left;
}
 .call-out-eight .call-out-tittle h2{
     color:#fff;
}
 .call-out-eight .call-out-tittle p{
     color:#e4e4e4;
}
 .call-out-eight .call-out-btn a{
     color: #cc5500;
     border: 1px solid #fff;
     background:#fff;
}
 .call-out-eight .call-out-btn a:hover{
     color: #fff;
     border: 1px solid #fff;
     background:#cc5500;
}
 .call-out-nine{
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     padding: 60px 50px;
}
 .call-out-ten{
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     padding: 60px 50px;
     background:#e414ae;
}
 .call-out-ten .call-out-btn {
     margin-top: 35px;
}
 .call-out-ten .call-out-tittle h2{
     color:#fff;
}
 .call-out-ten .call-out-tittle p{
     color:#e4e4e4;
}
 .call-out-ten .call-out-btn a{
     color: #e414ae;
     border: 1px solid #fff;
     background:#fff;
     border-radius: 40px;
}
 .call-out-ten .call-out-btn a:hover{
     color: #fff;
     border: 1px solid #fff;
     background:#e414ae;
}
/** end call-out **/
/** start heading-tittle **/
.heading-tittle {
    text-align: center;
}
 .heading-tittle-area{
     padding:100px 0px;
}
 .heading-tittle-warp{
     text-align: center;
     margin: 0 auto;
}
 .heading-tittle h2{
     font-size:36px;
     color:#000;
     margin-bottom:20px;
     font-weight:600;
     font-family:'Montserrat' ,sans-serif;
     text-transform:capitalize;
}
 .heading-tittle h2 span{
     color:#324ece;
     font-size:36px;
     text-transform:capitalize;
}
 .heading-tittle .sub-tittle{
     color:#929292;
     margin-bottom: 15px;
     display: block;
     font-size:15px;
     letter-spacing:2px;
     text-transform:uppercase;
}
 .heading-tittle p{
     font-size:15px;
     color:#929292;
     line-height: 25px;
}
 .heading-tittle-two .heading-tittle h2{
     position: relative;
}
 .heading-tittle-two .heading-tittle h2:after{
     position: absolute;
     left: 23%;
     top: 50%;
     height: 5px;
     width: 30px;
     content: '';
     background: #f5414a;
     transform: translateY(-50%);
     animation: hafter 1.5s infinite;
}
 .heading-tittle-two .heading-tittle h2:before{
     position: absolute;
     right: 23%;
     top: 50%;
     height: 5px;
     width: 30px;
     content: '';
     background:#f5414a;
     transform: translateY(-50%);
     animation: hafter 1.5s infinite;
}
 @keyframes hafter{
     0%{
         width: 30px;
    }
     50%{
         width: 50px;
         background: #324ece;
    }
     100%{
         width: 30px;
    }
}
 .tittle-left .heading-tittle-warp{
     text-align: left;
     margin: 0 auto;
}
 .heading-tittle-four .heading-tittle h2 span{
     font-style: italic;
}
 .gradient-text1 {
     background: #3264f5;
     background: -moz-linear-gradient(left, #643094, #00bcd4);
     background: -webkit-linear-gradient(left, #643094, #00bcd4);
     background: linear-gradient(to right, #643094, #00bcd4);
     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#643094', endColorstr='#643094',GradientType=1 );
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
}
 .tittle-right .heading-tittle-warp{
     text-align: right;
     margin: 0 auto;
}
 .heading-tittle-five .heading-tittle{
     margin-right: 60px;
}
 .heading-tittle-five .heading-tittle h2{
     position: relative;
}
 .heading-tittle-five .heading-tittle h2:after{
     position: absolute;
     left: 48%;
     top: 50%;
     height: 5px;
     width: 30px;
     content: '';
     background: #f5414a;
     transform: translateY(-50%);
     animation: hafter 1.5s infinite;
}
 .heading-tittle-five .heading-tittle h2:before{
     position: absolute;
     right: -5%;
     top: 50%;
     height: 5px;
     width: 30px;
     content: '';
     background:#f5414a;
     transform: translateY(-50%);
     animation: hafter 1.5s infinite;
}
 .heading-tittle-six .heading-tittle h2 span{
     font-style: italic;
}
 .heading-tittle-six .heading-tittle h2{
     position: relative;
}
 .heading-tittle-six .heading-tittle h2:after{
     position: absolute;
     left: 23%;
     top: 50%;
     height: 5px;
     width: 30px;
     content: '';
     background: #f5414a;
     transform: translateY(-50%);
     animation: hafter 1.5s infinite;
}
 .heading-tittle-six .heading-tittle h2:before{
     position: absolute;
     right: 23%;
     top: 50%;
     height: 5px;
     width: 30px;
     content: '';
     background:#f5414a;
     transform: translateY(-50%);
     animation: hafter 1.5s infinite;
}
 .heading-tittle-seven .sub-tittle{
     color:red;
     margin-top: 20px;
}
 .heading-tittle-seven:before, .heading-tittle-seven:after {
     display: block;
     content: '';
     width: 1px;
     height: 40px;
     background: #717171;
     margin-left: auto;
     margin-right: auto;
}
 .heading-tittle-seven:after {
     display: block;
     content: '';
     width: 1px;
     height: 40px;
     background: #717171;
     margin-left: auto;
     margin-right: auto;
}
 .tittle-left .heading-tittle-warp{
     text-align: left;
     margin: 0 auto;
}
 .heading-tittle-eight.heading-tittle{
     position:relative;
}
 .heading-tittle-eight .heading-tittle:before {
     position: absolute;
     content: "";
     width: 6px;
     height: 80px;
     background-color: #e33939;
     top: 0px;
     margin-left: -15px;
}
 .heading-tittle-eight .heading-tittle h2 {
     margin-bottom: 10px;
}
 .heading-tittle-eight .heading-tittle h2 span{
     color: #e33939;
}
 .tittle-right .heading-tittle-warp{
     text-align: right;
     margin: 0 auto;
}
 .heading-tittle-nine .heading-tittle{
     margin-right: 20px;
}
 .heading-tittle-nine.heading-tittle{
     position:relative;
}
 .heading-tittle-nine .heading-tittle:before {
     position: absolute;
     content: "";
     width: 6px;
     height: 80px;
     background-color: #e33939;
     top: 0px;
     margin-left: 15px;
}
 .heading-tittle-nine .heading-tittle h2 {
     margin-bottom: 10px;
}
 .heading-tittle-nine .heading-tittle h2 span{
     color: #e33939;
}
 .tittle-left .heading-tittle-warp{
     text-align: left;
     margin: 0 auto;
}
 .heading-tittle-ten .heading-tittle h2{
     position: relative;
}
 .heading-tittle-ten .heading-tittle{
     margin-left: 60px;
}
 .heading-tittle-ten .heading-tittle h2:after{
     position: absolute;
     left: -5%;
     top: 50%;
     height: 5px;
     width: 30px;
     content: '';
     background: #f5414a;
     transform: translateY(-50%);
     animation: hafter 1.5s infinite;
}
 .heading-tittle-ten .heading-tittle h2:before{
     position: absolute;
     right: 48%;
     top: 50%;
     height: 5px;
     width: 30px;
     content: '';
     background:#f5414a;
     transform: translateY(-50%);
     animation: hafter 1.5s infinite;
}
/** end heading-tittle **/
/** start team **/
 .team-area{
     padding:100px 0px;
}
 .tp-padding{
     padding:0px 30px;
}
 .team-style-block{
     display:inline-block;
}
 .team-style-one .img-box {
     -webkit-transition: all .4s ease;
     transition: all .4s ease;
     position:relative;
     display: inline-block;
}
 .team-style-one .img-box > img {
     max-width: 100%;
     position:relative;
}
 .team-style-one .img-box .img-overlay{
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #3264f5;
     background: -moz-linear-gradient(left, #643094, #00bcd4);
     background: -webkit-linear-gradient(left, #643094, #00bcd4);
     background: linear-gradient(to right, #643094, #00bcd4);
     z-index: 0;
     padding: 40px;
     opacity: 0;
     -webkit-transition: opacity 0.3s linear;
     -o-transition: opacity 0.3s linear;
     transition: opacity 0.3s linear;
}
 .team-style-one:hover .img-box .img-overlay{
     opacity: .5;
}
 .team-style-one:hover .img-box .social {
     opacity:1;
}
 .team-style-one .img-box .social {
     padding-top: 15px;
     padding-left: 85px;
     position: absolute;
     left: 18px;
     z-index: 1;
     opacity: 0;
     top: 50%;
     transform: translateY(-50%);
}
 .team-style-one .img-box .social a:hover {
     color:#fb2525;
}
 .team-style-one .img-box .social a {
     color: #fff;
     font-size: 16px;
     padding: 0px 5px;
}
 .team-style-one .img-box .social a:nth-child(1) {
     -webkit-transition-delay: .1s;
     -o-transition-delay: .1s;
     transition-delay: .1s;
}
 .team-style-one .img-box .social a:nth-child(2) {
     -webkit-transition-delay: .2s;
     -o-transition-delay: .2s;
     transition-delay: .2s;
}
 .team-style-one .img-box .social a:nth-child(3) {
     -webkit-transition-delay: .4s;
     -o-transition-delay: .4s;
     transition-delay: .4s;
}
 .team-style-one .text-box {
     background: #0400f3;
     text-align: center;
     position: relative;
     color:#fff;
     z-index: 9;
     padding: 28px;
}
 .team-style-one .text-box h3 {
     margin: 0;
     font-size: 18px;
     color: #FFFFFF;
     font-weight:600;
     line-height: 1em;
     margin-bottom: 5px;
     font-family: 'Montserrat', sans-serif;
     text-transform: uppercase 
}
 .team-style-one .text-box span{
     font-size:12px;
     color: #fff;
}
 .team-style-two {
     position: relative;
     overflow: hidden;
     padding: 20px;
     display: inline-block;
     background: #fff;
}
 .team-style-two .team-img-2 {
     position: relative;
}
 .team-style-two .overlay-2 {
     background-color: rgba(255,22,55, .7);
     border-radius: 50%;
     -webkit-transition: all .5s ease-in .1s;
     -o-transition: all .5s ease-in .1s;
     transition: all .5s ease-in .1s;
}
 .team-style-two .overlay-2 {
     background-color: rgba(255,22,55, 0.75);
     padding-bottom: 10px;
     padding-left: 15px;
     padding-right: 15px;
     padding-top: 10px;
     position: absolute;
     opacity: 0;
     visibility: hidden;
     z-index: 98;
     height: 100%;
     width: 100%;
     left: 0;
     top: 0;
}
 .team-style-two .center-block-2 {
     display: -webkit-box;
     display: -webkit-flex;
     display: -moz-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-pack: center;
     -webkit-justify-content: center;
     -moz-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
     -ms-flex-direction: column;
     flex-direction: column;
     -webkit-box-align: center;
     -webkit-align-items: center;
     -moz-box-align: center;
     -ms-flex-align: center;
     align-items: center;
}
 .team-style-two ul li:nth-child(1) {
     -webkit-transition-delay: .1s;
     -o-transition-delay: .1s;
     transition-delay: .1s;
}
 .team-style-two ul li:nth-child(2) {
     -webkit-transition-delay: .2s;
     -o-transition-delay: .2s;
     transition-delay: .2s;
}
 .team-style-two ul li:nth-child(3) {
     -webkit-transition-delay: .4s;
     -o-transition-delay: .4s;
     transition-delay: .4s;
}
 .team-style-two .first-color-2 ul {
     padding: 0px;
}
 .team-style-two .team-social-2 li {
     display: inline-block;
}
 .team-style-two .team-social.white-bg li a {
     background: #ffffff;
}
 .team-style-two .team-social-2 li a {
     font-size: 14px;
     color: #18191d;
     height: 38px;
     width: 38px;
     line-height: 40px;
     display: inline-block;
     text-align: center;
     margin: 0;
     border: 1px solid transparent;
     border-radius: 50%;
}
 .team-style-two .team-data-img-2 h3{
     color: #18191d;
     font-weight:700 !important;
     text-transform:uppercase;
     font-family:'Montserrat', sans-serif;
     font-size:18px;
     margin-top: 26px;
     margin-bottom: 6px;
}
 .team-style-two .designation-2 {
     font-size: 16px;
}
 .team-style-two .color-light-grey-2{
     color:#717171;
     font-size: 13px;
}
 .team-style-two.second-color-2 .overlay-2{
     background-color: rgba(241,195,15, .7);
}
 .team-style-two:hover .overlay-2 {
     opacity: 1;
     visibility: visible;
     border-radius: 0;
}
 .team-style-two.third-color-2 .overlay-2 {
     background-color: rgba(24,25,29, .7);
}
 .team-style-two:hover img {
     transform: scale(0.95);
}
 .team-style-two .team-social-2.white-bg li a {
     background: #ffffff;
}
 .team-style-two .team-social-2 li a {
     font-size: 12px;
     color: #18191d;
     height: 38px;
     width: 38px;
     line-height: 38px;
     display: inline-block;
     text-align: center;
     margin: 0;
     border: 1px solid transparent;
     border-radius: 50%;
}
 .team-style-two .facebook-bg-hvr:hover {
     background: #4267B2 !important;
     color: #fff !important;
     border: 1px solid transparent !important;
}
 .team-style-two .twitter-bg-hvr:hover {
     background: #1DA1F2 !important;
     color: #fff !important;
     border: 1px solid transparent !important;
}
 .team-style-two .google-bg-hvr:hover {
     background: #DB4437 !important;
     color: #fff !important;
     border: 1px solid transparent !important;
}
 .team-style-three {
     cursor: pointer;
}
 .team-style-three .team-img-3 {
     position: relative;
     z-index: 1;
}
 .team-style-three .team-img-3 img {
     max-width: 100%;
}
 .team-style-three .team-img-3 .social-icon-3 {
     position: absolute;
     bottom: 0;
     right: 0;
     z-index: 1;
     background: #242639;
     width: 110px;
     height: 110px;
     -webkit-clip-path: polygon(0px 100%, 0px 100%, 100% 0px, 100% 100%);
     clip-path: polygon(0px 100%, 0px 100%, 100% 0px, 100% 100%);
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: end;
     -ms-flex-align: end;
     align-items: flex-end;
     -webkit-box-pack: end;
     -ms-flex-pack: end;
     justify-content: flex-end;
     padding-bottom: 20px;
     padding-right: 8px;
     -webkit-transition: background 0.3s linear;
     -o-transition: background 0.3s linear;
     transition: background 0.3s linear;
}
 .team-style-three:hover .social-icon-3 {
     background: #3452ff;
}
 .social-icon-3 {
     margin-bottom: 0;
}
 .team-style-three .team-img-3 .social-icon-3 a {
     font-size: 16px;
     color: #fff;
     margin-right: 8px;
}
 .team-style-three .team-img-3 .hover-content-3 {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(21, 24, 40, 0.7);
     z-index: 0;
     padding: 40px;
     opacity: 0;
     -webkit-transition: opacity 0.3s linear;
     -o-transition: opacity 0.3s linear;
     transition: opacity 0.3s linear;
}
 .team-style-three:hover .hover-content-3 {
     opacity: 1;
}
 .team-style-three .team-img-3 .hover-content-3 p {
     font-size: 14px;
     color: #fff;
     -webkit-transform: translateY(30px);
     -ms-transform: translateY(30px);
     transform: translateY(30px);
     opacity: 0;
     -webkit-transition: opacity 0.7s linear, -webkit-transform 0.5s linear;
     transition: opacity 0.7s linear, -webkit-transform 0.5s linear;
     -o-transition: transform 0.5s linear, opacity 0.7s linear;
     transition: transform 0.5s linear, opacity 0.7s linear;
     transition: transform 0.5s linear, opacity 0.7s linear, -webkit-transform 0.5s linear;
}
 .team-style-three:hover .hover-content-3 p {
     -webkit-transform: translateY(0);
     -ms-transform: translateY(0);
     transform: translateY(0);
     opacity: 1;
}
 .team-style-three .content-3 {
     padding: 20px 0px 30px 40px;
     background: white;
}
 .team-style-three .content-3 h3 {
     font-size: 18px;
     line-height: 28px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
     margin-bottom: 0;
     text-transform: uppercase;
     color: #1a1d31;
}
 .team-style-three .content-3 p {
     font-size: 13px;
     font-weight: 400;
     color: #717171;
     margin-bottom: 0;
     margin-top: 4px;
}
 .team-four .team-style-three:hover .team-img-3 .social-icon-3 a {
     opacity: 1;
     -webkit-transform: translateY(0);
     -ms-transform: translateY(0);
     transform: translateY(0);
}
 .team-four .team-style-three .team-img-3 .social-icon-3 a {
     width: 40px;
     height: 40px;
     border: 1px solid transparent;
     display: inline-block;
     border-radius: 50%;
     line-height: 40px;
     text-align: center;
     margin: 0px;
     -webkit-transition: all 0.3s linear, border 0.5s linear, -webkit-transform 0.6s linear;
     transition: all 0.3s linear, border 0.5s linear, -webkit-transform 0.6s linear;
     -o-transition: all 0.3s linear, transform 0.6s linear, border 0.5s linear;
     transition: all 0.3s linear, transform 0.6s linear, border 0.5s linear;
     transition: all 0.3s linear, transform 0.6s linear, border 0.5s linear, -webkit-transform 0.6s linear;
     -webkit-transform: translateY(10px);
     -ms-transform: translateY(10px);
     transform: translateY(10px);
     opacity: 0;
}
 .team-four .team-style-three .team-img-3 .social-icon-3 a:hover {
     border-color: #fff;
}
 .team-four .team-style-three .team-img-3 .social-icon-3 {
     width: 100%;
     -webkit-clip-path: inherit;
     clip-path: inherit;
     background: rgba(52, 82, 255, 0.9);
     height: auto;
     padding-bottom: 0;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     padding: 12px 0px;
     opacity: 0;
     -webkit-transition: opacity 0.7s linear;
     -o-transition: opacity 0.7s linear;
     transition: opacity 0.7s linear;
}
 .team-four .team-style-three:hover .team-img-3 .social-icon-3 {
     opacity: 1;
}
 .team-style-five .team-items .item {
     -moz-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
     -webkit-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
     -o-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
     box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
     padding-top: 0px;
}
 .team-style-five .single-item.team-standard .thumb {
     overflow: hidden;
}
 .team-style-five .team-items .item .thumb img{
     width:100%;
}
 .team-style-five .team-items .item .thumb {
     position: relative;
     z-index: 1;
}
 .team-style-five .single-item.team-standard .thumb .social {
     bottom: -55px;
     left: 0;
     padding: 7px 25px;
     position: absolute;
     text-align: center;
     -webkit-transition: all 0.35s ease-in-out;
     -moz-transition: all 0.35s ease-in-out;
     -ms-transition: all 0.35s ease-in-out;
     -o-transition: all 0.35s ease-in-out;
     transition: all 0.35s ease-in-out;
     z-index: 1;
     width: 100%;
     text-align: center;
}
 .team-style-five .single-item.team-standard .item:hover .thumb .social {
     bottom: 0;
}
 .team-style-five .single-item.team-standard .thumb .social ul {
     background: #ffffff none repeat scroll 0 0;
     border-radius: 30px;
     display: inline-block;
     padding: 10px 30px;
}
 .team-style-five .single-item.team-standard .thumb .social ul li {
     display: inline-block;
     margin-top: 0px;
}
 .team-style-five .single-item.team-standard .thumb .social ul li a {
     color: #1cb9c8;
     display: inline-block;
     font-size: 14px;
     margin: 5px 4px 0;
}
 .team-style-five .team-items .item .info {
     background: #ffffff none repeat scroll 0 0;
     padding: 40px 30px;
}
 .team-style-five .team-items .item .info h3 {
     font-weight: 700;
     margin-bottom: 5px;
     font-size: 18px;
     font-family:"montserrat", sans-serif;
     text-transform: uppercase;
}
 .team-style-five .single-item.team-standard .item .info span {
     display: inline-block;
     font-family: "montserrat",sans-serif;
     margin-bottom: 15px;
     padding-bottom: 10px;
     position: relative;
     text-transform: capitalize;
     font-size: 13px;
     color: #1cb9c8;
}
 .team-style-five .single-item.team-standard .item .info span::after {
     background: #1cb9c8 none repeat scroll 0 0;
     bottom: 0;
     content: "";
     height: 2px;
     left: 50%;
     margin-left: -20px;
     position: absolute;
     width: 40px;
}
 .team-style-five .team-items .item .info p:last-child {
     margin-bottom: 0;
     color: #666666;
     font-size: 14px;
     line-height: 25px;
}
 .team-style-six {
     position: relative;
     margin-bottom: 30px;
}
 .team-style-six .inner-box {
     position: relative;
}
 .team-style-six .inner-box .image-6 img{
     max-width:100%;
}
 .team-style-six .inner-box .image-6 {
     position: relative;
     overflow: hidden;
     border-radius: 50%;
}
 .team-style-six .inner-box .overlay-box {
     position: absolute;
     left: 0px;
     bottom: 0px;
     width: 100%;
     padding: 30px;
     color: #ffffff;
     text-align: center;
     background: rgba(54, 72, 178, 0.95);
     opacity: 0;
     -webkit-transform: translate(0, -30px);
     -ms-transform: translate(0, -30px);
     transform: translate(0, -30px);
     transition: all 0.7s ease;
     -moz-transition: all 0.7s ease;
     -webkit-transition: all 0.7s ease;
     -ms-transition: all 0.7s ease;
     -o-transition: all 0.7s ease;
}
 .team-style-six .inner-box:hover .overlay-box {
     opacity: 1;
     -webkit-transform: translate(0, 0px);
     -ms-transform: translate(0, 0px);
     transform: translate(0, 0px);
}
 .team-style-six .inner-box .overlay-box .social-links {
     position: relative;
     width: 100%;
}
 .team-style-six .overlay-box ul{
     padding:0;
     margin:0;
}
 .team-style-six .inner-box .overlay-box .social-links li {
     position: relative;
     display: inline-block;
     margin: 0px 4px;
     line-height: 24px;
}
 .team-style-six .inner-box .overlay-box .social-links.style-two li a {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     line-height: 40px;
     font-size: 15px;
}
 .team-style-six .inner-box .overlay-box .social-links li a:hover{
     background: #ff4747;
     color: #fff;
}
 .team-style-six .inner-box .overlay-box .social-links li a {
     position: relative;
     color: #ff4747;
     background: #fff;
     display: inline-block;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     line-height: 50px;
     font-size: 15px;
     transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -webkit-transition: all 0.3s ease;
     -ms-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
}
 .team-style-six .inner-box .lower-box {
     position: relative;
     padding-top: 25px;
     text-align: center;
}
 .team-style-six .inner-box .lower-box h4 {
     position: relative;
     font-size: 18px;
     font-weight: 700;
     font-family:"montserrat", sans-serif;
     text-transform:uppercase;
}
 .team-style-six .inner-box .lower-box .designation {
     position: relative;
     color: #777777;
     font-size: 14px;
}
 .team-all-seven{
     padding: 100px 0px;
     width: 100%;
     position: relative;
     overflow: hidden;
}
 .team-style-seven {
     position:relative;
     width:20%;
     float:left;
     overflow:hidden;
}
 .team-style-seven .imgBox-7 {
     position: relative;
}
 .team-style-seven .imgBox-7 img {
     max-width: 100%;
     transition: 1s;
}
 .team-style-seven:hover .imgBox-7 img{
     transform:scale(1.5);
}
 .team-style-seven .details-7 {
     position: absolute;
     top: 10px;
     left: 10px;
     right: 10px;
     bottom: 10px;
     background: #fff;
     text-align:center;
     transform: scale(.5);
     visibility:hidden;
     transition:.5s;
}
 .team-style-seven:hover .details-7 {
     transform: scale(1);
     visibility: visible;
}
 .team-style-seven .details-7 .content-7 {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 100%;
     box-sizing: border-box;
}
 .team-style-seven .details-7 .content-7 h3{
     position: relative;
     margin: 0;
     padding: 0;
     font-weight: 600;
     font-size: 18px;
     text-transform: uppercase;
}
 .team-style-seven .details-7 .content-7 h3 span {
     margin-top: 9px;
     display: inline-block;
     font-size: 13px;
     color: #999;
     font-weight: 300;
     text-transform: capitalize;
}
 .team-style-seven .details-7 .content-7 h3:before {
     content: '';
     position: absolute;
     bottom: -12px;
     width: 50px;
     height: 2px;
     background: #f00;
     left: 50%;
     transform: translateX(-50%);
}
 .team-style-seven .details-7 .content-7 ul {
     position:relative;
     display: flex;
     padding: 0;
     width: 70%;
     margin: 30px auto 0;
     opacity:0;
     transform: translateY(100px);
     transition: .5s;
}
 .team-style-seven:hover .details-7 .content-7 ul{
     opacity:1;
     transform: translateY(0px);
}
 .team-style-seven .details-7 .content-7 ul li {
     list-style:none;
     width: 25%;
     text-align: center;
}
 .team-style-seven .details-7 .content-7 ul li a {
     display: block;
     color: #262626;
     font-size: 13px;
     width: 36px;
     height: 36px;
     line-height: 36px;
     border-radius: 50%;
     box-sizing: border-box;
     border: 1px solid #b9b8b8;
}
 .team-style-seven .details-7 .content-7 ul li a:hover {
     background: #f00;
     color: #fff;
     border: 1px solid #f00;
}
 .team-style-eight{
     width: 23%;
     margin: 10px;
     float: left;
    /* border: 10px solid #fff;
     */
     overflow: hidden;
     position: relative;
     left: 0%;
     text-align: left;
     box-shadow: 1px 1px 2px #e6e6e6;
     cursor: default;
     background: #fff url(../images/) no-repeat center center;
}
 .team-style-eight{
     overflow: hidden;
}
 .team-style-eight:hover img {
     -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
     -ms-transform: scale(1.1);
     transform: scale(1.1);
}
 .team-style-eight:hover figcaption {
     -moz-transform: translateY(0px) translateY(0px);
     -webkit-transform: translateY(0px) translateY(0px);
     -o-transform: translateY(0px) translateY(0px);
     -ms-transform: translateY(0px) translateY(0px);
     transform: translateY(0px) translateY(0px);
}
 .team-style-eight img {
     -webkit-transition: -webkit-transform 0.8s;
     -moz-transition: -moz-transform 0.8s;
     transition: transform 0.8s;
}
 .team-style-eight {
     overflow: hidden;
}
 .team-style-eight figcaption {
     bottom: 0;
     left: 0;
     right: 0;
     position: absolute;
     padding: 20px;
     color: #fff;
     overflow: hidden;
     -webkit-backface-visibility: hidden;
     -moz-backface-visibility: hidden;
     backface-visibility: hidden;
     -moz-transform: translateY(100%) translateY(-90px);
     -webkit-transform: translateY(100%) translateY(-90px);
     -o-transform: translateY(100%) translateY(-90px);
     -ms-transform: translateY(100%) translateY(-90px);
     transform: translateY(100%) translateY(-90px);
     -webkit-transition: -webkit-transform 0.4s;
     -moz-transition: -moz-transform 0.4s;
     transition: transform 0.4s;
     background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
     background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);
     background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);
     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#99000000',GradientType=0 );
}
 .team-style-eight .awsm-personal-info {
     position: relative;
     margin-bottom: 15px;
}
 .team-style-eight .awsm-personal-info h3 {
     margin: 0 0 3px;
     padding: 0;
     color:#fff;
     text-transform:uppercase;
     font-family:"montserrat", sans-serif;
     font-size:18px;
     font-weight: 700;
}
 .awsm-personal-info span {
     text-transform: uppercase;
     font-size: 0.815em;
     color: #fff;
     font-size:12px;
}
 .team-style-eight .awsm-contact-info {
     -webkit-transform: translateY(100%);
     -moz-transform: translateY(100%);
     -ms-transform: translateY(100%);
     transform: translateY(100%);
     -webkit-backface-visibility: hidden;
     -moz-backface-visibility: hidden;
     backface-visibility: hidden;
     -webkit-transition: -webkit-transform 0.4s;
     -moz-transition: -moz-transform 0.4s;
     transition: transform 0.4s;
}
 .team-style-eight:hover .awsm-contact-info {
     -webkit-transform: translateY(0px);
     -moz-transform: translateY(0px);
     -ms-transform: translateY(0px);
     transform: translateY(0px);
}
 .team-style-eight .awsm-social-icons {
     list-style: none;
     padding: 0;
     margin: 0;
     margin: 0 -5px;
}
 .team-style-eight .awsm-social-icons li {
     display: inline-block;
     padding: 0 5px;
     font-size: 13px;
}
 .team-style-eight figcaption a {
     color: #fff;
}
 .team-style-eight figcaption a:hover {
     color: #fb2525;
}
 .team-style-eight .awsm-social-icons a {
     display: block;
     -webkit-transition: -webkit-transform 0.3s;
     -moz-transition: -moz-transform 0.3s;
     transition: transform 0.3s;
}
 .team-section-four {
     position: relative;
}
 .team-style-nine {
     position: relative;
     margin-bottom: 30px;
     padding: 0px;
     display: inline-block;
}
 .team-style-nine .inner-box {
     position: relative;
     padding: 40px 40px 0;
}
 .team-style-nine .inner-box .image-wrapper {
     position: relative;
}
 .team-style-nine .image-wrapper:before {
     position: absolute;
     content: '';
     background: #fff;
     border: 7px solid #e8e8eb;
     left: 40px;
     bottom: 40px;
     width: 100%;
     height: 100%;
}
 .team-style-nine .inner-box .image {
     position: relative;
     overflow: hidden;
     z-index: 9;
}
 .team-style-nine .inner-box .image img {
     position: relative;
     width: 100%;
     display: block;
     transition: .5s ease;
}
 .team-style-nine .inner-box:hover .image img {
     transform: scale(1.1);
}
 .team-style-nine .inner-box:hover .image-wrapper:after {
     width: 100%;
     height: 100%;
     opacity: 1;
}
 .team-style-nine .image-wrapper:after {
     position: absolute;
     content: '';
     background: #3648b2;
     left: 40px;
     bottom: 40px;
     width: 70%;
     height: 70%;
     transition: .5s ease;
     opacity: .8;
}
 .team-style-nine .inner-box .overlay-box {
     position: absolute;
     left: 55px;
     bottom: 30px;
     right: 55px;
     padding: 25px 0;
     color: #ffffff;
     text-align: center;
     background: rgba(54, 72, 178, 0.95);
     opacity: 0;
     z-index: 9;
     -webkit-transform: translate(0, -30px);
     -ms-transform: translate(0, -30px);
     transform: translate(0, -30px);
     transition: all 0.7s ease;
     -moz-transition: all 0.7s ease;
     -webkit-transition: all 0.7s ease;
     -ms-transition: all 0.7s ease;
     -o-transition: all 0.7s ease;
}
 .team-style-nine .overlay-box ul{
     padding:0;
     margin:0;
}
 .team-style-nine .image-wrapper:before {
     position: absolute;
     content: '';
     background: #fff;
     border: 7px solid #e8e8eb;
     left: 40px;
     bottom: 40px;
     width: 100%;
     height: 100%;
}
 .team-style-nine .inner-box:hover .overlay-box {
     opacity: 1;
     -webkit-transform: translate(0, 0px);
     -ms-transform: translate(0, 0px);
     transform: translate(0, 0px);
}
 .team-style-nine .inner-box .overlay-box {
     position: absolute;
     left: 55px;
     bottom: 30px;
     right: 55px;
     padding: 25px 0;
     color: #ffffff;
     text-align: center;
     background: rgba(54, 72, 178, 0.95);
     opacity: 0;
     z-index: 9;
     -webkit-transform: translate(0, -30px);
     -ms-transform: translate(0, -30px);
     transform: translate(0, -30px);
     transition: all 0.7s ease;
     -moz-transition: all 0.7s ease;
     -webkit-transition: all 0.7s ease;
     -ms-transition: all 0.7s ease;
     -o-transition: all 0.7s ease;
}
 .team-style-nine .inner-box .overlay-box .social-links {
     position: relative;
     width: 100%;
}
 .team-style-nine .inner-box .overlay-box .social-links li {
     position: relative;
     display: inline-block;
     margin: 0px 4px;
     line-height: 24px;
}
 .team-style-nine .inner-box .overlay-box .social-links.style-two li a {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     line-height: 40px;
     font-size: 15px;
}
 .team-style-nine .inner-box .overlay-box .social-links li a {
     position: relative;
     color: #ff4747;
     background: #fff;
     display: inline-block;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     line-height: 50px;
     font-size: 15px;
     transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -webkit-transition: all 0.3s ease;
     -ms-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
}
 .team-style-nine .inner-box .overlay-box .social-links li a span{
     padding: 2px 2px;
}
 .team-style-nine .inner-box .overlay-box .social-links li a:hover{
     background: #ff4747;
     color: #fff;
}
 .team-style-nine .inner-box .lower-box {
     position: relative;
     padding-top: 25px;
     text-align: center;
}
 .team-style-nine .inner-box .lower-box h4 {
     position: relative;
     font-size: 18px;
     font-weight: 700;
     text-transform:uppercase;
     font-family:montserrat, sans-serif;
     margin-bottom: 6px;
}
 .team-style-nine .inner-box .lower-box h4 a {
     color: #222;
     -webkit-transition: .5s ease;
     -o-transition: .5s ease;
     transition: .5s ease;
}
 .team-style-nine .inner-box .lower-box .designation {
     position: relative;
     color: #999;
     font-size: 14px;
}
 .team-style-ten {
     position: relative;
     margin-bottom: 40px;
}
 .team-style-ten .inner-box-10 {
     position: relative;
}
 .team-style-ten .inner-box-10 .image-10 {
     position: relative;
     text-align: center;
     overflow: hidden;
}
 .team-style-ten .inner-box-10 .image-10:before {
     position: absolute;
     content: '';
     left: 0px;
     top: 0px;
     width: 100%;
     height: 100%;
     display: block;
     z-index: 1;
     opacity: 0;
     transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -webkit-transition: all 0.3s ease;
     -ms-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
     background: -webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.60));
     background: -moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.60));
     background: -o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.60));
     background: -ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.60));
}
 .team-style-ten .inner-box-10 .image-10 img {
     position: relative;
     max-width: 100%;
     display: block;
}
 .team-style-ten .inner-box-10 .image-10 .social-box-10 {
     position: absolute;
     left: -20px;
     bottom: -40px;
     right: 0px;
     z-index: 1;
     transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -webkit-transition: all 0.3s ease;
     -ms-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
}
 .team-style-ten .inner-box-10 .image-10 .social-box-10 li {
     position: relative;
     margin: 0px 8px;
     display: inline-block;
}
 .team-style-ten .inner-box-10 .image-10 .social-box-10 li a {
     position: relative;
     color: #ffffff;
     font-size: 16px;
     transition: all 300ms ease;
     -webkit-transition: all 300ms ease;
     -ms-transition: all 300ms ease;
     -o-transition: all 300ms ease;
}
 .team-style-ten .inner-box-10:hover .image-10 .social-box-10 {
     bottom: 20px;
}
 .team-style-ten .inner-box-10 .lower-content-10 {
     position: relative;
     padding: 25px 0px;
     text-align: center;
     transition: all 300ms ease;
     -webkit-transition: all 300ms ease;
     -ms-transition: all 300ms ease;
     -o-transition: all 300ms ease;
}
 .team-style-ten .inner-box-10 .lower-content-10 h3 {
     position: relative;
     z-index: 1;
     font-weight: 700;
     font-family:'montserrat', sans-serif;
     line-height: 1.3em;
     margin-bottom: 5px;
     font-size: 18px;
     text-transform:uppercase;
}
 .team-style-ten .inner-box-10:hover .lower-content-10 h3 a, .team-style-ten .inner-box-10:hover .lower-content-10 .designation-10, .team-style-ten .inner-box-10:hover .lower-content-10 .social-box-10 li a {
     color: #ffffff;
}
 .team-style-ten:hover .lower-content-10:before, .team-style-ten .inner-box-10:hover .lower-content-10:after {
     width: 100%;
     opacity: 1;
     visibility: visible;
}
 .team-style-ten.team-warp-ten .inner-box-10:hover .lower-content-10:after {
     height: 100%;
}
 .team-style-ten .inner-box-10:hover .image-10:before {
     opacity: 1;
}
 .team-style-ten .inner-box-10 .lower-content-10 .designation-10 {
     position: relative;
     font-size: 13px;
     font-weight: 300;
     color: #666666;
     z-index: 1;
     line-height: 1.3em;
     transition: all 300ms ease;
     -webkit-transition: all 300ms ease;
     -ms-transition: all 300ms ease;
     -o-transition: all 300ms ease;
}
 .team-style-ten.team-warp-ten .inner-box-10 .lower-content-10:after {
     position: absolute;
     content: '';
     left: 0px;
     bottom: 0px;
     width: 100%;
     height: 0%;
     display: block;
     background: -ms-linear-gradient(top, #3140FC 0%, #0b1599 100%);
     background: -moz-linear-gradient(top, #3140FC 0%, #0b1599 100%);
     background: -o-linear-gradient(top, #3140FC 0%, #0b1599 100%);
     background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3140FC), color-stop(100, #0b1599));
     background: -webkit-linear-gradient(top, #3140FC 0%, #0b1599 100%);
     background: linear-gradient(to bottom, #3140FC 0%, #0b1599 100%);
}
 .team-style-ten .inner-box-10 .lower-content-10:after {
     position: absolute;
     content: '';
     right: 0px;
     top: 0px;
     width: 0%;
     height: 100%;
     opacity: 0;
     visibility: hidden;
     background-color: #ec0203;
     transition: all 600ms ease;
     -webkit-transition: all 600ms ease;
     -ms-transition: all 600ms ease;
     -o-transition: all 600ms ease;
}
/** end team **/
/** start video-btn **/
 .video-btn-area{
     padding:80px 0px;
}
 .video-btn-warp{
     overflow: hidden;
     position: relative;
}
 .new-video-btn-1{
     background: url(../img/slider/8.jpg) center center/cover no-repeat local;
     -webkit-background-size: cover;
     background-size: cover;
     background-repeat: no-repeat;
     position: relative;
     padding:300px 0px;
}
 .no-padding{
     padding:0px;
}
 .video-holder {
     text-align: center;
     position: absolute;
     left: 50%;
     top: 50%;
     -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
     -o-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
}
 .video-holder a:hover{
     color:#ff3939;
}
 .video-holder a {
     font-family: "poppins", sans-serif;
     font-size: 18px;
     font-weight: 500;
     color: #fff;
}
 .video-holder .video-icon i {
     width: 49px;
     height: 49px;
     line-height: 44px;
     text-align: center;
     border: 3px solid #fff;
     display: block;
     margin: 0 auto 12px;
}
 .video-btn-two .new-video-btn-1:before {
     content: "";
     background-color: rgba(38, 189, 239, 0.8);
     width: 100%;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0;
}
 .video-btn-two .new-video-btn-1{
     background: url(../img/slider/01.jpg) center center/cover no-repeat local;
}
 .video-btn-three .new-video-btn-1:before {
     content: "";
     background: linear-gradient(to right, #643094, #00bcd4e0);
     width: 100%;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0;
}
 .video-btn-three .video-holder a:hover{
     color:#fff;
}
 .video-btn-four .new-video-btn-1{
     background: url(../img/slider/6.jpg) center center/cover no-repeat local;
}
 .video-btn-style-four {
     position: relative;
     height: 80px;
     width: 80px;
     background: #d41212;
     text-align: center;
     display: inline-block;
     line-height: 80px;
     color: #fff;
     border-radius: 50%;
     transition-duration: 0s;
     -ms-transition-duration: 0s;
     -moz-transition-duration: 0s;
     -webkit-transition-duration: 0s;
     -o-transition-duration: 0s;
}
 .video-btn-style-four:before {
     content: "";
     position: absolute;
     left: 50%;
     top: 50%;
     height: 95px;
     width: 95px;
     border: 2px solid #d41212;
     border-radius: 50%;
     transform: translate(-50%, -50%);
     -moz-transform: translateX(-50%) translateY(-50%);
     -webkit-transform: translateX(-50%) translateY(-50%);
     -ms-transform: translateX(-50%) translateY(-50%);
     -o-transform: translateX(-50%) translateY(-50%);
     transform: translateX(-50%) translateY(-50%);
     opacity: .3;
     animation: pulse-border 1500ms ease-out infinite;
}
 @keyframes pulse-border{
     0%{
         transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);
         opacity:1 
    }
     100%{
         transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
         opacity:0 
    }
}
 .video-btn-style-four.small{
     width:50px;
     height:50px;
     line-height:50px 
}
 .video-btn-style-four.small:after{
     height:50px;
     width:50px 
}
 .video-btn-style-four.small:before{
     height:65px;
     width:65px 
}
 .video-btn-style-four:after {
     content: "";
     position: absolute;
     left: 50%;
     top: 50%;
     height: 80px;
     width: 80px;
     border: 2px solid #d41212;
     border-radius: 50%;
     transform: translate(-50%, -50%);
     -moz-transform: translateX(-50%) translateY(-50%);
     -webkit-transform: translateX(-50%) translateY(-50%);
     -ms-transform: translateX(-50%) translateY(-50%);
     -o-transform: translateX(-50%) translateY(-50%);
     transform: translateX(-50%) translateY(-50%);
     opacity: .3;
     animation: pulse-border 1500ms ease-out infinite;
}
 .video-btn-five .new-video-btn-1:before {
     content: "";
     background-color: rgba(38, 189, 239, 0.8);
     width: 100%;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0;
}
 .video-btn-six .new-video-btn-1:before {
     content: "";
     background: linear-gradient(to right, #643094, #00bcd4e0);
     width: 100%;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0;
}
 .video-btn-seven .new-video-btn-1 {
     padding: 260px 0px;
}
 .video-inner{
     padding: 110px 10px;
}
 .video-inner h2 {
     font-size: 34px;
     line-height: 1.4em;
     margin: 0 0 0.5em;
     font-weight: 600;
     text-transform:capitalize;
     font-family: "montserrat", sans-serif;
}
 .video-inner p {
     margin-bottom: 50px;
     line-height: 25px;
     color: #595959;
     font-size:16px;
}
 .video-inner a{
     background: #ff3939;
     color: #fff;
     font-size: 16px;
     border: 1px solid #ff3939;
     padding: 15px 30px;
     border-radius: 5px;
     font-family: "poppins", sans-serif;
}
 .video-inner a:hover{
     background: #fff;
     color: #ff3939;
}
 .video-btn-eight .new-video-btn-1 {
     padding: 260px 0px;
}
 .video-btn-nine .new-video-btn-1{
     background: url(../img/slider/8.jpg) center center/cover no-repeat local;
}
 .video-btn-nine .new-video-btn-1 {
     padding: 260px 0px;
}
 .video-btn-nine .new-video-btn-1:before {
     content: "";
     background: linear-gradient(to right, #52118ec4, #00bcd4);
     width: 100%;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0;
}
 .video-btn-ten .new-video-btn-1 {
     padding: 260px 0px;
}
 .video-btn-ten .new-video-btn-1:before {
     content: "";
     background-color: rgba(38, 189, 239, 0.8);
     width: 100%;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0;
}
/** end video-btn **/
/** start slick-slider **/
 .slick-slider-area {
     padding:80px 0px 100px 0px;
}
 .slick-dots {
     bottom: -55px;
}
 .slick-prev, .slick-next {
     color: #fff;
     z-index: 2;
     background-color: #324cec;
     width: 40px;
     height: 40px;
     line-height: 50px;
     border-radius: 20px;
}
 .slick-dots li button {
     color: #000;
}
 .slick-dots li.slick-active button:before {
     border: 1px solid #fff;
     -webkit-box-shadow: 0 0 0 2px #000;
     box-shadow: 0 0 0 2px #000;
     border-radius:30px;
}
 .slick-dots li.slick-active button:before {
     color: #000;
     font-size:32px;
}
 .slick-pic{
     position:relative;
     overflow:hidden;
}
 .slick-pic:before{
     content: "";
     background: rgba(0, 0, 0, 0.7);
     width: 100%;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0 
}
 .slick-slider-text, .swiper-slider-text{
     text-align:center;
     position:absolute;
     top: 50%;
     transform: translateY(-50%);
}
 .slick-slider-text h2, .swiper-slider-text h2{
     font-size: 50px;
     font-family:"montserrat",sans-serif;
     color: #fff;
     margin: 0 0 28px;
     font-weight:700;
}
 .slick-slider-text p, .swiper-slider-text p{
     line-height: 30px;
     font-size: 18px;
     font-weight: 400;
     color: #fff;
     margin: 0 0 2.5em;
     width: 70%;
     text-align: center;
     display: inline-block;
}
 .slick-slider-text .theme-btn, .swiper-slider-text .theme-btn{
     background-color: #324cec;
     font-size: 16px;
     font-weight: 500;
     color: #fff;
     padding: 12px 30px;
     border: 0;
     border-radius: 2px;
     display: inline-block;
}
 .slick-slider-text .theme-btn:hover{
     color:#324cec;
     background:#fff;
}
 .slick-prev, .slick-next {
     color: #fff;
     background: #000;
     width: 40px;
     height: 40px;
     z-index:2;
}
 .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
     outline: none;
     color: #fff;
     background: #000;
}
 .slick-slider-four .slick-slider-grids-4 .slick-slider-text {
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     margin: 0px 120px;
     background:#fff;
     padding:40px 0px;
     margin-top:160px;
}
 .slick-slider-grids-4 .slick-slider-text h2{
     color:#000;
}
 .slick-slider-grids-4 .slick-slider-text p{
     color:#000;
}
 .slick-slider-text .theme-btn{
     background-color: #324cec;
     color: #fff;
     border:1px solid #324cec;
}
/** end slick-slider **/
/** start blog-card **/
 .blog-area{
     padding:100px 0px;
}
 .blog-img-1{
     width:85%;
     margin-left: 40px;
     position:relative;
     overflow:hidden;
}
 .blog-img-1 img{
     border-radius:5px;
     cursor:pointer;
}
 .blog-img-1::before {
     position: absolute;
     top: 0;
     left: -75%;
     z-index: 2;
     display: block;
     content: '';
     width: 50%;
     height: 100%;
     background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
     background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
     -webkit-transform: skewX(-25deg);
     transform: skewX(-25deg);
}
 .new-post-blog:hover .blog-img-1::before {
     -webkit-animation: shine .75s;
     animation: shine .75s;
}
 .new-post-blog{
     border:1px solid #ddd;
     border-radius:5px;
     padding:40px 0px;
}
 .bp-padd{
     padding-right:10px;
}
 .grid-content span {
     font-family: "montserrat", Sans-serif;
     font-size: 14px;
     color: #000000;
}
 .grid-content span a{
     font-family: "montserrat", Sans-serif;
     font-size: 14px;
     color: #000000;
}
 .grid-content h2 {
     margin: 15px 0px 15px 0px;
     font-family: "montserrat", Sans-serif;
     font-size: 22px;
     font-weight: 600;
     text-transform: capitalize;
     line-height: 1.3em;
}
 .grid-content p {
     color: #000;
     margin: 0px 0px 21px 0px;
     font-family: "montserrat", Sans-serif;
     font-weight: 400;
     line-height:25px;
     font-size:14px;
}
 .blog-btn-more {
     padding: 8px 20px 8px 20px;
     font-family: "Poppins", Sans-serif;
     font-size: 13px;
     font-weight: 500;
     background: #000000;
     color: #ffffff;
     border:1px solid #000;
}
 .blog-btn-more:hover{
     background: #fff;
     color: #ff3939;
     border:1px solid #ff3939;
}
 .grid-content{
     margin-top:52px;
     padding:0px 24px 0px 0px;
}
 .blog-two .new-post-blog{
     border:0px solid #ddd;
     box-shadow: 30px 30px 60px 0px rgba(0,0,0,0.3) 
}
 .blog-three .new-post-blog{
     border:0px solid #ddd;
     background:#324ece;
}
 .blog-three .grid-content{
     margin-top:52px;
     padding:0px 0px 0px 40px;
}
 .blog-three .grid-content span {
     color: #fff;
}
 .blog-three .grid-content span a{
     color: #fff;
}
 .blog-three .grid-content h2 {
     color:#fff;
}
 .blog-three .grid-content p {
     color: #fff;
}
 .blog-three .blog-btn-more {
     background: #fff;
     color: #000;
     border:1px solid #324ece;
}
 .blog-three .blog-btn-more:hover {
     background: #324cec;
     color: #fff;
     border:1px solid #324ece;
}
 .blog-three.blog-four .new-post-blog{
     border:0px solid #ddd;
     background: linear-gradient(to right, #643094, #00bcd4);
}
 .blog-wrapper-image{
     position:relative;
     overflow:hidden;
}
 .grid-content.grid-blog{
     margin-top:0px;
     padding:38px 38px 45px 38px;
     border:1px solid #ddd;
     border-radius:0px 0px 5px 5px;
     position: relative;
}
 .blog-wrapper-image{
     position:relative;
     overflow:hidden;
}
 .blog-wrapper-image img{
     cursor:pointer;
}
 .blog-wrapper-image::before {
     position: absolute;
     top: 50%;
     left: 50%;
     z-index: 2;
     display: block;
     content: '';
     width: 0;
     height: 0;
     cursor:pointer;
     background: rgba(255,255,255,.2);
     border-radius: 100%;
     -webkit-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
     opacity: 0;
}
 .new-blog-builder:hover .blog-wrapper-image::before {
     -webkit-animation: circle .75s;
     animation: circle .75s;
}
 @-webkit-keyframes circle {
     0% {
         opacity: 1;
    }
     40% {
         opacity: 1;
    }
     100% {
         width: 200%;
         height: 200%;
         opacity: 0;
    }
}
 @keyframes circle {
     0% {
         opacity: 1;
    }
     40% {
         opacity: 1;
    }
     100% {
         width: 200%;
         height: 200%;
         opacity: 0;
    }
}
 .blog-six .grid-content.grid-blog{
     margin-top:0px;
     padding:38px 38px 45px 38px;
     border:none;
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     border-radius:0px 0px 5px 5px;
}
 .blog-eight .grid-content.grid-blog{
     margin-top:0px;
     padding:38px 38px 45px 38px;
     border:none;
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     border-radius:0px 0px 5px 5px;
}
 .blog-eight .grid-content span a:hover {
     color: #ff3939;
}
 .new-blog-builder.blog-style-warp{
     transition: margin-top 0.3s linear 0s;
     -moz-transition: margin-top 0.3s linear 0s;
     -ms-transition: margin-top 0.3s linear 0s;
     -webkit-transition: margin-top 0.3s linear 0s;
}
 .new-blog-builder.blog-style-warp:hover {
     margin-top: -18px;
     transition: margin-top 0.3s linear 0s;
     -moz-transition: margin-top 0.3s linear 0s;
     -ms-transition: margin-top 0.3s linear 0s;
     -webkit-transition: margin-top 0.3s linear 0s;
}
 .blog-nine .grid-content span a{
     color: #ff3939;
}
 .blog-ten .grid-content.grid-blog{
     margin-top:0px;
     padding:38px 38px 45px 38px;
     border:none;
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     border-radius:0px 0px 5px 5px;
}
 .blog-ten .grid-content span a{
     color: #ff3939;
}
 .blog-eleven .grid-content.grid-blog.blog-bg-1{
     background:#000;
     border-radius:10px;
}
 .blog-eleven .grid-content.grid-blog.blog-bg-2{
     background:#bb1378;
     border-radius:10px;
}
 .blog-eleven .grid-content.grid-blog.blog-bg-3{
     background:#324ece;
     border-radius:10px;
}
 .blog-eleven .grid-content span {
     color: #fff;
}
 .blog-eleven .grid-content span a{
     color: #fff;
}
 .blog-eleven .grid-content h2 {
     color:#fff;
}
 .blog-eleven .grid-content p {
     color: #fff;
}
 .blog-eleven .blog-btn-more {
     background: #fff;
     color: #000;
     border:1px solid #324ece;
}
 .blog-eleven .blog-btn-more:hover {
     background: #ff3939;
     color: #fff;
     border:1px solid #ff3939;
}
 .grid-content .date {
     background-color: #ff3939;
     border-radius: 50%;
     color: #fff;
     font-size: 18px;
     font-weight: 700;
     height: 60px;
     line-height:60px;
     width: 60px;
     padding: 16px 0;
     position: absolute;
     right: 15px;
     cursor:pointer;
     text-align: center;
     text-transform: uppercase;
     top: -32px;
}
 .grid-content .date span {
     display: block;
     line-height: 14px;
     color: #fff;
}
 .grid-content .date .month {
     font-size: 11px;
     color: #fff;
}
 .blog-thirten .new-blog-builder .date {
     background-color: #ff3939;
     top: 15px;
     color: #fff;
     right: 30px;
     min-height: 60px;
     min-width: 60px;
     position: absolute;
     text-align: center;
     font-size: 18px;
     font-weight: 700;
     cursor:pointer;
     text-transform: uppercase;
     border-radius: 50%;
     padding: 16px 0;
}
 .blog-thirten .blog-wrapper-image:after {
     position: absolute;
     top: 12px;
     left: 0;
     width: 0;
     height: 0;
     border-style: solid;
     border-width: 25px 0 25px 25px;
     border-color: transparent transparent transparent #ff3939;
     content: '';
     -webkit-transform: translateX(-100%);
     transform: translateX(-100%);
     -webkit-transition: all 0.3s ease;
     transition: all 0.3s ease;
}
 .blog-thirten .grid-content.grid-blog{
     margin-top:0px;
     padding:38px 38px 45px 38px;
     border:none;
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     border-radius:0px 0px 5px 5px;
}
 .blog-thirten .blog-wrapper-image:hover:after{
     -webkit-transform: translateX(0%);
     transform: translateX(0%);
}
 .blog-thirten .new-blog-builder .date span {
     display: block;
     line-height: 14px;
}
 .blog-thirten .new-blog-builder .date .month {
     font-size: 11px;
}
 .blog-fourten .new-blog-builder {
     position:relative;
     overflow:hidden;
     -webkit-transition: all 0.2s ease;
     transition: all 0.2s ease;
}
 .blog-fourten .blog-wrapper-image-14 img {
     max-width: 100%;
     vertical-align: top;
     -webkit-transform-origin: 50% 100%;
     transform-origin: 50% 100%;
     -webkit-transition: all 0.4s ease;
     transition: all 0.4s ease;
}
 .blog-fourten .blog-wrapper-image-14:hover img{
     -webkit-transform: scale(1.1);
     transform: scale(1.1);
}
 .blog-fourten .new-blog-builder .date, .blog-fourten .new-blog-builder .year {
     background-color: #ff3939;
     top: 25px;
     color: #fff;
     left: 25px;
     min-height: 60px;
     min-width: 60px;
     position: absolute;
     text-align: center;
}
 .blog-fourten .new-blog-builder .date {
     -webkit-transition-delay: 0.2s;
     transition-delay: 0.2s;
     font-size: 16px;
     font-weight: 700;
     text-transform: uppercase;
}
 .blog-fourten .new-blog-builder .date span {
     display: block;
     line-height: 30px;
}
 .blog-fourten .new-blog-builder .date .month {
     font-size: 14px;
     background-color: rgba(0, 0, 0, 0.1);
}
 .blog-fourten .new-blog-builder .year {
     line-height: 60px;
     font-weight:600;
     font-size: 18px;
     -webkit-transform: rotateY(-90deg);
     transform: rotateY(-90deg);
     -webkit-transition-delay: 0s;
     transition-delay: 0s;
}
 .blog-fourten .new-blog-builder:hover .date {
     -webkit-transform: rotateY(90deg);
     transform: rotateY(90deg);
     -webkit-transition-delay: 0s;
     transition-delay: 0s;
}
 .blog-fourten .new-blog-builder:hover .year {
     -webkit-transform: rotateY(0);
     transform: rotateY(0);
     -webkit-transition-delay: 0.2s;
     transition-delay: 0.2s;
}
 .blog-fourten .new-blog-builder * {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.2s ease;
     transition: all 0.2s ease;
}
 .blog-fiften .new-blog-builder {
     position:relative;
     overflow:hidden;
     -webkit-transition: all 0.2s ease;
     transition: all 0.2s ease;
}
 .blog-fiften .blog-wrapper-image-14 img {
     max-width: 100%;
     vertical-align: top;
     -webkit-transform-origin: 50% 100%;
     transform-origin: 50% 100%;
     -webkit-transition: all 0.4s ease;
     transition: all 0.4s ease;
}
 .blog-fiften .blog-wrapper-image-14:hover img{
     -webkit-transform: scale(1.1);
     transform: scale(1.1);
}
 .blog-fiften .new-blog-builder .date, .blog-fiften .new-blog-builder .year {
     background-color: #ff3939;
     top: 25px;
     color: #fff;
     left: 25px;
     min-height: 60px;
     min-width: 60px;
     position: absolute;
     text-align: center;
}
 .blog-fiften .new-blog-builder .date {
     -webkit-transition-delay: 0.2s;
     transition-delay: 0.2s;
     font-size: 16px;
     font-weight: 700;
     text-transform: uppercase;
}
 .blog-fiften .new-blog-builder .date span {
     display: block;
     line-height: 30px;
}
 .blog-fiften .new-blog-builder .date .month {
     font-size: 14px;
     background-color: rgba(0, 0, 0, 0.1);
}
 .blog-fiften .new-blog-builder .year {
     line-height: 60px;
     font-weight:600;
     font-size: 18px;
     -webkit-transform: rotateY(-90deg);
     transform: rotateY(-90deg);
     -webkit-transition-delay: 0s;
     transition-delay: 0s;
}
 .blog-fiften .new-blog-builder:hover .date {
     -webkit-transform: rotateY(90deg);
     transform: rotateY(90deg);
     -webkit-transition-delay: 0s;
     transition-delay: 0s;
}
 .blog-fiften .new-blog-builder .grid-content.grid-blog{
     margin-top:0px;
     padding:38px 38px 45px 38px;
     border:none;
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     border-radius:0px 0px 5px 5px;
}
 .blog-fiften .new-blog-builder:hover .year {
     -webkit-transform: rotateY(0);
     transform: rotateY(0);
     -webkit-transition-delay: 0.2s;
     transition-delay: 0.2s;
}
 .blog-fiften .new-blog-builder * {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-transition: all 0.2s ease;
     transition: all 0.2s ease;
}
/** end blog-card **/
/** start progress-pie**/
 .progress-pie-area {
     padding: 100px 0px;
}
 .progress-pie-warp {
     max-width: 700px;
     margin: 0 auto;
     padding: 0;
}
 .skill-bar-content {
     margin-bottom: 7px;
}
 .skillbar-group .skill-track {
     background-color: #ff3984;
}
 .single-skill-bar{
     padding: 10px 0px;
}
 .single-skill-bar .skill-title {
     font-size: 16px;
     font-weight: 600;
     color: #000;
}
 .single-skill-bar .skill-title .experience {
     font-size: 14px;
     font-weight: 400;
     color:#666;
}
 .barfiller {
     width:100%;
     height: 3px;
     background-color: #f1f1f1;
     position:relative;
     margin-bottom:20px;
}
 .barfiller .fill {
     display:block;
     position:relative;
     width:0px;
     height:100%;
     background:#333 !important;
     z-index:1;
}
 .barfiller .tipWrap {
     display:none;
}
 .barfiller .tip {
     margin-top:-30px;
     padding:2px 4px;
     font-size:11px;
     color:#fff;
     left:0px;
     position:absolute;
     z-index:2;
     background: #333;
}
 .barfiller .tip:after {
     border:solid;
     border-color:rgba(0,0,0,.8) transparent;
     border-width:6px 6px 0 6px;
     content:"";
     display:block;
     position:absolute;
     left:9px;
     top:100%;
     z-index:9 
}
 .progress-bar-two .bar1 .fill.progress-bg1{
     background:#e7256a !important;
}
 .progress-bar-two .bar2 .fill.progress-bg2{
     background:#945ddd !important;
}
 .progress-bar-two .bar3 .fill.progress-bg3{
     background:#00f337 !important;
}
 .progress-bar-two .bar4 .fill.progress-bg4{
     background:#324cec !important;
}
 .progress-bar-two .bar1 .tip:after {
     border-color:#e7256a transparent;
}
 .progress-bar-two .bar1 .tip{
     background:#e7256a !important;
}
 .progress-bar-two .bar2 .tip:after {
     border-color:#945ddd transparent;
}
 .progress-bar-two .bar2 .tip{
     background:#945ddd !important;
}
 .progress-bar-two .bar3 .tip:after {
     border-color:#00f337 transparent;
}
 .progress-bar-two .bar3 .tip{
     background:#00f337 !important;
}
 .progress-bar-two .bar4 .tip:after {
     border-color:#324cec transparent;
}
 .progress-bar-two .bar4 .tip{
     background:#324cec !important;
}
 .progress-bar-three .barfiller {
     height: 10px;
}
 .progress-bar-four .barfiller {
     height: 10px;
     box-shadow: 0 0 20px rgba(0,0,0,.2);
     background:#fff;
}
 .progress-bar-five .barfiller {
     height: 10px;
     border-radius: 10px;
}
 .progress-bar-five .barfiller .fill {
     border-radius: 10px;
}
 .progress-bar-five .bar1 .fill.progress-bg1{
     background: linear-gradient(to right, #e7256a, #f0fd83) !important;
}
 .progress-bar-five .bar2 .fill.progress-bg2{
     background: linear-gradient(to right, #945ddd, #ffadf1) !important;
}
 .progress-bar-five .bar3 .fill.progress-bg3{
     background: linear-gradient(to right, #00f337, #13b311) !important;
}
 .progress-bar-five .bar4 .fill.progress-bg4{
     background: linear-gradient(to right, #324cec, #6aa1dc) !important;
}
 .progress-bar-six .barfiller {
     height: 20px;
     border-radius: 30px;
}
 .progress-bar-six .barfiller .fill {
     border-radius: 10px;
}
 .progress-bar-seven .barfiller {
     height: 40px;
}
 .progress-bar-seven .single-skill-bar .skill-title {
     color: #fff;
     position: relative;
     top: 40px;
     left: 20px;
     z-index: 2;
}
 .progress-bar-seven .single-skill-bar .skill-title .experience {
     color: #fff;
}
 .progress-bar-seven .barfiller .tip:after {
     border-color:transparent;
}
 .progress-bar-seven .barfiller .tip {
     margin-top: -30px;
     padding: 0px 0px;
     font-size: 12px;
     color: #000;
     left: 0px;
     position: absolute;
     z-index: 2;
     padding-left: -3px;
     background: transparent !important;
}
 .progress-bar-eight .barfiller {
     height: 40px;
     border-radius: 30px;
}
 .progress-bar-eight .single-skill-bar .skill-title {
     color: #fff;
     position: relative;
     top: 40px;
     left: 20px;
     z-index: 2;
}
 .progress-bar-eight .single-skill-bar .skill-title .experience {
     color: #fff;
}
 .progress-bar-eight .barfiller .tip:after {
     border-color:transparent;
}
 .progress-bar-eight .barfiller .tip {
     margin-top: -30px;
     padding: 0px 6px !important;
     font-size: 12px;
     color: #000;
     left: 0px;
     position: absolute;
     z-index: 2;
     padding-left: 5px !important;
     background: transparent !important;
}
 .progress-bar-eight .barfiller .fill {
     border-radius: 30px;
}
 .progress-bar-nine .barfiller {
     height: 40px;
     border-radius: 30px;
}
 .progress-bar-nine .single-skill-bar .skill-title {
     color: #fff;
     position: relative;
     top: 40px;
     left: 20px;
     z-index: 2;
}
 .progress-bar-nine .single-skill-bar .skill-title .experience {
     color: #fff;
}
 .progress-bar-nine .barfiller .tip:after {
     border-color:transparent;
}
 .progress-bar-nine .barfiller .tip {
     margin-top: -30px;
     padding: 0px 6px !important;
     font-size: 12px;
     color: #000;
     left: 0px;
     position: absolute;
     z-index: 2;
     padding-left: 5px !important;
     background: transparent !important;
}
 .progress-bar-nine .barfiller .fill {
     border-radius: 30px;
}
 .progress-bar-nine .bar1 .fill.progress-bg1{
     background: linear-gradient(to right, #e7256a, #f0fd83) !important;
}
 .progress-bar-nine .bar2 .fill.progress-bg2{
     background: linear-gradient(to right, #945ddd, #ffadf1) !important;
}
 .progress-bar-nine .bar3 .fill.progress-bg3{
     background: linear-gradient(to right, #00f337, #13b311) !important;
}
 .progress-bar-nine .bar4 .fill.progress-bg4{
     background: linear-gradient(to right, #324cec, #6aa1dc) !important;
}
 .progress-bar-ten .barfiller {
     height: 10px;
     border-radius: 30px;
}
 .progress-bar-ten .barfiller .fill {
     border-radius: 10px;
}
 .progress-bar-ten .barfiller .tip {
     color: #000;
     font-family:600;
     font-size:14px;
}
 .progress-bar-ten .bar1 .tip {
     background: transparent !important;
}
 .progress-bar-ten .bar2 .tip {
     background: transparent !important;
}
 .progress-bar-ten .bar3 .tip {
     background: transparent !important;
}
 .progress-bar-ten .bar4 .tip {
     background: transparent !important;
}
 .progress-bar-ten .bar1 .tip:after {
     border-color: transparent;
}
 .progress-bar-ten .bar2 .tip:after {
     border-color: transparent;
}
 .progress-bar-ten .bar3 .tip:after {
     border-color: transparent;
}
 .progress-bar-ten .bar4 .tip:after {
     border-color: transparent;
}
 .progress-bar-eleven.progress-bar-ten .barfiller {
     height: 5px;
}
 .progress-bar-twelve .barfiller {
     background-color: #000 !important;
}
 .progress-bar-twelve .bar1 .tip {
     border-radius: 10px;
}
 .progress-bar-twelve .bar2 .tip {
     border-radius: 10px;
}
 .progress-bar-twelve .bar3 .tip {
     border-radius: 10px;
}
 .progress-bar-twelve .bar4 .tip {
     border-radius: 10px;
}
/** end progress-pie**/
/** start contact-form**/
 .contact-form-area{
     padding:100px 0px;
}
 .contact-form-warp {
     max-width: 700px;
     margin: 0 auto;
     padding: 20px 20px;
}
 .cv {
     margin-bottom: 20px;
}
 .contact-form label {
     font-family: "poppins", sans-serif;
     font-weight: 500;
     color: #000;
     font-size: 16px;
}
 .contact-form input, .contact-form select{
     height: 45px;
     padding: 6px 25px;
     border: 1px solid #ddd;
     -webkit-box-shadow: none;
     box-shadow: none;
     border-radius: 0;
}
 .contact-form .submit-btn-wrapper button {
     font-family: "poppins", sans-serif;
     background-color: #e33939;
     width: 100%;
     height: 45px;
     font-size: 16px;
     font-size: 1.06667rem;
     font-weight: 600;
     color: #fff;
     border: 0;
     outline: 0;
     margin-top: 30px;
     -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
     -o-transition: all 0.3s;
     -ms-transition: all 0.3s;
     transition: all 0.3s;
}
 .contact-form .submit-btn-wrapper:hover button {
     background-color: #0f8cb5;
}
 .contact-form-bg{
     position: relative;
}
 .contact-form-bg:before {
     content: "";
     background-color: rgba(0, 0, 0, 0.7);
     width: 100%;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0;
}
 .contact-form-two .contact-form label {
     color: #fff;
}
 .contact-form-two .contact-form input, .contact-form-two .contact-form select {
     background: #fff;
}
 .contact-form-three .contact-form input, .contact-form-three .contact-form select {
     border-width: 0 0 2px 0;
}
 .contact-form .cv i{
     position:relative;
}
 .contact-form .cv i{
     font-size: 22px;
     position: absolute;
     left: 16px;
     color: #8e8e8e;
     top: 45px;
     padding: 0px 0px;
}
 .contact-form-three .contact-form .submit-btn-wrapper button {
     width: 100%;
}
 .contact-form-five .contact-form .cv i {
     left: 15px;
     top: 32px;
     border-right: 1px solid #ddd;
     padding: 13px 17px;
     font-size: 18px;
}
 .contact-form-five .contact-form input{
     padding: 6px 20px 6px 60px;
}
 .contact-form-five .contact-form .submit-btn-wrapper button {
     width: 100%;
}
 .contact-form-five.contact-form-six .contact-form .cv i {
     background:#e33939;
     color:#fff;
}
 .contact-form-area.contact-form-7{
     padding:40px;
}
 .contact-form-seven .contact-form .cv{
     margin:20px auto;
}
 .contact-form-seven .contact-form .submit-btn-wrapper button {
     margin-top: 0px;
}
 .contact-form-seven .contact-form .submit-btn-wrapper button {
     width: 100%;
}
 .contact-form-seven .contact-form {
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     padding:40px 0px 80px 0px;
}
 .contact-form-area.contact-form-8{
     background: linear-gradient(to right, #643094, #00bcd4e0);
}
 .contact-form-8 .contact-form-seven .contact-form {
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     padding:40px 0px 80px 0px;
     background:#fff;
}
/** end contact-form**/
/** start brand logo**/
 .brand-area{
     margin:60px 0px;
     transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
     padding: 30px 0px 30px 0px;
}
 .brand-bg{
     background-color: #eaeaea;
}
 .brand-active{
     padding: 10px;
     position:relative;
     overflow:hidden;
}
 .brand-area-warp .slick-prev, .brand-area-warp .slick-next {
     color: #fff;
     background: #777;
}
 .brand-img img {
     height: auto;
     max-width: 100%;
     border: none;
     -webkit-border-radius: 0;
     border-radius: 0;
     -webkit-box-shadow: none;
     box-shadow: none;
}
 .brand-img {
     cursor:pointer;
}
 .slick-dotted.slick-slider {
     margin-bottom: 0px;
}
 .brand-area .slick-prev {
     left: 0px;
}
 .brand-area .slick-next {
     right: 0px;
}
 .brand-area-two .bg-active{
     padding:25px 0px;
}
 .brand-area-two .owl-theme .owl-nav {
     text-align: right;
     float: right;
     margin-top: 0;
     margin-top: 50px;
}
 .brand-area-two .brand-bg{
     background-color: #eaeaea;
     padding:10px;
}
 .brand-area-three .brand-bg{
     padding:10px;
}
 .slick-dots li button:before {
     font-size: 25px;
}
 .brand-area-four .bg-active{
     padding:30px 0px;
}
 .brand-area-four .brand-img img{
     border: 3px solid #ddd;
}
 .brand-area-four .brand-img img:hover{
     border: 3px solid #324cec;
}
 .brand-area-five .brand-img img{
     box-shadow: 0 0 20px rgba(0,0,0,.1);
}
 .brand-area-five .bg-active{
     padding:30px 0px;
}
 .brand-area-five .brand-img img:hover{
     background: #fff;
}
 .brand-area-six .brand-img img{
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     background: #fff;
}
 .brand-area-six .bg-active{
     padding:30px 0px;
}
/** end brand logo**/
/** start protfolio **/
 .portfolio-area{
     padding:80px 0px;
}
 .portfolio-menu button {
     border: medium none;
     border-radius: 30px;
     color: #595959;
     font-size: 15px;
     font-weight: 500;
     line-height: 1;
     background:none;
     margin-right: 12px;
     padding: 8px 13px;
     transition: all 0.3s ease 0s;
}
 .portfolio-menu{
     margin-bottom:40px;
}
 .portfolio-menu button:focus {
     outline: 0 none;
}
 .portfolio-menu button:last-child {
     margin-right: 0;
}
 .portfolio-menu button:hover {
     color: #e33939;
}
 .portfolio-menu button.active {
     color: #e33939;
}
 .custom {
     margin: 0 -15px;
    ;
}
 .portfolio-wrapper {
     position:relative;
}
 .portfolio-img {
    position:relative;
    overflow:hidden;
}
 .portfolio-img::before {
     background: rgba(0, 0, 0, 0.65);
     bottom: 0px;
     content: "";
     left: 0px;
     opacity: 0;
     position: absolute;
     right: 0px;
     top: 0px;
     transition: all 0.5s ease 0s;
     z-index: 9;
     width: 0%;
}
 .portfolio-wrapper:hover .portfolio-img::before{
    opacity:1;
    width: 100%;
}
 .portfolio-img img {
     width: 100%;
     transition:.3s;
}
 .portfolio-wrapper:hover .portfolio-img img {
     transform: scale(1.2) rotate(7deg);
}
 .portfolio-content {
     left: 0;
     opacity: 0;
     position: absolute;
     right: 0;
     text-align: center;
     top: 50%;
     transform: translateY(-50%);
     transition: all 0.3s ease 0s;
     z-index:10;
}
 .portfolio-wrapper:hover .portfolio-content{
    opacity:1;
}
 .portfolio-content i{
     color: #e33939;
     display: inline-block;
     font-size: 20px;
     margin-bottom: 10px;
     border:1px solid #fff;
     border-radius:50%;
     padding:15px;
     background:#fff;
     transition:.3s;
     cursor:pointer;
}
 .portfolio-content h4 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 0;
     font-family:"montserrat",sans-serif;
}
 .portfolio-content h4>a{
    color:#fff;
    transition:.3s;
}
 .portfolio-area-two .portfolio-menu button {
     background:#ddd;
     padding: 10px 20px;
}
 .portfolio-area-two .portfolio-menu button.active {
     background:#e33939;
     color: #fff;
}
 .portfolio-area-two .portfolio-img::before {
     background: linear-gradient(to right, #643094d9, #00bcd4e0);
}
 .portfolio-area-three .portfolio-menu button{
     position:relative;
     overflow:hidden;
}
 .portfolio-area-three .portfolio-menu button::after {
     content: '';
     display: block;
     position: absolute;
     top: 100%;
     left: 0;
     height: 4px;
     background: black;
     width: 0;
     opacity: 0;
     -webkit-transition: width 400ms cubic-bezier(0.29, 0.29, 0.42, 1.01), opacity 600ms ease-in-out;
     transition: width 400ms cubic-bezier(0.29, 0.29, 0.42, 1.01), opacity 600ms ease-in-out;
}
 .portfolio-area-three .portfolio-menu button.active:hover::after {
     width: 100%;
     opacity: 1;
}
 .portfolio-area-three .portfolio-menu button.active {
     color: #fff;
     background:#000;
}
 .portfolio-area-four .portfolio-img-4 {
    position:relative;
    overflow:hidden;
}
 .portfolio-area-four .portfolio-img-4::before {
     background: rgba(0, 0, 0, 0.65);
     bottom: 0px;
     content: "";
     left: 0px;
     opacity: 0;
     position: absolute;
     right: 0px;
     top: 50%;
     transition: all 0.5s ease 0s;
     z-index: 9;
     width: 100%;
     height:100%;
}
 .portfolio-area-four .portfolio-wrapper:hover .portfolio-img-4::before{
     opacity: 1;
     top: 0;
}
 .portfolio-area-four .portfolio-menu button {
     color: #000;
     background: #e8e8e8;
     border-top: 1px solid #e0e0e0;
     border-left: 1px solid #e0e0e0;
     border-right: 1px solid #e0e0e0;
     border-top-left-radius: 0rem;
     border-top-right-radius: 0rem;
     border-radius:0px;
}
 .portfolio-area-four .portfolio-menu button.active {
     color: #000000;
     background: #ffffff;
     border-color: #dee2e6 #dee2e6 #fff;
}
 .portfolio-area-four .bg-bottom {
     border-bottom:1px solid #ddd;
}
 .portfolio-content-4 {
     left: 0;
     opacity: 0;
     position: absolute;
     right: 0;
     text-align: center;
     top: 45%;
     transform: translateY(-50%);
     transition: all 0.3s ease 0s;
     z-index:10;
}
 .portfolio-wrapper:hover .portfolio-content-4{
    opacity:1;
}
 .portfolio-content-4 i{
     color: #e33939;
     display: inline-block;
     font-size: 20px;
     margin-bottom: 10px;
     border:1px solid #fff;
     border-radius:50%;
     padding:15px;
     background:#fff;
     transition:.3s;
     cursor:pointer;
}
 .portfolio-area-four .portfolio-wrapper h4{
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     padding:20px 30px;
     font-size: 20px;
     font-weight: 600;
     text-transform: capitalize;
     font-family:"montserrat",sans-serif;
}
 .portfolio-area-five .portfolio-menu button{
     color:#fff;
}
 .black-bg-5{
     background:#000;
}
 .portfolio-area-five .portfolio-img {
     border-radius: 12px;
}
 .portfolio-area-five .portfolio-menu button{
     border:1px solid #ddd;
     padding: 12px 20px;
}
 .portfolio-area-five .portfolio-menu button.active{
     color:#000;
     background:#fff;
}
 .portfolio-area-six .portfolio-menu button{
     border:5px solid #ddd;
     border-radius:0px;
     padding: 12px 20px;
}
 .portfolio-area-six .portfolio-menu button.active{
     border:5px solid #000;
     color:#ff3939;
}
 .portfolio-area-six .portfolio-img-4 {
    position:relative;
    overflow:hidden;
}
 .portfolio-area-six .portfolio-img-4::before {
     background: rgba(0, 0, 0, 0.65);
     bottom: 0px;
     content: "";
     left: 0px;
     opacity: 0;
     position: absolute;
     right: 0px;
     top: 100%;
     transition: all 0.5s ease 0s;
     z-index: 9;
     width: 100%;
     height:100%;
}
 .portfolio-area-six .portfolio-wrapper:hover .portfolio-img-4::before{
     opacity: 1;
     top: 0;
}
/** end protfolio**/
/** start switcher**/
 .switcher-area{
     padding:80px 0px;
}
 .switcher-bg{
     background:#f1f1f1;
}
 .switcher-area-warp{
     max-width: 220px;
     margin: 0 auto;
     padding: 0;
}
 .switcher-contl input[type="checkbox"] {
     display: none;
}
 .switcher-contl input[type="checkbox"] + label {
     display: inline-block;
     width: 40px;
     height: 20px;
     position: relative;
     transition: 0.3s;
     margin: 0px 20px;
     box-sizing: border-box;
}
 .switcher-contl input[type="checkbox"] + label:after, .switcher-contl input[type="checkbox"] + label:before {
     content: '';
     display: block;
     position: absolute;
     left: 0px;
     top: 0px;
     width: 20px;
     height: 20px;
     transition: 0.3s;
     cursor: pointer;
}
 #simple-1:checked + label.red, #simple-2:checked + label.red, #simple-3:checked + label.red {
     background: #ECA9A7;
}
 #simple-1:checked + label.red:after, #simple-2:checked + label.red:after, #simple-3:checked + label.red:after {
     background: #D9534F;
}
 #simple-1:checked + label.green, #simple-2:checked + label.green, #simple-3:checked + label.green {
     background: #AEDCAE;
}
 #simple-1:checked + label.green:after, #simple-2:checked + label.green:after, #simple-3:checked + label.green:after {
     background: #5CB85C;
}
 #simple-1:checked + label:after, #simple-2:checked + label:after, #simple-3:checked + label:after {
     left: calc(100% - 20px);
}
 #simple-1 + label, #simple-2 + label, #simple-3 + label {
     background: #bbb;
     border-radius: 20px;
     box-shadow: 1px 1px 3px #aaa;
}
 #simple-1 + label:after, #simple-2 + label:after, #simple-3 + label:after {
     background: #fff;
     border-radius: 50%;
     box-shadow: 1px 1px 3px #aaa;
}
 #md-1:checked + label.red, #md-2:checked + label.red, #md-3:checked + label.red {
     background: #ECA9A7;
}
 #md-1:checked + label.red:after, #md-2:checked + label.red:after, #md-3:checked + label.red:after {
     background: #D9534F;
}
 #md-1:checked + label.green, #md-2:checked + label.green, #md-3:checked + label.green {
     background: #AEDCAE;
}
 #md-1:checked + label.green:after, #md-2:checked + label.green:after, #md-3:checked + label.green:after {
     background: #5CB85C;
}
 #md-1:checked + label:after, #md-2:checked + label:after, #md-3:checked + label:after {
     left: calc(100% - 20px);
}
 #md-1 + label, #md-2 + label, #md-3 + label {
     background: #bbb;
     border-radius: 20px;
     height: 10px;
}
 #md-1 + label:after, #md-2 + label:after, #md-3 + label:after {
     background: #fff;
     border-radius: 50%;
     top: -5px;
     box-shadow: 0px 0px 3px #aaa;
}
 #mds-1:checked + label.red, #mds-2:checked + label.red, #mds-3:checked + label.red {
     background: #ECA9A7;
}
 #mds-1:checked + label.red:after, #mds-2:checked + label.red:after, #mds-3:checked + label.red:after {
     background: #D9534F;
}
 #mds-1:checked + label.green, #mds-2:checked + label.green, #mds-3:checked + label.green {
     background: #AEDCAE;
}
 #mds-1:checked + label.green:after, #mds-2:checked + label.green:after, #mds-3:checked + label.green:after {
     background: #5CB85C;
}
 #mds-1:checked + label:after, #mds-2:checked + label:after, #mds-3:checked + label:after {
     left: calc(100% - 20px);
}
 #mds-1 + label, #mds-2 + label, #mds-3 + label {
     background: #bbb;
     height: 3px;
}
 #mds-1 + label:after, #mds-2 + label:after, #mds-3 + label:after {
     background: #fff;
     border-radius: 50%;
     top: -9px;
     box-shadow: 0px 0px 3px #aaa;
}
 #border-1:checked + label.red, #border-2:checked + label.red, #border-3:checked + label.red {
     border-color: #ECA9A7;
}
 #border-1:checked + label.red:after, #border-2:checked + label.red:after, #border-3:checked + label.red:after {
     background: #D9534F;
}
 #border-1:checked + label.green, #border-2:checked + label.green, #border-3:checked + label.green {
     border-color: #AEDCAE;
}
 #border-1:checked + label.green:after, #border-2:checked + label.green:after, #border-3:checked + label.green:after {
     background: #5CB85C;
}
 #border-1:checked + label:after, #border-2:checked + label:after, #border-3:checked + label:after {
     left: calc(100% - 14px);
}
 #border-1 + label, #border-2 + label, #border-3 + label {
     border: 2px solid #bbb;
     border-radius: 20px;
}
 #border-1 + label:after, #border-2 + label:after, #border-3 + label:after {
     background: #bbb;
     border-radius: 50%;
     width: 12px;
     height: 12px;
     top: 2px;
     left: 2px;
}
 #inset-1:checked + label.red, #inset-2:checked + label.red, #inset-3:checked + label.red {
     background: #ECA9A7;
}
 #inset-1:checked + label.red:after, #inset-2:checked + label.red:after, #inset-3:checked + label.red:after {
     background: #D9534F;
}
 #inset-1:checked + label.green, #inset-2:checked + label.green, #inset-3:checked + label.green {
     background: #AEDCAE;
}
 #inset-1:checked + label.green:after, #inset-2:checked + label.green:after, #inset-3:checked + label.green:after {
     background: #5CB85C;
}
 #inset-1:checked + label:after, #inset-2:checked + label:after, #inset-3:checked + label:after {
     left: calc(100% - 18px);
}
 #inset-1 + label, #inset-2 + label, #inset-3 + label {
     background: #bbb;
     border-radius: 20px;
}
 #inset-1 + label:after, #inset-2 + label:after, #inset-3 + label:after {
     background: #fff;
     border-radius: 50%;
     width: 16px;
     height: 16px;
     top: 2px;
     left: 2px;
}
 #box-1:checked + label.red, #box-2:checked + label.red, #box-3:checked + label.red {
     background: #ECA9A7;
}
 #box-1:checked + label.red:after, #box-2:checked + label.red:after, #box-3:checked + label.red:after {
     background: #D9534F;
}
 #box-1:checked + label.green, #box-2:checked + label.green, #box-3:checked + label.green {
     background: #AEDCAE;
}
 #box-1:checked + label.green:after, #box-2:checked + label.green:after, #box-3:checked + label.green:after {
     background: #5CB85C;
}
 #box-1:checked + label:after, #box-2:checked + label:after, #box-3:checked + label:after {
     left: calc(100% - 18px);
}
 #box-1 + label, #box-2 + label, #box-3 + label {
     background: #bbb;
}
 #box-1 + label:after, #box-2 + label:after, #box-3 + label:after {
     background: #fff;
     width: 16px;
     height: 16px;
     top: 2px;
     left: 2px;
}
 #flex-1:checked + label.red, #flex-2:checked + label.red, #flex-3:checked + label.red {
     background: #ECA9A7;
}
 #flex-1:checked + label.red:after, #flex-2:checked + label.red:after, #flex-3:checked + label.red:after {
     background: #D9534F;
}
 #flex-1:checked + label.green, #flex-2:checked + label.green, #flex-3:checked + label.green {
     background: #AEDCAE;
}
 #flex-1:checked + label.green:after, #flex-2:checked + label.green:after, #flex-3:checked + label.green:after {
     background: #5CB85C;
}
 #flex-1:checked + label:active:after, #flex-2:checked + label:active:after, #flex-3:checked + label:active:after {
     left: calc(100% - 28px);
}
 #flex-1:checked + label:after, #flex-2:checked + label:after, #flex-3:checked + label:after {
     left: calc(100% - 18px);
}
 #flex-1 + label, #flex-2 + label, #flex-3 + label {
     background: #bbb;
     border-radius: 20px;
}
 #flex-1 + label:active:after, #flex-2 + label:active:after, #flex-3 + label:active:after {
     width: 26px;
}
 #flex-1 + label:after, #flex-2 + label:after, #flex-3 + label:after {
     background: #fff;
     border-radius: 10px;
     width: 16px;
     height: 16px;
     top: 2px;
     left: 2px;
}
 #fullFlex-1:checked + label.red, #fullFlex-2:checked + label.red, #fullFlex-3:checked + label.red {
     background: #D9534F;
}
 #fullFlex-1:checked + label.red:after, #fullFlex-2:checked + label.red:after, #fullFlex-3:checked + label.red:after {
     background: #ECA9A7;
}
 #fullFlex-1:checked + label.green, #fullFlex-2:checked + label.green, #fullFlex-3:checked + label.green {
     background: #5CB85C;
}
 #fullFlex-1:checked + label.green:after, #fullFlex-2:checked + label.green:after, #fullFlex-3:checked + label.green:after {
     background: #AEDCAE;
}
 #fullFlex-1:checked + label:after, #fullFlex-2:checked + label:after, #fullFlex-3:checked + label:after {
     width: 36px;
}
 #fullFlex-1 + label, #fullFlex-2 + label, #fullFlex-3 + label {
     background: #bbb;
     border-radius: 20px;
}
 #fullFlex-1 + label:after, #fullFlex-2 + label:after, #fullFlex-3 + label:after {
     background: #fff;
     border-radius: 10px;
     width: 16px;
     height: 16px;
     top: 2px;
     left: 2px;
}
 #bubble-1:checked + label.red, #bubble-2:checked + label.red, #bubble-3:checked + label.red {
     background: #ECA9A7;
}
 #bubble-1:checked + label.red:after, #bubble-2:checked + label.red:after, #bubble-3:checked + label.red:after {
     background: #D9534F;
}
 #bubble-1:checked + label.green, #bubble-2:checked + label.green, #bubble-3:checked + label.green {
     background: #AEDCAE;
}
 #bubble-1:checked + label.green:after, #bubble-2:checked + label.green:after, #bubble-3:checked + label.green:after {
     background: #5CB85C;
}
 #bubble-1:checked + label.red:before, #bubble-2:checked + label.red:before, #bubble-3:checked + label.red:before {
     background: #D9534F;
}
 #bubble-1:checked + label.green:before, #bubble-2:checked + label.green:before, #bubble-3:checked + label.green:before {
     background: #5CB85C;
}
 #bubble-1:checked + label:active:before, #bubble-2:checked + label:active:before, #bubble-3:checked + label:active:before {
     left: calc(100% - 30px);
}
 #bubble-1:checked + label:after, #bubble-2:checked + label:after, #bubble-3:checked + label:after, #bubble-1:checked + label:before, #bubble-2:checked + label:before, #bubble-3:checked + label:before {
     left: calc(100% - 20px);
}
 #bubble-1 + label, #bubble-2 + label, #bubble-3 + label {
     background: #bbb;
     border-radius: 20px;
     height: 10px;
}
 #bubble-1 + label:active:before, #bubble-2 + label:active:before, #bubble-3 + label:active:before {
     width: 40px;
     height: 40px;
     left: -10px;
     top: -15px;
}
 #bubble-1 + label:after, #bubble-2 + label:after, #bubble-3 + label:after {
     background: #fff;
     border-radius: 50%;
     top: -5px;
     box-shadow: 0px 0px 3px #aaa;
}
 #bubble-1 + label:before, #bubble-2 + label:before, #bubble-3 + label:before {
     top: -5px;
     border-radius: 50%;
     background: #bbb;
     opacity: 0.5;
     transition: width height 0.01s;
}
 #teleport-1:checked + label.red, #teleport-2:checked + label.red, #teleport-3:checked + label.red {
     border-color: #ECA9A7;
}
 #teleport-1:checked + label.red:before, #teleport-2:checked + label.red:before, #teleport-3:checked + label.red:before {
     background: #D9534F;
}
 #teleport-1:checked + label.green, #teleport-2:checked + label.green, #teleport-3:checked + label.green {
     border-color: #AEDCAE;
}
 #teleport-1:checked + label.green:before, #teleport-2:checked + label.green:before, #teleport-3:checked + label.green:before {
     background: #5CB85C;
}
 #teleport-1:checked + label:after, #teleport-2:checked + label:after, #teleport-3:checked + label:after {
     left: -13px;
}
 #teleport-1:checked + label:before, #teleport-2:checked + label:before, #teleport-3:checked + label:before {
     width: 12px;
     height: 12px;
     left: calc(100% - 15px);
}
 #teleport-1 + label, #teleport-2 + label, #teleport-3 + label {
     border: 2px solid #bbb;
     border-radius: 20px;
     overflow: hidden;
}
 #teleport-1 + label:after, #teleport-2 + label:after, #teleport-3 + label:after {
     background: #bbb;
     border-radius: 10px;
     width: 12px;
     height: 12px;
     top: 2px;
     left: 2px;
}
 #teleport-1 + label:before, #teleport-2 + label:before, #teleport-3 + label:before {
     background: #bbb;
     border-radius: 10px;
     left: 100%;
     width: 12px;
     height: 12px;
     top: 2px;
}
 #uLine-1:checked + label.red, #uLine-2:checked + label.red, #uLine-3:checked + label.red {
     border-color: #ECA9A7;
}
 #uLine-1:checked + label.red:after, #uLine-2:checked + label.red:after, #uLine-3:checked + label.red:after, #uLine-1:checked + label.red:before, #uLine-2:checked + label.red:before, #uLine-3:checked + label.red:before {
     background: #D9534F;
}
 #uLine-1:checked + label.green, #uLine-2:checked + label.green, #uLine-3:checked + label.green {
     border-color: #AEDCAE;
}
 #uLine-1:checked + label.green:after, #uLine-2:checked + label.green:after, #uLine-3:checked + label.green:after, #uLine-1:checked + label.green:before, #uLine-2:checked + label.green:before, #uLine-3:checked + label.green:before {
     background: #5CB85C;
}
 #uLine-1:checked + label:before, #uLine-2:checked + label:before, #uLine-3:checked + label:before {
     left: calc(100% + 8px);
}
 #uLine-1:checked + label:active:before, #uLine-2:checked + label:active:before, #uLine-3:checked + label:active:before {
     left: calc(100% - 2px);
}
 #uLine-1 + label, #uLine-2 + label, #uLine-3 + label {
     background: #bbb;
     border-radius: 20px;
     width: 16px;
     height: 16px;
     cursor: pointer;
}
 #uLine-1 + label:after, #uLine-2 + label:after, #uLine-3 + label:after {
     background: #bbb;
     border-radius: 10px;
     width: 16px;
     height: 16px;
     left: 26px;
}
 #uLine-1 + label:active:before, #uLine-2 + label:active:before, #uLine-3 + label:active:before {
     width: 30px;
}
 #uLine-1 + label:before, #uLine-2 + label:before, #uLine-3 + label:before {
     background: #bbb;
     border-radius: 10px;
     left: -2px;
     width: 20px;
     height: 2px;
     top: auto;
     bottom: -6px;
}
 #uLine-box-1:checked + label.red, #uLine-box-2:checked + label.red, #uLine-box-3:checked + label.red {
     border-color: #ECA9A7;
}
 #uLine-box-1:checked + label.red:after, #uLine-box-2:checked + label.red:after, #uLine-box-3:checked + label.red:after, #uLine-box-1:checked + label.red:before, #uLine-box-2:checked + label.red:before, #uLine-box-3:checked + label.red:before {
     background: #D9534F;
}
 #uLine-box-1:checked + label.green, #uLine-box-2:checked + label.green, #uLine-box-3:checked + label.green {
     border-color: #AEDCAE;
}
 #uLine-box-1:checked + label.green:after, #uLine-box-2:checked + label.green:after, #uLine-box-3:checked + label.green:after, #uLine-box-1:checked + label.green:before, #uLine-box-2:checked + label.green:before, #uLine-box-3:checked + label.green:before {
     background: #5CB85C;
}
 #uLine-box-1:checked + label:before, #uLine-box-2:checked + label:before, #uLine-box-3:checked + label:before {
     left: calc(100% + 8px);
}
 #uLine-box-1:checked + label:active:before, #uLine-box-2:checked + label:active:before, #uLine-box-3:checked + label:active:before {
     left: calc(100% - 2px);
}
 #uLine-box-1 + label, #uLine-box-2 + label, #uLine-box-3 + label {
     background: #bbb;
     border-radius: 0px;
     width: 16px;
     height: 16px;
     cursor: pointer;
}
 #uLine-box-1 + label:after, #uLine-box-2 + label:after, #uLine-box-3 + label:after {
     background: #bbb;
     border-radius: 0px;
     width: 16px;
     height: 16px;
     left: 26px;
}
 #uLine-box-1 + label:active:before, #uLine-box-2 + label:active:before, #uLine-box-3 + label:active:before {
     width: 30px;
}
 #uLine-box-1 + label:before, #uLine-box-2 + label:before, #uLine-box-3 + label:before {
     background: #bbb;
     border-radius: 0px;
     left: -2px;
     width: 20px;
     height: 2px;
     top: auto;
     bottom: -6px;
}
 .bg-warp .switcher-area-warp {
     max-width: 175px;
}
/** end switcher**/
/** end blog deatails**/
 .section-padding-bg{
     padding:100px 0px;
}
 .blog-single-section .entry-meta {
     list-style: none;
     overflow: hidden;
     border: 0;
     padding: 0 0 25px;
     border-bottom: 1px solid #e5e5e5;
}
 .blog-single-section .entry-meta li {
     font-size: 14px;
     font-size: 0.93333rem;
     float: left;
}
 .blog-single-section .entry-meta > li + li {
     margin-left: 25px;
}
 .blog-single-section .entry-meta li a {
     color: #999999;
     font-size: 14px;
}
 .blog-single-section .entry-meta li a:hover {
     color: #324ece;
}
 .blog-single-section .entry-title-meta {
     margin-bottom: 25px;
}
 .blog-single-section .entry-title-meta h3 {
     font-size: 22px;
     font-size: 1.46667rem;
     line-height: 1.4em;
     margin: 0 0 0.45em;
     font-weight:600;
     text-transform: capitalize;
     font-family: "montserrat",sans-serif;
}
 .blog-single-section .entry-media {
     margin-bottom: 30px;
}
 .blog-single-section .entry-body p {
     line-height: 1.81em;
     color: #86909e;
     margin-bottom: 35px;
     font-size: 15px;
}
 .blog-single-section .paga-with-blockquote {
     overflow: hidden;
}
 .blog-single-section .paga-with-blockquote p {
     width: 60%;
     float: left;
}
 .blog-single-section .paga-with-blockquote blockquote {
     width: 40%;
     font-size: 22px;
     font-style: italic;
     margin: 3px 0px 0px 0px;
     float: right;
     border: 0;
     line-height: 1.5em;
     padding: 0px 25px;
     color: #324ece;
}
 .blog-single-section .tag-share {
     text-align: center;
     overflow: hidden;
     margin: 40px 0 68px;
     position: relative;
    /*** share ***/
}
 .blog-single-section .tag-share:after {
     content: "";
     background-color: #e7e7e7;
     width: 100%;
     height: 1px;
     position: absolute;
     left: 0;
     top: 40%;
}
 .blog-single-section .tag-share ul {
     list-style: none;
}
 .blog-single-section .tag-share ul {
     display: inline-block;
     overflow: hidden;
     position: relative;
     right: -13px;
     top: -7px;
}
 .blog-single-section .tag-share ul li {
     float: left;
     margin-right: 6px;
}
 .blog-single-section .tag-share ul li:last-child {
     margin-right: 0;
}
 .blog-single-section .tag-share > div {
     background-color: #fff;
     width: 150px;
     margin: 0 auto;
     position: relative;
     z-index: 5;
}
 .blog-single-section .tag-share > div:last-child span {
     font-size: 15px;
     font-size: 0.93333rem;
     font-weight: 600;
     color: #999;
     position: relative;
     top: 18px;
     left: -35px;
     padding-right: 0px;
}
 .blog-single-section .tag-share .share {
     padding-bottom: 0;
}
 .blog-single-section .tag-share .share a {
     font-size: 16px;
     font-size: 1.06667rem;
     color: #585858;
     display: inline-block;
     padding: 2px 4px 
}
 .blog-single-section .tag-share .share a:hover {
     color: #324ece;
}
 .blog-single-section .related-posts {
     margin-bottom: 50px;
}
 .blog-single-section .related-posts h4 {
     font-size: 24px;
     font-size: 1.6rem;
     font-family:"montserrat",sans-serif;
     margin: 0 0 1.2em;
     font-weight:600;
}
 .blog-single-section .related-posts .entry-meta {
     padding: 12px 0 10px;
     border-bottom: 1px solid #e1e2e3;
}
 .blog-single-section .related-posts .entry-meta ul {
     overflow: hidden;
}
 .blog-single-section .related-posts .entry-meta li {
     float: left;
}
 .blog-single-section .related-posts .entry-meta ul > li + li {
     margin-left: 20px;
}
 .blog-single-section .related-posts .entry-meta a {
     font-size: 14px;
     font-size: 0.93333rem;
     color: #999ea5;
}
 .blog-single-section .related-posts .entry-meta a:hover {
     color: #09a223;
}
 .blog-single-section .related-posts .entry-body {
     padding-top: 15px;
}
 .blog-single-section .related-posts .entry-body h3 {
     font-size: 18px;
     font-size: 1.2rem;
     line-height: 1.4em;
     margin: 0 0 0.8em;
}
 .blog-single-section .related-posts .entry-body h3 a {
     color: #1e2331;
}
 .blog-single-section .related-posts .entry-body h3 a:hover {
     color: #09a223;
}
 .blog-single-section .about-author {
     margin-bottom: 50px;
}
 .blog-single-section .about-author h4 {
     font-size: 24px;
     font-size: 1.6rem;
     margin: 0 0 0.83em;
     font-weight:600;
     font-family:"montserrat",sans-serif;
}
 .related-posts .new-blog-builder .grid-content h4 a:hover{
     color:#324cec;
}
 .blog-single-section .about-author .inner {
     background-color: #f8f8fa;
     padding: 33px 50px;
     border: 1px solid #e6e9ec;
     overflow: hidden;
}
 .blog-single-section .about-author .author-pic {
     width: 73px;
     float: left;
}
 .blog-single-section .about-author .author-details {
     width: calc(100% - 73px);
     float: left;
     padding-left: 25px;
}
 .blog-single-section .about-author .author-details h5 {
     font-size: 16px;
     font-size: 1.06667rem;
     font-weight:600;
     margin: 0;
}
 .blog-single-section .about-author .author-job {
     font-size: 14px;
     font-size: 0.93333rem;
     color: #999;
     display: inline-block;
     margin-bottom: 8px;
}
 .blog-single-section .about-author p {
     font-size: 14px;
     font-size: 0.93333rem;
     color: #666;
}
 .blog-single-section .about-author .social {
     list-style: none;
}
 .blog-single-section .about-author .social li {
     float: left;
     margin-left: 10px;
}
 .blog-single-section .about-author .social li:first-child {
     margin-left: 0;
}
 .blog-single-section .about-author .social li a {
     font-size: 15px;
     font-size: 1rem;
     color: #1e2331;
}
 .blog-single-section .about-author .social li a:hover {
     color: #324cec;
}
 .blog-single-section .comments {
    /*** .article ***/
}
 .blog-single-section .comments h3 {
     font-size: 18px;
     font-size: 1.2rem;
     margin: 0 0 1em;
}
 .blog-single-section .comments > ol {
     padding-left: 0;
}
 .blog-single-section .comments ol {
     list-style: none;
}
 .blog-single-section .comments ol > li {
     margin-bottom: 35px;
}
 .blog-single-section .comments ol > li:last-child {
     margin-bottom: 0;
}
 .blog-single-section .comments ol > li > ol {
     margin-left: 28px;
     margin-top: 35px;
     padding: 0;
}
 .blog-single-section .comments ol > li > ol > li {
     background-color: #fafafa;
     margin-bottom: 35px !important;
}
 .blog-single-section .comments ol > li > ol > li:last-child {
     margin-bottom: 0 !important;
}
 .blog-single-section .comments .article {
     overflow: hidden;
     border: 1px solid #d3d7d9;
     padding: 25px;
     position: relative;
}
 .blog-single-section .comments .article h4 {
     font-size: 16px;
     font-size: 1.06667rem;
     margin: 0;
     text-transform: capitalize;
}
 .blog-single-section .comments .article p {
     font-size: 15px;
     font-size: 1rem;
     margin-bottom: 5px;
}
 .blog-single-section .comments .article .replay button {
     background-color: transparent;
     font-size: 14px;
     font-size: 0.93333rem;
     font-weight: 600;
     color: #324ece;
     padding: 0;
     border: 0;
     outline: 0;
     position: absolute;
     right: 25px;
     top: 25px;
}
 .blog-single-section .comments .article .replay button:hover {
     color: #3f03a0;
}
 .blog-single-section .comments .article .author-meta {
     overflow: hidden;
     margin-bottom: 5px;
}
 .blog-single-section .comments .article .author-meta h4 {
     font-size: 15px;
     color:#000;
     font-weight:500;
}
 .blog-single-section .comments .article .author-meta > div:last-child {
     font-size: 12px;
     font-size: 0.8rem;
     color: #a3aab2;
}
 .blog-single-section .comments .article .author-pic {
     width: 10%;
     float: left;
}
 .blog-single-section .comments .article .details {
     width: 90%;
     float: left;
     padding-left: 16px;
}
 .blog-single-section .comments .article p {
     font-size: 14px;
     color: #4a4a4a;
     line-height:22px;
}
 .blog-single-section .comment-respond {
     margin-top: 55px;
}
 .blog-single-section .comment-respond h4 {
     font-size: 24px;
     font-size: 1.6rem;
     margin: 0 0 1.2em;
     font-weight:600;
     font-family:"montserrat",sans-serif;
}
 .blog-single-section .comment-respond form {
     margin: 0 -15px;
     position: relative;
}
 .blog-single-section .comment-respond form input, .blog-single-section .comment-respond form textarea {
     background-color: #f8f8fa;
     height: 40px;
     border: 1px solid #e6e9ec;
     -webkit-box-shadow: none;
     box-shadow: none;
     border-radius: 0;
     font-size: 14px;
}
 .blog-single-section .comment-respond form textarea {
     height: 195px;
}
 .blog-single-section .comment-respond form > div {
     margin-bottom: 20px;
     float: left;
}
 .blog-single-section .comment-respond .submit-btn {
     text-align: center;
     margin: 25px 0 0;
}
 .blog-single-section .comment-respond .submit-btn button {
     width: 100%;
     background-color: #324ece;
     padding: 10px 30px;
     color: #fff;
     border: 0;
     outline: 0;
}
 .blog-single-section .comment-respond .submit-btn button:hover {
     background-color: #324ece;
}
 .blog-sidebar .search-widget input, .blog-sidebar .news-letter-widget input{
     height: 40px;
     border: 1px solid #e5e5e5;
     padding: 6px 80px 6px 15px;
     border-radius: 0;
     -webkit-box-shadow: none;
     box-shadow: none;
}
 .blog-sidebar .form-control {
     display: block;
     width: 100%;
     height: 34px;
     padding: 6px 12px;
     font-size: 14px;
     line-height: 1.42857143;
     color: #555;
     background-color: #fff;
     background-image: none;
     border: 1px solid #ccc;
     border-radius: 4px;
     -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
     box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
     -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
     -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
     transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
 .blog-sidebar .search-widget button{
     background-color: #324ece;
     width: 50px;
     height: 40px;
     line-height: 40px;
     color: #fff;
     border: 0;
     position:absolute;
     outline: 0;
     right: 0;
     top: 0;
}
 .blog-sidebar .search-widget{
     position:relative;
}
 .blog-sidebar > .widget + .widget {
     margin-top: 80px;
}
 .blog-sidebar .widget > h3 {
     font-size: 20px;
     margin: 0 0 1.3em;
     position: relative;
     font-weight:600;
     text-transform: uppercase;
     font-family:"montserrat",sans-serif;
}
 .blog-sidebar .recent-post-widget .post {
     overflow: hidden;
}
 .blog-sidebar .recent-post-widget .entry-media {
     width: 75px;
     float: left;
     margin-bottom: 20px;
}
 .blog-sidebar .recent-post-widget .entry-details {
     width: calc(100% - 75px);
     float: left;
     padding-left: 15px;
}
 .blog-sidebar .recent-post-widget > .post + .post {
     padding-top: 20px;
     border-top: 1px solid #e8e8e8;
}
 .blog-sidebar .recent-post-widget .entry-details h4 {
     font-size: 15px;
     font-weight: 600;
     font-family:"montserrat",sans-serif;
     line-height: 1.4em;
     margin: 0 0 0.3em;
}
 .blog-sidebar .recent-post-widget .entry-details h4 a {
     color: #1e2331;
}
 .blog-sidebar .recent-post-widget .entry-details h4:hover a {
     color: #324cec;
}
 .blog-sidebar .recent-post-widget .date {
     font-size: 13px;
     color: #bebfc0;
}
 .blog-single-section .blog-details-content {
     padding-right: 50px;
}
 .blog-sidebar ul {
     list-style: none;
     padding:0;
}
 .blog-sidebar .categories-widget ul a {
     display: block;
     color: #86909e;
     padding: 9px 0;
     font-size: 15px;
     position: relative;
}
 .blog-sidebar .categories-widget ul a:hover {
     color:#324cec;
}
 .blog-sidebar .categories-widget ul a span {
     position: absolute;
     right: 0;
     font-size: 15px;
}
 .blog-sidebar .categories-widget ul a span:before {
     content: "(";
     position: relative;
     top: 1px;
}
 .blog-sidebar .categories-widget ul a span:after {
     content: ")";
     position: relative;
     top: 1px;
}
 .blog-sidebar .recent-comments ul li {
     border-bottom: 1px solid #eff1f3;
     padding-bottom: 10px;
     color: #6a6a6a;
     line-height: 1.6em;
}
 .blog-sidebar .recent-comments .post-by {
     color: #3f4e65;
     font-weight: 500;
     font-size:14px;
}
 .blog-sidebar .recent-comments .post-by:hover {
     color: #324cec;
}
 .blog-sidebar .recent-comments a {
     color: #3f4e65;
     font-weight: 500;
     font-size:14px;
}
 .blog-sidebar .recent-comments a:hover {
     color: #324cec;
}
 .blog-sidebar .news-letter-widget input {
     background-color: #f8f8fa;
     -webkit-box-shadow: none;
     box-shadow: none;
     font-size: 14px;
}
 .blog-sidebar .news-letter-widget{
     position:relative;
}
 .blog-sidebar .news-letter-widget button {
     background-color: #324cec;
     width: 50px;
     height: 40px;
     line-height: 40px;
     color: #fff;
     border: 0;
     position:absolute;
     outline: 0;
     right: 0;
     top: 53px;
}
 .blog-sidebar .instagram-wiget ul {
     overflow: hidden;
     margin: 0 -7.5px;
}
 .blog-sidebar .instagram-wiget ul li {
     width: calc(33.33% - 15px);
     float: left;
     margin: 0 7.5px 15px;
}
/** start blog deatails**/
/** start testimonials**/
 .testimonials-area{
     padding:80px 0px;
}
 .testimonials-grids {
     overflow: hidden;
     margin: 0 -15px;
}
 .testimonials-grids .grid {
     width: calc(50% - 30px);
     float: left;
     margin: 0 15px 30px;
     border: 1px solid #dde2e8;
     padding: 40px 45px;
}
 .testimonials-grids .title {
     margin-bottom: 30px;
}
 .testimonials-grids .title h3 {
     font-size: 25px;
     font-weight: 600;
     margin: 0 0 5px;
     font-family: "montserrat", sans-serif;
}
 .testimonials-grids .title span {
     font-size: 15px;
     font-weight: 400;
     color: #7a8595;
}
 .testimonials-grids .details p {
     font-size: 18px;
     color: #7a8595;
     line-height: 1.7em;
     padding-left: 75px;
     font-weight:300;
     position: relative;
     margin-bottom: 1.7em;
}
 .testimonials-grids .details p:before {
     content: "";
     background: url(../img/gallery/quote.png) center center/cover no-repeat local;
     width: 48px;
     height: 34px;
     position: absolute;
     left: 0;
     top: 5px;
}
 .testimonials-grids .rating i {
     color: #ffc515;
}
 .testimonials-two .testimonials-grids .grid {
     width: calc(100% - 30px);
     margin: 10px 30px 30px;
}
 .testimonials-two .testimonials-grids .title h3 {
     font-size: 24px;
}
 .testimonials-two .testimonials-grids .details img {
     max-width: 110px;
     margin: 0 auto;
     padding-bottom: 10px;
     display:block;
}
 .testimonials-two .testimonials-grids .details p {
     font-size: 15px;
}
 .testimonials-two .testimonials-grids .details footer {
     text-align: center;
     padding-top: 12px;
}
 .testimonials-two .owl-theme .owl-nav {
     text-align: center;
     margin-top: 0;
     margin-top: 50px;
     padding-left: 45px;
}
 .testimonials-two .testimonials-grids .details .testi-name {
     padding-top:10px;
}
 .testimonials-two .testimonials-grids .details h4 {
     font-size:18px;
     text-align:center;
     font-weight:600;
}
 .testimonials-two .testimonials-grids .details h4 span{
     font-size:14px;
     padding-left:8px;
     color:#909090;
     font-weight:300;
}
 .owl-carousel .owl-stage-outer {
     position: relative;
     overflow: hidden;
     -webkit-transform: translate3d(0px, 0px, 0px);
}
 .testimonials-two .owl-theme .owl-nav >div {
     background-color: transparent;
     display: inline-block;
     width: 40px;
     height: 40px;
     color:#324cec;
     text-align: center;
     line-height: 36px;
     font-size: 1.125rem;
     padding: 8px;
     margin: 0 10px 0 0;
     border: 2px solid #324cec;
     -webkit-border-radius: 0;
     -moz-border-radius: 0;
     -o-border-radius: 0;
     -ms-border-radius: 0;
     border-radius: 0;
}
 .testimonials-two .owl-theme .owl-nav i {
     display: block;
}
 .testimonials-two .owl-nav .owl-prev:hover, .testimonials-two .owl-nav .owl-next:hover {
     background: #324cec;
     color: #fff;
}
 .test-three-black{
     background:#212121;
}
 .grid-testi-three {
     position: relative;
     overflow: hidden;
     margin: 10px;
     width: calc(100% - 18px);
     float:left;
}
 .grid-testi-three * {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
}
 .grid-testi-three img {
     max-width: 100%;
     height: 100px;
     width: 100px!important;
     border-radius: 50%;
     margin: 0 auto;
     display: block !important;
     z-index: 1;
     position: relative;
}
 .grid-testi-three p {
     margin: 0;
     display: block;
     border-radius: 8px;
     position: relative;
     background-color: #fafafa;
     padding: 30px 50px 65px 50px;
     font-size: 14px;
     font-weight: 500;
     margin: 0 0 -50px;
     line-height:25px;
     box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
 .grid-testi-three p:before, .grid-testi-three p:after {
     font-family: 'FontAwesome';
     content: "\201C";
     position: absolute;
     font-size: 50px;
     opacity: 0.3;
     font-style: normal;
}
 .grid-testi-three p:before {
     top: 35px;
     left: 20px;
}
 .grid-testi-three p:after {
     content: "\201D";
     right: 20px;
     bottom: 35px;
}
 .grid-testi-three .author {
     margin: 0;
     text-transform: uppercase;
     text-align: center;
     color: #ffffff;
}
 .grid-testi-three .author h4 {
     margin-top: 15px;
     color:#fff;
     font-family:"montserrat",sans-serif;
     font-weight: 600;
     font-size: 18px;
}
 .grid-testi-three .author h4 span {
     font-weight: 400;
     text-transform: none;
     display: block;
     font-size:14px;
     margin-top: 8px;
     font-family:"poppins",sans-serif;
     color:#ddd;
}
 .testimonials-three .owl-theme .owl-dots {
     text-align: center;
     line-height: 35px;
     margin-top: 50px;
     display: block;
     text-align: center;
     width: 100%;
}
 .testimonials-three .owl-theme .owl-dot{
     height: 12px;
     width: 12px;
     margin: 2px 3px;
     position: relative;
     display: inline-block;
     -webkit-border-radius: 50%;
     border-radius: 50%;
     background: #ffffff;
     cursor: pointer;
}
 .testimonials-three .owl-theme .owl-dot.active::after, .testimonials-three .owl-theme .owl-dot:hover:after {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
     visibility: visible;
}
 .testimonials-three .owl-theme .owl-dot::after {
     background-color: #00bcd4;
     -webkit-border-radius: 50%;
     border-radius: 50%;
     content: "";
     height: 100%;
     left: 0;
     opacity: 0;
     position: absolute;
     -webkit-transform: translate3d(0, 100%, 0);
     transform: translate3d(0, 100%, 0);
     visibility: hidden;
     width: 100%;
}
 .testimonials-three .owl-theme .owl-dot.active span, .testimonials-three .owl-theme .owl-dot:hover span {
     background: #ffffff;
     transition: ease-in-out 0.2s;
     -webkit-transition: ease-in-out 0.2s;
}
 .grid-testi-four {
     position: relative;
     overflow: hidden;
     margin: 10px;
     height: 340px;
     background-color: #000000;
}
 .grid-testi-four * {
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
}
 .grid-testi-four .background {
     max-width: 100%;
     backface-visibility: hidden;
     opacity: 0.5;
     position:relative;
}
 .grid-testi-four p {
     position: absolute;
     top: 0;
     bottom: 0;
     left: -30px;
     z-index: 1;
     opacity: 1;
     padding: 30px 30px;
     background-color: #ffffff;
     width: 40%;
     padding-top: 75px;
}
 .grid-testi-four p:before {
     position: absolute;
     top: 50%;
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
     left: 100%;
     content: '';
     width: 0;
     height: 0;
     border-style: solid;
     border-width: 220px 0 220px 220px;
     border-color: transparent transparent transparent #ffffff;
}
 .grid-testi-four:after {
     position: absolute;
     bottom: 36%;
     left: 30%;
     content: '';
     width: 0;
     height: 0;
     border-style: solid;
     border-width: 220px 220px 0px 220px;
     border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent;
}
 .grid-testi-four h4, .grid-testi-four p {
     line-height: 1.6em;
     -webkit-transform: translateX(30px);
     transform: translateX(30px);
     margin: 0;
}
 .grid-testi-four h4 {
     margin: 10px 0;
     line-height: 1.1em;
     font-weight: 600;
     color: #1a1a1a;
     font-size:20px;
}
 .grid-testi-four p {
     font-size: 0.9em;
     font-style: italic;
}
 .grid-testi-four .profile {
     position: absolute;
     border-radius: 50%;
     top: 50%;
     right: 25%;
     z-index: 1;
     -webkit-transform: translate(50%, -50%);
     transform: translate(50%, -50%);
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
 .grid-testi-four img.profile{
     max-width: 100%;
     height: 130px;
     width: 130px!important;
     border-radius: 50%;
     display: block !important;
     z-index: 2;
}
 .grid-testi-four h4 {
     position: absolute;
     top: 55%;
     bottom: 0;
     left: -30px;
     z-index: 1;
     opacity: 1;
     padding: 30px 30px;
     background-color: #ffffff;
     width: 40%;
}
 .testimonials-four .owl-theme .owl-nav {
     text-align: right;
     margin-top: 0;
     float:right;
     margin-top: 50px;
     padding-left: 45px;
}
 .testimonials-four .owl-theme .owl-nav >div {
     background-color: #fff;
     display: inline-block;
     width: 40px;
     height: 40px;
     color:#000;
     text-align: center;
     line-height: 36px;
     font-size: 1.125rem;
     padding: 8px;
     margin: 0 10px 0 0;
     border: 2px solid #fff;
     -webkit-border-radius: 0;
     -moz-border-radius: 0;
     -o-border-radius: 0;
     -ms-border-radius: 0;
     border-radius: 30px;
}
 .testimonials-four .owl-theme .owl-nav i {
     display: block;
}
 .testimonials-four .owl-nav .owl-prev:hover, .testimonials-four .owl-nav .owl-next:hover {
     background: #324cec;
     color: #fff;
}
 .testimonials-five{
     left: 50%;
     text-align:center;
     transform: translatex(25%);
}
 .testimonials-five .feedback-slider-item img {
     max-width: 100%;
     height: 85px;
     width: 85px!important;
     border-radius: 50%;
     margin: 0 auto;
     display: block !important;
     z-index: 1;
     position: relative;
}
 .feedback-slider-item {
     position: relative;
     padding: 60px;
     margin-top: -40px;
}
 .customer-name {
     margin-top: 15px;
     margin-bottom: 25px;
     font-size: 20px;
     color:#000;
     font-weight: 600;
}
 .feedback-slider-item span.desc{
     font-size: 14px;
     top: -20px;
     position: relative;
     font-weight: 300;
}
 .feedback-slider-item p {
     line-height: 1.875;
     font-size:14px;
}
 .customer-rating {
     background-color: #eee;
     border: 3px solid #fff;
     color: #324cec;
     font-weight: 700;
     border-radius: 50%;
     position: absolute;
     width: 47px;
     height: 47px;
     line-height: 44px;
     font-size: 15px;
     right: 0;
     top: 77px;
     text-indent: -3px;
}
 .thumb-prev .customer-rating {
     top: -20px;
     left: 0;
     right: auto;
}
 .thumb-next .customer-rating {
     top: -20px;
     right: 0;
}
 .customer-rating i {
     color: rgb(251, 90, 13);
     position: absolute;
     top: 10px;
     right: 5px;
     font-weight: 600;
     font-size: 12px;
}
/* GREY BACKGROUND COLOR OF THE ACTIVE SLIDER */
 .feedback-slider-item:after {
     content: '';
     position: absolute;
     left: 20px;
     right: 20px;
     bottom: 0;
     top: 103px;
     background-color: #f6f6f6;
     border: 1px solid rgba(251, 90, 13, .1);
     border-radius: 10px;
     z-index: -1;
}
 .thumb-prev, .thumb-next {
     position: absolute;
     z-index: 99;
     top: 45%;
     width: 98px;
     height: 98px;
     left: -90px;
     cursor: pointer;
     transition: all .3s;
}
 .thumb-next {
     left: auto;
     right: -90px;
}
 .feedback-slider-thumb img {
     width: 85px;
     height: 85px;
     border-radius: 50%;
     overflow: hidden;
}
 .feedback-slider-thumb:hover {
     opacity: .8;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
 .customer-feedback .owl-nav [class*="owl-"] {
     position: relative;
     display: inline-block;
     bottom: 45px;
     transition: all .2s ease-in;
}
 .customer-feedback .owl-nav i {
     background-color: transparent;
     color: #324cec;
     font-size: 25px;
}
 .customer-feedback .owl-prev {
     left: -15px;
}
 .customer-feedback .owl-prev:hover {
     left: -20px;
}
 .customer-feedback .owl-next {
     right: -15px;
}
 .customer-feedback .owl-next:hover {
     right: -20px;
}
 .customer-feedback .owl-dots {
     position: absolute;
     left: 50%;
     -webkit-transform: translateX(-50%);
     transform: translateX(-50%);
     bottom: 35px;
}
 .customer-feedback .owl-dot {
     display: inline-block;
}
 .customer-feedback .owl-dots .owl-dot span {
     width: 11px;
     height: 11px;
     margin: 0 5px;
     background: #fff;
     border: 1px solid #324cec;
     display: block;
     -webkit-backface-visibility: visible;
     transition: all 200ms ease;
     border-radius: 50%;
}
 .customer-feedback .owl-dots .owl-dot.active span {
     background-color:#324cec;
}
 .testimonials-six .grid-testi-three p.bg-red{
     background:#d800a9;
}
 .testimonials-six .grid-testi-three p.bg-blue{
     background:#324cec;
}
 .testimonials-six .grid-testi-three p.bg-orange{
     background:#fb0d4f;
}
 .testimonials-six .grid-testi-three p.bg-green{
     background:#00c747;
}
 .testimonials-six .grid-testi-three p.bg-gray{
     background:#f5cf14;
}
 .testimonials-six .grid-testi-three p{
     color:#fff;
}
 .testimonials-six .grid-testi-three p:before, .testimonials-six .grid-testi-three p:after {
     color:#fff;
     opacity: 0.5;
}
 .testimonials-six .grid-testi-three .author h4 {
     color: #000;
}
 .testimonials-six .owl-theme .owl-dots {
     text-align: center;
     line-height: 35px;
     margin-top: 50px;
}
 .testimonials-six .owl-theme .owl-dot {
     border: 2px solid #324cec;
     background:#fff;
     border-radius: 100%;
     display: inline-block;
     height: 15px;
     margin: 0 5px;
     width: 15px;
}
 .testimonials-six .owl-theme .owl-dot.active {
     background: #324cec;
}
 .testimonials-area.bg-testi-sev{
     padding:110px 0px;
     position:relative;
     background: url(../img/gallery/gradient-bg.png) center center/cover no-repeat fixed;
}
 .new-testimonials-7 .owl-stage-outer {
     position: relative;
     overflow: hidden;
     -webkit-transform: translate3d(0px, 0px, 0px);
}
 .testimonials-seven .testimonials-grids .client-pic img {
     display: inline-block;
     width: auto;
     -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
     -o-border-radius: 50%;
     -ms-border-radius: 50%;
     border-radius: 50%;
}
 .testimonials-seven .testimonials-grids .details-about {
     margin-top: 30px;
}
 .testimonials-seven .testimonials-grids .details-about h4 {
     font-size: 1.375rem;
     color: #fff;
     margin: 0;
}
 .testimonials-seven .testimonials-grids .details-about .rating {
     color:#f39c12;
     margin-bottom: 6px;
     margin-top: 6px;
}
 .testimonials-seven .testimonials-grids .details-about p {
     max-width:800px;
     padding:15px;
     margin:0 auto;
     font-size:18px;
     color: #fff;
     line-height:30px;
     margin-bottom: 1em;
}
 .testimonials-seven .testimonials-grids .owl-nav{
     text-align:center;
}
 .testimonials-seven .testimonials-grids .owl-nav >div{
     background-color: #fff;
     display:inline-block;
     width: 50px;
     height: 50px;
     color:#324cec;
     text-align:center;
     line-height: 46px;
     font-size: 1.125rem;
     padding: 0;
     margin: 0 10px 0 0;
     border: 2px solid #bdbdbd;
     -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
     -o-border-radius: 50%;
     -ms-border-radius: 50%;
     border-radius: 50%;
}
 .testimonials-seven .testimonials-grids .owl-nav:last-child >div{
     margin: 0px 0px 0px 0px;
}
 .testimonials-seven .testimonials-grids .owl-nav .owl-prev:hover, .testimonials-seven .testimonials-grids .owl-nav .owl-next:hover{
     color:#fff;
     background:#324cec;
     border: 2px solid #fff;
}
 .testimonials-area.bg-testi-eight{
     padding:110px 0px;
     position:relative;
}
 .testimonials-area.bg-testi-eight:before {
     content: "";
     background: linear-gradient(to right, #643094, #00bcd4e0);
     width: 100%;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0;
}
 .testimonials-nine .grid-testi-three .author h4 {
     color: #4c4c4c;
}
 .testimonials-nine .grid-testi-three .author h4 span {
     color: #717171;
}
 .testimonials-nine .grid-testi-three p {
     margin: 0 0 30px;
     background: #f9f9f9;
     border-radius: 0px;
     box-shadow: 0 0 20px rgba(0,0,0,.1);
     padding: 30px 50px 80px 50px;
}
 .testimonials-nine .grid-testi-three .testimonial-date {
     font-size: 14px;
     z-index: 3;
     position: absolute;
     top: 43%;
     left: 35%;
     z-index: 3;
}
/** end testimonials**/
/** start swiper slider**/
 .swiper-slider-area{
     padding:80px 0px;
}
 .blog-slider {
     width: 95%;
     position: relative;
     max-width: 800px;
     margin: auto;
     background: #fff;
     box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
     padding: 25px;
     border-radius: 25px;
     height: 400px;
     transition: all .3s;
}
 .blog-slider__item {
     display: flex;
     align-items: center;
}
 .blog-slider__item.swiper-slide-active .blog-slider__img img {
     opacity: 1;
     transition-delay: .3s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > * {
     opacity: 1;
     transform: none;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
     transition-delay: 0.3s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
     transition-delay: 0.4s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
     transition-delay: 0.5s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
     transition-delay: 0.6s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
     transition-delay: 0.7s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
     transition-delay: 0.8s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
     transition-delay: 0.9s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
     transition-delay: 1s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
     transition-delay: 1.1s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
     transition-delay: 1.2s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
     transition-delay: 1.3s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
     transition-delay: 1.4s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
     transition-delay: 1.5s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
     transition-delay: 1.6s;
}
 .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
     transition-delay: 1.7s;
}
 .blog-slider__img {
     width: 300px;
     flex-shrink: 0;
     height: 300px;
     background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
     box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
     border-radius: 20px;
     transform: translateX(-80px);
     overflow: hidden;
}
 .blog-slider__img:after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
     border-radius: 20px;
     opacity: 0.8;
}
 .blog-slider__img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     opacity: 0;
     border-radius: 20px;
     transition: all .3s;
}
 .blog-slider__content {
     padding-right: 25px;
}
 .blog-slider__content > * {
     opacity: 0;
     transform: translateY(25px);
     transition: all .4s;
}
 .blog-slider__code {
     color: #7b7992;
     margin-bottom: 15px;
     display: block;
     font-weight: 500;
}
 .blog-slider__title {
     font-size: 24px;
     font-weight: 700;
     color: #0d0925;
     margin-bottom: 20px;
}
 .blog-slider__text {
     color: #4e4a67;
     margin-bottom: 30px;
     line-height: 1.5em;
     font-size:14px;
}
 .blog-slider__button {
     display: inline-flex;
     background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
     padding: 15px 35px;
     border-radius: 50px;
     color: #fff;
     box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
     text-decoration: none;
     font-weight: 500;
     justify-content: center;
     text-align: center;
     letter-spacing: 1px;
}
 .blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
     bottom: 10px;
     left: 0;
     width: 100%;
}
 .blog-slider__pagination {
     position: absolute;
     z-index: 21;
     right: 20px;
     width: 11px !important;
     text-align: center;
     left: auto !important;
     top: 50%;
     bottom: auto !important;
     transform: translateY(-50%);
}
 .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
     margin: 8px 0;
}
 .blog-slider__pagination .swiper-pagination-bullet {
     width: 11px;
     height: 11px;
     display: block;
     border-radius: 10px;
     background: #062744;
     opacity: 0.2;
     transition: all .3s;
}
 .blog-slider__pagination .swiper-pagination-bullet-active {
     opacity: 1;
     background: #fd3838;
     height: 30px;
     box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}
 .swiper-container {
     width: 100%;
     height: 518px;
     margin-left: auto;
     margin-right: auto;
}
 .swiper-slide {
     background-size: cover;
     background-position: center;
     position:relative;
}
 .swiper-slider-two .swiper-slide.swiper-overlay{
     position:relative;
     overflow:hidden;
}
 .swiper-slider-two .swiper-slide.swiper-overlay::before {
     background: rgba(0, 0, 0, 0.5);
     position:absolute;
     content:"";
     left:0;
     top:0;
     right:0;
     bottom:0;
}
 .swiper-slider-two .gallery-thumbs .swiper-slider-text h2 {
     font-size: 20px;
     margin: 0 0 0px;
}
 .swiper-slider-two .gallery-thumbs .swiper-slider-text p {
     font-size: 12px;
     text-align: center;
     line-height: 15px;
     margin: 0 0 .5em;
}
 .swiper-slider-two .gallery-thumbs .swiper-slider-text {
     text-align: center;
     padding-left: 0px;
}
 .slick-slider-text, .swiper-slider-two .gallery-thumbs .swiper-slider-text {
     text-align: center;
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
}
 .swiper-slider-two .gallery-thumbs .swiper-slider-text .theme-btn {
     font-size: 12px;
     padding: 8px 20px;
}
 .gallery-thumbs {
     height: 140px;
     box-sizing: border-box;
     padding: 10px 0;
}
 .gallery-thumbs.swiper-container {
     padding: 10px;
     margin: 0px;
}
 .gallery-thumbs .swiper-slide {
     width: 25%;
     height: 100%;
     opacity: 0.4;
}
 .gallery-thumbs .swiper-slide-active {
     opacity: 1;
     border: 2px solid #ffa303;
}
 .swiper-slider-three .swiper-slide{
     position:relative;
     overflow:hidden;
     width:100%;
}
 .swiper-slider-three .swiper-slide:before {
     content: "";
     background: rgba(0, 0, 0, 0.5);
     width: 100%;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0;
}
 .swiper-slider-text{
     text-align:left;
     padding-left:100px;
}
 .swiper-slider-text p {
     text-align:left;
}
 .swiper-slider-text .theme-btn {
     background:#041163;
}
 .swiper-slider-text .theme-btn:hover {
     color:#041163;
     background:#fff;
}
 .swiper-slider-four .swiper-container {
     width: 100%;
     padding-top: 50px;
     padding-bottom: 50px;
}
 .swiper-slider-four .swiper-slide:before {
     content: "";
     background: linear-gradient(to right, #6333907a, #00bcd49c);
     width: 100%;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0;
}
 .swiper-slider-four .swiper-slide {
     background-position: center;
     background-size: cover;
     width: 500px;
     height: 500px;
}
 .swiper-slider-four .swiper-slider-text h2 {
     font-size: 30px;
}
 .swiper-slider-four .swiper-slider-text p {
     font-size: 14px;
     text-align: center;
}
 .swiper-slider-four .swiper-slider-text .theme-btn {
     font-size: 14px;
     padding: 10px 24px;
}
 .swiper-slider-four .swiper-slider-text {
     text-align: center;
     padding-left: 0px;
}
/** start swiper slider**/
/** start faq**/
 .faq-area {
     padding-top:80px;
     padding-bottom:80px;
}
 .faq-bg{
     background:#f9f9f9;
}
 .faq li {
     position: relative;
     list-style:none;
}
 .faq li p {
     padding: 30px 30px 30px;
     color: #777777;
     font-size: 14px;
     margin-bottom: 0;
     font-weight: 400;
}
 .faq a {
     border-bottom: 1px solid #d9e5e8;
     width: 100%;
     display: block;
     cursor: pointer;
     background:#f1f1f1;
     font-weight: 600;
     line-height: 3;
     padding:6px 12px;
     font-size: 16px;
     text-indent: 15px;
     user-select: none;
}
 .faq p {
     font-size: 13px;
     font-size: 0.8125rem;
     line-height: 2;
     color:#9a9a9a;
     padding: 10px;
}
 .faq-two .faq li {
     border-top: 1px solid transparent;
     padding-bottom: 30px;
}
 .faq-two .faq a {
     border: 1px solid #ddd;
     color:#324cec;
}
 .faq-two .faq li p {
     border: 1px solid #ddd;
}
 .faq-three .faq li {
     border-top: 1px solid transparent;
     padding-bottom: 30px;
}
 .faq-three .faq a {
     border: 1px solid #ddd;
     color:#fff;
     background:#324cec;
}
 .faq-three .faq a:hover {
     color:#fff;
}
 .faq-three .faq li p {
     background: #f1efff;
}
 .faq-four .faq li {
     border-top: 1px solid transparent;
     padding-bottom: 30px;
}
 .faq-four .faq a {
     border: 1px solid transparent;
     color:#fff;
     background: linear-gradient(to right, #643094, #00bcd4e0);
}
 .faq-four .faq a:hover {
     color:#fff;
}
 .faq-four .faq li p {
     background: linear-gradient(to right, #b896d8, #61bfcce0);
     color: #fff;
}
 .faq-five .faq li {
     border-top: 1px solid transparent;
     padding-bottom: 30px;
}
 .faq-five .faq a {
     border: 2px dotted #ddd;
     color:#fff;
     background: #324cec;
}
 .faq-five .faq li a:hover {
     color:#ff3939;
}
 .faq-five .faq li p {
     color: #777777;
     background: #f1efff;
}
 .faq-area.new-faq-bg {
     padding: 110px 0px;
     position: relative;
     background: url(../img/gallery/gradient-bg.png) center center/cover no-repeat fixed;
}
 .faq-six .faq li {
     border-top: 1px solid transparent;
     padding-bottom: 30px;
}
 .faq-six .faq li p {
     color: #ececec;
     border: 1px solid #ddd;
}
 .faq-area.new-faq-bg-seven {
     padding: 110px 0px;
     position: relative;
}
 .faq-area.new-faq-bg-seven:before {
     content: "";
     background: linear-gradient(to right, #643094, #00bcd4e0);
     width: 100%;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0;
}
 .faq-seven .faq li {
     border-top: 1px solid transparent;
     padding-bottom: 30px;
}
 .faq-seven .faq li p {
     color: #ececec;
     border: 1px solid #ddd;
}
/** end faq**/
/* Normal desktop :992px. LG Device */
 @media (min-width: 992px) and (max-width: 1200px) {
     .mainmenu ul {
         padding-left: 45px;
    }
     .menu-area .mainmenu ul li {
         margin-top: 0px;
    }
     .section-dash .home-page-run.counter-up-three .counter-wrapper {
         padding: 28px;
    }
     .single-service-features.box-border .service-icon i {
         font-size: 30px;
         width: 70px;
         height: 70px;
         line-height: 70px;
    }
     .single-service-features .services-content h3 {
         font-size: 15px;
    }
     .mainmenu ul li a {
         padding: 5px 10px;
         font-size: 15px;
         font-weight:500;
    }
     .bg-12 .mainmenu ul li a {
         padding: 5px 7px;
         font-size: 14px;
    }
     .vh {
         height: 94vh;
    }
     .logo {
         margin-top: 7px;
    }
     .slider-wrapper h3 {
         font-size: 2rem;
    }
     .slider-wrapper p {
         font-size: 14px;
    }
     .slider-wrapper h1 {
         font-size: 45px;
    }
     .pack ul li a {
         padding: 0px 7px;
         margin: 0px 7px;
         font-size: 15px;
    }
     .tmp ul li a {
         font-size: 15px;
         padding:14px 6px 0 5px;
    }
     .section-demo .minibox1-wrap .mini-box {
         width: 33.33%;
    }
     .whatsnew-title .mp-divider {
         display: block;
    }
     .hero-main-img {
         position: relative;
         left: 0px;
    }
     .banner-subtitle {
         font-size: 24px;
         margin-bottom: 4px;
    }
     .banner-title {
         font-size: 40px;
    }
     .whatsnew-mockup{
         display:none;
    }
     .whatsnew-title-wrapper .section-title-light{
         text-align: center;
    }
     .icon-list-wrapper .icon-list-icon img {
         width: 45px;
    }
     .icon-list-wrapper h4 {
         font-size: 16px;
    }
     .site-footer .recent-post-widget {
         padding-right: 30px;
    }
     .site-footer .widget > h3, .site-footer .widget .footer-logo {
         font-size: 22px;
    }
     .site-footer .recent-post-widget .entry-details h4 {
         font-size: 14px;
    }
     .footer-top-area-4 .footer-subscribe form.footer-subscribe-form {
         margin-top: 20px;
         margin-left: auto;
         margin-right: auto;
    }
     .footer-top-area-4 .footer-subscribe h3 {
         text-align: center;
    }
     .fa-chevron-down {
         margin-left: 9.4em;
    }
     .header-button a {
         padding: 12px 25px;
    }
     .new-banner-two .slider-wrapper:before {
         left: 140px;
    }
     .box-warp {
         margin-left: 17em;
    }
     .countdown span{
         font-size:40px;
    }
    /** start pricing tab **/
     .tb-pricing3.mr-60 {
         margin-right: 40px;
         margin-left:40px;
    }
     .tb-pricing3.ml-60 {
         margin-right: 40px;
         margin-left:40px;
    }
     .tb-pricing3 {
         padding: 38px;
    }
     .tb-pricing3 .tour-btn {
         width: 212px;
    }
     .pricee {
         font-size: 34px;
    }
     .ptab-six .tb-pricing3 ul {
         padding: 0px 65px;
    }
    /** end pricing tab **/
    /** start hover img **/
     .bpack-images-nine p {
         font-size: 13px;
    }
     .bpack-images-nine .icons {
         bottom: 30px;
    }
     .bpack-images-nine h2 {
         margin: 15px 0px 16px 0px;
    }
     .profile-card-eight figcaption p {
         display:none;
    }
     .profile-card-four .icons {
         padding: 20px 32px;
    }
     .profile-card-four .icons a{
         margin-left:14px;
    }
     .profile-card-eight figcaption .icons i {
         font-size: 14px;
    }
    /** product icon card **/
     .product-card-five p {
         font-size: 11px;
    }
     .product-card-five .price {
         font-size: 1.1em;
    }
     .product-card-eight .add-to-cart {
         padding: 8px 10px;
         font-size: 12px;
    }
    /** start icon card **/
     .icon-card-one .wrp h4 {
         font-size: 18px;
         padding: 14px 6px;
    }
     .icon-card-one .wrp p {
         font-size: 13px;
         line-height: 26px;
    }
     .bpack-content p {
         font-size: 13px;
    }
     .icon-card-three .grid p {
         font-size: 13px;
    }
     .icon-card-one .wrp .icon {
         font-size: 38px;
         line-height: 80px;
         height: 80px;
         width: 80px;
    }
     .icon-card-three .bpack-grid .grid {
         padding: 50px 30px;
    }
     .bpack-wrapper {
         padding: 45px 26px 45px;
    }
     .counter-up-six .counter-text span {
         font-size: 14px;
    }
     .counter-up-seven .counter-text span {
         font-size: 14px;
    }
     .counter-up-eight .counter-text span {
         font-size: 14px;
    }
     .image-card-text > p {
         font-size: 13px;
    }
     .heading-tittle-two .heading-tittle h2:after {
         left: 18%;
    }
     .heading-tittle-two .heading-tittle h2:before {
         right: 18%;
    }
     .heading-tittle-five .heading-tittle h2:after {
         left: 38%;
    }
     .heading-tittle-five .heading-tittle h2:before {
         right:-6%;
    }
     .heading-tittle-six .heading-tittle h2:after {
         left: 18%;
    }
     .heading-tittle-six .heading-tittle h2:before {
         right: 18%;
    }
     .heading-tittle-ten .heading-tittle h2:after {
         left: -6%;
    }
     .heading-tittle-ten .heading-tittle h2:before {
         right:37%;
    }
    /** start team **/
     .team-style-one .text-box {
         padding: 20px;
    }
     .team-style-one .text-box h3 {
         font-size: 16px;
    }
     .team-style-one .img-box .social {
         padding-left: 46px;
    }
     .team-style-three .team-img-3 .hover-content-3 {
         padding: 24px;
    }
     .team-style-three .team-img-3 .hover-content-3 p {
         font-size: 13px;
    }
     .team-style-three .content-3 {
         padding: 20px 0px 22px 15px;
    }
     .team-style-six .inner-box .overlay-box {
         padding: 27px;
    }
     .team-style-seven {
         width: 25%;
    }
     .team-style-eight {
         width: 22%;
    }
     .team-style-nine .inner-box .overlay-box {
         left: 25px;
         right: 25px;
    }
    /** start blog-post **/
     .blog-three .grid-content {
         margin-top: 18px;
    }
     .grid-content {
         margin-top: 18px;
    }
     .grid-content.grid-blog {
         padding: 28px 20px 25px 20px;
    }
     .grid-content span {
         font-size: 12px;
    }
     .grid-content span a {
         font-size: 13px;
    }
     .grid-content h2 {
         font-size: 18px;
    }
     .grid-content p {
         font-size: 13px;
    }
     .blog-btn-more {
         font-size: 12px;
    }
     .blog-six .grid-content.grid-blog {
         padding: 28px 20px 25px 20px;
    }
     .blog-eight .grid-content.grid-blog {
         padding: 28px 20px 25px 20px;
    }
     .blog-ten .grid-content.grid-blog {
         padding: 28px 20px 25px 20px;
    }
     .blog-thirten .grid-content.grid-blog {
         padding: 28px 20px 25px 20px;
    }
     .blog-fiften .new-blog-builder .grid-content.grid-blog {
         padding: 28px 20px 25px 20px;
    }
     .blog-sidebar .recent-post-widget .entry-details h4 {
         font-size: 12px;
    }
     .blog-sidebar .news-letter-widget button {
         top: 50px;
    }
    /** start testimonials **/
     .testimonials-grids .grid {
         width: calc(50% - 30px);
         float: left;
         margin: 0 15px 30px;
         border: 1px solid #dde2e8;
         padding: 40px 45px;
    }
     .testimonials-grids .title h3 {
         font-size: 22px;
    }
     .testimonials-grids .title span {
         font-size: 13px;
    }
     .testimonials-grids .details p {
         font-size: 15px;
    }
     .testimonials-grids .details p:before {
         width: 42px;
         height: 30px;
    }
     .testimonials-two .testimonials-grids .title h3 {
         font-size: 20px;
    }
     .testimonials-two .testimonials-grids .title span {
         font-size: 13px;
    }
     .testimonials-two .testimonials-grids .details p {
         font-size: 14px;
    }
     .testimonials-two .testimonials-grids .details p:before {
         width: 38px;
         height: 25px;
    }
     .testimonials-two .testimonials-grids .details h4 {
         font-size: 16px;
    }
     .testimonials-two .testimonials-grids .details h4 span {
         font-size: 12px;
    }
     .grid-testi-three p {
         padding: 20px 20px 62px 40px;
         font-size: 12px;
    }
     .grid-testi-three p:before {
         top: 28px;
         left: 12px;
    }
     .grid-testi-three .author h4 {
         font-size: 14px;
    }
     .grid-testi-three .author h4 span {
         font-size: 12px;
    }
     .grid-testi-four h4 {
         font-size: 18px;
    }
     .testimonials-seven .testimonials-grids .details-about h4 {
         font-size: 1.3rem;
    }
     .testimonials-seven .testimonials-grids .details-about p {
         font-size: 15px;
         letter-spacing: 0.5px;
    }
     .testimonials-nine .grid-testi-three p {
         padding: 20px 20px 62px 40px;
    }
     .grid-testi-three p:after {
         bottom: 47px;
    }
     .roadmap-outer .roadmap {
         margin-top: -85px;
    }
     .roadmap-outer .roadmap-content:before {
         left: -15%;
    }
     .roadmap-outer .roadmap:nth-child(2n) .roadmap-content:before {
         right: -15%;
    }
     .site-footer .copyright-info ul li {
         font-size: 14px;
    }
     .blog-sidebar .widget > h3 {
         font-size: 18px;
    }
}
/* small mobile layout :320px. */
 @media only screen and (max-width: 767px) {
     .slicknav_menu{
         display:block;
    }
     .mainmenu{
         display:none;
    }
     .slicknav_nav {
         padding: 14px 8px;
    }
     .pack{
         display:none;
    }
     .menu-pack {
         top: 0px;
    }
     .section-dash h2{
         font-size:24px;
         line-height:36px;
    }
     .tmp{
         display:none;
    }
     .visible-xs-block{
         display:block;
    }
     .logo {
         margin-top: -8px;
    }
     div.slicknav_menu {
         margin-top: -60px;
         background: transparent;
    }
     .bg-20 div.slicknav_menu {
         margin-top: 0px;
         background: transparent;
    }
     .tbs{
         display:none;
    }
     .warp h1 {
         font-size: 30px;
    }
     .hover-title h3 {
         font-size: 22px 
    }
     .section-demo .minibox1-wrap .mini-box {
         width:50%;
    }
     .hero-banner-main {
         padding: 80px 0px;
    }
     .hero-main-img-inner {
         margin-top: 30px;
    }
     .hero-main-info {
         margin-top: 70px;
    }
     .banner-subtitle {
         font-size: 25px;
    }
     .banner-title {
         font-size: 30px;
    }
     .whatsnew-mockup{
         display:none;
    }
     .whatsnew-title-wrapper .section-title-light{
         text-align: center;
    }
     .whatsnew-title .divider {
         display: block;
    }
     .section-whatsnew .section-title {
         font-size: 45px;
    }
     .section-features .mp-divider {
         margin: 0 0 70px;
    }
     .icon-list-wrapper .icon-list-icon, .icon-list-wrapper .icon-list-details {
         display:block;
         vertical-align: top;
         margin: 0 auto;
         text-align: center;
    }
     .footer-desc {
         font-size: 12px;
    }
     .copyright {
         text-align: center;
    }
     .copyright > p {
         font-size: 15px;
         padding-left: 0px;
    }
     .footer-bottom-link li {
         padding-right: 15px;
    }
     .footer-bottom-link {
         text-align: center;
         padding-right: 0px;
    }
     .contact-info{
         display:none;
    }
     .site-footer .upper-footer ul, .site-footer .upper-footer li, .site-footer .upper-footer p, .site-footer .upper-footer a {
         font-size: 14px;
    }
     .site-footer .widget > h3, .site-footer .widget .footer-logo {
         font-size: 20px;
         margin: 0 0 1em;
    }
     .site-footer .recent-post-widget .entry-details .date {
         font-size: 14px;
    }
     .site-footer .widget > h3, .site-footer .widget .footer-logo {
         margin: 30px 0 1em;
    }
     .site-footer .recent-post-widget .entry-details h4 {
         font-size: 12px;
         font-weight: 500;
    }
     .site-footer .copyright-info ul li {
         float: none;
         font-size: 14px;
    }
     .site-footer .copyright-info p {
         float: none;
         font-size: 14px;
         text-align: center;
    }
     .site-footer .copyright-info ul {
         float: none;
         text-align: center;
         margin: 10px auto;
         display: block;
    }
     .site-footer .copyright-info ul > li + li {
         margin-left: 0px;
    }
     .map-wrapper iframe {
         width: 220px;
    }
     .footer-menu li a {
         font-size: 14px;
    }
     .footer-info span {
         font-size: 13px;
    }
     .footer-bottom-link li a {
         font-size: 14px;
    }
     .footer-icon a {
         font-size: 15px;
    }
     .mb-30 {
         margin-top: 30px;
    }
     .footer-top-area-4 .footer-subscribe h3 {
         margin-bottom: 20px;
         font-size: 22px;
         line-height: 30px;
         text-align: center;
    }
     .footer-top-area-3 .footer-text, .footer-text, .footer-text {
         font-size: 22px;
    }
     .subscribe-text{
         padding: 0 30px;
    }
     .email-submit-form {
         margin-top: 10px;
         padding: 0 30px;
    }
     .newsletter-widget {
         margin-top: 0px;
         margin-bottom: 20px;
    }
     .footer-icon {
         margin-top: 30px;
         text-align: left;
    }
     .footer-top-area-7 .footer-icon {
         text-align: left;
    }
     .contentright {
         float: none;
         margin-bottom: 15px;
    }
     .contentleft {
         float: none;
    }
     .button_green_image {
         margin: 10px 0px;
         text-align: center;
         display: inline-block;
    }
     #message_wrapper {
         text-align:center;
    }
     .fa-chevron-down {
         margin-left: 4em;
         font-size: 50px;
    }
     .slider-wrapper h1 {
         font-size: 35px;
    }
     .header-button a {
         padding: 12px 25px;
    }
     .exo-menu > li {
         padding: 0px 0px;
    }
     .mmr {
         margin-right:0px;
         margin-left: 0px;
    }
     .header-button {
         margin-top: 0px;
    }
     .bg-21.scroll-header {
         top: 65px !important ;
         background:transparent;
    }
     .bg-22.scroll-header {
         top: 65px !important ;
         background:transparent;
    }
     .bg-27 .slicknav_menu {
         margin-top: 0px;
    }
     .slider-wrapper p {
         font-size: 14px;
         width: 100%;
    }
     .slider-wrapper h3 {
         font-size: 1.6em;
    }
     .mp-button a {
         width: 100px;
         font-size: 11px;
    }
     #intro {
         height: 700px;
    }
     .slider-active-owl .owl-nav div {
         display: none;
    }
     .learn_btn {
         font-size: 11px;
         padding: 10px 22px;
    }
     .get_btn {
         font-size: 11px;
         padding: 10px 22px;
    }
     .new-banner-two .slider-wrapper:before {
         width: 510.367px;
         height: 670.004px;
         left: 0px;
         top: 0px;
    }
     .header-area .header-button {
         margin-top: -53px;
    }
     .header-area .header-button a {
         padding: 12px 18px;
         font-size: 12px;
    }
     .box-warp {
         margin-left: 4em;
    }
     .new-box-warp {
         min-width: 350px;
         max-width: 350px;
         min-height: 350px;
         max-height: 350px;
    }
     .google-map-one .map-info {
         margin-left: -1%;
    }
    /** start pricing tab **/
     .tb-pricing3 {
         text-align: center;
         margin: 25px auto;
    }
     .tb-pricing3.mr-60 {
         margin-right: 0px;
    }
     .tb-pricing3.ml-60 {
         margin-left: 0px;
    }
     .pricee {
         font-size: 34px;
    }
    /** end pricing tab **/
    /** start btn **/
     .bpack-btn {
         padding: 14px 25px;
         margin-left: 32px;
         font-size: 14px;
    }
     .bpack-btn-two {
         padding: 14px 25px;
         margin-left: 32px;
         font-size: 14px;
    }
     .bpack-btn-three {
         margin-left: 30px;
         font-size: 14px;
         padding: 13px 25px 15px;
    }
     .bpack-btn-four {
         margin-left: 30px;
         font-size: 14px;
         padding: 13px 25px 15px;
    }
     .button-five .bpack-btn-five {
         padding: 12px 25px;
         margin-left: 32px;
         font-size: 14px;
    }
     .button-five .bpack-btn-five i {
         font-size: 12px;
         top: 16px;
    }
     .bpack-btn-six {
         padding: 12px 30px;
         margin-left: 16px;
         font-size: 14px;
    }
     .bpack-btn-seven {
         margin-left: 42px;
         font-size: 14px;
         padding: 10px 20px;
    }
     .bpack-btn-eight {
         margin-left: 32px;
         font-size: 14px;
         padding: 11px 25px;
    }
     .bpack-btn-nine {
         margin-left: 32px;
         font-size: 14px;
         padding: 11px 25px;
    }
     .bpack-btn-ten {
         margin-left: 28px;
         font-size: 14px;
         padding: 11px 25px;
    }
    /** end btn **/
    /** start icon **/
     .bpack-icon-one {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 22px;
         width: 70px;
    }
     .bpack-icon-two {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 22px;
         width: 70px;
    }
     .bpack-icon-three {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 22px;
         width: 70px;
    }
     .bpack-icon-four {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 22px;
         width: 70px;
    }
     .bpack-icon-five {
         font-size: 28px;
         margin: 18px;
    }
     .bpack-icon-six {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 22px;
         width: 70px;
    }
     .bpack-icon-seven {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 22px;
         width: 70px;
    }
     .bpack-icon-eight {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 22px;
         width: 70px;
    }
     .bpack-icon-nine {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 22px;
         width: 70px;
    }
     .bpack-icon-ten {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 22px;
         width: 70px;
    }
    /** end icon **/
    /** start img **/
     .bpack-images-one {
         margin:20px;
    }
     .bpack-images-two {
         margin:20px;
    }
     .bpack-images-three {
         margin:20px;
    }
     .bpack-images-four {
         margin:20px;
    }
     .bpack-images-five {
         margin:20px;
    }
     .bpack-images-six {
         margin:20px;
    }
     .bpack-images-seven {
         margin:20px;
    }
     .bpack-images-eight {
         margin:20px;
    }
     .bpack-images-nine {
         margin:20px;
    }
     .bpack-images-ten {
         margin:20px;
    }
    /** end img **/
     .profile-ml{
         margin:20px 40px;
    }
     .product-card-five {
         margin: 20px auto;
    }
     .product-ml{
         margin: 20px auto;
    }
     .product-card-five p {
         font-size: 11px;
    }
     .product-card-five .price {
         font-size: 1em;
    }
     .product-card-five figcaption {
         top: 45%;
         padding: 6px 35px;
    }
     .icon-card-two .bpack-wrapper {
         border-right: 1px solid transparent;
         border-bottom: 1px solid #e33939;
    }
     .icon-card-two .col-xl-4:last-child .bpack-wrapper {
         border-bottom: 0;
    }
     .icon-card-three .bpack-grid .grid {
         width: calc(100% - 30px);
    }
     .icon-card-two .bpack-wrapper {
         margin: 0px auto;
    }
     .bpack-wrapper {
         margin: 20px auto;
    }
     .icon-card-eight .bpack-icon {
         left: 167px;
    }
     .counter-wrapper {
         margin: 25px auto;
    }
     .social-icon-nine .social-icon {
         width: 360px;
    }
     .social-icon-nine .social-icon a {
         margin: 20px 5px;
    }
     .social-icon-ten .social-icon {
         width: 340px;
    }
     .social-icon-ten .social-icon a {
         margin: 20px 5px;
    }
     .bdt-section-muted h1 {
         font-size: 1.6rem;
    }
    /** start call-out **/
     .call-out-three .call-out-tittle h2 {
         width: 100%;
         line-height: 42px;
    }
     .call-out-tittle h2 {
         font-size: 26px;
    }
     .call-out-tittle p {
         font-size: 13px;
    }
     .call-out-btn a {
         font-size: 14px;
    }
     .call-out-three .call-out-tittle p {
         width: 100%;
    }
     .call-out-four .call-out-tittle h2 {
         width: 100%;
         line-height: 42px;
    }
     .call-out-four .call-out-tittle p {
         width: 100%;
    }
     .call-out-five .call-out-tittle h2 {
         width: 100%;
         line-height: 42px;
    }
     .call-out-five .call-out-tittle p {
         width: 100%;
    }
     .call-out-btn {
         margin-top: 0px;
         margin-bottom: 25px;
    }
     .call-out-ten .call-out-btn {
         margin-top: 0px;
    }
    /** start heading-tittle **/
     .heading-tittle h2 {
         font-size: 28px;
    }
     .heading-tittle p {
         font-size: 13px;
    }
     .heading-tittle h2 span {
         font-size: 30px;
    }
     .heading-tittle-two .heading-tittle h2:before {
         display:none;
    }
     .heading-tittle-two .heading-tittle h2:after {
         display:none;
    }
     .heading-tittle-five .heading-tittle h2:after {
         display:none;
    }
     .heading-tittle-five .heading-tittle h2:before {
         display:none;
    }
     .heading-tittle-six .heading-tittle h2:before {
         display:none;
    }
     .heading-tittle-six .heading-tittle h2:after {
         display:none;
    }
     .heading-tittle-ten .heading-tittle {
         margin-left: 10px;
    }
     .heading-tittle-nine .heading-tittle:before {
         top: 10px;
    }
     .heading-tittle-eight .heading-tittle:before {
         top: 8px;
    }
     .heading-tittle-ten .heading-tittle h2:before {
         display:none;
    }
     .heading-tittle-ten .heading-tittle h2:after {
         display:none;
    }
     .heading-tittle {
         padding: 0px 10px;
    }
     .team-style-block{
         margin: 22px 29px;
    }
     .team-style-six .team-style-block {
         margin: 22px 65px;
    }
     .team-style-seven {
         width: 75%;
         margin-left: 58px;
    }
     .team-style-eight {
         width: 68%;
         margin: 20px auto;
    }
     .team-ten .team-style-block {
         margin: 22px 58px;
    }
     .slick-slider-area{
         padding: 20px;
    }
     .slick-slider-text h2, .swiper-slider-text h2 {
         font-size: 25px;
         margin: 0 0 8px;
    }
     .slick-slider-text p, .swiper-slider-text p {
         line-height: 20px;
         font-size: 12px;
         margin: 0 0 1.8em;
         width: 95%;
    }
     .slick-slider-text .theme-btn, .swiper-slider-text .theme-btn {
         font-size: 12px;
         padding: 8px 20px;
    }
     .slick-slider-three .slick-slider-text p {
         line-height: 20px;
    }
     .slick-slider-three .slick-slider-text h2 {
         font-size: 18px;
         margin: 0 0 13px;
    }
     .slick-slider-four .slick-slider-grids-4 .slick-slider-text {
         margin: 1px 27px 8px;
         padding: 24px 0px;
    }
     .slick-next, .slick-prev{
         display:none;
    }
    /** start blog post **/
     .blog-one .grid-content, .blog-two .grid-content{
         padding: 0px 24px 8px 0px;
         margin-left: 46px;
    }
     .blog-three .grid-content {
         margin-top: 0px;
         padding: 0px 0px 50px 44px;
    }
     .new-blog-builder{
         margin: 20px 20px;
    }
     .grid-content h2 {
         font-size: 20px;
    }
     .contact-form-area.contact-form-7 {
         padding: 0px;
    }
     .contact-form-8 .contact-form-seven .contact-form, .contact-form-seven .contact-form {
         padding: 40px 40px 40px 40px;
    }
     .contact-form-8 .contact-form-seven .contact-form-warp, .contact-form-seven .contact-form .contact-form-warp{
         padding: 0px 0px;
    }
     .portfolio-menu {
         margin-bottom: 15px;
         line-height: 55px;
    }
    /** start blog-details **/
     .blog-single-section .paga-with-blockquote p {
         width: 100%;
    }
     .blog-single-section .paga-with-blockquote blockquote {
         width: 100%;
         margin: 3px 0px 24px 0px;
         padding: 0px 0px;
         font-size: 18px;
    }
     .blog-single-section .blog-details-content {
         padding-right: 0px;
    }
     .blog-single-section .entry-title-meta h3 {
         font-size: 18px;
    }
     .blog-single-section .entry-meta li a {
         font-size: 12px;
    }
     .blog-single-section .entry-body p {
         font-size: 13px;
    }
     .blog-single-section .about-author .author-pic {
         width: 70px;
         float: none;
         margin-bottom: 10px;
    }
     .blog-single-section .about-author .author-details {
         width: calc(100% - 0px);
         padding-left: 0px;
    }
     .blog-single-section .about-author .inner {
         background-color: #f8f8fa;
         padding: 20px 20px;
    }
     .blog-single-section .about-author .author-job {
         font-size: 13px;
    }
     .blog-single-section .about-author p {
         font-size: 13px;
    }
     .blog-single-section .about-author h4 {
         font-size: 20px;
    }
     .blog-single-section .comments .article .author-pic {
         float: none;
    }
     .blog-single-section .comments .article .details {
         width: 100%;
         padding-left:0px;
         margin-top:10px;
    }
     .blog-single-section .comments .article p {
         font-size: 13px;
    }
     .widget.search-widget{
         margin-top: 50px;
    }
     .blog-single-section .related-posts h4 {
         font-size: 20px;
    }
    /** start testimonials **/
     .testimonials-grids .grid {
         width: calc(100% - 30px);
    }
     .testimonials-grids .title h3 {
         font-size: 20px;
    }
     .testimonials-grids .title span {
         font-size: 13px;
    }
     .testimonials-grids .details p {
         font-size: 15px;
    }
     .testimonials-grids .details p:before {
         width: 35px;
         height: 25px;
    }
     .testimonials-two .testimonials-grids .title h3 {
         font-size: 20px;
    }
     .testimonials-two .testimonials-grids .title span {
         font-size: 13px;
    }
     .testimonials-two .testimonials-grids .details p {
         font-size: 15px;
    }
     .testimonials-two .testimonials-grids .details p:before {
         width: 35px;
         height: 25px;
    }
     .testimonials-two .testimonials-grids .details h4{
         font-size: 16px;
    }
     .testimonials-two .testimonials-grids .details h4 span {
         font-size: 12px;
    }
     .grid-testi-three .author h4{
         font-size: 16px;
    }
     .grid-testi-three .author h4 span {
         font-size: 12px;
    }
     .grid-testi-three .author h4 span {
         font-size: 12px;
    }
     .grid-testi-four h4 {
         font-size: 17px;
    }
     .feedback-slider-item:after {
         left: 30px;
         right: 30px;
    }
     .thumb-prev, .thumb-next {
         display: none;
    }
     .customer-feedback .owl-nav [class*="owl-"] {
         position: absolute;
         top: 50%;
         -webkit-transform: translateY(-50%);
         transform: translateY(-50%);
         margin-top: 45px;
         bottom: auto;
    }
     .customer-feedback .owl-prev {
         left: 0;
    }
     .customer-feedback .owl-next {
         right: 0;
    }
     .testimonials-five {
         transform: translatex(0%);
    }
     .testimonials-six .owl-theme .owl-dots {
         margin-top: 10px;
    }
     .feedback-slider-item span.desc {
         font-size: 12px;
    }
     .testimonials-nine .grid-testi-three .testimonial-date {
         top: 40%;
    }
     .testimonials-two .testimonials-grids .details img {
         max-width: 80px;
    }
     .testimonials-area.bg-testi-eight {
         padding: 110px 15px;
    }
     .customer-name {
         font-size: 18px;
    }
     .testimonials-seven .testimonials-grids .details-about h4 {
         font-size: 1.3rem;
    }
     .testimonials-seven .testimonials-grids .details-about p {
         font-size: 16px;
    }
     .blog-slider {
         height: 350px;
    }
     .blog-slider__item {
         display: flex;
         align-items: center;
    }
     .blog-slider {
         min-height: 500px;
         height: auto;
         margin: 60px auto;
    }
     .blog-slider__img {
         transform: translateY(-50%);
         width: 90%;
    }
     .blog-slider__item {
         flex-direction: column;
    }
     .blog-slider__content {
         padding-right: 0px;
         text-align: center;
         padding-bottom: 20px;
         margin-top: -45px;
    }
     .blog-slider__pagination {
         transform: translateX(-50%);
         left: 50% !important;
         top: 205px;
         width: 100% !important;
         display: flex;
         justify-content: center;
         align-items: center;
    }
     .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
         margin: 0 5px;
    }
     .blog-slider__pagination .swiper-pagination-bullet-active {
         height: 11px;
         width: 30px;
    }
    /** start timeline **/
     .roadmap-outer .roadmap, .roadmap-outer .roadmap:first-child {
         margin: 0 0 20px;
    }
     .roadmap-outer .roadmap{
         margin-top: 0;
         overflow: hidden;
    }
     .roadmap-outer .roadmap:before, .roadmap-outer .roadmap:nth-child(2n):before{
         box-shadow: none;
    }
     .roadmap-outer .roadmap-icon, .roadmap-outer .roadmap:nth-child(2n) .roadmap-icon{
         margin-top: -30px;
         margin-bottom: 20px;
         position: relative;
         transform: rotate(135deg);
    }
     .roadmap-outer .year, .roadmap-outer .roadmap:nth-child(2n) .year{
         transform: rotate(-135deg);
    }
     .roadmap-outer .roadmap-content, .roadmap-outer .roadmap:nth-child(2n) .roadmap-content{
         width: 100%;
         float: none;
         border-radius: 0 0 20px 20px;
         text-align: center;
         padding: 25px 20px;
         margin: 0 auto;
    }
     .roadmap-outer .roadmap-content:before, .roadmap-outer .roadmap:nth-child(2n) .roadmap-content:before{
         width: 15px;
         height: 25px;
         position: absolute;
         top: -22px;
         left: 50%;
         z-index: -1;
         transform: translate(-50%,0);
    }
     .timeline_six .timeline__event, .timeline__event{
         width: 100%;
         text-align: center;
         top: 10px;
    }
     .timeline_six .timeline__event-date-time, .timeline__event-date-time{
         display: -webkit-inline-box;
    }
     .timeline__event-descr {
         font-size: 0.8rem;
    }
     .myphoto {
         margin-left: 8em;
    }
     .image-card-text > p {
         font-size: 13px;
    }
     .bpack-content p {
         font-size: 13px;
    }
     .icon-card-one .wrp {
         padding: 10px;
         margin:20px 0px;
    }
     .video-inner h2 {
         font-size: 26px;
    }
     .video-inner p {
         font-size: 13px;
    }
     .single-skill-bar .skill-title .experience {
         font-size: 13px;
    }
     .single-skill-bar .skill-title {
         font-size: 14px;
    }
     .swiper-slider-two .gallery-thumbs .swiper-slider-text p {
         display: none;
    }
}
/* Large Mobile layout:550px. */
 @media only screen and (min-width: 576px) and (max-width: 767px) {
     .slicknav_menu{
         display:block;
    }
     .mainmenu{
         display:none;
    }
     .pack{
         display:none;
    }
     .tmp{
         display:none;
    }
     .logo {
         margin-top: -8px;
    }
     div.slicknav_menu {
         padding-right: 50px;
         margin-top: -60px;
         background: transparent;
    }
     .tbs{
         display:none;
    }
     .section-demo .minibox1-wrap .mini-box {
         width:50%;
    }
     .hero-main-info {
         margin-top: 100px;
    }
     .banner-subtitle {
         font-size: 30px;
    }
     .banner-title {
         font-size: 38px;
    }
     .whatsnew-mockup{
         display:none;
    }
     .whatsnew-title-wrapper .section-title-light{
         text-align: center;
    }
     .whatsnew-title .mp-divider {
         display: block;
    }
     .hero-main-img-inner {
         margin-top: 80px;
    }
     .icon-list-wrapper .icon-list-icon, .icon-list-wrapper .icon-list-details {
         display:table-cell;
         text-align:left;
    }
     .footer-menu li a {
         font-size: 13px;
    }
     .footer-wrapper{
         margin-top: 30px;
    }
     .copyright {
         text-align: center;
    }
     .footer-icon a {
         font-size: 15px;
    }
     .copyright > p {
         padding-left: 0px;
    }
     .footer-bottom-link li {
         padding-right: 25px;
    }
     .footer-bottom-link {
         padding-right: 0px;
         text-align: center;
    }
     .site-footer .widget > h3, .site-footer .widget .footer-logo {
         font-size: 22px;
    }
     .site-footer .recent-post-widget {
         margin-top: 45px;
    }
     .contact-info{
         display:none;
    }
     .site-footer .copyright-info ul > li + li {
         margin-left: 0px;
    }
     .site-footer .about-widget p {
         margin-bottom: 0em;
    }
     .site-footer .copyright-info ul li {
         float: none;
    }
     .site-footer .copyright-info p {
         float: none;
         text-align: center;
    }
     .site-footer .copyright-info ul {
         float: none;
         text-align: center;
         margin: 10px auto;
         display: block;
    }
     .site-footer .widget > h3, .site-footer .widget .footer-logo {
         margin: 30px 0 1em;
    }
     .map-wrapper iframe {
         width: 220px;
    }
     .newsletter-widget {
         margin-top: 0px;
         margin-bottom: 20px;
    }
     .footer-top-area-7 .footer-icon {
         text-align: left;
    }
     .contentright {
         float: none;
         margin-bottom: 15px;
    }
     .contentleft {
         float: none;
    }
     .button_green_image {
         margin: 10px 0px;
         text-align: center;
         display: inline-block;
    }
     #message_wrapper {
         text-align:center;
    }
     .fa-chevron-down {
         margin-left: 5em;
         font-size: 50px;
    }
     .visible-xs-block{
         display:block;
    }
     .header-button a {
         padding: 12px 25px;
    }
     .exo-menu > li {
         padding: 0px 0px;
    }
     .mmr {
         margin-right:0px;
         margin-left: 0px;
    }
     .header-button {
         margin-top: -0px;
    }
     .bg-27 .slicknav_menu {
         margin-top: 0px;
    }
     .bg-21.scroll-header {
         top: 65px !important ;
         background:transparent;
    }
     .bg-22.scroll-header {
         top: 65px !important ;
         background:transparent;
    }
     .slider-wrapper p {
         font-size: 14px;
         width: 100%;
    }
     .slider-wrapper h3 {
         font-size: 1.6em;
    }
     .mp-button a {
         width: 100px;
         font-size: 11px;
    }
     #intro {
         height: 700px;
    }
     .slider-active-owl .owl-nav div {
         display: none;
    }
     .learn_btn {
         font-size: 11px;
         padding: 10px 22px;
    }
     .get_btn {
         font-size: 11px;
         padding: 10px 22px;
    }
     .new-banner-two .slider-wrapper:before {
         width: 604.367px;
         height: 843.004px;
         left: 60px;
         top: -75px;
    }
     .header-area .header-button {
         margin-top: 15px;
    }
     .header-area .header-button a {
         padding: 12px 18px;
         font-size: 12px;
    }
     .box-warp {
         margin-left: 10em;
    }
     .google-map-one .map-info {
         margin-left: -1%;
    }
    /** start pricing tab **/
     .tb-pricing3 {
         text-align: center;
         margin: 25px auto;
    }
     .tb-pricing3.mr-60 {
         margin-right: 0px;
    }
     .tb-pricing3.ml-60 {
         margin-left: 0px;
    }
     .ptab-four .tb-pricing3 {
         text-align: center;
         margin: 25px 80px;
    }
     .ptab-five .tb-pricing3 {
         text-align: center;
         margin: 25px 80px;
    }
     .pricee {
         font-size: 34px;
    }
    /** start button **/
     .bpack-btn {
         margin-left: 80px;
    }
     .bpack-btn-two {
         margin-left: 80px;
    }
     .bpack-btn-three {
         margin-left: 85px;
    }
     .bpack-btn-four {
         margin-left: 85px;
    }
     .button-five .bpack-btn-five {
         margin-left: 90px;
    }
     .bpack-btn-six {
         margin-left: 60px;
    }
     .bpack-btn-seven {
         margin-left: 90px;
    }
     .bpack-btn-eight {
         margin-left: 90px;
    }
     .bpack-btn-nine {
         margin-left: 90px;
    }
     .bpack-btn-ten {
         margin-left: 90px;
    }
    /** start icon **/
     .bpack-icon-one {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 40px;
         width: 70px;
    }
     .bpack-icon-two {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 40px;
         width: 70px;
    }
     .bpack-icon-three {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 40px;
         width: 70px;
    }
     .bpack-icon-four {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 40px;
         width: 70px;
    }
     .bpack-icon-five {
         font-size: 28px;
         margin: 36px;
    }
     .bpack-icon-six {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 40px;
         width: 70px;
    }
     .bpack-icon-seven {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 40px;
         width: 70px;
    }
     .bpack-icon-eight {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 40px;
         width: 70px;
    }
     .bpack-icon-nine {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 40px;
         width: 70px;
    }
     .bpack-icon-ten {
         font-size: 30px;
         height: 70px;
         line-height: 70px;
         margin: 40px;
         width: 70px;
    }
    /** end icon **/
    /** start img **/
     .bpack-images-one {
         margin:20px 40px;
    }
     .bpack-images-two {
         margin:20px 40px;
    }
     .bpack-images-three {
         margin:20px 40px;
    }
     .bpack-images-four {
         margin:20px 40px;
    }
     .bpack-images-five {
         margin:20px 40px;
    }
     .bpack-images-six {
         margin:20px 40px;
    }
     .bpack-images-seven {
         margin:20px 40px;
    }
     .bpack-images-eight {
         margin:20px 40px;
    }
     .bpack-images-nine {
         margin:20px 40px;
    }
     .bpack-images-ten {
         margin:20px 40px;
    }
    /** end img **/
     .profile-ml{
         margin:20px 70px;
    }
     .profile-card-four .icons {
         padding: 20px 86px;
    }
     .product-card-five {
         margin: 20px auto;
    }
     .product-ml{
         margin: 20px auto;
    }
    /** start icon-card **/
     .icon-card-two .bpack-wrapper {
         border-right: 1px solid transparent;
         border-bottom: 1px solid #e33939;
    }
     .icon-card-two .col-xl-4:last-child .bpack-wrapper {
         border-bottom: 0;
    }
     .icon-card-three .bpack-grid .grid {
         width: calc(100% - 30px);
    }
     .bpack-wrapper {
         margin: 20px auto;
    }
     .icon-card-eight .bpack-icon {
         left: 198px;
    }
     .icon-card-one .wrp h4 {
         font-size: 18px;
         padding: 14px 6px;
    }
     .icon-card-one .wrp p {
         font-size: 13px;
         line-height: 26px;
    }
     .bpack-content p {
         font-size: 13px;
    }
     .icon-card-three .grid p {
         font-size: 13px;
    }
    /** start counter **/
     .counter-wrapper {
         margin: 25px auto;
    }
     .counter-up-four .counter-wrapper {
         border-right: none;
    }
     .social-icon-nine .social-icon {
         width: 360px;
    }
     .social-icon-nine .social-icon a {
         margin: 20px 5px;
    }
     .social-icon-ten .social-icon {
         width: 340px;
    }
     .social-icon-ten .social-icon a {
         margin: 20px 5px;
    }
     .image-card-text > p {
         font-size: 13px;
    }
    /** start call-out **/
     .call-out-three .call-out-tittle h2 {
         width: 100%;
         line-height: 42px;
    }
     .call-out-three .call-out-tittle p {
         width: 100%;
    }
     .call-out-four .call-out-tittle h2 {
         width: 100%;
         line-height: 42px;
    }
     .call-out-four .call-out-tittle p {
         width: 100%;
    }
     .call-out-five .call-out-tittle h2 {
         width: 100%;
         line-height: 42px;
    }
     .call-out-five .call-out-tittle p {
         width: 100%;
    }
     .call-out-btn {
         margin-top: 0px;
         margin-bottom: 25px;
    }
     .call-out-ten .call-out-btn {
         margin-top: 0px;
    }
    /** start heading-tittle **/
     .heading-tittle h2 {
         font-size: 30px;
    }
     .heading-tittle h2 span {
         font-size: 30px;
    }
     .heading-tittle-two .heading-tittle h2:before {
         right: -1%;
         top: 53%;
    }
     .heading-tittle-two .heading-tittle h2:after {
         left: 0%;
         top: 50%;
    }
     .heading-tittle-five .heading-tittle h2:after {
         left: -3%;
         top: 50%;
    }
     .heading-tittle-five .heading-tittle h2:before {
         right: -12%;
         top: 50%;
    }
     .heading-tittle-six .heading-tittle h2:before {
         right: -1%;
         top: 53%;
    }
     .heading-tittle-six .heading-tittle h2:after {
         left: 0%;
         top: 50%;
    }
     .heading-tittle-ten .heading-tittle {
         margin-left: 30px;
    }
     .heading-tittle-ten .heading-tittle h2:before {
         right: 3%;
         top: 53% 
    }
     .heading-tittle-ten .heading-tittle h2:after {
         left: -10%;
    }
    /** start team **/
     .team-style-block{
         margin: 22px 128px;
    }
     .team-style-five .team-style-block {
         margin: 22px 90px;
    }
     .team-style-one .img-box .social {
         padding-top: 25px;
         padding-left: 110px;
    }
     .team-style-seven {
         width: 50%;
         margin-left: 0px;
    }
     .team-style-eight {
         width: 46%;
    }
     .team-ten .team-style-block {
         margin: 22px 90px;
    }
     .video-inner {
         padding: 55px 10px;
    }
     .slick-slider-text h2, .swiper-slider-text h2 {
         font-size: 28px;
         margin: 0 0 18px;
    }
     .slick-slider-text p, .swiper-slider-text p {
         line-height: 25px;
         font-size: 14px;
         margin: 0 0 1.9em;
         width: 95%;
    }
     .slick-slider-text .theme-btn, .swiper-slider-text .theme-btn {
         font-size: 14px;
         padding: 9px 22px;
    }
     .slick-slider-three .slick-slider-text p {
         line-height: 25px;
    }
     .slick-slider-three .slick-slider-text h2 {
         font-size: 28px;
         margin: 0 0 16px;
    }
     .slick-slider-four .slick-slider-grids-4 .slick-slider-text {
         margin: 1px 27px 8px;
         padding: 24px 0px;
    }
    /** start blog post **/
     .blog-one .grid-content, .blog-two .grid-content{
         padding: 0px 24px 8px 0px;
         margin-left: 46px;
    }
     .blog-three .grid-content {
         margin-top: 0px;
         padding: 0px 0px 50px 44px;
    }
     .new-blog-builder{
         margin: 20px auto;
    }
     .contact-form-seven .contact-form {
         padding: 40px 40px 40px 40px;
    }
     .contact-form-8 .contact-form-seven .contact-form {
         padding: 40px 40px 40px 40px;
    }
     .portfolio-menu {
         margin-bottom: 15px;
         line-height: 55px;
    }
    /** start blog-details **/
     .blog-single-section .paga-with-blockquote p {
         width: 100%;
    }
     .blog-single-section .paga-with-blockquote blockquote {
         width: 100%;
         margin: 3px 0px 24px 0px;
         padding: 0px 0px;
         font-size: 18px;
    }
     .blog-single-section .blog-details-content {
         padding-right: 0px;
    }
     .blog-single-section .entry-title-meta h3 {
         font-size: 18px;
    }
     .blog-single-section .entry-meta li a {
         font-size: 12px;
    }
     .blog-single-section .entry-body p {
         font-size: 13px;
    }
     .blog-single-section .about-author .author-pic {
         width: 70px;
         float: none;
         margin-bottom: 10px;
    }
     .blog-single-section .about-author .author-details {
         width: calc(100% - 0px);
         padding-left: 0px;
    }
     .blog-single-section .about-author .inner {
         background-color: #f8f8fa;
         padding: 20px 20px;
    }
     .blog-single-section .about-author .author-job {
         font-size: 13px;
    }
     .blog-single-section .about-author p {
         font-size: 13px;
    }
     .blog-single-section .about-author h4, .blog-single-section .comment-respond h4 {
         font-size: 20px;
    }
     .blog-single-section .comments .article .author-pic {
         float: none;
    }
     .blog-single-section .comments .article .details {
         width: 100%;
         padding-left:0px;
         margin-top:10px;
    }
     .blog-single-section .comments .article p {
         font-size: 13px;
    }
     .widget.search-widget{
         margin-top: 50px;
    }
     .blog-single-section .comment-respond h4, .blog-single-section .related-posts h4 {
         font-size: 20px;
    }
     .blog-single-section .comment-respond h4{
         font-size: 20px;
    }
    /** start testimonials **/
     .testimonials-grids .grid {
         width: calc(100% - 30px);
    }
     .testimonials-grids .title h3 {
         font-size: 20px;
    }
     .testimonials-grids .title span {
         font-size: 13px;
    }
     .testimonials-grids .details p {
         font-size: 14px;
    }
     .testimonials-grids .details p:before {
         width: 35px;
         height: 25px;
    }
     .testimonials-two .testimonials-grids .title h3 {
         font-size: 20px;
    }
     .testimonials-two .testimonials-grids .title span {
         font-size: 13px;
    }
     .testimonials-two .testimonials-grids .details p {
         font-size: 14px;
    }
     .testimonials-two .testimonials-grids .details p:before {
         width: 35px;
         height: 25px;
    }
     .testimonials-two .testimonials-grids .details h4{
         font-size: 16px;
    }
     .testimonials-two .testimonials-grids .details h4 span {
         font-size: 12px;
    }
     .grid-testi-three .author h4{
         font-size: 16px;
    }
     .grid-testi-three .author h4 span {
         font-size: 12px;
    }
     .grid-testi-three .author h4 span {
         font-size: 12px;
    }
     .grid-testi-four h4 {
         font-size: 17px;
    }
     .feedback-slider-item:after {
         left: 30px;
         right: 30px;
    }
     .thumb-prev, .thumb-next {
         display: none;
    }
     .customer-feedback .owl-nav [class*="owl-"] {
         position: absolute;
         top: 50%;
         -webkit-transform: translateY(-50%);
         transform: translateY(-50%);
         margin-top: 45px;
         bottom: auto;
    }
     .customer-feedback .owl-prev {
         left: 0;
    }
     .customer-feedback .owl-next {
         right: 0;
    }
     .testimonials-five {
         transform: translatex(16%);
    }
     .testimonials-six .owl-theme .owl-dots {
         margin-top: 10px;
    }
     .feedback-slider-item span.desc {
         font-size: 12px;
    }
     .customer-name {
         font-size: 18px;
    }
     .testimonials-seven .testimonials-grids .details-about h4 {
         font-size: 1.3rem;
    }
     .testimonials-seven .testimonials-grids .details-about p {
         font-size: 16px;
    }
     .blog-slider {
         height: 350px;
    }
     .blog-slider__item {
         display: flex;
         align-items: center;
    }
     .blog-slider {
         min-height: 500px;
         height: auto;
         margin: 180px auto;
    }
     .blog-slider__img {
         transform: translateY(-50%);
         width: 90%;
    }
     .blog-slider__item {
         flex-direction: column;
    }
     .blog-slider__content {
         padding-right: 0px;
         text-align: center;
         padding-bottom: 20px;
         margin-top: -45px;
    }
     .blog-slider__pagination {
         transform: translateX(-50%);
         left: 50% !important;
         top: 205px;
         width: 100% !important;
         display: flex;
         justify-content: center;
         align-items: center;
    }
     .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
         margin: 0 5px;
    }
     .blog-slider__pagination .swiper-pagination-bullet-active {
         height: 11px;
         width: 30px;
    }
     .roadmap-outer .roadmap, .roadmap-outer .roadmap:first-child {
         margin: 0 0 20px;
    }
     .roadmap-outer .roadmap{
         margin-top: 0;
         overflow: hidden;
    }
     .roadmap-outer .roadmap:before, .roadmap-outer .roadmap:nth-child(2n):before{
         box-shadow: none;
    }
     .roadmap-outer .roadmap-icon, .roadmap-outer .roadmap:nth-child(2n) .roadmap-icon{
         margin-top: -30px;
         margin-bottom: 20px;
         position: relative;
         transform: rotate(135deg);
    }
     .roadmap-outer .year, .roadmap-outer .roadmap:nth-child(2n) .year{
         transform: rotate(-135deg);
    }
     .roadmap-outer .roadmap-content, .roadmap-outer .roadmap:nth-child(2n) .roadmap-content{
         width: 100%;
         float: none;
         border-radius: 0 0 20px 20px;
         text-align: center;
         padding: 25px 20px;
         margin: 0 auto;
    }
     .roadmap-outer .roadmap-content:before, .roadmap-outer .roadmap:nth-child(2n) .roadmap-content:before{
         width: 15px;
         height: 25px;
         position: absolute;
         top: -22px;
         left: 50%;
         z-index: -1;
         transform: translate(-50%,0);
    }
     .timeline_six .timeline__event, .timeline__event{
         width: 100%;
         text-align: center;
         top: 10px;
    }
     .timeline_six .timeline__event-date-time, .timeline__event-date-time{
         display: -webkit-inline-box;
    }
     .timeline__event-descr {
         font-size: 0.8rem;
    }
     .myphoto {
         margin-left: 10em;
    }
     .icon-card-one .wrp {
         padding: 10px;
         margin:20px 0px;
    }
     .footer-top-area-3 .footer-text, .footer-text, .footer-text {
         font-size: 22px;
    }
     .video-inner h2 {
         font-size: 26px;
    }
     .video-inner p {
         font-size: 13px;
    }
     .single-skill-bar .skill-title .experience {
         font-size: 13px;
    }
     .single-skill-bar .skill-title {
         font-size: 14px;
    }
     .swiper-slider-two .gallery-thumbs .swiper-slider-text p {
         display: none;
    }
}




/* Type 1 */

.css-demo-title.type-1 {
    color : #ffffff;
    background : #ffa500;
}

.css-col.type-1 {
    position : relative;
    overflow : hidden;
    margin : 40px 0;
    padding : 10px;
    transition : all .4s ease;
    box-shadow : 1px 2px 10px rgba(0, 0, 0, .18);
}

.css-col.type-1 .fa {
    font-size : 52px;
    line-height : 120px;
    width : 130px;
    height : 130px;
    margin : 20px;
    color : #ffa500;
    border : solid;
    border-radius : 100%;
}

.css-col.type-1 h2 {
    margin-top : 0;
    margin-bottom : 15px;
    padding : 13px 0;
}

.css-col.type-1 p {
    padding : 0 17px 17px;
    color : #919191;
}

.css-col.type-1:after {
    position : absolute;
    z-index : -1;
    top : 0;
    right : 0;
    bottom : 0;
    left : 0;
    content : '';
    transition : all .4s ease;
    transform : translateY(100%);
    background : #ffa500;
}

.css-col.type-1:hover:after {
    transform : translateY(0%);
}

.css-col.type-1:hover .fa ,
.css-col.type-1:hover h2 ,
.css-col.type-1:hover p {
    color : #ffffff;
}

.css-col.type-1:hover .btn {
    color : #ffa500;
    background : #ffffff;
}

.css-col.type-1 .btn {
    margin : 10px 0 20px;
    padding : 14px 35px;
    color : #ffffff;
    border-radius : 0;
    background : #ffa500;
}

/* Type 2 */

.css-demo-title.type-2 {
    color : #ffffff;
    background : #5656a6;
}

.css-section.background-1 {
    background : #5b5bae;
}

.css-col.type-2 {
    margin : 40px 0;
    padding : 10px;
    transition : all .4s ease;
}

.css-col.type-2 .fa {
    font-size : 52px;
    line-height : 120px;
    width : 130px;
    height : 130px;
    margin : 20px;
    color : #ffa500;
    border : solid;
    border-radius : 100%;
}

.css-col.type-2 h2 {
    margin-top : 0;
    margin-bottom : 15px;
    padding : 13px 0;
}

.css-col.type-2 p {
    padding : 0 17px 17px;
    color : #919191;
}

.css-col.type-2:hover {
    transform : scale(.9,.9);
    background : #5656a6;
}

.css-col.type-2 .btn {
    margin : 10px 0 20px;
    padding : 14px 35px;
    color : #3c3c3c;
    border-radius : 0;
    background : #ffffff;
}

.css-col.type-2:hover .btn {
    color : #ffffff;
    background : #5b5bae;
}

/* Type 3 */

.css-demo-title.type-3 {
    color : #ffffff;
    background : #24cf5f;
}

.css-col.type-3 {
    position : relative;
    overflow : hidden;
    margin : 40px 0;
    padding : 10px;
}

.css-col.type-3 .fa {
    font-size : 52px;
    line-height : 120px;
    width : 130px;
    height : 130px;
    color : #24cf5f;
}

.css-col.type-3 h2 {
    margin-top : 0;
    margin-bottom : 0;
    padding : 13px 0;
}

.css-col.type-3 p {
    padding : 0 17px 17px;
    color : #919191;
}

.css-col.type-3:before {
    position : absolute;
    z-index : -1;
    bottom : 0;
    left : 0;
    box-sizing : border-box;
    width : 99.5%;
    height : 2px;
    content : '';
    transform : translateX(100%);
    border-bottom : 2px solid transparent;
    border-left : 2px solid transparent;
}

.css-col.type-3:after {
    position : absolute;
    z-index : -1;
    top : 0;
    left : 0;
    box-sizing : border-box;
    width : 99.5%;
    height : 2px;
    content : '';
    transform : translateX(-100%);
    border-top : 2px solid transparent;
    border-right : 2px solid transparent;
}

.css-col.type-3:hover:before {
    height : 100%;
    transition : .2s transform ease, .1s height ease .1s;
    transform : translateX(0);
    border-color : #24cf5f;
}

.css-col.type-3:hover:after {
    height : 100%;
    transition : .2s transform ease .2s, .1s height ease .3s;
    transform : translateX(0);
    border-color : #24cf5f;
}

.css-col.type-3 .btn {
    margin : 10px 0 20px;
    padding : 12px 35px;
    color : #ffffff;
    border-radius : 40px;
    background : #24cf5f;
}

.css-col.type-3 .btn:hover {
    color : #ffffff;
    background : #54ee89;
}

/* Type 4 */

.css-demo-title.type-4 {
    color : #ffffff;
    background : #e12573;
}

.css-col.type-4 {
    position : relative;
    overflow : hidden;
    margin : 40px 0;
    padding : 10px;
}

.css-col.type-4 .fa {
    font-size : 52px;
    line-height : 120px;
    float : left;
    width : 70px;
    height : 130px;
    margin-right : 40px;
    text-align : right;
    color : #e12573;
}

.css-col.type-4 h2 {
    margin-top : 0;
    margin-bottom : 0;
    padding : 13px 0;
}

.css-col.type-4 p {
    padding : 0 17px 17px;
    color : #919191;
}

.css-col.type-4:after {
    position : absolute;
    z-index : -1;
    top : 0;
    right : 0;
    bottom : 0;
    left : 0;
    content : '';
    transition : all .4s ease;
    transform : translateX(100%);
    background : #e12573;
}

.css-col.type-4:hover:after {
    transform : translateX(0%);
}

.css-col.type-4:hover .fa ,
.css-col.type-4:hover h2 ,
.css-col.type-4:hover p {
    color : #ffffff;
}

.css-col.type-4:hover .btn {
    background : #ff378a;
}

.css-col.type-4 .btn {
    margin : 10px 0 20px;
    padding : 12px 35px;
    color : #ffffff;
    border-radius : 40px;
    background : #e12573;
}


/* Type 5 */

.css-demo-title.type-5 {
    color : #ffffff;
    background : #1997d3;
}

.css-col.type-5 {
    margin : 40px 0;
    padding : 10px;
    transition : all .8s ease;
    outline : solid 2px #71d1ff;
    outline-offset : -10px;
    background : #20b7ff;
    box-shadow : 0 0 0 18px rgba(0, 0, 0, .15) inset;
}

.css-col.type-5 .fa {
    font-size : 52px;
    line-height : 120px;
    width : 130px;
    height : 110px;
    color : #b7e8ff;
}

.css-col.type-5 h2 {
    margin-top : 0;
    margin-bottom : 15px;
    padding : 13px 0;
    color : #ffffff;
}

.css-col.type-5 p {
    padding : 0 17px 17px;
    color : #ffffff;
}

.css-col.type-5:hover {
    outline : solid 6px #71d1ff;
    box-shadow : 0 0 0 500px rgba(0, 0, 0, .15) inset;
}

.css-col.type-5 .btn {
    margin : 10px 0 20px;
    padding : 14px 35px;
    color : #ffffff;
    border-radius : 0;
    background : #1997d3;
}

.css-col.type-5:hover .btn {
    color : #1997d3;
    background : #b7e8ff;
}

/* Type 6 */

.css-demo-title.type-6 {
    color : #ffffff;
    background : #19d3ca;
}

.css-col.type-6 {
    margin : 40px 0;
    padding : 10px;
}

.css-col-counter {
    position : relative;
    overflow : hidden;
    text-align : right;
    border-bottom : 1px solid #19d3ca;
}

.css-col-counter span {
    font-size : 72px;
    line-height : 72px;
    position : relative;
    top : 26px;
    display : inline-block;
    transition : all .4s ease;
    color : #e9e9e9;
}

.css-col-counter:after {
    position : absolute;
    right : 0;
    bottom : 0;
    display : block;
    width : 80px;
    content : '';
    -webkit-box-shadow : 0 6px 15px 5px rgba(50, 50, 50, .15);
       -moz-box-shadow : 0 6px 15px 5px rgba(50, 50, 50, .15);
            box-shadow : 0 6px 15px 5px rgba(50, 50, 50, .15);
}

.css-col.type-6 .fa {
    font-size : 52px;
    line-height : 120px;
    width : 130px;
    height : 130px;
    margin : 20px;
    transition : all .8s ease;
    color : #ffffff;
    border-radius : 10px;
    background : #19d3ca;
}

.css-col.type-6 h2 {
    margin-top : 0;
    margin-bottom : 0;
    padding : 13px 0;
}

.css-col.type-6 p {
    padding : 17px 17px;
}

.css-col.type-6 .btn {
    margin : 10px 0 20px;
    padding : 12px 35px;
    color : #ffffff;
    border-radius : 0;
    border-radius : 40px;
    background : #19d3ca;
}

.css-col.type-6 .btn:hover {
    color : #ffffff;
    background : #16b0a8;
}

.css-col.type-6:hover .css-col-counter span {
    top : 0;
}

.css-col.type-6:hover .fa {
    transform : rotateY(180deg);
}

/* Type 7 */

.css-demo-title.type-7 {
    color : #ffffff;
    background : #2e4b9b;
}

.css-col.type-7 {
    position : relative;
    margin : 40px 0;
    padding : 10px;
}

.css-col.type-7 .fa {
    font-size : 142px;
    position : absolute;
    z-index : 0;
    top : 0;
    right : 0;
    margin : 20px;
    transition : all .4s ease;
    color : #8aa9ff;
    opacity: 0.2;
}

.css-col.type-7 h2 {
    position : relative;
    z-index : 1;
    margin-top : 0;
    margin-bottom : 15px;
    padding : 62px 0;
}

.css-col.type-7 p {
    padding : 0 17px 17px;
    color : #919191;
}

.css-col.type-7:hover .fa {
    transform : translateX(-100%);
}

.css-col.type-7 .btn {
    margin : 10px 0 20px;
    padding : 14px 35px;
    color : #ffffff;
    border-radius : 0;
    background : #2e4b9b;
}

.css-col.type-7 .btn:hover {
    color : #ffffff;
    background : #8aa9ff;
}

/* Type 8 */

.css-section.type-8 {
    background : #edf4f3;
}

.css-demo-title.type-8 {
    color : #ffffff;
    background : #ff4343;
}

.css-col.type-8 {
    margin : 40px 0;
    padding : 10px 2px;
    background : #ffffff;
}

.css-col.type-8 .fa {
    font-size : 52px;
    line-height : 120px;
    width : 130px;
    height : 130px;
    margin : 20px;
    transition : all .4s ease;
    color : #ff4343;
    border : solid 1px #e5e5e5;
    border-radius : 100%;
    box-shadow : 5px 5px 3px #dddddd;
}

.css-col.type-8 h2 {
    margin-top : 0;
    margin-bottom : 15px;
    padding : 13px 0;
    transition : all .4s ease;
    background : linear-gradient(to right, #edf4f3 50%, #ff4343 50%);
    background-position : left;
    background-size : 200% 100%;
}

.css-col.type-8 p {
    padding : 0 17px 17px;
    color : #919191;
    min-height: 100px;
}

.css-col.type-8:hover .fa {
    box-shadow : -5px 7px 3px #dddddd;
}

.css-col.type-8:hover h2 {
    color : #ffffff;
    background-position : right;
}

.css-col.type-8 .btn {
    margin : 10px 0 20px;
    padding : 14px 35px;
    color : #ffffff;
    border-radius : 0;
    border-radius : 40px;
    background : #ff4343;
}

.css-col.type-8 .btn:hover {
    color : #ffffff;
    background : #e33939;
}

/* Type 9 */

.css-demo-title.type-9 {
    color : #ffffff;
    background : #c0df19;
}

.css-col.type-9 {
    margin : 90px 0 40px;
    padding : 10px;
    background : #f4ffb9;
}

.css-col.type-9 .fa {
    font-size : 52px;
    line-height : 120px;
    width : 130px;
    height : 130px;
    margin : -90px 20px 20px;
    transition : all .4s ease;
    color : #c0df19;
    border : solid 1px #ffffff;
    border-radius : 100%;
    background : #ffffff;
}

.css-col.type-9 h2 {
    margin-top : 0;
    margin-bottom : 15px;
    padding : 13px 0;
}

.css-col.type-9 p {
    padding : 0 17px 17px;
    color : #919191;
}

.css-col.type-9:hover .fa {
    color : #ffffff;
    background : #c0df19;
}

.css-col.type-9 .btn {
    margin : 10px 0 20px;
    padding : 14px 35px;
    color : #ffffff;
    border-radius : 40px;
    background : #c0df19;
}

.css-col.type-9 .btn:hover {
    color : #ffffff;
    background : #a3be10;
}

/* Type 10 */

.css-demo-title.type-10 {
    color : #ffffff;
    background : #816ee7;
}

.css-col.type-10 {
    margin : 40px 0;
    padding : 10px 2px;
    transition : all .4s ease;
    border-radius : 40px 0;
    background : #816ee7;
}

.css-col.type-10 .fa {
    font-size : 52px;
    line-height : 120px;
    width : 100%;
    height : 130px;
    margin : 20px 0;
    color : #533dcd;
    background : #ffffff;
}

.css-col.type-10 h2 {
    margin-top : 0;
    margin-bottom : 0;
    padding : 8px 0;
    color : #ffffff;
}

.css-col.type-10 p {
    padding : 0 17px 17px;
    color : #ffffff;
}

.css-col.type-10:hover {
    border-radius : 0 40px;
}

.css-col.type-10 .btn {
    margin : 10px 0 20px;
    padding : 14px 35px;
    color : #ffffff;
    border-radius : 40px;
    background : #533dcd;
}

.css-col.type-10 .btn:hover {
    color : #ffffff;
    background : #4932c0;
}

/* Type 11 */

.css-demo-title.type-11 {
    color : #ffffff;
    background : #ee12a0;
}

.css-col.type-11 {
    position : relative;
    margin : 90px 0 40px;
    padding : 70px 2px 74px;
    transition : all .4s ease;
    border : solid 1px #ee12a0;
    border-radius : 100%;
    background : #ffffff;
}

.css-col.type-11 .fa {
    font-size : 52px;
    line-height : 107px;
    position : absolute;
    top : -90px;
    left : 50%;
    width : 110px;
    height : 110px;
    margin : 20px 0;
    transition : all .4s ease;
    transform : translateX(-50%);
    color : #ffffff;
    border-radius : 100%;
    background : #ee12a0;
}

.css-col.type-11 h2 {
    margin-top : 0;
    margin-bottom : 18px;
    padding : 8px 0;
}

.css-col.type-11 p {
    padding : 0 17px 17px;
}

.css-col.type-11 .btn {
    margin : 10px 0 20px;
    padding : 14px 35px;
    color : #ffffff;
    border-radius : 40px;
    background : #ee12a0;
}

.css-col.type-11:hover {
    background : #ee12a0;
}

.css-col.type-11:hover .fa {
    color : #ee12a0;
    background : #ffffff;
}

.css-col.type-11:hover h2 ,
.css-col.type-11:hover p {
    color : #ffffff;
}

.css-col.type-11:hover .btn {
    color : #ffffff;
    background : #d71a94;
}

/* Type 12 */

.css-demo-title.type-12 {
    color : #ffffff;
    background : #12daee;
}

.css-col.type-12 {
    position : relative;
    overflow : hidden;
    margin : 49px 0 40px;
    padding : 20px;
    transition : all .4s ease;
    background : #edfdff;
}

.css-col.type-12 .fa {
    font-size : 52px;
    line-height : 107px;
    float : right;
    width : 110px;
    height : 110px;
    margin : 20px 0;
    color : #12daee;
    border-radius : 100%;
    background : #ffffff;
    box-shadow : -3px -2px 5px #cdcdcd inset;
}

.css-col.type-12 h2 {
    position : absolute;
    top : 10px;
    margin-top : 0;
    margin-bottom : 18px;
    padding : 8px 0;
}

.css-col.type-12 p {
    padding : 46px 0 17px;
    text-align : left;
}

.css-col.type-12 .btn {
    display : block;
    width : 145px;
    margin : 10px 0 20px;
    padding : 14px 35px;
    color : #ffffff;
    border-radius : 40px;
    background : #12daee;
}

.css-col.type-12:after {
    position : absolute;
    z-index : -1;
    top : 0;
    right : 0;
    bottom : 0;
    left : 0;
    content : '';
    transition : all .4s ease;
    transform : rotateZ(90deg) translateX(100%);
    background : #12daee;
}

.css-col.type-12:hover:after {
    transform : rotateZ(0deg) translateX(0%);
}

.css-col.type-12:hover {
    background : transparent;
}

.css-col.type-12:hover h2 ,
.css-col.type-12:hover p {
    color : #ffffff;
}

.css-col.type-12:hover .btn {
    color : #12daee;
    background : #edfdff;
}

/* Type 13 */

.css-demo-title.type-13 {
    color : #ffffff;
    background : #1ce6ae;
}

.css-col.type-13 {
    position : relative;
    overflow : hidden;
    margin : 49px 0 40px;
    padding : 20px;
    transition : all .4s ease;
    background : #eeeeee;
}

.css-col.type-13 .fa {
    font-size : 52px;
    line-height : 107px;
    position : absolute;
    top : -46px;
    left : -24px;
    width : 110px;
    height : 110px;
    margin : 20px 0;
    color : #ffffff;
    border-radius : 100%;
    background : #1ce6ae;
    box-shadow : 0 0 0 10px #e9e9e9;
}

.css-col.type-13 h2 {
    margin-top : 0;
    margin-bottom : 18px;
    padding : 8px 0;
    transition : all .4s ease;
    text-align : right;
}

.css-col.type-13 p {
    padding : 20px 0 17px;
    transition : all .4s ease;
    text-align : left;
}

.css-col.type-13 .btn {
    margin : 10px 0 20px;
    padding : 14px 35px;
    color : #ffffff;
    border-radius : 40px;
    background : #1ce6ae;
}

.css-col.type-13:after {
    position : absolute;
    z-index : -1;
    top : 0;
    right : 0;
    bottom : 0;
    left : 0;
    content : '';
    transition : all .4s ease;
    transform : translateY(-100%) translateX(-100%);
    background : #1ce6ae;
}

.css-col.type-13:hover:after {
    transform : translateY(0%) translateX(0%);
}

.css-col.type-13:hover {
    background : transparent;
}

.css-col.type-13:hover h2 ,
.css-col.type-13:hover p {
    color : #ffffff;
}

.css-col.type-13:hover .btn {
    color : #ffffff;
    background : #19bb8e;
}

/* Type 14 */

.css-demo-title.type-14 {
    color : #ffffff;
    background : #ff408f;
}

.css-col.type-14 {
    position : relative;
    margin : 40px 0;
    padding : 0;
    background : #ff408f;
}

.css-col.type-14:after {
    position : absolute;
    z-index : -1;
    right : 0;
    bottom : -30px;
    left : 0;
    height : 90px;
    content : '';
    transform : skewY(5deg);
    background : #ff408f;
}

.css-col.type-14 .fa {
    font-size : 52px;
    line-height : 107px;
    width : 110px;
    height : 110px;
    margin : 20px 0;
    color : #ffffff;
    border-radius : 100%;
    background : #fd6faa;
    box-shadow : 0 0 0 10px rgba(255, 255, 255, .12);
}

.css-col.type-14 h2 {
    position : relative;
    z-index : 1;
    margin-top : 0;
    margin-bottom : 18px;
    padding : 20px;
    color : #ff408f;
    background : #ffffff;
}

.css-col.type-14 h2:before {
    position : absolute;
    z-index : -1;
    top : 0;
    right : 0;
    left : 0;
    height : 90px;
    content : '';
    transform : skewY(5deg);
    background : #ffffff;
}

.css-col.type-14 p {
    padding : 20px 20px 17px;
    text-align : left;
    color : #ffffff;
}

.css-col.type-14 .btn {
    margin : 10px 20px 20px;
    padding : 14px 35px;
    color : #ffffff;
    border-radius : 0;
    background : #fd6faa;
}

.css-col.type-14 .btn:hover {
    color : #ffffff;
    background : #e03079;
}

.css-col.type-14:hover {
    animation : flipZoomOut 1s forwards 1;
}

@keyframes flipZoomOut {
    0% {
        transform : scale(1,1);
    }
    20% {
        transform : scale(.8,.8);
    }
    100% {
        transform : scale(1,1);
    }
}

.css-col.type-14:hover .fa {
    animation : ripple 1s infinite;
}

@keyframes ripple {
    0% {
        box-shadow : 0 0 0 10px rgba(255, 255, 255, .5);
    }
    40% {
        box-shadow : 0 0 0 15px rgba(255, 255, 255, .4);
    }
    80% {
        box-shadow : 0 0 0 10px rgba(255, 255, 255, .5);
    }
    100% {
        box-shadow : 0 0 0 15px rgba(255, 255, 255, .4);
    }
}

/* Type 15 */

.css-demo-title.type-15 {
    color : #ffffff;
    background : #44DDFF;
}

.css-col.type-15 {
    padding: 15px;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
}

.css-col.type-15:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #DDF9FF;
    z-index: -1;
    transform: rotateX(90deg) translateY(100%);
    transition: all .8s ease;
}

.css-col.type-15 .fa {
    font-size: 50px;
    padding: 20px 0 0;
}

.css-col.type-15 .btn {
    border: solid 2px;
    margin: 20px;
    padding: 10px 20px;
    color: #000;
}

.css-col.type-15:hover:after {
    transform: rotateX(0deg) translateY(0%);
}

.css-col.type-15:hover .fa {
    animation: hinge 1.4s infinite forwards;
}

@keyframes hinge {
    0% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(-5px);
    }
}

/* Type 16 */

.css-demo-title.type-16 {
    background: #E1E1E1;
}

.css-col.type-16 {
    position: relative;
    overflow: hidden;
}

.css-col.type-16:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    transition: all .4s ease;
    z-index: 0;
}

.css-col.type-16:hover:before {
    transform: translateY(-100%);
}

.css-col.type-16:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
    transform: translateY(100%);
    transition: all .4s ease;
    z-index: 0;
}

.css-col.type-16:hover:after {
    transform: translateY(0);
}

.css-col.type-16 .data {
    position: absolute;
    bottom: 20px;
    z-index: 1;
    color: #fff;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.css-col.type-16 .data h2 {
    margin-bottom: 20px;
}

.css-col.type-16 .data .btn {
    display: none;
    padding: 10px 20px;
    color: #fff;
    width: 140px;
    margin: auto;
    background: linear-gradient(to right, #000 50%, #FFF 50%);
    background-size: 200% 100%;
    background-position: left;
    transition: all .2s ease;
    border: none;
}

.css-col.type-16 .data .btn:hover {
    background-position: right;
    color: #000;
}

.css-col.type-16:hover .data .btn {
    display: block;
    animation: fadeInUp .4s 1 forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.css-col.type-16:hover .data h2 {
    animation: fadeInDown .4s 1 forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.css-col.type-16:hover .data p {
    display: none;
}

/* Type 17 */

.css-demo-title.type-17 {
    background: #9EC1FF;
}

.css-col.type-17 {
    position: relative;
    overflow: hidden;
}

.css-col.type-17:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(74, 98, 128, 0.44);
    transform: scale(1,1);
    transition: all .4s ease;
    z-index: 0;
}

.css-col.type-17:hover:before {
    transform: scale(0,0);
}

.css-col.type-17:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(74, 98, 128, 0.66);
    transform: scale(0,0);
    transition: all .4s ease;
    z-index: 0;
}

.css-col.type-17:hover:after {
    transform: scale(1,1);
}

.css-col.type-17 .data {
    position: absolute;
    bottom: 20px;
    z-index: 1;
    color: #fff;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.css-col.type-17 .data h2 {
    margin-bottom: 20px;
}

.css-col.type-17 .data p,
.css-col.type-17 .data .btn {
    display: none;
}

.css-col.type-17:hover .data p,
.css-col.type-17:hover .data .btn {
    display: block;
}

.css-col.type-17:hover .data {
    animation: zoomIn .4s 1 forwards;
} 

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0,0);
    }
    100% {
        opacity: 1;
        transform: scale(1,1);
    }
}

.css-col.type-17 .data .btn {
    padding: 10px 20px;
    color: #fff;
    width: 140px;
    margin: 20px auto auto;
    background: linear-gradient(to top, transparent 50%, #FFF 50%);
    background-size: 100% 200%;
    background-position: bottom;
    transition: all .2s ease;
    border: solid 2px;
    border-radius: 0;
}

.css-col.type-17 .data .btn:hover {
    background-position: top;
    color: #000;
    border-color: #fff;
}

/* Type 18 */

.css-demo-title.type-18 {
    background: #FFD356;
}

.css-col.type-18 {
    position: relative;
    overflow: hidden;
}

.css-col.type-18:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(66, 65, 16, 0.44);
    transform: translateY(0);
    transition: all .4s ease;
    z-index: 0;
}

.css-col.type-18:hover:before {
    transform: translateY(-100%);
}

.css-col.type-18:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(66, 65, 16, 0.66);
    transform: translateY(100%);
    transition: all .4s ease;
    z-index: 0;
}

.css-col.type-18:hover:after {
    transform: translateY(0);
}

.css-col.type-18 .data {
    position: absolute;
    bottom: 20px;
    z-index: 1;
    color: #fff;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.css-col.type-18 .data h2 {
    margin-bottom: 20px;
}

.css-col.type-18 .data p,
.css-col.type-18 .data .btn {
    display: none;
}

.css-col.type-18:hover .data p,
.css-col.type-18:hover .data .btn {
    display: block;
}

.css-col.type-18:hover .data {
    animation: fadeInUp .4s 1 forwards;
}

.css-col.type-18 .data .btn {
    padding: 10px 20px;
    color: #fff;
    width: 140px;
    margin: 20px auto auto;
    background: linear-gradient(to bottom, transparent 50%, #FFF 50%);
    background-size: 100% 200%;
    background-position: top;
    transition: all .2s ease;
    border: solid 2px;
    border-radius: 40px;
}

.css-col.type-18 .data .btn:hover {
    background-position: bottom;
    color: #000;
    border-color: #fff;
}





/****************************************************************
    JAG Testimonial Theme 1 CSS
*****************************************************************/
.tishonator-1{
    clear: both;
    width: 100%;
}
.tishonator-1 hr{
    margin: 10px 0;
}
.tishonator-1 .tishonator-wrapper{
    border-radius: 3px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}
.tishonator-1 .tishonator-avatar{
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    width: 120px;
    height: 120px;
    margin: -60px auto 0;
    border: 5px solid #ffffff;
    background: #ffffff;
    position: relative;
    z-index: 99;
}
.tishonator-1 .tishonator-wrapper:hover .tishonator-avatar:after{
    animation: avtar-hover 1s;
    -webkit-animation: avtar-hover 1s;
}
.tishonator-1 .tishonator-avatar:after {
    content: "";
    position: absolute;
    top: -4px;
    left: -5px;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 100%;
    opacity: 0;
    transition: 0.4s all;
}
.tishonator-1 .tishonator-avatar img{
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
}
.tishonator-1 .tishonator-details{
    padding: 20px;
    text-align: center;
}
.tishonator-1 .tishonator-details .tshnt-tstm-testimonial-title{
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
}
.tishonator-1 .tishonator-details .tshnt-tstm-name{
    font-size: 18px;
    font-weight: normal;
    line-height: 22px;
}
.tishonator-1 .tishonator-details .tshnt-tstm-designation{
    font-size: 14px;
    margin: 5px 0;
}
.tishonator-1 .tshnt-tstm-message{
    font-size: 14px;
    line-height: 22px;
}
.tishonator-1 .tshnt-tstm-message i{
    font-size: 30px;
    color: orange;
    margin-right: 10px;
}
.tishonator-1 .tishonator-details .tshnt-tstm-rating{
    margin: 5px 0;
}
.tishonator-1 .tishonator-details .tshnt-tstm-rating i{
    color: orange;
    font-size: 18px;
    margin: 0 2px;
}
.tishonator-1 .tishonator-col{
    margin-bottom: 30px;
}
.tishonator-1 .tishonator-color-bg{
    height: 100px;
    position: relative;
    z-index: 0;
    width: 100%;
}
@keyframes avtar-hover {
    0%  {opacity: 0;}
    70%  {opacity: 0.4;}
    100% {opacity: 0;}
}
@-webkit-keyframes avtar-hover {
     0%  {opacity: 0;}
    70%  {opacity: 0.4;}
    100% {opacity: 0;}
}
/****************************************************************
    Slider Style CSS
*****************************************************************/
.owl-nav {
   margin-top: 10px;
   text-align: center;
   -webkit-tap-highlight-color: transparent; 
}
.owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
.owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none; 
}
.owl-nav .disabled {
    opacity: 0.5;
    cursor: default; 
}
.owl-nav.disabled + .owl-dots {
  margin-top: 10px; 
}
 .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; 
}
.owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; 
    background: none !important;
  box-shadow: none !important;
  border: none !important;
}
.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px; 
}
.owl-dots .owl-dot.active span, 
.owl-dots .owl-dot:hover span {
    background: #869791; 
}
.tishonator-1.owl-carousel .tishonator-wrapper{
    width: 99%;
    margin: 0 auto;
}
/****************************************************************
    THEME COLORS CSS
*****************************************************************/
/*Random Theme color*/
.tishonator-1.tishonator-random-colors .tishonator-col:nth-child(3n+2) .tishonator-color-bg,
.tishonator-1.tishonator-random-colors .owl-item:nth-child(3n+2) .tishonator-color-bg{
    background: #ea3566;
}
.tishonator-1.tishonator-random-colors .tishonator-col:nth-child(3n+2) .tshnt-tstm-message i,
.tishonator-1.tishonator-random-colors .tishonator-col:nth-child(3n+2) .tishonator-details .tshnt-tstm-rating i,
.tishonator-1.tishonator-random-colors .owl-item:nth-child(3n+2) .tshnt-tstm-message i,
.tishonator-1.tishonator-random-colors .owl-item:nth-child(3n+2) .tishonator-details .tshnt-tstm-rating i{
    color: #ea3566;
}
.tishonator-1.tishonator-random-colors .tishonator-col:nth-child(4n+3) .tishonator-color-bg,
.tishonator-1.tishonator-random-colors .owl-item:nth-child(4n+3) .tishonator-color-bg{
    background: #e33939;
}
.tishonator-1.tishonator-random-colors .tishonator-col:nth-child(4n+3) .tshnt-tstm-message i,
.tishonator-1.tishonator-random-colors .tishonator-col:nth-child(4n+3) .tishonator-details .tshnt-tstm-rating i,
.tishonator-1.tishonator-random-colors .owl-item:nth-child(4n+3) .tshnt-tstm-message i,
.tishonator-1.tishonator-random-colors .owl-item:nth-child(4n+3) .tishonator-details .tshnt-tstm-rating i{
    color: #e33939;
}
.tishonator-1.tishonator-random-colors .tishonator-col:nth-child(5n+4) .tishonator-color-bg,
.tishonator-1.tishonator-random-colors .owl-item:nth-child(5n+4) .tishonator-color-bg{
    background: #00aac4;
}
.tishonator-1.tishonator-random-colors .tishonator-col:nth-child(5n+4) .tshnt-tstm-message i,
.tishonator-1.tishonator-random-colors .tishonator-col:nth-child(5n+4) .tishonator-details .tshnt-tstm-rating i,
.tishonator-1.tishonator-random-colors .owl-item:nth-child(5n+4) .tshnt-tstm-message i,
.tishonator-1.tishonator-random-colors .owl-item:nth-child(5n+4) .tishonator-details .tshnt-tstm-rating i{
    color: #00aac4;
}
/*Default Theme color*/
.tishonator-1 .tishonator-color-bg{     
    background: #ff0044;
}
.tishonator-1 .tshnt-tstm-message i ,
.tishonator-1 .tishonator-details .tshnt-tstm-rating i{
    color: #ff0044;
}
/*Theme orange*/
.tishonator-1.tishonator-orange .tishonator-color-bg{
    background: #e33939;
}
.tishonator-1.tishonator-orange .tshnt-tstm-message i ,
.tishonator-1.tishonator-orange .tishonator-details .tshnt-tstm-rating i{
    color: #e33939;
}
/*Theme dark red*/
.tishonator-1.tishonator-darkred .tishonator-color-bg{
    background: #c40000;
}
.tishonator-1.tishonator-darkred .tshnt-tstm-message i ,
.tishonator-1.tishonator-darkred .tishonator-details .tshnt-tstm-rating i{
    color: #c40000;
}
/*Theme pink*/
.tishonator-1.tishonator-pink  .tishonator-color-bg{
    background: #f90f90;
}
.tishonator-1.tishonator-pink  .tshnt-tstm-message i ,
.tishonator-1.tishonator-pink  .tishonator-details .tshnt-tstm-rating i{
    color: #f90f90;
}
/*Theme blue*/
.tishonator-1.tishonator-blue .tishonator-color-bg{
    background: #00aac4;
}
.tishonator-1.tishonator-blue  .tshnt-tstm-message i ,
.tishonator-1.tishonator-blue  .tishonator-details .tshnt-tstm-rating i{
    color: #00aac4;
}


.tishonator-3{
    clear: both;
    width: 100%;
}
.tishonator-3 .tishonator-wrapper{
    border-radius: 15px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    color: #ffffff;
    padding: 20px 10px 120px;
    position: relative;
}
.tishonator-3 .tishonator-avatar{
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border: 5px solid #ffffff;
    background: #ffffff;
    position: relative;
    z-index: 99;
}
.tishonator-3 .tishonator-col:hover .tishonator-avatar:after{
    animation: avtar-hover 1s;
    -webkit-animation: avtar-hover 1s;
}
.tishonator-3 .tishonator-avatar:after {
    content: "";
    position: absolute;
    top: -4px;
    left: 25px;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 100%;
    opacity: 0;
    transition: 0.4s all;
}
.tishonator-3 .tishonator-avatar img{
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    position: relative;
    left: 30px;
    top: -10px;
    border: 5px solid #dddddd;
}
.tishonator-3 .tshnt-tstm-dots span{
    display: block;
    margin: 0 auto;
    position:relative;
    top: -10px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.tishonator-3 .tshnt-tstm-dots span:first-child{
    width: 20px;
    height: 20px;
}
.tishonator-3 .tshnt-tstm-dots span:nth-child(2){
    width: 15px;
    height: 15px;
    left: 3px;
}
.tishonator-3 .tshnt-tstm-dots span:nth-child(3){
    width: 10px;
    height: 10px;
    left: 7px;
}
.tishonator-3 .tshnt-tstm-dots span:nth-child(4){
    width: 8px;
    height: 8px;
    left: 12px;
}
.tishonator-3 .tishonator-details{
    padding: 10px 20px 5px;
    text-align: center;
}
.tishonator-3 .tishonator-details .tishonator-client-details{
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
}
.tishonator-3 .tishonator-details .tshnt-tstm-testimonial-title{
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
}
.tishonator-3 .tishonator-details .tshnt-tstm-name{
    font-size: 16px;
    font-weight: normal;
    line-height: 18px;
    margin-top: 20px;
}
.tishonator-3 .tishonator-details .tshnt-tstm-designation{
    font-size: 14px;
    margin: 5px 0;
}
.tishonator-3 .tshnt-tstm-message{
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
}
.tishonator-3 .tshnt-tstm-message i{
    font-size: 30px;
    margin-right: 10px;
}
.tishonator-3 .tishonator-details .tshnt-tstm-rating{
    margin: 5px 0;
}
.tishonator-3 .tishonator-details .tshnt-tstm-rating i{
    font-size: 18px;
    margin: 0 2px;
}
.tishonator-3  .tshnt-tstm-message i,
.tishonator-3 .tishonator-details .tshnt-tstm-rating i{
    color: #ffffff;
}
.tishonator-3 .tishonator-col{
    margin-bottom: 30px;
}
@keyframes avtar-hover {
    0%  {opacity: 0;}
    70%  {opacity: 0.4;}
    100% {opacity: 0;}
}
@-webkit-keyframes avtar-hover {
     0%  {opacity: 0;}
    70%  {opacity: 0.4;}
    100% {opacity: 0;}
}
/****************************************************************
    Slider Style CSS
*****************************************************************/
.owl-nav {
   margin-top: 10px;
   text-align: center;
   -webkit-tap-highlight-color: transparent; 
}
.owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
.owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none; 
}
.owl-nav .disabled {
    opacity: 0.5;
    cursor: default; 
}
.owl-nav.disabled + .owl-dots {
  margin-top: 10px; 
}
 .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; 
}
.owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; 
}
.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px; 
}
.owl-dots .owl-dot.active span, 
.owl-dots .owl-dot:hover span {
    background: #869791; 
}
.tishonator-3.owl-carousel .tishonator-wrapper{
    width: 99%;
    margin: 0 auto;
}
/****************************************************************
    THEME COLORS CSS
*****************************************************************/
/*Random Theme color*/
.tishonator-3.tishonator-random-colors .tishonator-col:nth-child(3n+2) .tishonator-wrapper,
.tishonator-3.tishonator-random-colors .owl-item:nth-child(3n+2) .tishonator-wrapper,
.tishonator-3.tishonator-random-colors .tishonator-col:nth-child(3n+2)  .tshnt-tstm-dots span,
.tishonator-3.tishonator-random-colors .owl-item:nth-child(3n+2)  .tshnt-tstm-dots span{
    background: #ea3566;
}
.tishonator-3.tishonator-random-colors .tishonator-col:nth-child(4n+3) .tishonator-wrapper,
.tishonator-3.tishonator-random-colors .owl-item:nth-child(4n+3) .tishonator-wrapper,
.tishonator-3.tishonator-random-colors .tishonator-col:nth-child(4n+3)  .tshnt-tstm-dots span,
.tishonator-3.tishonator-random-colors .owl-item:nth-child(4n+3)  .tshnt-tstm-dots span{
    background: #e33939;
}
.tishonator-3.tishonator-random-colors .tishonator-col:nth-child(5n+4) .tishonator-wrapper,
.tishonator-3.tishonator-random-colors .owl-item:nth-child(5n+4) .tishonator-wrapper,
.tishonator-3.tishonator-random-colors .tishonator-col:nth-child(5n+4)  .tshnt-tstm-dots span,
.tishonator-3.tishonator-random-colors .owl-item:nth-child(5n+4)  .tshnt-tstm-dots span{
    background: #00aac4;
}
/*Default Theme color*/
.tishonator-3 .tishonator-wrapper,
.tishonator-3 .tshnt-tstm-dots span{        
    background: #ff0044;
}
/*Theme orange*/
.tishonator-3.tishonator-orange .tishonator-wrapper,
.tishonator-3.tishonator-orange .tshnt-tstm-dots span{
    background: #e33939;
}
/*Theme dark red*/
.tishonator-3.tishonator-darkred .tishonator-wrapper,
.tishonator-3.tishonator-darkred .tshnt-tstm-dots span{
    background: #c40000;
}
/*Theme pink*/
.tishonator-3.tishonator-pink  .tishonator-wrapper,
.tishonator-3.tishonator-pink .tshnt-tstm-dots span{
    background: #f90f90;
}
/*Theme blue*/
.tishonator-3.tishonator-blue .tishonator-wrapper,
.tishonator-3.tishonator-blue .tshnt-tstm-dots span{
    background: #00aac4;
}



/*t Parallax t*/
.parallax-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  text-align: center;
  padding:150px 0;
  background-color: rgba(0, 0, 0, 0.55);
}

#parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%; /* Larger height for parallax movement */
  z-index: -1; /* Ensures the background is behind the content */
}

.parallax-content {
  position: relative;
  z-index: 1; /* Ensures the content is above the background */
  padding: 100px;
  color: #fff; /* Adjust for contrast depending on your image */
}

.parallax-content h1,
.parallax-content h2,
.parallax-content h3,
.parallax-content h4,
.parallax-content h5,
.parallax-content h6 {
    color: #FFF;
}


/*!
    By André Rinas, www.andrerinas.de
    Documentation, www.simplelightbox.com
    Available for use under the MIT License
    Version 2.14.1
*/
body.hidden-scroll{overflow:hidden}.sl-overlay{position:fixed;left:0;right:0;top:0;bottom:0;background:#fff;display:none;z-index:1035}.sl-wrapper{z-index:1040;width:100%;height:100%;left:0;top:0;position:fixed}.sl-wrapper *{box-sizing:border-box}.sl-wrapper button{border:0 none;background:rgba(0,0,0,0);font-size:28px;padding:0;cursor:pointer}.sl-wrapper button:hover{opacity:.7}.sl-wrapper .sl-close{display:none;position:fixed;right:30px;top:30px;z-index:10060;margin-top:-14px;margin-right:-14px;height:44px;width:44px;line-height:44px;font-family:Arial,Baskerville,monospace;color:#000;font-size:3rem}.sl-wrapper .sl-counter{display:none;position:fixed;top:30px;left:30px;z-index:10060;color:#000;font-size:1rem}.sl-wrapper .sl-download{display:none;position:fixed;bottom:5px;width:100%;text-align:center;z-index:10060;color:#fff;font-size:1rem}.sl-wrapper .sl-download a{color:#fff}.sl-wrapper .sl-navigation{width:100%;display:none}.sl-wrapper .sl-navigation button{position:fixed;top:50%;margin-top:-22px;height:44px;width:22px;line-height:44px;text-align:center;display:block;z-index:10060;font-family:Arial,Baskerville,monospace;color:#000}.sl-wrapper .sl-navigation button.sl-next{right:5px;font-size:2rem}.sl-wrapper .sl-navigation button.sl-prev{left:5px;font-size:2rem}@media(min-width: 35.5em){.sl-wrapper .sl-navigation button{width:44px}.sl-wrapper .sl-navigation button.sl-next{right:10px;font-size:3rem}.sl-wrapper .sl-navigation button.sl-prev{left:10px;font-size:3rem}}@media(min-width: 50em){.sl-wrapper .sl-navigation button{width:44px}.sl-wrapper .sl-navigation button.sl-next{right:20px;font-size:3rem}.sl-wrapper .sl-navigation button.sl-prev{left:20px;font-size:3rem}}.sl-wrapper.sl-dir-rtl .sl-navigation{direction:ltr}.sl-wrapper .sl-image{position:fixed;-ms-touch-action:none;touch-action:none;z-index:10000}.sl-wrapper .sl-image img{margin:0;padding:0;display:block;border:0 none;width:100%;height:auto}@media(min-width: 35.5em){.sl-wrapper .sl-image img{border:0 none}}@media(min-width: 50em){.sl-wrapper .sl-image img{border:0 none}}.sl-wrapper .sl-image iframe{background:#000;border:0 none}@media(min-width: 35.5em){.sl-wrapper .sl-image iframe{border:0 none}}@media(min-width: 50em){.sl-wrapper .sl-image iframe{border:0 none}}.sl-wrapper .sl-image .sl-caption{display:none;padding:10px;color:#fff;background:rgba(0,0,0,.8);font-size:1rem;position:absolute;bottom:0;left:0;right:0}.sl-wrapper .sl-image .sl-caption.pos-top{bottom:auto;top:0}.sl-wrapper .sl-image .sl-caption.pos-outside{bottom:auto}.sl-spinner{display:none;border:5px solid #333;border-radius:40px;height:40px;left:50%;margin:-20px 0 0 -20px;opacity:0;position:fixed;top:50%;width:40px;z-index:1007;-webkit-animation:pulsate 1s ease-out infinite;-moz-animation:pulsate 1s ease-out infinite;-ms-animation:pulsate 1s ease-out infinite;-o-animation:pulsate 1s ease-out infinite;animation:pulsate 1s ease-out infinite}.sl-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.sl-transition{transition:-moz-transform ease 200ms;transition:-ms-transform ease 200ms;transition:-o-transform ease 200ms;transition:-webkit-transform ease 200ms;transition:transform ease 200ms}@-webkit-keyframes pulsate{0%{transform:scale(0.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}@keyframes pulsate{0%{transform:scale(0.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}@-moz-keyframes pulsate{0%{transform:scale(0.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}@-o-keyframes pulsate{0%{transform:scale(0.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}@-ms-keyframes pulsate{0%{transform:scale(0.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}



/*t Team Members */
.style-1 {
  padding: 120px 0 90px;
  background: #d0d0d0;
}

.style-1 .our-team .team-member {
  position: relative;
  margin-bottom: 30px;
}
.style-1 .our-team .team-member .member-pic img {
  width: 100%;
}

.style-1 .our-team .team-member .member-data {
  position: absolute;
  width: 100%;
  background: #fff;
  bottom: 0;
  text-align: center;
  border-top: 6px groove #ff3939;
  overflow: hidden;
}

.style-1 .our-team .team-member .member-data .name {
  padding: 10px 0;
  font-family: 'Raleway', sans-serif;
}
.style-1 .our-team .team-member .member-data .name h4 {
  font-size: 21px;
  font-weight: 600;
  color: #555;
  padding-top: 5px;
}
.style-1 .our-team .team-member .member-data .name h6 {
  color: #777777;
  font-size: 14px;
}
.style-1 .our-team .team-member .member-data .social {
  width: 100%;
  transition: 1s;
  padding: 10px 0;
  border-top: 1px solid #add8e6;
  -webkit-transition: all .6s ease;
     -moz-transition: all .6s ease;
      -ms-transition: all .6s ease;
       -o-transition: all .6s ease;
          transition: all .6s ease;
  margin-bottom: -45px;
  text-align: center;
}
.style-1 .our-team .team-member .member-data .social a {
  text-decoration: none;
  margin-right: 10px;
  color: #ff3939;
}
.style-1 .our-team .team-member .member-data .social a:hover {
  color: #e33939;
}
.style-1 .our-team .team-member .member-data .social a:last-child {
  margin-right: 0;
}

/* hover effect */
.style-1 .our-team .team-member:hover {
  box-shadow: 0px 6px 12px -8px #000;
}
.style-1 .our-team .team-member:hover .member-data .social {
  margin-bottom: 0;
}



.style-2 {
  padding: 120px 0 90px;
  background: #d6d6d6;
}

.style-2 .team-member {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.style-2 .team-member .member-pic {}
.style-2 .team-member .member-pic img {
  width: 100%;
}

.style-2 .team-member .member-data {
  position: absolute;
  width: 100%;
  background: #fff;
  bottom: 0;
  text-align: center;
  border-top: 6px groove #ff3939;
  z-index: 1;
}
.style-2 .team-member .member-data:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  transform: skewY(-15deg);
  z-index: -1;
}

.style-2 .team-member .member-data .name {
  padding: 10px 0;
  font-family: 'Raleway', sans-serif;
}
.style-2 .team-member .member-data .name h4 {
  font-size: 21px;
  font-weight: 600;
  color: #555;
  padding-top: 5px;
  background: #fff;
}
.style-2 .team-member .member-data .name h6 {
  color: #777777;
  font-size: 14px;
}
.style-2 .team-member .member-data .social {
  width: 100%;
  transition: 1s;
  padding: 10px 0;
  border-top: 1px solid #add8e6;
  -webkit-transition: all .6s ease;
     -moz-transition: all .6s ease;
      -ms-transition: all .6s ease;
       -o-transition: all .6s ease;
          transition: all .6s ease;
  margin-bottom: -45px;
  text-align: center;
}
.style-2 .team-member .member-data .social a {
  text-decoration: none;
  margin-right: 10px;
  color: #ff3939;
}
.style-2 .team-member .member-data .social a:hover {
  color: #e33939;
}
.style-2 .team-member .member-data .social a:last-child {
  margin-right: 0;
}

/* hover effect */
.style-2 .team-member:hover {
  box-shadow: 0px 6px 12px -8px #000;
}
.style-2 .team-member:hover .member-data .social {
  margin-bottom: 0;
  text-align: center;
}


.style-3 {
  padding: 120px 0 90px;
  background: #d6d6d6;
}

.style-3 .team-member {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.style-3 .team-member .member-pic {
}
.style-3 .team-member .member-pic img {
  width: 100%;
}

.style-3 .team-member .member-data {
  position: absolute;
  width: 100%;
  background: #fff;
  bottom: 0;
  text-align: center;
  border-top: 6px groove #ff3939;
  z-index: 1;
}
.style-3 .team-member .member-data:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  transform: skewY(-15deg);
  z-index: -1;
}

.style-3 .team-member .member-data .name {
  padding: 10px 0;
  font-family: 'Raleway', sans-serif;
}
.style-3 .team-member .member-data .name h4 {
  font-size: 21px;
  font-weight: 600;
  color: #555;
  padding-top: 5px;
  background: #fff;
}
.style-3 .team-member .member-data .name h6 {
  color: #777777;
  font-size: 14px;
}
.style-3 .team-member .member-data .social {
  width: 100%;
  transition: 1s;
  border-top: 1px solid #add8e6;
  -webkit-transition: all .6s ease;
     -moz-transition: all .6s ease;
      -ms-transition: all .6s ease;
       -o-transition: all .6s ease;
          transition: all .6s ease;
  margin-bottom: -45px;
  background: #ff3939;
  padding: 10px 0;
  text-align: center;
}
.style-3 .team-member .member-data .social a {
    text-decoration: none;
    color: #fff;
    padding: 0 6px;
    display: inline-block;
}
.style-3 .team-member .member-data .social a:hover {
  color: #e0e0e0;
}

/* hover effect */
.style-3 .team-member:hover {
  box-shadow: 0px 6px 12px -8px #000;
}
.style-3 .team-member:hover .member-data .social {
  margin-bottom: 0;
}


.style-4 {
  padding: 120px 0 90px;
  background: #d6d6d6;
}

.style-4 .team-member {
  position: relative;
  margin-bottom: 30px;
}
.style-4 .team-member:after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #ff3939;
  z-index: 3;
  opacity: 0;
  -webkit-transition: .6s;
     -moz-transition: .6s;
      -ms-transition: .6s;
       -o-transition: .6s;
          transition: .6s;
}

.style-4 .team-member .member-pic {
}
.style-4 .team-member .member-pic img {
  width: 100%;
}

.style-4 .team-member .member-data {
  position: absolute;
  width: 100%;
  background: #fff;
  bottom: 0;
  text-align: center;
  border-top: 6px groove #ff3939;
  overflow: hidden;
  transition: 0.6s;
  z-index: 6;
}

.style-4 .team-member .member-data .name {
  padding: 10px 0;
  font-family: 'Raleway', sans-serif;
}
.style-4 .team-member .member-data .name h4 {
  font-size: 21px;
  font-weight: 600;
  color: #555;
  padding-top: 5px;
}
.style-4 .team-member .member-data .name h6 {
  color: #777777;
  font-size: 14px;
}
.style-4 .team-member .member-data .social {
  width: 100%;
  transition: 1s;
  padding: 10px 0;
  border-top: 1px solid #add8e6;
  -webkit-transition: .6s;
     -moz-transition: .6s;
      -ms-transition: .6s;
       -o-transition: .6s;
          transition: .6s;
  margin-bottom: -45px;
}
.style-4 .team-member .member-data .social a {
  text-decoration: none;
  margin-right: 10px;
  color: #ff3939;
}
.style-4 .team-member .member-data .social a:hover {
  color: #e33939;
}
.style-4 .team-member .member-data .social a:last-child {
  margin-right: 0;
}


/* hover effect */
.style-4 .team-member:hover {
  box-shadow: 0px 6px 12px -8px #000;
}
.style-4 .team-member:hover:after {
  opacity: .9;
}
.style-4 .team-member:hover .member-data {
  bottom: 50%;
  margin-bottom: -25%;
  border-top: 0;
}
.style-4 .team-member:hover .member-data .social {
  margin-bottom: 0;
}



.style-5 {
  padding: 120px 0 90px;
  background: #d6d6d6;
}

.style-5 .team-member {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.style-5 .team-member:after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #ff3939;
  z-index: 3;
  opacity: 0;
  -webkit-transition: .6s;
     -moz-transition: .6s;
      -ms-transition: .6s;
       -o-transition: .6s;
          transition: .6s;
}

.style-5 .team-member .member-data {
  position: absolute;
  width: 100%;
  background: #fff;
  bottom: 0;
  text-align: center;
  border-top: 6px groove #ff3939;
  overflow: hidden;
  transition: 0.6s;
  z-index: 6;
}

.style-5 .team-member .member-data .name {
  padding: 10px 0;
  font-family: 'Raleway', sans-serif;
}
.style-5 .team-member .member-data .name h4 {
  font-size: 21px;
  font-weight: 600;
  color: #555;
  padding-top: 5px;
}
.style-5 .team-member .member-data .name h6 {
  color: #777777;
  font-size: 14px;
}

.style-5 .team-member .social {
  width: 100%;
  transition: 1s;
  padding: 10px 0;
  border-top: 1px solid #add8e6;
  -webkit-transition: .6s;
     -moz-transition: .6s;
      -ms-transition: .6s;
       -o-transition: .6s;
          transition: .6s;
  text-align: center;
  position: absolute;
  top: -45px;
  background: #fff;
  z-index: 9;
}
.style-5 .team-member .social a {
    text-decoration: none;
    margin-right: 8px;
    color: #ff3939;
    border: 1px solid;
    padding: 4px 6px;
    border-radius: 50%;
}
.style-5 .team-member .social a:hover {
  color: #e33939;
}
.style-5 .team-member .social a:last-child {
  margin-right: 0;
}


/* hover effect */
.style-5 .team-member:hover {
  box-shadow: 0px 6px 12px -8px #000;
}
.style-5 .team-member:hover:after {
  opacity: .9;
}
.style-5 .team-member:hover .member-data {
  bottom: 10%;
  border-top: 0;
}
.style-5 .team-member:hover .social {
  top: 10%;
}

.style-5 .team-member .member-pic {
}
.style-5 .team-member .member-pic img {
  width: 100%;
}



.style-6 {
  padding: 120px 0 90px;
  background: #d6d6d6;
}

.style-6 .team-member {
  position: relative;
  margin-bottom: 30px;
}
.style-6 .team-member .member-pic img {
  width: 100%;
}

.style-6 .team-member .member-data {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  overflow: hidden;
}

.style-6 .team-member .member-data .name {
  font-family: 'Raleway', sans-serif;
}
.style-6 .team-member .member-data .name h4 {
  font-size: 21px;
  font-weight: 600;
  color: #555;
  padding-top: 10px;
  background: #fff;
  padding-bottom: 15px;
  margin: 0;
  border-top: 2px groove #ff3939;
}
.style-6 .team-member .member-data .name h6 {
    color: #fff;
    font-size: 14px;
    position: relative;
    margin: 0;
    padding: 6px;
    z-index: 1;
}
.style-6 .team-member .member-data .name h6:after {
    position: absolute;
    content: '';
    left: 52%;
    top: 0;
    height: 100%;
    width: 60%;
    background: #ff3939;
    margin-left: -30%;
    z-index: -1;
    transform: skewX(15deg);
    border-radius: 0 5px;
}
.style-6 .team-member .member-data .name h6:before {
    position: absolute;
    content: '';
    right: 52%;
    top: 0;
    height: 100%;
    width: 60%;
    background: #ff3939;
    margin-right: -30%;
    z-index: -1;
    transform: skewX(-15deg);
    border-radius: 5px 0;
}
.style-6 .team-member .member-data .social {
  background: #ff3939;
  width: 100%;
  transition: 1s;
  padding: 10px 0;
  border-top: 1px solid #add8e6;
  -webkit-transition: all .6s ease;
     -moz-transition: all .6s ease;
      -ms-transition: all .6s ease;
       -o-transition: all .6s ease;
          transition: all .6s ease;
  margin-bottom: -45px;
  text-align: center;
}
.style-6 .team-member .member-data .social a {
  text-decoration: none;
  margin-right: 10px;
  color: #fff;
}
.style-6 .team-member .member-data .social a:hover {
  color: #e0e0e0;
}
.style-6 .team-member .member-data .social a:last-child {
  margin-right: 0;
}


/* hover effect */
.style-6 .team-member:hover {
  box-shadow: 0px 6px 12px -8px #000;
}
.style-6 .team-member:hover .member-data .social {
  margin-bottom: 0;
}



.style-7 {
  padding: 120px 0 90px;
  background: #d6d6d6;
}

.style-7 .team-member {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.style-7 .team-member .member-pic img {
  width: 100%;
}

.style-7 .team-member .member-data {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  overflow: hidden;
}

.style-7 .team-member .member-data .name {
  font-family: 'Raleway', sans-serif;
}
.style-7 .team-member .member-data .name h4 {
  font-size: 21px;
  font-weight: 600;
  color: #555;
  padding-top: 10px;
  background: #fff;
  padding-bottom: 15px;
  margin: 0;
  border-top: 2px groove #ff3939;
}
.style-7 .team-member .member-data .name h6 {
    color: #fff;
    font-size: 14px;
    position: relative;
    margin: 0;
    padding: 6px;
    z-index: 1;
}
.style-7 .team-member .member-data .name h6:after {
    position: absolute;
    content: '';
    left: 52%;
    top: 0;
    height: 100%;
    width: 60%;
    background: #ff3939;
    margin-left: -30%;
    z-index: -1;
    transform: skewX(15deg);
    border-radius: 0 5px;
}
.style-7 .team-member .member-data .name h6:before {
    position: absolute;
    content: '';
    right: 52%;
    top: 0;
    height: 100%;
    width: 60%;
    background: #ff3939;
    margin-right: -30%;
    z-index: -1;
    transform: skewX(-15deg);
    border-radius: 5px 0;
}
.style-7 .team-member .social {
  width: 100%;
  transition: 1s;
  padding: 10px 0;
  border-top: 1px solid #add8e6;
  -webkit-transition: all .6s ease;
     -moz-transition: all .6s ease;
      -ms-transition: all .6s ease;
       -o-transition: all .6s ease;
          transition: all .6s ease;
  position: absolute;
  top: 0;
  text-align: right;
  right: -36px;
}
.style-7 .team-member .social ul {
    margin: 0;
    list-style: none;
    padding: 4px;
    display: inline-block;
    background: #fff;
    border-radius: 5px 0 0 5px;
}
.style-7 .team-member .social ul li {
  padding: 4px 6px;
}
.style-7 .team-member .social ul li a {
  text-decoration: none;
  color: #ff3939;
}
.style-7 .team-member .social ul li a:hover {
  color: #e33939;
}


/* hover effect */
.style-7 .team-member:hover {
  box-shadow: 0px 6px 12px -8px #000;
}
.style-7 .team-member:hover .social {
  right: 0;
}


.style-8 {
  padding: 120px 0 90px;
  background: #d6d6d6;
}

.style-8 .team-member {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.style-8 .team-member .member-pic img {
  width: 100%;
  -webkit-transition: .6s;
     -moz-transition: .6s;
      -ms-transition: .6s;
       -o-transition: .6s;
          transition: .6s;
}

.style-8 .team-member .member-data {
  position: absolute;
  width: 100%;
  background: #fff;
  bottom: 0;
  text-align: center;
  border-top: 6px groove #ff3939;
  overflow: hidden;
  transition: 0.6s;
  z-index: 6;
}

.style-8 .team-member .member-data .name {
  padding: 10px 0;
  font-family: 'Raleway', sans-serif;
}
.style-8 .team-member .member-data .name h4 {
  font-size: 21px;
  font-weight: 600;
  color: #555;
  padding-top: 5px;
}
.style-8 .team-member .member-data .name h6 {
  color: #777777;
  font-size: 14px;
}

.style-8 .team-member .social {
  width: 100%;
  transition: 1s;
  padding: 10px 0;
  -webkit-transition: .6s;
     -moz-transition: .6s;
      -ms-transition: .6s;
       -o-transition: .6s;
          transition: .6s;
  text-align: center;
  position: absolute;
  top: 32%;
  z-index: 9;
}
.style-8 .team-member .social a {
    text-decoration: none;
    margin-right: 8px;
    color: #fff;
    border: 2px solid;
    padding: 4px 6px;
    border-radius: 50%;
    opacity: 0;
    background: #ff3939;
}
.style-8 .team-member .social a:hover {
  color: #ff3939;
  background: transparent;
}
.style-8 .team-member .social a:nth-child(1) {
  -webkit-transition: .2s;
     -moz-transition: .2s;
      -ms-transition: .2s;
       -o-transition: .2s;
          transition: .2s;
}
.style-8 .team-member .social a:nth-child(2) {
  -webkit-transition: .6s;
     -moz-transition: .6s;
      -ms-transition: .6s;
       -o-transition: .6s;
          transition: .6s;
}
.style-8 .team-member .social a:nth-child(3) {
  -webkit-transition: 1s;
     -moz-transition: 1s;
      -ms-transition: 1s;
       -o-transition: 1s;
          transition: 1s;
}
.style-8 .team-member .social a:nth-child(4) {
  margin-right: 0;
  -webkit-transition: 2s;
     -moz-transition: 2s;
      -ms-transition: 2s;
       -o-transition: 2s;
          transition: 2s;
}

/* hover effect */
.style-8 .team-member:hover {
  box-shadow: 0px 6px 12px -8px #000;
}
.style-8 .team-member:hover:after {
  opacity: .9;
}
.style-8 .team-member:hover .member-pic img {
  width: 100%;
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
          filter: blur(3px);
}
.style-8 .team-member:hover .social a {
  opacity: 1;
}



.style-9 {
  padding: 120px 0 90px;
  background: #d6d6d6;
}

.style-9 .team-member {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.style-9 .team-member .member-pic img {
  width: 100%;
  -webkit-transition: .6s;
     -moz-transition: .6s;
      -ms-transition: .6s;
       -o-transition: .6s;
          transition: .6s;
}

.style-9 .team-member .hover-effect {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    color: #fff;
    background: #ff3939d6;
    opacity: 0;
    -webkit-transition: .8s;
       -moz-transition: .8s;
        -ms-transition: .8s;
         -o-transition: .8s;
            transition: .8s;
}
.style-9 .team-member .hover-effect .member-quot p {
  padding: 6px 12px 12px;
  margin: 0;
  font-family: 'PT Sans', sans-serif;
}
.style-9 .team-member .hover-effect .member-quot h6 {
  padding: 0 12px;
  color: #e0e0e0;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
}

.style-9 .team-member .hover-effect .social {
  width: 100%;
  transition: 1s;
  padding: 15px 0;
  -webkit-transition: .6s;
     -moz-transition: .6s;
      -ms-transition: .6s;
       -o-transition: .6s;
          transition: .6s;
  text-align: center;
  bottom: 12px;
  background: #fff;
}
.style-9 .team-member .hover-effect .social a {
    text-decoration: none;
    margin-right: 8px;
    color: #ff3939;
    border: 2px solid;
    padding: 4px 6px;
    border-radius: 50%;
  }
.style-9 .team-member .hover-effect .social a:hover {
  color: #e33939;
  background: transparent;
}
.style-9 .team-member .hover-effect .social a:last-child {
  margin-right: 0;
}

.style-9 .team-member .member-data {
  position: absolute;
  width: 100%;
  background: #fff;
  text-align: center;
  border-top: 6px groove #ff3939;
  overflow: hidden;
  transition: 0.6s;
  z-index: 6;
  -webkit-transition: .6s;
     -moz-transition: .6s;
      -ms-transition: .6s;
       -o-transition: .6s;
          transition: .6s;
  bottom: 0;
}

.style-9 .team-member .member-data .name {
  padding: 10px 0;
  font-family: 'Raleway', sans-serif;
}
.style-9 .team-member .member-data .name h4 {
  font-size: 21px;
  font-weight: 600;
  color: #555;
  padding-top: 5px;
  font-family: 'Raleway', sans-serif;
}
.style-9 .team-member .member-data .name h6 {
  color: #777777;
  font-size: 14px;
}

/* hover effect */
.style-9 .team-member:hover {
  box-shadow: 0px 6px 12px -8px #000;
}
.style-9 .team-member:hover:after {
  opacity: .9;
}
.style-9 .team-member:hover .member-pic img {
  width: 100%;
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);15
}

.style-9 .team-member:hover .hover-effect {
  opacity: 1;
}
.style-9 .team-member:hover .hover-effect .social {
  opacity: 1;
} 
.style-9 .team-member:hover .member-data {
  bottom: -30%;
}


.style-10 {
  padding: 120px 0 90px;
  background: #d6d6d6;
}

.style-10 .team-member {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.style-10 .team-member .member-pic img {
  width: 100%;
  -webkit-transition: .6s;
     -moz-transition: .6s;
      -ms-transition: .6s;
       -o-transition: .6s;
          transition: .6s;
}

.style-10 .team-member .hover-effect {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    color: #555;
    background: #ffffffd6;
    opacity: 0;
    -webkit-transition: .8s;
       -moz-transition: .8s;
        -ms-transition: .8s;
         -o-transition: .8s;
            transition: .8s;
}
.style-10 .team-member .hover-effect .member-quot p {
  padding: 6px 12px 12px;
  margin: 0;
  font-family: 'PT Sans', sans-serif;
}
.style-10 .team-member .hover-effect .member-quot h6 {
  padding: 0 12px;
  color: #555;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
}

.style-10 .team-member .hover-effect .social {
  width: 100%;
  transition: 1s;
  padding: 15px 0;
  -webkit-transition: .6s;
     -moz-transition: .6s;
      -ms-transition: .6s;
       -o-transition: .6s;
          transition: .6s;
  text-align: center;
  bottom: 12px;
  background: #fff;
}
.style-10 .team-member .hover-effect .social a {
    text-decoration: none;
    margin-right: 8px;
    color: #ff3939;
    border: 2px solid;
    padding: 4px 6px;
    border-radius: 50%;
  }
.style-10 .team-member .hover-effect .social a:hover {
  color: #e33939;
  background: transparent;
}
.style-10 .team-member .hover-effect .social a:last-child {
  margin-right: 0;
}

.style-10 .team-member .member-data {
  position: absolute;
  width: 100%;
  background: #fff;
  text-align: center;
  border-top: 6px groove #ff3939;
  overflow: hidden;
  transition: 0.6s;
  z-index: 6;
  -webkit-transition: .6s;
     -moz-transition: .6s;
      -ms-transition: .6s;
       -o-transition: .6s;
          transition: .6s;
  bottom: 0;
}

.style-10 .team-member .member-data .name {
  padding: 10px 0;
  font-family: 'Raleway', sans-serif;
}
.style-10 .team-member .member-data .name h4 {
  font-size: 21px;
  font-weight: 600;
  color: #555;
  padding-top: 5px;
  font-family: 'Raleway', sans-serif;
}
.style-10 .team-member .member-data .name h6 {
  color: #777777;
  font-size: 14px;
}

/* hover effect */
.style-10 .team-member:hover {
  box-shadow: 0px 6px 12px -8px #000;
}
.style-10 .team-member:hover:after {
  opacity: .9;
}
.style-10 .team-member:hover .member-pic img {
  width: 100%;
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);15
}

.style-10 .team-member:hover .hover-effect {
  opacity: 1;
}
.style-10 .team-member:hover .hover-effect .social {
  opacity: 1;
} 
.style-10 .team-member:hover .member-data {
  bottom: -30%;
}



/*========================
    Common Styles
==========================*/
[class*="image-effect"] .caption h3 {font-size: 17px;text-transform: uppercase;}
[class*="image-effect"] .caption p {font-size: 13px;line-height: normal;text-transform: uppercase;margin: 0;}
[class*="image-effect"] img {max-width: 100%;vertical-align: middle;border: 0;}
.link-wrap div {display: inline-block;}
.link-wrap .uk-icon-link, .link-wrap .uk-icon-link:focus, .link-wrap .uk-icon-link:hover {color: inherit;}

/*========================
    Image Effect #1
==========================*/
.tc-image-effect1 {position: relative;overflow: hidden;}
.tc-image-effect1 img {-webkit-transform: scale(1.5) translateY(0);transform: scale(1.5) translateY(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-effect1:hover img {-webkit-transform: scale(1.5) translateY(-12px);transform: scale(1.5) translateY(-12px);}
.tc-image-effect1 .caption {position: absolute;bottom: calc(50% - 30px);left: 50%;transform: translateX(-50%) translateY(50%);z-index: 10;text-align: center;width: 100%;}
.tc-image-effect1:after {left: 0;position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.6);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 0;}
.tc-image-effect1:hover:after {opacity: 1;}
.tc-image-effect1 .caption h3 {color: #fff;margin-bottom: 8px;-webkit-transform: translateY(20px);transform: translateY(20px);-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;opacity: 0;}
.tc-image-effect1 .caption p {-webkit-transform: translateY(50px);transform: translateY(50px);color: rgba(255,255,255,0.7);opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect1:hover .caption h3, 
.tc-image-effect1:hover .caption p {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect1 .link-wrap {position: absolute;top: calc(50% - 30px);right: 50%;transform: translateX(50%) translateY(-50%);z-index: 10;}
.tc-image-effect1 .link-wrap a {display: inline-block;height: 40px;width: 40px;line-height: 40px;background-color: rgba(255,255,255,0.2);text-align: center;color: #fff;font-size: 14px;opacity: 0;border-radius: 50%;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect1 .link-wrap a:first-child {-webkit-transform: translateY(-30px);transform: translateY(-30px);margin-right: 5px;}
.tc-image-effect1 .link-wrap a:last-child {-webkit-transform: translateY(-60px);transform: translateY(-60px);}
.tc-image-effect1:hover .link-wrap a {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect1 .link-wrap a:hover {background-color: rgba(255,255,255,0.4);}

/*========================
    Image Effect #2
==========================*/
.tc-image-effect2 {position: relative;overflow: hidden;}
.tc-image-effect2:after {position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.8);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 0;}
.tc-image-effect2:hover:after {opacity: 1;}
.tc-image-effect2 .caption h3 {color: #fff;-webkit-transform: translateY(-20px);transform: translateY(-20px);-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;opacity: 0;top: 20px;position: absolute;left: 0;z-index: 10;text-align: center;margin: 0;padding: 0 25px;width: 100%;}
.tc-image-effect2 .caption p {-webkit-transform: translateY(50px);transform: translateY(50px);color: rgba(255,255,255,0.7);opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;position: absolute;right: 0;width: 100%;bottom: 20px;z-index: 1;padding-bottom: 5px;line-height: 20px;text-align: center;padding: 0 25px;}
.tc-image-effect2:hover .caption h3, 
.tc-image-effect2:hover .caption p {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect2 .link-wrap {position: absolute;top: 50%;right: 50%;transform: translateX(50%) translateY(-50%);z-index: 10;}
.tc-image-effect2 .link-wrap a {display: inline-block;height: 36px;width: 36px;line-height: 36px;background-color: rgba(255, 255, 255, 0.7);text-align: center;color: #444;font-size: 13px;border-radius: 4px;opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect2 .link-wrap a:first-child {-webkit-transform: translateX(-20px);transform: translateX(-20px);margin-right: 7px;}
.tc-image-effect2 .link-wrap a:last-child {-webkit-transform: translateX(20px);transform: translateX(20px);}
.tc-image-effect2:hover .link-wrap a {opacity: 1;-webkit-transform: translateX(0px);transform: translateX(0px);}
.tc-image-effect2 .link-wrap a:hover {background-color: #fff;}

/*========================
    Image Effect #3
==========================*/
.tc-image-effect3 {position: relative;overflow: hidden;}
.tc-image-effect3:before {position: absolute;content: "";right: 20px;bottom: 20px;border: 2px solid rgba(255, 255, 255, 0.64);-webkit-box-shadow: 0 0 0 30px rgba(255,255,255,.4);box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.4);opacity: 0;top: 20px;left: 20px;z-index: 1;transition: all .4s ease;}
.tc-image-effect3:hover:before {opacity: 1;}
.tc-image-effect3 img {-webkit-transform: scale(1.5) translateY(0);transform: scale(1.5) translateY(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-effect3:hover img {-webkit-transform: scale(1.5) translateY(-12px);transform: scale(1.5) translateY(-12px);}
.tc-image-effect3 .caption {position: absolute;bottom: calc(50% - 30px);left: 50%;transform: translateX(-50%) translateY(50%);z-index: 10;text-align: center;width: 100%;}
.tc-image-effect3:after {position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.6);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 0;left: 0;}
.tc-image-effect3:hover:after {opacity: 1;}
.tc-image-effect3 .caption h3 {color: #fff;margin-bottom: 10px;-webkit-transform: translateY(20px);transform: translateY(20px);-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;opacity: 0;}
.tc-image-effect3 .caption p {-webkit-transform: translateY(50px);transform: translateY(50px);color: rgba(255,255,255,0.7);opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect3:hover .caption h3, 
.tc-image-effect3:hover .caption p {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect3 .link-wrap {position: absolute;top: calc(50% - 30px);right: 50%;transform: translateX(50%) translateY(-50%);z-index: 10;}
.tc-image-effect3 .link-wrap a {display: inline-block;height: 36px;width: 36px;line-height: 34px;background-color: rgba(255,255,255,0.2);border: 2px solid rgba(255, 255, 255, 0.3);text-align: center;color: #fff;font-size: 14px;opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect3 .link-wrap a:first-child {-webkit-transform: translateY(-30px);transform: translateY(-30px);margin-right: 5px;}
.tc-image-effect3 .link-wrap a:last-child {-webkit-transform: translateY(-60px);transform: translateY(-60px);}
.tc-image-effect3:hover .link-wrap a {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect3 .link-wrap a:hover {background-color: rgba(255,255,255,0.4);}

/*========================
    Image Effect #4
==========================*/
.tc-image-effect4 {position: relative;overflow: hidden;}
.tc-image-effect4 img {-webkit-transform: scale(1.5) translateY(0);transform: scale(1.5) translateY(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-effect4:hover img {-webkit-transform: scale(1.5) translateY(-12px);transform: scale(1.5) translateY(-12px);}
.tc-image-effect4 .caption {position: absolute;bottom: 25%;left: 50%;transform: translateX(-50%);z-index: 10;text-align: center;width: 100%;}
.tc-image-effect4:after {position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.6);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 0;left: 0;}
.tc-image-effect4:hover:after {opacity: 1;}
.tc-image-effect4 .caption p {color: rgba(255,255,255,0.7);opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect4:hover .caption h3, 
.tc-image-effect4:hover .caption p {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect4 .link-wrap {position: absolute;top: 40%;right: 50%;transform: translateX(50%) translateY(-40%);z-index: 10;}
.tc-image-effect4 .link-wrap a {display: inline-block;height: 40px;width: 40px;line-height: 40px;background-color: rgba(0, 0, 0, 0.5);border-radius: 4px;text-align: center;color: #fff;font-size: 14px;opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect4 .link-wrap a:first-child {margin-right: 6px;-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);}
.tc-image-effect4 .link-wrap a:last-child {-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transition-duration: .7s;}
.tc-image-effect4:hover .link-wrap a {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect4 .link-wrap a:hover {background-color: rgb(0, 0, 0);}
.tc-image-effect4 .caption p, 
.tc-image-effect4:hover .caption h3 {-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);}
.tc-image-effect4 .caption h3 {color: #fff;transition: all .5s ease-in-out;position: absolute;top: 50%;left: 0;right: 0;z-index: 1;-webkit-transform: translate(0,-50%);transform: translate(0,-50%);display: inline-block;padding: 12px;background-color: rgba(0, 0, 0, 0.5);-webkit-transform-style: flat;transform-style: flat;}

/*========================
    Image Effect #5
==========================*/
.tc-image-effect5 {position: relative;overflow: hidden;}
.tc-image-effect5:after {position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.6);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 0;}
.tc-image-effect5:hover:after {opacity: 1;}
.tc-image-effect5 .caption h3 {color: #444;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;position: absolute;top: 20px;left: 50%;transform: translateX(-50%) scale(0);z-index: 1;width: calc(100% - 50px);text-align: center;background: #fff;padding: 6px;border-radius: 4px;margin: 0;}
.tc-image-effect5 .caption p {font-size: 12px;color: #555;opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;position: absolute;left: 50%;bottom: 20px;z-index: 1;transform: translateX(-50%) scale(0);width: calc(100% - 50px);text-align: center;background: #fff;padding: 6px;border-radius: 4px;margin: 0;}
.tc-image-effect5 .link-wrap {position: absolute;top: 47%;right: 50%;transform: translateX(50%) translateY(-47%);z-index: 10;}
.tc-image-effect5 .link-wrap a {display: inline-block;height: 36px;width: 36px;line-height: 36px;background-color: #fff;border-radius: 4px;text-align: center;color: #666;font-size: 14px;opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect5 .link-wrap a:first-child {-webkit-transform: scale(0);transform: scale(0);margin-right: 10px;}
.tc-image-effect5 .link-wrap a:last-child {-webkit-transform: scale(0);transform: scale(0);}
.tc-image-effect5:hover .link-wrap a {opacity: 1;-webkit-transform: scale(1);transform: scale(1);}
.tc-image-effect5 .link-wrap a:hover {background-color: rgba(255,255,255,0.8);}
.tc-image-effect5 img {-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-effect5:hover img {-webkit-transform: scale(1.5);transform: scale(1.5);}
.tc-image-effect5:hover .caption h3{opacity: 1;transform: translateX(-50%) scale(1);}
.tc-image-effect5:hover .caption p {opacity: 1;-webkit-transform: translateX(-50%) scale(1);transform: translateX(-50%) scale(1);}

/*========================
    Image Effect #6
==========================*/
.tc-image-effect6 {position: relative;overflow: hidden;}
.tc-image-effect6 img {-webkit-transform: scale(1.5) translateX(0);transform: scale(1.5) translateX(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-effect6:hover img {-webkit-transform: scale(1.5) translateX(20px);transform: scale(1.5) translateX(20px);}
.tc-image-effect6:after {position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.4);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 0;}
.tc-image-effect6:hover:after {opacity: 1;}
.tc-image-effect6 .caption h3 {color: #fff;margin-bottom: 0px;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;position: absolute;bottom: 25px;z-index: 10;right: 50%;background: rgba(2, 2, 2, 0.7);padding: 10px;width: calc(100% - 50px);text-align: center;margin-top: 0;transform: translateX(50%);}
.tc-image-effect6 .caption p {-webkit-transform: translateX(-50px);transform: translateX(-50px);color: rgba(255,255,255,0.7);opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;position: absolute;top: 25px;z-index: 1;left: 25px;display: block;width: 55%;text-align: right;padding-right: 15px;border-right: 2px solid rgba(255, 255, 255, 0.37);}
.tc-image-effect6:hover .caption p {opacity: 1;-webkit-transform: translateX(0px);transform: translateX(0px);}
.tc-image-effect6 .link-wrap {position: absolute;top: 25px;right: 25px;z-index: 10;}
.tc-image-effect6 .link-wrap a {display: inline-block;height: 40px;width: 40px;line-height: 40px;background-color: rgba(0,0,0,0.7);text-align: center;color: #fff;font-size: 14px;opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect6 .link-wrap a:first-child {-webkit-transform: translateX(30px);transform: translateX(30px);margin-right: 6px;}
.tc-image-effect6 .link-wrap a:last-child {-webkit-transform: translateX(60px);transform: translateX(60px);}
.tc-image-effect6:hover .link-wrap a {opacity: 1;-webkit-transform: translateX(0px);transform: translateX(0px);}
.tc-image-effect6 .link-wrap a:hover {background-color: rgba(0,0,0,0.8);}
.tc-image-effect6:hover .caption h3 {background: rgba(0,0,0,0.8);}

/*========================
    Image Effect #7
==========================*/
.tc-image-effect7 {position: relative;overflow: hidden;}
.tc-image-effect7 img {-webkit-transform: scale(1.5) translateY(0);transform: scale(1.5) translateY(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-effect7:hover img {-webkit-transform: scale(1.5) translateY(-12px);transform: scale(1.5) translateY(-12px);}
.tc-image-effect7 .caption {position: absolute;bottom: 23%;left: 50%;transform: translateX(-50%);z-index: 10;text-align: center;width: 100%;}
.tc-image-effect7:after {position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.6);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 0;left: 0;}
.tc-image-effect7:hover:after {opacity: 1;}
.tc-image-effect7 .caption h3 {color: #fff;margin-bottom: -8px;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;opacity: 0;-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);background: rgba(0, 0, 0, 0.4);display: inline-block;padding: 10px;}
.tc-image-effect7 .caption p {-webkit-transform: translateY(0px);transform: translateY(0px);color: rgba(255,255,255,0.7);-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;background: rgba(0, 0, 0, 0.4);padding: 8px 10px;width: calc(100% - 50px);text-align: center;margin-left: auto;margin-right: auto;}
.tc-image-effect7:hover .caption h3 {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect7:hover .caption p {-webkit-transform: translateY(20px);transform: translateY(20px);}
.tc-image-effect7 .link-wrap {position: absolute;top: calc(50% - 20px);right: 50%;transform: translateX(50%) translateY(-50%);z-index: 10;}
.tc-image-effect7 .link-wrap a {display: inline-block;height: 40px;width: 40px;line-height: 40px;background-color: rgba(0, 0, 0, 0.48);text-align: center;color: #fff;font-size: 14px;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect7 .link-wrap a:first-child {-webkit-transform: translateY(0px);transform: translateY(0px);margin-right: 8px;}
.tc-image-effect7 .link-wrap a:last-child {-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect7:hover .link-wrap a {-webkit-transform: translateY(-20px);transform: translateY(-20px);background: rgba(0, 0, 0, 0.4);}
.tc-image-effect7:hover .link-wrap a:last-child {transition-delay: .1s;}
.tc-image-effect7 .link-wrap a:hover {background-color: rgba(0, 0, 0, 1);}

/*========================
    Image Effect #8
==========================*/
.tc-image-effect8 {position: relative;overflow: hidden;}
.tc-image-effect8 img {-webkit-transform: scale(1.5) translateX(0);transform: scale(1.5) translateX(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-effect8:hover img {-webkit-transform: scale(1.5) translateY(-12px);transform: scale(1.5) translateY(-12px);}
.tc-image-effect8:after {position: absolute;content: '';height: calc(100% - 30px);width: calc(100% - 30px);background-color: rgb(255, 255, 255);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 50%;left: 50%;transform: translateX(-50%) translateY(-50%);}
.tc-image-effect8:hover:after {opacity: 1;}
.tc-image-effect8 .caption h3 {color: #444;margin-bottom: 0px;-webkit-transition: all .5s ease-in-out;transition: all .4s ease-in-out;position: absolute;bottom: 30px;right: 50%;z-index: 10;padding: 10px;opacity: 0;width: 100%;text-align: center;-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);}
.tc-image-effect8 .caption p {color: #999;opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;position: absolute;top: 30px;right: 50%;z-index: 1;display: block;text-align: center;width: calc(100% - 60px);margin-left: auto;margin-right: auto;}
.tc-image-effect8:hover .caption h3, 
.tc-image-effect8:hover .caption p {opacity: 1;-webkit-transform: translateX(50%);transform: translateX(50%);}
.tc-image-effect8 .link-wrap {position: absolute;top: 48%;left: 50%;z-index: 10;transform: translateX(-50%) translateY(-50%);}
.tc-image-effect8 .link-wrap a {display: inline-block;height: 36px;width: 36px;line-height: 36px;background-color: rgba(0, 0, 0, 0.1);text-align: center;color: #999;font-size: 13px;opacity: 0;-webkit-transition: all .3s ease-in-out;transition: all .3s ease-in-out;-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);}
.tc-image-effect8 .link-wrap a:first-child {margin-right: 2px;}
.tc-image-effect8 .link-wrap a:last-child {transition-delay: .1s;}
.tc-image-effect8:hover .link-wrap a {opacity: 1;-webkit-transform: translateX(0px);transform: translateX(0px);}
.tc-image-effect8 .link-wrap a:hover {background-color: rgba(0, 0, 0, 0.2);}

/*========================
    Image Effect #9
==========================*/
.tc-image-effect9 {position: relative;overflow: hidden;}
.tc-image-effect9 img {-webkit-transform: scale(1.5) translateX(0);transform: scale(1.5) translateX(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-effect9:hover img {-webkit-transform: scale(1.5) translateY(-12px);transform: scale(1.5) translateY(-12px);filter: blur(3px);}
.tc-image-effect9:after {position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.3);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;/* opacity: 0; */top: 0;left: 0;}
.tc-image-effect9:hover:after {opacity: 1;}
.tc-image-effect9 .caption h3 {color: #fff;margin-bottom: 0px;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;position: absolute;top: 10px;left: 30px;z-index: 10;font-size: 18px;border-bottom: 2px solid rgba(255, 255, 255, 0.84);padding-bottom: 5px;}
.tc-image-effect9 .caption p {color: rgb(255, 255, 255);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;padding-bottom: 0;display: inline-block;opacity: 0;position: absolute;bottom: 30px;width: 100%;text-align: center;z-index: 10;}
.tc-image-effect9:hover .caption h3, 
.tc-image-effect9:hover .caption p {opacity: 1;}
.tc-image-effect9 .link-wrap {position: absolute;top: 50%;left: 50%;transform: translateX(-50%) translateY(-50%);z-index: 10;}
.tc-image-effect9 .link-wrap a {display: inline-block;height: 40px;width: 42px;background: transparent;line-height: 36px;border: 2px solid rgba(255, 255, 255, 0.5);text-align: center;color: #fff;font-size: 14px;opacity: 0;-webkit-transition: all .3s ease-in-out;transition: transform .3s ease-in-out;-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);}
.tc-image-effect9 .link-wrap a:first-child {margin-right: 10px;transition-delay: .2s;}
.tc-image-effect9 .link-wrap a:last-child {transition-delay: .3s;}
.tc-image-effect9:hover .link-wrap a {opacity: 1;-webkit-transform: translateX(0px);transform: translateX(0px);}
.tc-image-effect9 .link-wrap a:hover {background-color: rgba(255,255,255,0.3);}
.tc-image-effect9:hover .caption h3 {color: #fff;border-bottom-color: #fff;-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);}

/*========================
    Image Effect #10
==========================*/
.tc-image-effect10 {position: relative;overflow: hidden;}
.tc-image-effect10 img {-webkit-transform: scale(1.5) translateY(0);transform: scale(1.5) translateY(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-effect10:hover img {-webkit-transform: scale(1.5) translateY(-12px);transform: scale(1.5) translateY(-12px);}
.tc-image-effect10 .caption {position: absolute;top: 10px;left: 50%;transform: translateX(-50%);z-index: 10;text-align: center;width: 100%;}
.tc-image-effect10:after {position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.6);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 0;left: 0;}
.tc-image-effect10:hover:after {opacity: 1;}
.tc-image-effect10 .caption h3 {color: #fff;transform: translateY(-100px);transition: all 0.2s ease-in-out 0.1s;margin-bottom: 5px;opacity: 0;padding: 10px;margin-top: 5px;}
.tc-image-effect10 .caption p {color: rgba(255,255,255,0.7);opacity: 0;padding: 0 25px;transform: translateY(-200px);transition: all 0.2s ease-in-out 0.2s;}
.tc-image-effect10:hover .caption h3 {opacity: 1;transform: translateY(0px);transition-delay: 0.6s;}
.tc-image-effect10:hover .caption p {opacity: 1;-webkit-transform: translateY(20px);transform: translateY(20px);transition-delay: 0.3s;}
.tc-image-effect10 .link-wrap {position: absolute;bottom: 25px;right: 50%;z-index: 10;transform: translateX(50%);}
.tc-image-effect10 .link-wrap a {display: inline-block;height: 40px;width: 40px;line-height: 40px;background-color: rgba(255,255,255,0.1);text-align: center;color: #fff;font-size: 14px;opacity: 0;bottom: 0;transition: all 0.2s ease-in-out 0.3s;transform: translateY(-250px);}
.tc-image-effect10 .link-wrap a:first-child {margin-right: 2px;}
.tc-image-effect10 .link-wrap a:last-child {}
.tc-image-effect10:hover .link-wrap a {opacity: 1;transform: translate(0px);transition-delay: 0s;}
.tc-image-effect10 .link-wrap a:hover {background-color: rgba(255,255,255,0.4);}

/*========================
    Image Effect #11
==========================*/
.tc-image-effect11 {position: relative;overflow: hidden;}
.tc-image-effect11 img {transform: translateX(0px);-webkit-transition: all 1s ease-in-out;transition: all 1s ease-in-out;}
.tc-image-effect11:hover img {transform: translateX(100%);}
.tc-image-effect11:after {position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.8);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 0;left: 0;}
.tc-image-effect11:hover:after {opacity: 1;}
.tc-image-effect11 .caption h3 {color: #fff;10border-bottom: 2px solid #000;10border-bottom: 2px solid #000;-webkit-transition: all 1s ease-in-out;transition: all 1s ease-in-out;width: calc(100% - 70px);text-align: center;margin: 0;background: #444;padding: 8px 12px;margin-left: auto;margin-right: auto;line-height: normal;}
.tc-image-effect11 .caption p {color: rgba(255,255,255,0.7);-webkit-transition: all .6s ease-in-out;transition: all .6s ease-in-out;opacity: 0;position: absolute;left: 50%;top: 35px;transform: translateX(-100%);text-align: center;width: 100%;}
.tc-image-effect11:hover .caption p {opacity: 1;transform: translateX(-50%);}
.tc-image-effect11 .link-wrap {position: absolute;top: 40%;left: 50%;transform: translateX(-50%) translateY(-45%);z-index: 10;}
.tc-image-effect11 .link-wrap a {display: inline-block;height: 40px;width: 40px;line-height: 40px;background-color: rgba(255,255,255,0.1);text-align: center;color: #fff;font-size: 14px;opacity: 0;-webkit-transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);}
.tc-image-effect11 .link-wrap a:first-child {margin-right: 6px;transition-delay: .2s;}
.tc-image-effect11 .link-wrap a:last-child {transition-delay: .3s;}
.tc-image-effect11:hover .link-wrap a {opacity: 1;-webkit-transform: translateX(0px);transform: translateX(0px);}
.tc-image-effect11 .link-wrap a:hover {background-color: rgba(255,255,255,0.2);}
.tc-image-effect11:hover .caption h3 {-webkit-transform: translateX(130%);transform: translateX(130%);}
.tc-image-effect11 .caption {position: absolute;top: 50%;left: 50%;transform: translateX(-50%) translateY(-50%);width: 100%;z-index: 1;}
/*========================
    Image Effect #12
==========================*/
.tc-image-effect12 {position: relative;overflow: hidden;}
.tc-image-effect12:before {position: absolute;content: "";width: 100%;height: 100%;background: rgba(68, 68, 68, 0.8);transform: scale(0);transition: all .6s ease-in-out;}
.tc-image-effect12:hover:before {transform: scale(1);}
.tc-image-effect12 .caption {position: absolute;content: '';top: calc(50% + 22px);left: 50%;width: calc(100% - 40px);text-align: center;transform: translateX(-50%);}
.tc-image-effect12 .caption h3 {transform: translateY(30px);transition: all .6s ease-in-out;opacity: 0;color: #fff;margin: 0;}
.tc-image-effect12:hover .caption h3 {transform: translateY(0px);opacity: 1;}
.tc-image-effect12 .caption p {color: #eee;transition: all .35s cubic-bezier(0.43, 0.32, 0.9, 0.98);-webkit-transform: translateX(-50%) matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: translateX(-50%) matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);margin-top: 12px;}
.tc-image-effect12:hover .caption p {transform: translate(0);}
.tc-image-effect12 .link-wrap {position: absolute;top: calc(50% - 22px);left: 50%;transform: translateX(-50%) translateY(-50%);z-index: 10;}
.tc-image-effect12 .link-wrap a {display: inline-block;height: 40px;width: 40px;border-radius: 4px;line-height: 40px;background-color: #fff;text-align: center;color: #444;font-size: 15px;-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);}
.tc-image-effect12 .link-wrap a:first-child {margin-right: 6px;transition-delay: .2s;}
.tc-image-effect12 .link-wrap a:last-child {transition-delay: .3s;}
.tc-image-effect12:hover .link-wrap a {-webkit-transform: translateX(0px);transform: translateX(0px);}
.tc-image-effect12 .link-wrap a:hover {background-color: rgba(255,255,255,0.8);}

/*========================
    Image Effect #13
==========================*/
.tc-image-effect13 {position: relative;overflow: hidden;}
.tc-image-effect13 img {transition: all 0.5s ease-in-out 0.2s;}
.tc-image-effect13:hover img {-webkit-transform: scale(0);transform: scale(0);}
.tc-image-effect13:before {position: absolute;content: "";width: 100%;height: 100%;background: rgba(0, 0, 0, 0.6);transform: scale(0) rotate(-180deg);transition: all .5s ease-in-out;}
.tc-image-effect13:hover:before {opacity: 1;transform: scale(1) rotate(0deg);transition-delay: .5s;}
.tc-image-effect13 .caption h3 {position: absolute;top: 53%;left: 50%;width: 100%;transform: translateX(-50%) translateY(0px);text-align: center;transition: all .5s ease-in-out;opacity: 0;color: #fff;}
.tc-image-effect13:hover .caption h3 {transform: translateX(-50%) translateY(-10px);opacity: 1;transition-delay: .7s;}
.tc-image-effect13 .caption p {position: absolute;top: 67%;left: 50%;width: 100%;text-align: center;color: #eee;transition: all .5s ease-in-out;-webkit-transform: translateX(-50%) matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: translateX(-50%) matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);}
.tc-image-effect13:hover .caption p {-webkit-transform: translateX(-50%);transform: translateX(-50%);transition-delay: .7s;}
.tc-image-effect13 .link-wrap {position: absolute;top: 38%;left: 50%;transform: translateX(-50%) translateY(-40%);z-index: 10;}
.tc-image-effect13 .link-wrap a {display: inline-block;height: 40px;width: 40px;line-height: 40px;background-color: rgba(255,255,255,0.1);text-align: center;color: #fff;font-size: 14px;-webkit-transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);}
.tc-image-effect13 .link-wrap a:first-child {margin-right: 6px;}
.tc-image-effect13 .link-wrap a:last-child {transition-delay: .1s;}
.tc-image-effect13:hover .link-wrap a {-webkit-transform: translateX(0px);transform: translateX(0px);transition-delay: .6s;}
.tc-image-effect13 .link-wrap a:hover {background-color: rgba(255,255,255,0.4);transition-delay: .6s;}

/*========================
    Image Effect #14
==========================*/
.tc-image-effect14 {position: relative;overflow: hidden;}
.tc-image-effect14 img {-webkit-transform: scale(1.5) translateX(0);transform: scale(1.5) translateX(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-effect14:hover img {-webkit-transform: scale(1.5) translateY(-12px);transform: scale(1.5) translateY(-12px);}
.tc-image-effect14:after {position: absolute;content: '';height: 6px;width: 100%;background-color: rgba(0, 0, 0, 0.6);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;bottom: 0;left: 0;}
.tc-image-effect14:hover:after {height: 100%;}
.tc-image-effect14 .caption h3 {color: #fff;-webkit-transition: all .6s ease-in-out;transition: all .6s ease-in-out;position: absolute;left: 50%;transform: translateX(-50%);margin: 0;z-index: 10;padding: 10px;width: 100%;background: #2a2a2a;}
.tc-image-effect14 .caption p {-webkit-transform: translateY(40px);transform: translateY(40px);color: rgba(255,255,255,0.7);-webkit-transition: all .9s ease-in-out;transition: all .5s ease-in-out;padding-bottom: 5px;display: inline-block;opacity: 0;font-size: 14px;}
.tc-image-effect14:hover .caption p {opacity: 1;-webkit-transform: translateY(20px);transform: translateY(20px);}
.tc-image-effect14 .link-wrap {position: absolute;top: 40%;left: 50%;transform: translateX(-50%) translateY(-40%);z-index: 10;}
.tc-image-effect14 .link-wrap a {display: inline-block;height: 40px;width: 40px;line-height: 40px;background-color: rgba(0, 0, 0, 0.65);text-align: center;color: #fff;border-radius: 8px;font-size: 14px;opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);}
.tc-image-effect14 .link-wrap a:first-child {margin-right: 6px;transition-delay: .2s;}
.tc-image-effect14 .link-wrap a:last-child {transition-delay: .3s;}
.tc-image-effect14:hover .link-wrap a {opacity: 1;-webkit-transform: translateX(0px);transform: translateX(0px);}
.tc-image-effect14 .link-wrap a:hover {background-color: rgba(0, 0, 0, 0.74);top: -1px;position: relative;}
.tc-image-effect14:hover .caption h3 {-webkit-transform: translateX(-50%) matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: translateX(-50%) matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);}
.tc-image-effect14 .caption {position: absolute;top: 50%;left: 50%;transform: translateX(-50%);z-index: 10;text-align: center;width: 100%;}

/*========================
    Image Effect #15
==========================*/
.tc-image-effect15 {position: relative;overflow: hidden;}
.tc-image-effect15 img {-webkit-transform: translateX(0);transform: translateX(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-effect15:hover img {-webkit-transform: scale(1.2) translateX(-12px);transform: scale(1.2) translateX(-12px);}
.tc-image-effect15:after {position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.6);-webkit-transition: all .6s ease-in-out;transition: all .6s ease-in-out;bottom: 0;left: 0;transform: translateY(100%);}
.tc-image-effect15:hover:after {transform: translateY(0);}
.tc-image-effect15 .caption h3 {color: #fff;margin-bottom: 0px;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;position: absolute;top: -10px;left: 50%;opacity: 0;transform: translateX(-50%);z-index: 10;width: 100%;padding: 0 15px;}
.tc-image-effect15 .caption p {-webkit-transform: translateX(-40px) translateY(40px);transform: translateX(-40px) translateY(40px);color: rgba(255,255,255,0.7);-webkit-transition: all .9s ease-in-out;transition: all .5s ease-in-out;padding-bottom: 5px;display: inline-block;opacity: 0;}
.tc-image-effect15:hover .caption p {opacity: 1;-webkit-transform: translateX(0px) translateY(40px);transform: translateX(0px) translateY(40px);}
.tc-image-effect15 .link-wrap {position: absolute;top: 35%;left: 50%;transform: translateX(-50%) translateY(-35%);z-index: 10;}
.tc-image-effect15 .link-wrap a {display: inline-block;height: 40px;width: 40px;line-height: 36px;border: 2px solid rgba(255,255,255,0.8);text-align: center;color: #fff;font-size: 14px;opacity: 0;-webkit-transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);}
.tc-image-effect15 .link-wrap a:first-child {margin-right: 7px;transition-delay: .2s;}
.tc-image-effect15 .link-wrap a:last-child {transition-delay: .3s;}
.tc-image-effect15:hover .link-wrap a {opacity: 1;-webkit-transform: translateX(0px);transform: translateX(0px);}
.tc-image-effect15 .link-wrap a:hover {background-color: rgba(255,255,255,0.4);}
.tc-image-effect15:hover .caption h3 {-webkit-transform: translateX(-50%);transform: translateX(-50%);opacity: 1;}
.tc-image-effect15 .caption {position: absolute;top: 50%;left: 50%;transform: translateX(-50%);z-index: 10;text-align: center;width: 100%;}

/*========================
    Image Effect #16
==========================*/
.tc-image-effect16 {position: relative;overflow: hidden;background: #222;}
.tc-image-effect16 img {-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;opacity: 0.9;}
.tc-image-effect16:hover img {-webkit-transform: scale(1.2);transform: scale(1.2);-ms-filter: blur(4px);filter: blur(4px);}
.tc-image-effect16 .caption {position: absolute;bottom: calc(50% - 30px);left: 50%;transform: translateX(-50%) translateY(50%);z-index: 10;text-align: center;width: 100%;}
.tc-image-effect16:before, 
.tc-image-effect16:after {position: absolute;content: '';height: 0px;width: 0px;background-color: transparent;-webkit-transition: all .25s ease-in-out;transition: all .3s ease-in-out;opacity: 0;}
.tc-image-effect16:before {border-left: 1px solid #fff;border-top: 1px solid #fff;top: 20px;left: 20px;z-index: 1;}
.tc-image-effect16:after {border-right: 1px solid #fff;border-bottom: 1px solid #fff;bottom: 20px;right: 20px;}
.tc-image-effect16:hover:before, 
.tc-image-effect16:hover:after {height: 40px;width: 40px;opacity: 1;}
.tc-image-effect16 .caption h3 {color: #fff;margin-bottom: 8px;-webkit-transform: translateY(20px);transform: translateY(20px);-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;opacity: 0;}
.tc-image-effect16 .caption p {-webkit-transform: translateY(50px);transform: translateY(50px);color: rgba(255,255,255,0.7);opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect16:hover .caption h3, 
.tc-image-effect16:hover .caption p {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect16 .link-wrap {position: absolute;top: calc(50% - 25px);right: 50%;transform: translateX(50%) translateY(-50%);z-index: 10;}
.tc-image-effect16 .link-wrap a {display: inline-block;height: 40px;width: 40px;line-height: 40px;background-color: rgba(0, 0, 0, 0.56);text-align: center;color: #fff;font-size: 14px;opacity: 0;border-radius: 50%;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect16 .link-wrap a:first-child {-webkit-transform: translateY(-30px);transform: translateY(-30px);margin-right: 5px;}
.tc-image-effect16 .link-wrap a:last-child {-webkit-transform: translateY(-60px);transform: translateY(-60px);}
.tc-image-effect16:hover .link-wrap a {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect16 .link-wrap a:hover {background-color: rgba(0, 0, 0, 0.76);}

/*========================
    Image Effect #17
==========================*/
.tc-image-effect17 {position: relative;overflow: hidden;}
.tc-image-effect17 img {-webkit-transform: scale(1.5) translateX(0);transform: scale(1.5) translateX(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-effect17:hover img {-webkit-transform: scale(1.5) translateX(20px);transform: scale(1.5) translateX(20px);filter: blur(4px);}
.tc-image-effect17:after {position: absolute;content: '';height: calc(100% - 20px);width: calc(100% - 20px);background-color: rgba(175, 175, 175, 0.4);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 50%;left: 50%;transform: translateX(-50%) translateY(-50%);}
.tc-image-effect17:hover:after {opacity: 1;}
.tc-image-effect17 .caption h3 {color: #444;margin-bottom: 0px;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;position: absolute;bottom: 25px;z-index: 10;right: 50%;background: rgb(255, 255, 255);padding: 10px;width: calc(100% - 50px);text-align: center;margin-top: 0;transform: translateX(50%);border-radius: 20px;}
.tc-image-effect17 .caption p {-webkit-transform: translateX(-50px);transform: translateX(-50px);color: #fff;opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;position: absolute;top: 25px;z-index: 1;left: 25px;display: block;width: 55%;text-align: right;padding-right: 15px;}
.tc-image-effect17:hover .caption p {opacity: 1;-webkit-transform: translateX(0px);transform: translateX(0px);}
.tc-image-effect17 .link-wrap {position: absolute;top: 25px;right: 25px;z-index: 10;}
.tc-image-effect17 .link-wrap a {display: inline-block;height: 40px;width: 40px;line-height: 40px;border-radius: 20px;background-color: #fff;text-align: center;color: #777;font-size: 14px;opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect17 .link-wrap a:first-child {-webkit-transform: translateX(30px);transform: translateX(30px);margin-right: 6px;}
.tc-image-effect17 .link-wrap a:last-child {-webkit-transform: translateX(60px);transform: translateX(60px);}
.tc-image-effect17:hover .link-wrap a {opacity: 1;-webkit-transform: translateX(0px);transform: translateX(0px);}

/*========================
    Image Effect #18
==========================*/
.tc-image-effect18 {position: relative;overflow: hidden;}
.tc-image-effect18:before {position: absolute;content: "";right: 15px;bottom: 15px;border: 1px solid rgba(255, 255, 255, 0.64);opacity: 0;top: 15px;left: 15px;z-index: 1;transition: all .4s ease;}
.tc-image-effect18:hover:before {opacity: 1;}
.tc-image-effect18 img {-webkit-transform: scale(1.5) translateY(0);transform: scale(1.5) translateY(0);-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-effect18:hover img {-webkit-transform: scale(1.5) translateY(-12px);transform: scale(1.5) translateY(-12px);}
.tc-image-effect18 .caption {position: absolute;bottom: 30px;right: 30px;z-index: 10;text-align: right;width: 100%;}
.tc-image-effect18:after {position: absolute;content: '';height: 100%;width: 100%;background-color: rgba(0, 0, 0, 0.7);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 0;left:0;}
.tc-image-effect18:hover:after {opacity: 1;}
.tc-image-effect18 .caption h3 {color: #fff;margin-bottom: 10px;-webkit-transform: translateY(20px);transform: translateY(20px);-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;opacity: 0;}
.tc-image-effect18 .caption p {-webkit-transform: translateY(35px);transform: translateY(35px);color: rgba(255,255,255,0.7);opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect18:hover .caption h3, 
.tc-image-effect18:hover .caption p {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect18 .link-wrap {position: absolute;top: 30px;left: 30px;z-index: 10;}
.tc-image-effect18 .link-wrap a {display: inline-block;height: 36px;width: 36px;line-height: 34px;background-color: rgba(255,255,255,0.2);border: 2px solid rgba(255, 255, 255, 0.3);text-align: center;color: #fff;font-size: 14px;opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect18 .link-wrap a:first-child {-webkit-transform: translateY(-30px);transform: translateY(-30px);margin-right: 5px;}
.tc-image-effect18 .link-wrap a:last-child {-webkit-transform: translateY(-60px);transform: translateY(-60px);}
.tc-image-effect18:hover .link-wrap a {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect18 .link-wrap a:hover {background-color: rgba(255,255,255,0.4);}

/*========================
    Image Effect #19
==========================*/
.tc-image-effect19 {position: relative;overflow: hidden;}
.tc-image-effect19 img {-webkit-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.tc-image-effect19:hover img {-webkit-transform: scale(1.5) translateY(-12px);transform: scale(1.5) translateY(-12px);filter: blur(4px);}
.tc-image-effect19 .caption {position: absolute;bottom: 25%;left: 50%;transform: translateX(-50%);z-index: 10;text-align: center;width: 100%;}
.tc-image-effect19:after {position: absolute;content: '';height: calc(100% - 40px);width: calc(100% - 40px);box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);background: rgba(0, 0, 0, 0.09);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 50%;left: 50%;transform: translateX(-50%) translateY(-50%);}
.tc-image-effect19:hover:after {opacity: 1;}
.tc-image-effect19 .caption p {color: rgba(255,255,255,0.7);opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect19:hover .caption h3, 
.tc-image-effect19:hover .caption p {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect19 .link-wrap {position: absolute;top: 40%;right: 50%;transform: translateX(50%) translateY(-40%);z-index: 10;}
.tc-image-effect19 .link-wrap a {display: inline-block;height: 40px;width: 40px;line-height: 40px;background-color: rgba(0, 0, 0, 0.5);border-radius: 4px;text-align: center;color: #fff;font-size: 14px;opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect19 .link-wrap a:first-child {margin-right: 6px;-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);}
.tc-image-effect19 .link-wrap a:last-child {-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transition-duration: .7s;}
.tc-image-effect19:hover .link-wrap a {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect19 .link-wrap a:hover {background-color: rgb(0, 0, 0);}
.tc-image-effect19 .caption p, 
.tc-image-effect19:hover .caption h3 {-webkit-transform: matrix3d(1,0,0,0,0,0,1,-.008,0,-1,0,0,0,0,0,1);transform: translateX(100%);}
.tc-image-effect19 .caption h3 {color: #fff;transition: all .5s ease-in-out;z-index: 1;padding: 12px;background-color: rgba(0, 0, 0, 0.4);width: 100%;margin: 0;}

/*========================
    Image Effect #20
==========================*/
.tc-image-effect20 {position: relative;overflow: hidden;}
.tc-image-effect20:after {position: absolute;content: '';height: calc(100% - 22px);width: calc(100% - 22px);background-color: rgba(0, 0, 0, 0.8);-webkit-transition: opacity .25s ease-in-out;transition: opacity .3s ease-in-out;opacity: 0;top: 50%;left: 50%;transform: translateX(-50%) translateY(-50%);}
.tc-image-effect20:hover:after {opacity: 1;}
.tc-image-effect20 .caption h3 {color: #fff;-webkit-transform: translateY(-20px);transform: translateY(-20px);-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;opacity: 0;top: 26px;position: absolute;left: 0;z-index: 10;text-align: center;margin: 0;padding: 0 25px;width: 100%;}
.tc-image-effect20 .caption p {-webkit-transform: translateY(20px);transform: translateY(20px);color: rgba(255,255,255,0.7);opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;position: absolute;right: 0;width: 100%;bottom: 26px;z-index: 1;padding-bottom: 5px;line-height: 20px;text-align: center;padding: 0 25px;}
.tc-image-effect20:hover .caption h3, 
.tc-image-effect20:hover .caption p {opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);}
.tc-image-effect20 .link-wrap {position: absolute;top: 50%;right: 50%;transform: translateX(50%) translateY(-50%);z-index: 10;}
.tc-image-effect20 .link-wrap a {display: inline-block;height: 36px;width: 36px;line-height: 36px;background-color: rgba(255, 255, 255, 0.7);text-align: center;color: #444;font-size: 13px;border-radius: 50%;opacity: 0;-webkit-transition: all .5s ease-in-out;transition: all .5s ease-in-out;}
.tc-image-effect20 .link-wrap a:first-child {-webkit-transform: translateX(-20px);transform: translateX(-20px);margin-right: 7px;}
.tc-image-effect20 .link-wrap a:last-child {-webkit-transform: translateX(20px);transform: translateX(20px);}
.tc-image-effect20:hover .link-wrap a {opacity: 1;-webkit-transform: translateX(0px);transform: translateX(0px);}
.tc-image-effect20 .link-wrap a:hover {background-color: #fff;}

/*Internet Explorer 11 & 12 version Problem Fix*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .tc-image-effect9:after {
        transition: 0.3s ease all;
    }
    .tc-image-effect9:hover:after {
        background-color: rgba(0, 0, 0, 0.8);
    }
    .tc-image-effect15:after {
        height: 0;
        transform: none;
        transition: all .45s ease;
    }
    .tc-image-effect15:hover:after {
        height: 100%;
    }
    .tc-image-effect16:hover img {
        opacity: 0.4;
    }
    .tc-image-effect17 {
        background: #000;
        transition: 0.3s ease all;
    }
    .tc-image-effect19 {
        background: #222;
        transition: 0.3s ease all;
    }
    .tc-image-effect19:after {
        box-shadow: 0 0 10px rgba(185, 185, 185, 0.4);
    }
    .tc-image-effect17:hover img {
        opacity: 0.6;
    } 
    .tc-image-effect19:hover img {
        opacity: 0.4;
    }
}

/*========================
    Responsive
==========================*/
@media (max-width: 768px) {
    [class*="tc-image-effect"] {
        margin-bottom: 30px;
    }
}
@media (max-width: 420px) {
    .caption h3 {
        font-size: 16px;
    }
    .caption p {
        display: none !important;
    }
    .tc-image-effect5 .link-wrap {
        top: auto;
        bottom: 25px;
        transform: translateX(50%) translateY(0);
    }
    .tc-image-effect11 .link-wrap, 
    .tc-image-effect14 .link-wrap {
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}

.footer-img img {
    max-width: 100px;
}

.logo img {
    max-width: 100px;
    height:auto;
}

.footer-bottom-area-4 {
    background-color: #ff0505;
}
