/* Table Content
    Title Font : font-family: 'Patua One', cursive;
    Sub Title font : font-family: 'Caveat', cursive;
    Body Fonts : font-family: 'Raleway', sans-serif;



*/


*:focus {
    outline: none;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #000000;
    line-height: 28px;
    overflow-x: hidden;
    background-color: #fff;
    background: url(../images/body-bg.png) repeat #fff;
}
p {margin-bottom: 15px;}
p:empty{display: none;}
b,strong {font-weight: 700;}
small { color: #999;font-size: 15px;font-weight: 500}

a {
    color: #e1000b;
    text-decoration: none;
    outline: none;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
}
a:hover {color: #231069;text-decoration: none;}
img {max-width: 100%;vertical-align: top;}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Patua One', cursive;
    font-weight: 400;
    margin: 0px;
    padding: 0px;
    color: #e1000b;
    line-height: 1;
}
h1 span, h2 span, h3 span{
    font-family: 'Caveat', cursive;
    color: #000000;
    display: block;
}
h1 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 24px;

}
h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
h4 {
    font-size: 18px;
    margin-bottom: 20px;
}
h5 {
    font-size: 16px;
    margin-bottom: 20px;
}
h6 {
    font-size: 16px;
    margin-bottom: 20px;
}
ol,
ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

input[type="submit"],
input[type="button"],
button[type="submit"],
button[type="button"] {
    outline: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
input[type="tel"],
input[type="date"],
select {
    box-shadow: 0px !important;
    -webkit-box-shadow: 0px !important;
    -ms-box-shadow: 0px !important;
    -moz-box-shadow: 0px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0px;
}

input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    background-image: none;
    background: transparent;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number]::-moz-outer-spin-button,
input[type=number]::-moz-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance:textfield;
}
.form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 12px 30px;
    color: #000 !important;
    background-color: #fff;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0px 10px 10px 10px;
    -webkit-border-radius: 0px 10px 10px 10px;
    -moz-border-radius: 0px 10px 10px 10px;
    -ms-border-radius: 0px 10px 10px 10px;
    box-shadow: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}
select.form-control {
    background-image: url(../images/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 50%;
}
.form-group {
    margin-bottom: 20px;
}
.form-control:focus {
    background-color: #fff;
    border: 1px solid #e3ba15;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.form-control::-webkit-input-placeholder {
    color: #999;
}
.form-control::-moz-placeholder {
    color: #999;
}
.form-control:-ms-input-placeholder {
    color: #999;
}
.form-control::placeholder {
    color: #999;
}
/* .form-control:focus::-webkit-input-placeholder {
    color: #000;
}
.form-control:focus::-moz-placeholder {
    color: #000;
}
.form-control:focus:-ms-input-placeholder {
    color: #000;
}
.form-control:focus::placeholder {
    color: #000;
} */


label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 400;
}

sup {
    font-size: 16px;
    color: #000;
    top: -1px;
    left: 1px;
}

textarea.form-control {
    resize: none;
    height: 100px;

}
button:focus{
    outline: none;

}
.btn-theme {
    background-color: #231069;
    padding: 15px 30px 15px;
    font-size: 17px;
    text-align: center;
    display: inline-block;
    outline: 0px;
    border: none;
    border-radius: 0px 10px 10px 10px;
    -webkit-border-radius: 0px 10px 10px 10px;
    -moz-border-radius: 0px 10px 10px 10px;
    -ms-border-radius: 0px 10px 10px 10px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1;
    cursor: pointer;
}

.btn-theme:hover {
    background-color: #e1000b;
    color: #fff;
}
.btn-theme-white{
    background-color: transparent;
    border: 1px solid #ffffff;
}
.btn-theme-white:hover{
    background-color: #e1000b;
    border: 1px solid #e1000b;
}
.circleiconbtn {
    background-color: transparent;
    border: 1px solid #e1000b;
    color: #e1000b;
    font-size: 15px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.circleiconbtn:hover {
    color: #FFF;
    background-color: #e1000b;
}
.btn-link-arrow {
    display: inline-block;
    color: #231069;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1;

}
.btn-link-arrow:hover {color: #e1000b;}
.btn-link-arrow:hover::after{right: -30px;color: #e1000b;}
input[type="radio"],
input[type="checkbox"] {cursor: pointer;}
.mr-10 {margin-right: 10px; }
.mt-10 {margin-top: 10px; }
.mt-15{margin-top: 15px;}
.mb-00 {margin-bottom: 0px; }
.mb-10 {margin-bottom: 10px; }
.mb-15 {margin-bottom: 15px; }
.mb-20 {margin-bottom: 20px; }
.mb-25 {margin-bottom: 25px; }
.mb-30 {margin-bottom: 30px; }
.mb-40 {margin-bottom: 40px; }
.mb-60 {margin-bottom: 60px; }
.mb-50 {margin-bottom: 50px; }
.mb-70 {margin-bottom: 70px; }
.mb-80 {margin-bottom: 80px; }
.mb-90 {margin-bottom: 90px; }
.mb-100 {margin-bottom: 100px;}
.mb-120 {margin-bottom: 120px;}
.mb-150 {margin-bottom: 150px;}
.mt-30{margin-top: 30px;}
.pb-15{padding-bottom: 15px; }
.pb-20{padding-bottom: 20px; }
.pb-25 {padding-bottom: 25px; }
.pb-30 {padding-bottom: 30px; }
.pb-40 {padding-bottom: 40px; }
.pb-50 {padding-bottom: 50px; }
.pb-70 {padding-bottom: 70px; }
.pb-80 {padding-bottom: 80px; }
.pb-90 {padding-bottom: 90px; }
.pb-100{padding-bottom: 100px;}
.pb-120 {padding-bottom: 120px;}
.pb-150 {padding-bottom: 150px;}
.pt-00 {padding-top: 0px; }
.pt-70 {padding-top: 70px; }
.pt-80 {padding-top: 80px; }
.pt-90 {padding-top: 90px; }
.pt-100{padding-top: 100px;}
.pt-120 {padding-top: 120px;}
.pt-150 {padding-top: 150px;}
i{font-style: normal;}
.list-item ul {margin-bottom: 15px; }
.list-item ul li {position: relative; padding-left: 20px; margin-bottom: 5px; }
.list-item ul li::before {content: ''; background:#e1000b; position: absolute; left: 0px; width: 7px; height: 7px; top: 9px;border-radius: 50%;}
.help-block-error {color: red; }

/* larg typography css */
.lgtitle70{font-size: 70px;line-height: 46px;color: #e1000b;margin-bottom: 30px; font-family: 'Patua One', cursive;font-weight: 400;letter-spacing: 0.5px;}
.lgtitle70 span{color: #000;font-family: 'Caveat', cursive;font-weight: 400;display: block;margin-left: -5px;}
.lgtitle60{font-size: 60px;line-height: 39px;color: #e1000b;margin-bottom: 30px; font-family: 'Patua One', cursive;font-weight: 400;letter-spacing: 0.5px;}
.lgtitle60 span{color: #000;font-family: 'Caveat', cursive;font-weight: 400;display: block;margin-left: -5px;}
.lgtitle40{font-size: 40px;line-height: 24px;color: #fff;margin-bottom: 30px; font-family: 'Patua One', cursive;font-weight: 400;}
.lgtitle40 span{color: #f59e07;font-family: 'Caveat', cursive;font-weight: 400;display: block;}
/*common css end*/

/* header css start */
.main {width: 100%; display: block;overflow: hidden; }
.mainheader {min-height: 94px; position: fixed;width: 100%;top: 0px; z-index: 20;background-color: #fff; -webkit-transition: all ease 0.3s; -o-transition: all ease 0.3s; transition: all ease 0.3s; }
.headermenucol{display: inline-block;vertical-align: top;width: 100%;}
.menucol {display: flex;justify-content: space-between;flex-wrap:wrap;width: 100%;}
/* .mainheader.sticky{padding-bottom: 5px;} */
.logo a {display: inline-block; }
.menucol .navmenu{width: 40%;}
.menucol .navmenu:first-child {
	text-align: right
}
.logo{width: 20%;padding: 10px 0px; text-align: center;justify-content: center;position: relative;transition:all 0.3s ease;margin-bottom: -40px;}
.logo img{transition:all 0.3s ease;height: 120px;}
.mainheader.sticky .logo {margin-bottom: 0px;}
.mainheader.sticky .logo img{transition:all 0.3s ease;height: 70px;}
.navmenu > ul{margin:0px; padding:0px;
display: inline-block;
text-align: left;
}
.navmenu > ul > li{
	display: inline-block;
	position:relative;list-style:none;
	padding:36px 25px;
	margin-bottom: 0px; -webkit-transition: all ease 0.3s; -o-transition: all ease 0.3s; transition: all ease 0.3s;width:initial;}
.navmenu > ul > li.menu-item-has-children > a{pointer-events: none;}
/* .mainheader.sticky .navmenu > ul > li{padding: 20px 25px;}  */
.navmenu > ul > li::before{display: none;}
.navmenu > ul > li  a {color: #000000;display: block;font-size: 17px;font-weight: 500;text-transform: capitalize;}
.navmenu > ul > li  a i{margin-left: 5px;margin-top: -1px;display: inline-block;vertical-align: middle;font-size: 12px;}
.navmenu > ul > li > a:hover, .navmenu > ul li.current-menu-item > a, .navmenu > ul li.current-menu-ancestor > a{color: #e1000b;}
.navmenu > ul > li:hover > a {color: #e1000b;}
.navmenu > ul > li  ul{left: -25px;display:none;position:absolute;top: 100%; width:285px;margin:0px;background:#fff;padding: 0px 30px;box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.06);}
.navmenu > ul > li > ul li::before{position: absolute;left: 0px;top: 25px;content: '';background: #e1000b;border-radius: 50%;width: 8px;height: 8px;}
.navmenu > ul > li > ul li{padding: 15px 0px 15px 20px;border-bottom: 1px solid #ddd;margin-bottom: 0px;position: relative;}
.navmenu > ul > li > ul li:last-child{border: none;}
.navmenu > ul > li > ul li a{display:block; color:#000; position: relative;padding-right: 10px}
.navmenu > ul > li > ul li a::after{font-size: 12px;font-family: 'Font Awesome 5 Free';font-weight: 900;content: "\f061";
color: #e1000b;-webkit-transition: all 0.3s ease;-o-transition: all 0.3s ease;transition: all 0.3s ease;position: absolute;right: 5px;opacity: 0;}
.navmenu > ul > li > ul li a:hover::after,
.navmenu > ul > li > ul li.current-menu-item a::after{right: 0px;opacity: 1;}
.navmenu > ul > li > ul li a i{position: absolute;right: 20px;top: 14px;}
.navmenu > ul > li > ul li a:hover{color: #e1000b;}
.navmenu > ul > li ul li ul{top: 0px;left: 100%;margin-left: 20px;}
.navmenu > ul > li:hover > ul, .navmenu > ul > li ul li:hover > ul{display:block;}
.navmenu > ul > li:last-child i{color:#04508a;margin-right: 5px;display: inline-block;margin-top: -2px;}
.navmenu > ul > li.mobilefirst{display: none;}
a.mobile-menu-icon {display: none;}
.headerclose, .navbartoggle, .menuobjectbottom, .menuobjectleaf {display: none;}
.sub-menu-arrow{display: none;}


.shop_btn {
	float: right;
}
.shop_btn a {
	display: inline-block;
    padding: 10px 20px;
    background: #e1000b;
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    border-radius: 90px;
}
.shop_btn a i {
	font-size: 11px;
	margin-left: 1.5px;
}
@media (min-width: 1199px) {
.shop_btn {
	padding: 32px 50px 32px 0px;
}
}
@media (max-width: 1199px) {
.logo {
    display: block !important;
    text-align: left!important;
}
.headermenucol .logo {
	display: none!important;
}
.shop_btn {
	margin-right: 50px;
    margin-top: 15px;
}
.shop_btn a {
	padding: 8px 15px;
	font-size: 13px;
    line-height: 13px;
}
.shop_btn.dsk {
	display: none!important;
}
}



/* header css end */
.full-slider{margin-bottom: 100px;position: relative;}
.full-slider .slider-down {position: absolute;width: 100%;text-align: center;bottom: 20px;z-index: 2;left: 0px;}
.full-slider .slider-down a {color:#333;display: inline-block;font-size: 14px;}
.full-slider .slider-down a:hover{color: #81bf2d;}
.full-slider .slider-down a i{color: #81bf2d;animation: rev-ani-mouse 1.5s ease-in infinite;position: relative;}
.carousel-inner {position: relative;width: 100%;overflow: hidden;}
.carousel-caption {bottom: auto;top: 50%;transform: translateY(-50%);left: 0px;right: 0px;width: 100%;padding: 0px;z-index: 1;}
.captiontext{text-align: right; width: 50%;font-size: 110px;color: #fff;line-height: 58px; font-family: 'Patua One', cursive;}
.captiontext span{color:#f59e07;display: block;font-size: 70px;font-family: 'Caveat', cursive;margin-right: 5px;}
.full-slider .animated, .product-slider .animated, .catagoryrow .animated { -webkit-animation-duration: 1.5s;-moz-animation-duration: 1.5s;-ms-animation-duration: 1.5s;-o-animation-duration: 1.5s;animation-duration: 1.5s;}
.carousel-control-next, .carousel-control-prev:focus, .carousel-control-next:focus,
.carousel-control-prev{color: #fff;width: 40px;height: 40px;opacity: 1;top: 50%;transform: translateY(-50%);border: 1px solid #fff;border-radius: 50%;font-size: 16px;opacity: 0.5;}
.carousel-control-next:hover, .carousel-control-prev:hover{opacity: 1;}
.carousel-control-prev{left: 20px;}
.carousel-control-next{right: 20px;}
.carousel-indicators li{background-color: #000;opacity: 0.25;width: 10px;height: 10px;border-radius: 50%;margin: 0px 10px;}
.carousel-indicators li.active{background-color: #e1000b;opacity: 1;}
/* .carousel-item {transform: none !important;transition: all 1s ease;} */
.saalonerow {position: relative;padding-bottom: 80px;}
.divider-yellow-bottom{bottom: -1px;left:0px;overflow: hidden;width: 100%;}
.divider-yellow-top{top: 0px;left: 0px;z-index: 1;overflow: hidden;width: 100%;}
.basetouchimg{display: inline-block;vertical-align: top;margin-bottom: -30px;}
.baseimg{width: 100%;}
.productviewrow{background: #ffcc00;padding: 30px 0px;}
.productcontent{width: 60%;padding-left: 40px;}
.prothumb{position: relative;}
.prothumb img {-webkit-transition: all 0.5s ease;-o-transition: all 0.5s ease;transition: all 0.5s ease;transform: translate(0px, 0px);}
.prothumb::before{opacity: 0;-webkit-transition: all 0.5s ease;-o-transition: all 0.5s ease;transition: all 0.5s ease; background: url(../images/shadow-product-hover.webp) no-repeat;position: absolute; left: 0px;width: 100%; content:'';height: 46px;bottom: 0px;}
.productItem  a:hover .prothumb::before{opacity: 1;bottom: -10px;}
.productItem  a:hover .prothumb img{transform: translate(0px, -50px);}
.productviewrow .row > [class*="col-"]:nth-child(2n+1) {margin-top: 100px;}
.prothumb {width: 40%;}
.productcontent  h2 {font-size: 40px;line-height: 24px;}
.product-slider{margin-bottom: 50px;}
.product-slider .lgtitle70{margin-left: 22%;width: 38%;}
.product-slider .carousel-caption{top:53%;}
.product-slider span{color: #fff;}
.product-slider span i{font-style: normal;color: #f59e07;display: block;}
.pro-top-leaf{top: 55px;right: 0px;z-index: 1;}
.pro-bottom-leaf{bottom: -80px;left: 66px;z-index: 1;}
.tastycombinationrow{z-index: 1;}
.tastycaption{position: absolute;top: 80px;width: 100%;}
.testysliderproduct {width: 100%;}
.testysliderproduct .slick-prev,.testysliderproduct .slick-next{top: 40%;}
.whatsmoodrow{position: relative;background: url(../images/black-bg.webp) no-repeat top center;background-size: cover; padding: 250px 0px 0px;margin-top: -190px;color: #fff;}
.whatsmoodrow span{color: #fff;margin: 0px;}
.whatsmoodrow span i{display: block;color: #f59e07;}
.emojicol{width: 100%;display: flex;flex-wrap: wrap;margin-top: 30px;align-items: flex-start;}
.emojicontent{display: flex;flex-wrap: wrap;text-align: left;align-items: center;cursor: pointer;margin-bottom: 80px;z-index: 1;position: relative;}
.emojicontent span, .emojomobileslider span{text-transform: uppercase;font-weight: 700;font-size: 18px;padding-left: 15px;transition: all 0.3s ease-in;}
.emojomobileslider{position: relative;z-index: 1;}
.emojomobileslider span{display: block;margin-bottom: 20px;}
.emojomobileslider.slick-dotted.slick-slider{margin-bottom: -40px;padding:0px 10px 30px;}
.emojomobileslider .slick-dots{bottom: 0px;}
.emojomobileslider .slick-next{right: 0px;}
.emojomobileslider .slick-prev{left: 0px;}
.emojomobileslider .slick-prev:before, .emojomobileslider .slick-next:before{color: #fff;}
.emojithumb{position: relative;}
.emojithumb::before{position: absolute;width: 100%;transition:all 0.3 ease; opacity: 0; left: 0px;bottom: -15px;content: ''; background: url(../images/emoji-shadow.webp) center center;height: 13px;}
.emojithumb img {transition: all 1s ease-in;transform: scale(0.9);}
.emojicontent:hover img, .emojicontent.active img{transform: scale(1.1);animation-iteration-count:0 ;animation-name: initial;}
.emojicontent:hover span, .emojicontent.active span{color: #f59e07;}
.emojicontent:hover .emojithumb::before, .emojicontent.active .emojithumb::before{opacity: 1;bottom: -25px}
.emojicol .emojicontent:nth-child(1){margin-left: 15%;}
.emojicol .emojicontent:nth-child(2){margin-left: 16%;margin-top: 10px;}
.emojicol .emojicontent:nth-child(3){margin-left: 20%;margin-top: -30px;}
.emojicol .emojicontent:nth-child(4){margin-left: 2%;}
.emojicol .emojicontent:nth-child(5){margin-left: 17%;}
.emojicol .emojicontent:nth-child(6){margin-left: 20%;margin-top: -40px;}
.emojicol .emojicontent:nth-child(7){margin-left: 10%;margin-bottom:0px;margin-top: 100px;z-index: 2;}
.emojithumbcol{margin-top: -100px;position: relative;z-index: 1;}
.contactrequestrow{background-color: #ffcc00;padding: 100px 0px 65px;}
.contactrequestrow p{margin-bottom: 20px;}
.hand-left-bottom{bottom: 75px;left: 0px;}
.hand-right-top{top: 85px;right: 0px;}
.frmleaftop{top: 0px;left: 90px;}
.frmleafbottom{top: 90px;right: 230px;z-index: 2;}
.footermain {padding: 100px 0px 140px;vertical-align: top;position: relative;}
.instafollowcol{position: relative;overflow: hidden; margin-bottom: 45px; background: url(../images/insta-bg.webp) no-repeat center;width: 100%;padding: 40px;color: #fff;-webkit-border-radius: 0px 20px 20px 20px;border-radius: 0px 20px 20px 20px;}
.instaiconcol{position: relative; display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;}
.instaiconcol i{font-size: 100px;display: inline-block;vertical-align: middle;margin-right: 45px;}
.instaiconcol .lgtitle60{margin-right: 50px;font-size: 40px;color: #fff;line-height: 30px;display: inline-block;vertical-align: middle;margin-bottom: 0px;}
.instaiconcol .lgtitle60 span{color: #fff;}
.instafollowcol .btn-theme-white:hover{background-color:#f59e07; border: 1px solid #f59e07;}
.hearticon{right: 200px;bottom: -15px;opacity: 0.8;}
.shareicon{right: 100px;top: -10px;opacity: 0.8;}
.titlecolfooter{font-size: 20px;font-family: 'Patua One', cursive;color: #e1000b;line-height: 1;margin-bottom: 15px;}
.footerlink{width: 20%;}
.footerlink ul li{margin-bottom: 5px;}
.footerlink ul li a{color: #000;}
.footerlink ul li a:hover{color: #e1000b;}
.socialcol{margin-bottom: 20px;}
.socialcol ul{display: flex;flex-wrap: wrap;align-items: flex-start;}
.socialcol ul li{margin-right: 25px;}
.socialcol ul li a{color: #231069;}
.socialcol ul li a:hover{color: #e1000b;}
.copyright p{margin-bottom: 0px;}
.copyright a{color: #000;}
.copyright a:hover{color: #e1000b;}
.mailtarget a{color: #000;}
.mailtarget a:hover{color: #e1000b;}
.mailcol span{display: inline-block;vertical-align: top;color: #e1000b;}
.mailtarget{display: inline-block;vertical-align: top;width: 90%;}
.footerobjectright{right: 0px;position: absolute;bottom: 0px;}
.fromrowsection .divider-yellow-top{overflow: visible;}
.fromrowsection .divider-yellow-top img.dividerfrombottom{overflow: visible;transform: rotate3d(0, 1, 0, 180deg);}

/*Breadcrumb CSS Start*/
.inner-header {text-align: center;margin: 100px 0px 90px;position: relative;}
.breadcrumbrowblue{display: inline-block;vertical-align: top;width: 100%;background-color: #231069;padding: 100px 0px 45px; }
.inner-header ul {list-style: none; margin: 0px; padding: 0px; font-size: 14px; }
.inner-header ul li:first-child::before{display:none;}
.inner-header ul li::before {content: "/";color: #fff;margin-right: 5px; }
.inner-header ul li {display: inline-block; position: relative; padding: 0px; margin: 0px 4px 0px 0px; color: #f59e07; }
.inner-header ul li.active{margin: 0px;}
.inner-header ul li a{color: #fff;}
.inner-header ul li a:hover, .inner-header ul li.active a{color: #f59e07;}
.leafbreadcumre{bottom: 55px;right: 260px;}
.divider-blue-inner{display: inline-block;vertical-align: top;margin-top: -1px;}
.pagetitle{font-family: 'Patua One', cursive;font-size: 90px;color: #fff;line-height: 1;margin-bottom: 15px;text-shadow: 0px 3px 0px rgba(0,0,0,0.8);}
/*Breadcrumb CSS End*/

/*Blog Details Page CSS Start*/
.divider-yellow-blog{width: 100%;display: block;}
.divider-yellow-blog img.dividerfrombottom{overflow: visible;transform: rotate3d(0, 1, 0, 180deg);}
.blog-single-title .date {color: #999; font-size: 14px; }
.blog-single-title {margin-bottom: 20px; }
.comments-area textarea,
.comments-area p.comment-form-author input,
.comments-area p.comment-form-email input{display: block; width: 100%; height: auto; padding: 12px 15px; color: #000 !important; background-color: #fff; background-image: none; border: 1px solid transparent; border-radius: 0px 10px 10px 10px; -webkit-border-radius: 0px 10px 10px 10px; -moz-border-radius: 0px 10px 10px 10px; -ms-border-radius: 0px 10px 10px 10px; box-shadow: none; font-family: 'Raleway', sans-serif; }
.comments-area p.comment-form-author input:focus,
.comments-area p.comment-form-email input:focus,
.comments-area textarea:focus{background-color: #fff;border: 1px solid #e3ba15;}
.comments-area .comment-form p.comment-form-author{margin-right: 2%; float: left;width: 48%;}
.comments-area .comment-form p.comment-form-email{float: right;width: 48%;}
.comments-area p.comment-form-cookies-consent{clear: both;}
.comments-area  p.comment-form-cookies-consent label {display: block; margin-left: 20px; line-height: 19px; font-weight: 500}
.comments-area  p.comment-form-cookies-consent input {float: left; margin-top: 3px; }
.comments-area p.form-submit{display: none;}
.comments-area .form-comment-submit{margin-top: 10px;}
.blog-single-main .comments-area > ol{padding-left:0px;margin:30px 0px;counter-reset: none; list-style: none !important;}
.blog-single-main .comments-area > ol li::before { content: none;counter-increment: none;}
.blog-single-main .comments-area > ol > li ol li, .comments-area > ol > li {list-style: outside none none;margin-bottom: 20px;}
.blog-single-main .comments-area > ol > li {background: transparent none repeat scroll 0 0;border-bottom: 1px solid #e3ba15;list-style: outside none none; padding:0 0 20px;}
.blog-single-main .comments-area > ol > li ol {padding-left: 50px;padding-top: 20px;}
.blog-single-main .comments-area .comment-author > img {margin-right: 10px;margin-bottom:10px;}
.blog-single-main .comments-area .comment-author b.fn,
.blog-single-main .comments-area .comment-author b.fn a {font-weight: 700;text-transform: capitalize;}
.blog-single-main .comments-area .comment-author b.fn,
.blog-single-main .comments-area .comment-author span.says {display: inline-block;margin: 5px 0 0;vertical-align: top;}
.blog-single-main .comments-area footer .comment-metadata a {color: #000;}
.blog-single-main .comments-area .comment-content p{margin:7px 0 7px 0;}
.blog-single-main .comments-area .reply a{font-weight:700;}
.blog-single-main .comments-area h2 small{display: inline-block;vertical-align: middle;margin-left: 10px;margin-bottom: 0px; font-weight: 700; font-size: 16px;}
.blog-single-main .comments-area ol li .comment-respond{margin-top: 20px;}
/* .blog-single-main .comments-area .comment-author{color: #fff;} */
.blog-single-main .comments-area ol li .comment-respond h3.comment-reply-title{text-transform: none; font-family: 'Raleway', sans-serif;font-size: 17px;font-weight: 500;color: #000}
.blog-single-main .comments-area .comment-respond h3.comment-reply-title small a{margin-left: 5px;font-family: 'Raleway', sans-serif;font-weight: 700}
/* .blog-single-main .comments-area .comment-respond h2.comment-reply-title small a,
.blog-single-main .comments-area .comment-content,
.blog-single-main .comments-area em.comment-awaiting-moderation{color: #fff;} */
.blog-single-main {background-color: #ffcc00;position: relative;padding:100px 0px 135px;margin-top: -50px;}
.blog-single-main h1{margin-bottom: 30px;}
.blog-single-main p{margin-bottom: 20px;}
.catagorieslist{width: 100%;margin:30px 0px 50px;}
.catagorieslist ul{display: flex;flex-wrap: wrap;width: 100%;}
.catagorieslist ul li::before{display: none;}
.catagorieslist ul li{padding: 0px;margin-right: 10px;margin-bottom: 10px;}
.catagorieslist ul li a{
    border:1px solid #231069;
    padding: 16px 30px 15px;
    font-size: 17px;
    text-align: center;
    display: inline-block;
    border-radius: 0px 10px 10px 10px;
    -webkit-border-radius: 0px 10px 10px 10px;
    -moz-border-radius: 0px 10px 10px 10px;
    -ms-border-radius: 0px 10px 10px 10px;
    color: #231069;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1;
    cursor: pointer;}
.catagorieslist ul li a:hover{background-color: #231069;color: #fff;}
.userauthor img{display: inline-block;vertical-align: middle;margin-right: 10px;border-radius: 50%;}
.author-cat{display: inline-block;vertical-align: middle;}
.userauthor{display: block;margin-bottom: 15px;}

/*Blog Details Page CSS End*/

/*Blog Page CSS Start*/
.bloglatestrow h1{line-height: 1;margin-bottom: 0px;letter-spacing: -0.8px;}
.bloglatestrow{position: relative;}
.bloglatestrow .divider-yellow-bottom{bottom: 50px;}
.bloglatestrow .pro-bottom-leaf{bottom:-30px; left: 67px;}
.latest-blog-bg {width: 100%;position: relative;z-index: 2;}
.latestBlogCon {padding: 0px;display: flex;flex-wrap: wrap;align-items: flex-start; justify-content: space-between;margin-bottom: 30px;}
.blogtitle{width: 80%;padding-right: 30px;}
.latestBlogCon small, .blog-listing-con span {margin-bottom: 5px; font-size: 14px;display: block;}
.blogcol{margin-bottom: 50px;}
.latestBlogCon .btn-theme{margin-top: 35px;}
.BlogImg{box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.45);}
.BlogImg a{overflow: hidden;display: block;}
.BlogImg a img{transition:all 0.3s ease-in;transform: scale(1);}
.BlogImg a:hover img{transform: scale(1.1);}
.bloglistingrow {background-color: #ffcc00;position: relative;padding:150px 0px 180px;margin-top: -50px;}
.bloglistingrow h2{font-size: 40px;}
.blogcol .BlogImg{margin-bottom: 25px;}
.blogcol{margin-bottom: 45px;}
.blogcol a.btn-link-arrow{color: #231069;}
.blogcol a.btn-link-arrow:hover{color: #e1000b;}
.bloglistingrow h3{font-size: 24px;}
.bloglistingrow h3 a{color: #000;}
.bloglistingrow h3 a:hover{color: #e1000b;}
.paginationcol a {width: 40px;height: 40px;line-height: 40px;display: inline-block;text-align: center;border: 1px solid #231069;border-radius: 50%;margin-right: 7px;color: #231069;}
.paginationcol a:hover{background: #231069;color: #fff;}
span.current {background: #231069;color: #fff;width: 40px;height: 40px;display: inline-block;text-align: center;line-height: 40px; border-radius: 50%;margin-right: 7px;}
/*Blog Page CSS End*/

/* Product listing */
.productlistingrow{position: relative;text-align: center;}
.productlistingrow .container > .row:first-child p:last-child{margin-bottom: 0px;}
.productlistingrow .pro-top-leaf{right: auto;left: 50px;top: -180px;}
.productlistingrow .prothumb{width: 100%;margin-bottom: 20px;}
.productlistingrow .prothumb::before{background-position: center;}
.productlistingrow .productitem h2{color: #000;transition: all 0.3s ease;margin-bottom: 0px;}
.productlistingrow .productitem{display: inline-block;vertical-align: top;}
.productlistingrow .productitem:hover h2{color: #e1000b;}
.productItem{margin-bottom: 100px;}
.catagoryrow{vertical-align: top;}
.catagoryrow .carousel-caption{top: 39%;text-align: left;}
.catagoryrow .divider-yellow-bottom{z-index: 1;}
.catagoryrow .lgtitle60{line-height: 45px;letter-spacing: -0.2px;}
.catagoryrow span{color: #fff;}
.catagoryrow span i{font-style: normal;color: #f59e07;display: block;}
.prodcutdetailModal{overflow: auto; -webkit-transition: right 0.5s ease;-o-transition: right 0.5s ease;transition: right 0.5s ease; position: fixed;z-index: 30; top: 0px;right: -100%;padding: 80px 0px; height: 100%;width: 100%;background: url(../images/products-detail-bg.webp) no-repeat center;}
.prodcutdetailModal.slide{right: 0px;}
.prodcutdetailModal .container{height: 100%;}
.prodcutdetailModal .row{min-height: 100%;}
.prodcutclose{position: fixed;right: 30px;top: 30px;display: none;z-index: 2;}
.prodcutdetailModal.slide .prodcutclose{display: inline-block;}
.prodcutclose a {color:#231069;display: flex;align-items: center;justify-content: center;width: 40px;height: 40px;border: 1px solid #231069;border-radius: 50%;}
.prodcutclose a:hover{background-color:#231069;color: #fff;}
.prodcutdetailModal .lgtitle70{margin-bottom: 50px;letter-spacing: -0.2px;}
.pricesizecol{margin-bottom: 50px;}
.pricesizecol span{color: #000;font-family: 'Caveat', cursive;font-weight: 700;font-size: 30px;}
.OpenProcut{overflow: hidden;}

/* contact page */
.contactdetailrow{padding: 0px 0px 220px;position: relative;text-align: center;}
.iconcontact{margin: 0 auto 20px; display: flex;justify-content: center;align-items: center;width: 100px;height: 100px;color: #231069;font-size: 24px;border: 2px solid #f59e07;border-radius: 50%;}
.contactdetailrow strong{display: block;}
.contactdetailrow a{color: #000;}
.contactdetailrow a:hover{color: #e1000b;}

/*contact form 7 success and error message*/
.wpcf7 form.sent .wpcf7-response-output, .wpcf7 form.spam .wpcf7-response-output {background: #dff0d8 !important; border: 1px solid #dff0d8 !important; margin: 30px 0 0; padding: 7px 15px; color: #155724;position: relative; z-index: 1;border-radius: 5px; font-size: 16px; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output , .wpcf7 form.spam .wpcf7-response-output {background: #f8d7da !important; border: 1px solid #e3ba15 !important; margin: 30px 0 0; padding: 7px 15px; color: #721c24; position: relative; z-index: 1;border-radius: 5px; font-size: 16px; }
form.invalid span.wpcf7-not-valid-tip {color: #e1000b; position: relative; text-align: left; font-size: 13px; font-weight: 500; }
/*contact form 7 success and error message*/

/*Dealership css*/
.dealershiprow{position: relative;padding-bottom: 270px;}
.careerrow .lgtitle60{line-height: 48px;}
.careersformrow{background-color: #ffcc00;padding: 100px 0px 70px;}
.careerpositionrow .lgtitle60 span{color: #fff;}
.careerpositionrow .lgtitle60 span i{color:#f59e07;display: block;}
.positionleaf{bottom: -35px;left: 104px;z-index: 1;}
.careerpositionrow{background: url(../images/careers-black-bg.webp) no-repeat left top;padding: 245px 0px;position: relative;margin-top: -50px;}
.card{border: none; border-bottom: 1px solid #fff;background-color: transparent;}
.card-header:first-child, .card-header, .card{border-radius: 0px;}
.card-header{border-bottom: none;background-color: transparent;padding: 47px 62px 47px 62px;}
.card-body{padding: 0px 0px 40px 62px;color: #fff;}
.card-header a{color: #f59e07;font-size: 24px;display: block;cursor: pointer;font-family: 'Patua One', cursive;font-weight:400;}
.card-header a.collapsed{color: #fff;}
.card-header a::before{border-radius: 50%;text-align: center;border: 1px solid #f59e07;line-height: 38px;width: 40px;
    height: 40px;color:#f59e07; content: "\f068";font-family: 'Font Awesome 5 Free';font-size:16px;font-weight: 900;
    position: absolute;left: 0px;top:42px;}
.card-header a.collapsed::before{content: "\f067";}
.card-header a:hover{color: #f59e07;}
.card-body h5{margin-bottom: 15px;}
.bulletcol {width: 47%;padding: 0px 15px;margin-bottom: 10px;}
.bulletcol strong{font-size: 18px;color: #f59e07;display: block;margin-bottom:15px;}
.card-body.list-item ul li::before{background-color: #f59e07;}
.card-body .btn-theme{background-color: transparent;border: 1px solid #fff;}
.card-body .btn-theme:hover{background-color: #f59e07;border: 1px solid #f59e07;}
.careerformsection{margin-bottom: 10px;}
.careerformsection .frmleafbottom{top: 80px;}
.divider-yellow-careers{width: 100%;display: block;}
.careersformrow .lgtitle60{margin-bottom: 50px;}
.uploadbox input[type="file"] {display: none; }
.uploadbox .form-control {color: #999 !important; border: 1px solid #fff; position: relative; }
.uploadbox .custom-file-upload::after {
    color: #231069;
    content: 'Choose File';
    font-size: 17px;
    font-weight: 600;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    right: 30px;
    position: absolute;
    outline: 0px;
    cursor: pointer;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
/* 404 page css*/
.errorpagerow{margin-bottom: 100px;color: #fff;min-height: 1050px;align-items: center;background-image: url(../images/errorpage-bg.webp);background-repeat: no-repeat;background-position: center;background-position: right top;}
.errorpagerow h1 {line-height: 40px; font-size: 50px;text-shadow: 0px 3px 0px rgba(87,20,58,0.8);margin-bottom: 0px;color: #fff}
.errorpagerow .lgtitle70{line-height: 40px; font-size: 40px; margin-bottom: 20px;}
.errorpagerow .lgtitle70 span{color: #f59e07;letter-spacing: -2px}
.error404 .footermain, .page-template-tpl-thankyou-page .footermain{padding-top:0px;}
.thankyou-main{padding: 250px 0px 150px;vertical-align: top;}
.smilyemoji{font-size: 70px;color: #e1000b;margin-bottom: 30px;}
.errorpagerow .row [class*="col-"]:last-child{margin-top: 50px;}


/* about us page */
.aboutcontentrow,.export-countryicon{margin-bottom: 130px;}
.aboutcontentrow .lgtitle60{line-height: 46px;margin-bottom: 20px;}
.aboutcontentrow .lgtitle60 span{margin-top: -10px;}
.aboutcontentrow .row{-webkit-box-align: center;-ms-flex-align: center;align-items: center;}
.aboutcontentrevese .row{-webkit-box-align: center;-ms-flex-align: center;align-items: center; -webkit-box-orient: horizontal;-webkit-box-direction: reverse;-ms-flex-direction: row-reverse;flex-direction: row-reverse;}
.aboutcontentrevese .row .lgtitle60{margin-bottom: 10px;}
.jointeamrow{background: url(../images/about-black-bg.webp) no-repeat top center;padding: 258px 0px 115px;text-align: center;}
.jointeamrow .lgtitle60 span{letter-spacing: -0.2px;color: #fff;}
.jointeamrow .lgtitle60 i {color: #f59e07;}
.jointeamrow .divider-yellow-bottom, .aboutproductrow .divider-yellow-bottom {transform: rotate3d(0, 1, 0, 180deg);}
/*.jointeamrow .row > [class*="col-"]:nth-child(2){margin-top: 200px;left: -40px;}*/
.jointeamrow .row > [class*="col-"]:nth-child(2){margin-top: 100px;}
.jointeamrow .row > [class*="col-"]:nth-child(3){margin-top: 25px;left: 0px;}
.jointeamrow .row > [class*="col-"]:nth-child(4){margin-top: 120px;left: 0px;}
.jointeamrow .row > [class*="col-"]:nth-child(5){margin-top: 20px;right: -70px;}
.jointeamrow .frmleaftop{top:80px;}
.aboutyellowbg {background-color: #ffcc00;padding: 100px 0px 40px;width: 100%;}
.aboutyellowbg .frmleaftop{left: 300px;top: -70px;}
.aboutyellorow{margin-bottom: 150px;}
.aboutyellorow .lgtitle60{margin-bottom: 20px;}
.aboutyellorow .divider-yellow-top{overflow: visible;}
.aboutyellorow .divider-yellow-top img.dividerfrombottom {transform: rotate3d(0, 1, 0, 180deg);}
.aboutyellorow .divider-yellow-top .frmleafbottom{right: 130px;top: 90px;}
.aboutyellowbg  .row [class*="col-"] i{margin-bottom: 15px;display: block;}
.aboutyellowbg  .row [class*="col-"] > [class*="col-"] p{font-size: 22px;}
.aboutproductrow{background: url(../images/about-black-bg.webp) no-repeat top center;padding: 275px 0px 285px;text-align: center;}
.aboutprodutitem{margin-bottom: 30px;}
.aboutproductrow .lgtitle60{margin-bottom: 50px;}
.aboutproductrow .lgtitle60 span{letter-spacing: -0.2px;color: #fff;}
.aboutproductrow .lgtitle60 i {color: #f59e07;}
.aboutproductrow .frmleaftop{top: 65px;left:70px;}
.aboutproductrow .row [class*="col-"] img{margin-bottom: -10px;}
.aboutrowvistar{margin-bottom: 90px;}
.grecaptcha-badge {display: none !important; }
.infrastructureslider{width: 100%;padding-bottom: 60px;}
.infrastructureslider .slick-slide{padding: 0px 15px;}
.infrastructureslider .slick-slide a{overflow: hidden;display: block;}
.infrastructureslider .slick-slide a img{transform: scale(1);transition: all 0.3s ease-in;}
.infrastructureslider .slick-slide a:hover img{transform: scale(1.1);transition: all 0.2s ease-in;}
.infrastructureslider .slick-dots{bottom: -35px;}
.infrastructureslider .slick-prev,
.infrastructureslider .slick-next{bottom: 0px; top: auto; transform: translate(0px);}
.infrastructureslider .slick-prev{left: 48.5%;transform: translateX(-50%);}
.infrastructureslider .slick-next{right: 48.5%;transform: translateX(50%);}
/*.requirementchkbox {width: 100%;padding:12px 30px;background-color: #fff;border-radius: 0px 10px 10px 10px;}*/
.requirementchkbox label{font-weight: 500;margin-bottom: 0px;}
.requirementchkbox span.wpcf7-list-item{vertical-align: middle;margin-left: 2em;}
.requirementchkbox span.wpcf7-list-item input[type="checkbox"]{margin-right: 5px;}
.exportproductviewrow .tab-content{text-align: center;padding-top: 0px;}
.exportproductviewrow .tab-content .prothumb{width: 100%;margin-bottom: 20px;}
.exportproductviewrow .tab-content .productItem h2{color: #000;}
/*.exportproductviewrow .productItem  a:hover .prothumb::before{opacity: 0;}*/
/*.exportproductviewrow .productItem  a:hover .prothumb img,
.exportproductviewrow .productItem  a .prothumb img{transform: translate(0px, 0px) !important;}*/
/*.exportproductviewrow .productItem  a{cursor: initial;}*/
.exp-prodcut-popup-slider .slick-dots{display: none;}
.exp-prodcut-popup-slider{text-align: center;padding:0px 70px 30px;}
.exportproductviewrow .prothumb::before {background-position: center;}
.tabtitlerow{margin-bottom: 80px;}
.exportproductviewrow .nav-tabs{border-bottom: none;justify-content: center;margin-bottom: 50px;}
.exportproductviewrow .nav-tabs .nav-link{position: relative; border: none;padding: 15px 30px 15px;font-size: 17px;color: #000000;font-weight: 600;
    letter-spacing: 1px;line-height: 1;text-transform: capitalize;margin: 0px 10px;background-color: #dedede;border-radius: 0px 10px 10px 10px;}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {border-color: transparent;}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active{ color: #fff;background-color: #231069;}
.exportproductviewrow {padding-bottom: 120px;}
.nav-tabs .nav-link.active::before{width: 0;position: absolute;content: '';height: 0;
bottom: -8px;left: 50%;transform: translateX(-50%);border-left: 8px solid transparent;
border-right: 8px solid transparent;border-top: 8px solid #231069;}
.productrequire{display: inline-block;width: 60%;vertical-align: top;}
.exportfrmrow .lgtitle60{line-height: 50px;}
.exp-prodcut-popup-slider .slick-prev,
.exp-prodcut-popup-slider .slick-next{border: 1px solid #fff; }
.exp-prodcut-popup-slider .slick-prev:hover,
.exp-prodcut-popup-slider .slick-next:hover {border: 1px solid #e1000b;}

.exp-prodcut-popup-slider .slick-prev:before,
.exp-prodcut-popup-slider .slick-next:before{color: #fff; }
.exp-prodcut-popup-slider .slick-prev:hover:before,
.exp-prodcut-popup-slider .slick-next:hover:before {opacity: 1; color: #fff;}




 .export-countryicon ul {display: flex;flex-wrap: wrap; justify-content:center; }
.export-countryicon ul li { display: flex; align-items: center; line-height: 1;margin: 0px 15px 15px 15px; }
.ec-img { margin-right: 10px;width:28px; }
.exportmap {
  margin-bottom: 50px;
}

/* custom animation */
@-webkit-keyframes pulse {
    0% {-webkit-transform: scale(0.9); transform: scale(0.9); }
    50% {-webkit-transform: scale(1.1); transform: scale(1.1); }
    100% {-webkit-transform: scale(0.9); transform: scale(0.9); }
  }

@keyframes pulse {
    0% {-webkit-transform: scale(0.9); -ms-transform: scale(0.9); transform: scale(0.9); }
    50% {-webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); }
    100% {-webkit-transform: scale(0.9); -ms-transform: scale(0.9); transform: scale(0.9); }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 1.7s;
    animation-duration: 1.7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both ;
}
@-webkit-keyframes spinner {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
  }
  @keyframes spinner {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
  }

@keyframes rev-ani-mouse{
    0% {top:-3px;}
    50% {top:1px;}
    100% {top:-3px;}
}
@keyframes sliderfadeInLeft {
    0% {opacity: 0;-webkit-transform: translateX(-1000px);-ms-transform: translateX(-1000px);transform: translateX(-1000px);}
    100% {opacity: 1;-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}
}
.sliderfadeInLeft {
    -webkit-animation-name: sliderfadeInLeft;
    animation-name: sliderfadeInLeft;

}
@keyframes sliderfadeInUp {
    0% {opacity: 0;-webkit-transform: translateY(100px);-ms-transform: translateY(100px);transform: translateY(100px);}
    100% {opacity: 1;-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}
}
.sliderfadeInUp {
    -webkit-animation-name: sliderfadeInUp;
    animation-name: sliderfadeInUp;
}

.animated {-webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both }
.animated.hinge {-webkit-animation-duration: 2s; animation-duration: 2s }
@-webkit-keyframes fadeIn {
    0% {opacity: 0; }
    100% {opacity: 1; }
}
@keyframes fadeIn {
    0% {opacity: 0 }
    100% {opacity: 1; }
}
.fadeIn {-webkit-animation-name: fadeIn; animation-name: fadeIn }

@-webkit-keyframes fadeInDown {
    0% {opacity: 0; -webkit-transform: translateY(-20px); transform: translateY(-20px); }
    100% {opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes fadeInDown {
    0% {opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
    100% {opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}
.fadeInDown {-webkit-animation-name: fadeInDown; animation-name: fadeInDown }

@-webkit-keyframes fadeInLeft {
    0% {opacity: 0; -webkit-transform: translateX(-20px); transform: translateX(-20px);}
    100% {opacity: 1; -webkit-transform: translateX(0); transform: translateX(0); }
}
@keyframes fadeInLeft {
    0% {opacity: 0; -webkit-transform: translateX(-20px); -ms-transform: translateX(-20px); transform: translateX(-20px); }
    100% {opacity: 1; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }
}
.fadeInLeft {-webkit-animation-name: fadeInLeft; animation-name: fadeInLeft; }

@-webkit-keyframes fadeInRight {
    0% {opacity: 0; -webkit-transform: translateX(20px); transform: translateX(20px); }
    100% {opacity: 1; -webkit-transform: translateX(0); transform: translateX(0); }
}
@keyframes fadeInRight {
    0% {opacity: 0; -webkit-transform: translateX(20px); -ms-transform: translateX(20px); transform: translateX(20px); }
    100% {opacity: 1; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }
}
.fadeInRight {-webkit-animation-name: fadeInRight; animation-name: fadeInRight; }
@-webkit-keyframes fadeInUp {
    0% {opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); }
    100% {opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes fadeInUp {
    0% {opacity: 0; -webkit-transform: translateY(20px); -ms-transform: translateY(20px); transform: translateY(20px); }
    100% {opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}
.fadeInUp {-webkit-animation-name: fadeInUp; animation-name: fadeInUp; }

@-webkit-keyframes slideInLeft {
  from {-webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); visibility: visible; opacity: 0; }
  to {-webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; }
}
@keyframes slideInLeft {
  from {-webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); visibility: visible; opacity: 0; }
  to {-webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; }
}
.slideInLeft {-webkit-animation-name: slideInLeft; animation-name: slideInLeft; }
@-webkit-keyframes slideInRight {
  from {-webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; opacity: 0; }
  to {-webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; }
}
@keyframes slideInRight {
  from {-webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); opacity: 0; visibility: visible; }
  to {-webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; }
}
.slideInRight {-webkit-animation-name: slideInRight; animation-name: slideInRight; }
@-webkit-keyframes zoomOut {
  from {opacity: 1;}
  50% {opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); }
  to {opacity: 0;}
}
@keyframes zoomOut {
  from {opacity: 1; }
  50% {opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); }
  to {opacity: 0;}
}

.zoomOut {-webkit-animation-name: zoomOut; animation-name: zoomOut; }
@-webkit-keyframes zoomIn {
  from {opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); }
  50% {opacity: 1;}
}
@keyframes zoomIn {
  from {opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); }
  50% {opacity: 1;}
}
.zoomIn {-webkit-animation-name: zoomIn; animation-name: zoomIn; }

