@charset "UTF-8";
/******************************************** fonts *********************************************/
@font-face {
  font-family: 'helveticalt';
  src: url('fonts/helveticalt.ttf') format('truetype');
}
@font-face {
  font-family: 'opensans-semi';
  src: url('fonts/OpenSans-Semibold.ttf') format('truetype');
}
@font-face {
  font-family: 'stmary';
  src: url('fonts/StMarie-Thin.otf');
}
/******************************************** common *********************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  background: white;
  position: relative;
}
div,
ul,
p,
section,
article {
  padding: 0;
  margin: 0;
}
ul {
  list-style: none;
}
img:active,
img:focus,
a:active,
a:focus {
  outline: none;
}
img {
  width: 100%;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: #000000;
}
p {
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}
h2 {
  font-size: 48px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 30px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 18px;
}
::-webkit-input-placeholder {
  color: #f1f1f1;
  font-weight: lighter;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #f1f1f1;
  font-weight: lighter;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #f1f1f1;
  font-weight: lighter;
}
:-ms-input-placeholder {
  color: #f1f1f1;
  font-weight: lighter;
}
fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid silver;
}
legend {
  display: block;
  width: auto;
  margin: 0 auto;
  border: none;
}
.ohidden {
  position: relative;
  overflow: hidden !important;
}
.nomargin {
  margin: 0 !important;
}
.noleftmargin {
  margin-left: 0 !important;
}
.norightmargin {
  margin-right: 0 !important;
}
.noborder {
  border: none !important;
}
.nopadding {
  padding: 0 !important;
}
.hidden {
  display: none !important;
}
.nothidden {
  display: block !important;
}
.inline-block {
  float: none !important;
  display: inline-block !important;
}
.textcenter {
  text-align: center !important;
}
.divcenter {
  margin-left: auto !important;
  margin-right: auto !important;
}
.floatleft {
  float: left;
}
.floatright {
  float: right;
}
/******************************************** variables *********************************************/
/******************************************** mixins *********************************************/
.capital {
  text-transform: uppercase;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
  -ms-appearance: textfield;
}
/******************************************** header *********************************************/
.navbar {
  background: #12000b;
  height: 103px;
  border: none;
  border-radius: 0;
  margin: 0;
}
.navbar-header {
  width: 35%;
  margin-left: 15px;
}
.head-logo {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 7px;
  display: table;
  width: 290px;
  float: right;
}
.head-logo .logo-img {
  float: left;
  width: 105px;
  height: 95px;
}
.head-logo h3 {
  font-size: 24px;
  color: white;
  font-family: 'helveticalt', sans-serif;
  font-weight: normal;
  margin-top: 33px;
  letter-spacing: 0;
}
nav {
  line-height: 70px;
  margin-top: 20px !important;
  width: 50%;
  margin-left: 10% !important;
}
nav a {
  font-size: 14px;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 23px;
}
nav a:last-of-type {
  margin-right: 0;
}
nav a:hover {
  color: #D94242;
}
nav a.active {
  color: #D94242;
  position: relative;
  font-weight: bold;
}
.navbar-toggle {
  border: none !important;
}
.navbar-toggle:hover,
.navbar-toggle:focus {
  background: none !important;
}
.owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  color: #bdc2c4;
}
.owl-nav .owl-prev {
  float: left;
  text-indent: -99999px;
  position: relative;
  margin-left: 4%;
}
.owl-nav .owl-prev:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  border-right: 6px solid #bdc2c4;
  border-top: 6px solid #bdc2c4;
  left: 6px;
  transform: rotate(-135deg);
}
.owl-nav .owl-next {
  float: right;
  text-indent: -99999px;
  position: relative;
  margin-right: 4%;
}
.owl-nav .owl-next:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  border-right: 6px solid #bdc2c4;
  border-top: 6px solid #bdc2c4;
  right: 6px;
  transform: rotate(45deg);
}
.owl-dots {
  display: inline-block !important;
  position: relative;
  bottom: 5vw;
}
.owl-controls .owl-dot {
  width: 10px;
  height: 10px;
  background: #a3a7a9;
  border-radius: 50%;
  float: left;
  margin: 0 10px;
}
.owl-controls .owl-dots .active {
  background: #68686a;
}
/*****hamburger icon*****/
.hamburglar {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -moz-transform: scale(0.5);
  margin: 0px auto;
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  top: -10px;
  right: 11px;
  /* background: #158fef;*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.burger-icon {
  position: absolute;
  padding: 20px 16px;
  height: 68px;
  width: 68px;
}
.burger-container {
  position: relative;
  height: 28px;
  width: 36px;
}
.burger-bun-top,
.burger-bun-bot,
.burger-filling {
  position: absolute;
  display: block;
  height: 4px;
  width: 36px;
  border-radius: 2px;
  background: #D94242;
}
.burger-bun-top {
  top: 0;
  -webkit-transform-origin: 34px 2px;
  -ms-transform-origin: 34px 2px;
  -moz-transform-origin: 34px 2px;
  transform-origin: 34px 2px;
}
.burger-bun-bot {
  bottom: 0;
  -webkit-transform-origin: 34px 2px;
  -ms-transform-origin: 34px 2px;
  -moz-transform-origin: 34px 2px;
  transform-origin: 34px 2px;
}
.burger-filling {
  top: 12px;
}
/*****hamburger icon end*****/
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: black;
  top: 0;
  left: 0;
  z-index: 5;
}
.loader img {
  width: 30%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
/******************************************** home *********************************************/
.banner .item {
  background: #E1E6EA;
}
.banner .item h4 {
  font-family: 'opensans-semi', sans-serif;
  color: #ad908b !important;
  line-height: 44px;
  font-size: 36px;
  width: 95%;
}
.banner .item h4 .word1 {
  color: #c61517 !important;
}
.banner .item h4 .word6 {
  color: #444444 !important;
}
.banner .item h4 .word6 .char11 {
  color: #ad908b !important;
}
.banner .item .banner-content {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 450px;
  height: 520px;
  margin: auto 0;
  margin-left: 59%;
}
.banner .item .banner-content .cont-details {
  margin: 30px 0;
  padding: 25px 0;
  border-bottom: 1px solid #dfe0e0;
  border-top: 1px solid #dfe0e0;
}
.banner .item .banner-content .cont-details p {
  position: relative;
  display: inline-block;
  margin: 0px 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}
.banner .item .banner-content .cont-details p span {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #7c7c7c;
  letter-spacing: 0.025em;
  margin-right: 7px;
}
.banner .item .banner-content .cont-details p span small {
  font-size: 14px;
  position: relative;
  bottom: 0px;
  margin-left: 3px;
}
.banner .item .banner-content .cont-details p:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  background: #D94242;
  border-radius: 50%;
  top: 17px;
  left: -12px;
}
.banner .item .banner-content > p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  width: 95% ;
  line-height: 25px;
  letter-spacing: 0.075em;
}
.banner .item .banner-content .view-button {
  width: 135px;
  height: 35px;
  background: #d94242;
  border-radius: 17px;
  margin: 35px 0;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  letter-spacing: 0.025em;
  padding: 8px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}
.banner .item .banner-content .view-button:hover {
  background: #B93939;
  cursor: pointer;
}
.banner .item .banner-content.first img {
  width: 196px;
  height: 93px;
}
.banner .item .banner-content.first .view-button {
  background: #d94242;
}
.banner .item .banner-content.first .view-button:hover {
  background: #B93939;
}
.banner .item .banner-content.second {
  height: 500px;
}
.banner .item .banner-content.second .view-button {
  background: #7fa729;
}
.banner .item .banner-content.second .view-button:hover {
  background: #678822;
}
.banner .item .banner-content.second h4 {
  color: #8c2e82 !important;
}
.banner .item .banner-content.second h4 .word1,
.banner .item .banner-content.second h4 .word6 {
  color: #8c2e82 !important;
}
.banner .item .banner-content.second h4 .word1 .char10,
.banner .item .banner-content.second h4 .word6 .char10 {
  color: #8c2e82 !important;
}
.banner .item .banner-content.second h4 .word4 {
  padding-right: 90px;
}
.banner .item .banner-content.second h6 {
  margin: 25px 0;
  font-family: 'opensans-semi', sans-serif;
  font-weight: 600;
}
.whoweare h1,
.whoweare h2,
.whoweare h3,
.whoweare p {
  text-align: center;
}
.whoweare h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  margin: 70px 0 20px;
}
.whoweare h1,
.whoweare h3 {
  font-size: 36px;
  line-height: 40px;
  color: #635a56;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  margin-bottom: 40px;
}
.whoweare p {
  line-height: 32px;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  letter-spacing: 0.025em;
  color: #282828;
  padding: 0 15px;
}
.whoweare fieldset a p {
  padding: 0;
}
.whoweare .legend {
  margin: 80px auto 60px;
  padding: 0 65px;
}
.whoweare .legend > div:first-of-type {
  padding-right: 30px;
}
.whoweare .legend > div:first-of-type img {
  margin: 0 10px;
  width: 188px;
  height: 107px;
}
.whoweare .legend > div:last-of-type {
  padding-left: 30px;
}
.whoweare .legend > div:last-of-type img {
  margin: 0 35px;
  width: 180px;
  height: 107px;
}
.whoweare .legend > div p {
  line-height: 24px;
  letter-spacing: 0.025em;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  margin: 20px 0;
}
.whoweare .legend > div p.readmore {
  color: #969696;
  margin: 20px auto 15px;
}
.whoweare .legend > div a {
  display: block;
  width: 101px;
  margin: 0 auto;
}
.lineup h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  text-align: center !important;
  position: relative;
}
.lineup h3:after {
  position: absolute;
  content: "";
  background: url('../img/sprite.png');
  background-repeat: no-repeat;
  background-position: -5px -93px;
  width: 51px;
  height: 15px;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.lineup .favprod {
  background: url('../img/choco-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  margin: 50px 0 0;
  padding: 0 5%;
  padding-bottom: 14%;
}
.lineup .favprod > div {
  margin-right: 0;
  margin-left: 0;
  margin-top: 120px;
}
.lineup .favprod .item-content {
  display: inline-block;
  float: left;
  width: 33.3%;
  position: relative;
}
.lineup .favprod .item-content .image-box {
  float: left;
}
.lineup .favprod .item-content .image-box img {
  width: 100%;
}
.lineup .favprod .item-content .image-box img:first-of-type {
  position: relative;
}
.lineup .favprod .item-content .image-box img:last-of-type {
  position: absolute;
  z-index: -1;
}
.lineup .favprod .item-content .detail-box {
  float: left;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50%;
}
.lineup .favprod .item-content .detail-box p:first-of-type {
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  letter-spacing: 0.005em;
  line-height: 14px;
  color: #edd0ea;
  text-transform: uppercase;
}
.lineup .favprod .item-content .detail-box p:last-of-type {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  line-height: 26px;
  color: #bababa;
  width: 80%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 78px;
  display: -webkit-box;
}
.lineup .favprod .item-content .detail-box h5 {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  color: white;
  letter-spacing: 0.005em;
  line-height: 30px;
  margin: 15px 0;
}
.lineup .favprod .item-content .detail-box .more-button {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #837025;
  width: 125px;
  height: 40px;
  border: 2px solid #837025;
  border-radius: 20px;
  text-align: center;
  padding-top: 7px;
  margin: 25px 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}
.lineup .favprod .item-content .detail-box .more-button:hover {
  background: white;
  cursor: pointer;
}
.lineup .favprod .item-content:nth-of-type(4) {
  clear: both;
}
.lineup .favprod .item-content:nth-of-type(n+4) {
  margin-top: 90px;
}
.lineup .favprod .item-content:nth-of-type(n+4) .detail-box {
  bottom: 20px;
}
.lineup .favprod .item-content:nth-of-type(1) .image-box img:last-of-type {
  left: -24px;
  bottom: 19px;
  z-index: -1;
  width: 120%;
}
.lineup .favprod .item-content:nth-of-type(2) .image-box img:last-of-type {
  bottom: -8px;
  left: -100px;
  z-index: -1;
  width: 150%;
}
.lineup .favprod .item-content:nth-of-type(3) .image-box img:last-of-type {
  width: 130%;
    left: -43px;
    bottom: 14px;
  z-index: -1;
}
.lineup .favprod .item-content:nth-of-type(4) .image-box img:last-of-type {
  z-index: -1;
  width: 120%;
  bottom: 40px;
  left: -10px;
}
.lineup .favprod .item-content:nth-of-type(5) .image-box img:last-of-type {
  z-index: -1;
  bottom: 3px;
  left: -83px;
  width: 150%;
}
.lineup .favprod .item-content:nth-of-type(6) .image-box img:last-of-type {
  z-index: -1;
  bottom: 38px;
  left: 39px;
  width: 85%;
}
.latest-prod h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  text-align: center !important;
  margin-top: 0;
  margin-bottom: 20px;
}
.latest-prod h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  color: #635a56;
  position: relative;
  margin-bottom: 20px;
  text-align: center !important;
}
.latest-prod h6:after {
  position: absolute;
  content: "";
  background: url('../img/sprite.png');
  background-repeat: no-repeat;
  background-position: -5px -93px;
  width: 51px;
  height: 15px;
  bottom: -35px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 3;
}
.latest-prod > div {
  margin: 55px 0 0;
  text-align: center;
  position: relative;
}
.latest-prod > div:after {
  position: absolute;
  content: "";
  height: 260px;
  width: 1px;
  background: #c2c2c2;
  top: 45px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1;
  display: inline-block;
}
.latest-prod > div h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  color: #6c1944;
  margin: 15px 0;
}
.latest-prod > div h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  color: #635a56;
  margin: 20px 0;
}
.latest-prod > div p {
  line-height: 26px;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  width: 85%;
  margin: 0 auto;
}
.latest-prod > div .owl-carousel {
  width: 50%;
  float: left;
}
.latest-prod > div .owl-carousel .owl-dots {
  display: none !important;
}
.latest-prod > div .owl-carousel .owl-nav {
  position: relative;
  width: 85px;
  margin: 0 auto;
  margin-top: 20px;
}
.latest-prod > div .owl-carousel .owl-nav .owl-prev,
.latest-prod > div .owl-carousel .owl-nav .owl-next {
  background: url('../img/sprite.png');
  background-repeat: no-repeat;
  background-position: -4px -115px;
  width: 35px;
  height: 35px;
  margin: 0;
  text-indent: 0;
  font-family: 'stmary', sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #353535;
  line-height: 32px;
}
.latest-prod > div .owl-carousel .owl-nav .owl-prev:after,
.latest-prod > div .owl-carousel .owl-nav .owl-next:after {
  display: none;
}
.latest-prod > div .owl-carousel .owl-nav .owl-next {
  margin-left: 15px;
}
/******************************************** about *********************************************/
.about-pg .about-head {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 80px;
  padding: 0 15px;
}
.about-pg .about-head > div {
  padding: 0;
}
.about-pg .about-head > div:first-of-type {
  transform: translate(0, 15%);
}
.about-pg .about-head h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  margin-top: 75px;
  margin-bottom: 0;
  margin-left: 8px;
}
.about-pg .about-head h2,
.about-pg .about-head h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  margin: 0;
  margin-bottom: 30px;
  letter-spacing: 0;
  font-size: 48px;
}
.about-pg .about-head p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 34px;
}
.about-pg .vision {
  margin: 0;
  padding: 50px 0 55px;
  background: #fafafa;
}
.about-pg .vision > div {
  padding: 0 65px;
  position: relative;
}
.about-pg .vision > div:first-of-type:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 190px;
  background: #a1a1a1;
  top: 40%;
  right: 0;
}
.about-pg .vision img {
  width: 165px;
  height: 102px;
  display: table;
  margin: 0 auto;
}
.about-pg .vision h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 200;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 35px;
}
.about-pg .vision p {
  letter-spacing: 0.075em;
  line-height: 36px;
  text-align: justify;
  text-align-last: center;
  -moz-text-align-last: center;
}
.about-pg .manage-team {
  position: relative;
}
.about-pg .manage-team:before {
  position: absolute;
  content: "";
  width: 220px;
  height: 220px;
  background: url('../img/choco-about.png');
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -80px;
}
.about-pg .manage-team h4 {
  margin: 60px 0 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 200;
  text-align: center;
}
.about-pg .manage-team > div {
  background: #282828;
  padding: 75px 0 65px;
  margin: 0;
}
.about-pg .manage-team > div > div {
  padding: 0;
}
.about-pg .manage-team > div > div > div > div {
  width: 190px;
  height: 190px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
}
.about-pg .manage-team > div > div > div p {
  text-align: center;
  margin: 5px 0;
}
.about-pg .manage-team > div > div > div p:first-of-type {
  font-size: 16px;
  color: #c4c4c4;
  margin-top: 15px;
}
.about-pg .manage-team > div > div > div p:last-of-type {
  color: #d65b65;
  margin-bottom: 0;
}
.about-pg .lat-prods {
  margin-top: 80px;
}
.about-pg .lat-prods h6,
.about-pg .lat-prods h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  text-align: center;
  margin: 0;
}
.about-pg .lat-prods h6 {
  color: #5c3e5d;
  line-height: 18px;
}
.about-pg .lat-prods h4 {
  line-height: 30px;
  margin-top: 10px;
}
.about-pg .lat-prods p {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  line-height: 32px;
  letter-spacing: 0.075em;
  margin: 30px 15px 40px;
  text-align: center;
  color: #282828;
}
.about-pg .lat-prods .lists {
  margin: 0;
}
.about-pg .lat-prods .lists > div .owl-item > div > div {
  width: 220px;
  height: 220px;
  padding: 15px;
  margin: 0 auto;
  border: 1px solid #c2c2c2;
}
.about-pg .lat-prods .lists > div .owl-item > div p {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #828282;
  margin: 20px 0 10px 0 !important;
}
.about-pg .lat-prods .lists > div img {
  width: auto;
  height: 100%;
  margin: 0 auto;
  display: table;
}
.about-pg .lat-prods .lists > div .owl-nav {
  position: relative;
  width: 85px;
  margin: 0 auto;
  margin-top: 20px;
}
.about-pg .lat-prods .lists > div .owl-nav .owl-prev,
.about-pg .lat-prods .lists > div .owl-nav .owl-next {
  background: url('../img/sprite.png');
  background-repeat: no-repeat;
  background-position: -4px -115px;
  width: 35px;
  height: 35px;
  margin: 0;
  text-indent: 0;
  font-family: 'stmary', sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #353535;
  line-height: 32px;
}
.about-pg .lat-prods .lists > div .owl-nav .owl-prev:after,
.about-pg .lat-prods .lists > div .owl-nav .owl-next:after {
  display: none;
}
.about-pg .lat-prods .lists > div .owl-nav .owl-next {
  margin-left: 15px;
}
/******************************************** Products *********************************************/
.prod-pg {
  margin-top: 50px;
  -webkit-filter: blur(0px);
  transition: -webkit-filter 0.3s linear;
}
.prod-pg h5,
.prod-pg h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  line-height: 24px;
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}
.prod-pg .nav-tabs {
  border: none;
  border-bottom: 1px solid #7d7d7d !important;
}
.prod-pg .nav-tabs li {
  width: 33.33%;
  margin: 0;
  position: relative;
}
.prod-pg .nav-tabs li:first-of-type:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 70px;
  background: #b1b1b1;
  top: 26px;
  right: 0;
}

.prod-pg #momami-tab:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 70px;
    background: #b1b1b1;
    top: 26px;

}
.prod-pg .nav-tabs li img {
  margin: 0 auto;
  display: table;
}
.prod-pg .nav-tabs li a {
  border: none !important;
  padding: 0;
  display: table;
  margin: 0 auto;
}
.prod-pg .nav-tabs li a:hover,
.prod-pg .nav-tabs li a:focus {
  background: none;
  cursor: pointer;
}
.prod-pg .nav-tabs li a > div {
  width: 190px;
  height: 100px;
  margin: 0 auto;
}
.prod-pg .nav-tabs li p {
  text-align: center;
  padding: 35px 0 40px;
  margin-top: 0;
}
.prod-pg .nav-tabs li.active:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: white;
  border-right: 1px solid #7f7f7f;
  border-bottom: 1px solid #7f7f7f;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(45deg);
  bottom: -11px;
}
.prod-pg p {
  text-align: center;
  color: #858585;
  margin-top: 25px;
}
.prod-pg p a {
  color: #858585;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}
.prod-pg p a:hover {
  color: black;
}
.prod-pg p span {
  margin: 0 15px;
}
.prod-pg .tab-content .row {
  margin: 0;
  margin-top: 30px;
}
.prod-pg .tab-content .row > div {
  padding: 0 15px;
  margin-top: 50px;
  position: relative;
}
.prod-pg .tab-content .row > div:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url('../img/sprite.png');
  background-repeat: no-repeat;
  background-position: 1px -231px;
  background-color: #bf2491;
  bottom: 0;
  right: 15px;
  z-index: 2;
}
.prod-pg .tab-content .row > div .image {
  position: relative;
  background: white;
}
.prod-pg .tab-content .row > div .content {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(20, 0, 0, 0.8);
  bottom: 0;
  right: 0;
  z-index: 1;
}
.prod-pg .tab-content .row > div .content > div {
  position: relative;
  padding: 0 35px;
  display: table;
  height: 100%;
}
.prod-pg .tab-content .row > div .content > div > div {
  display: table-cell;
  vertical-align: middle;
}
.prod-pg .tab-content .row > div .content > div h6 {
  letter-spacing: 0.1em;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  margin: 0;
  color: #d149a6;
  text-align: center;
}
.prod-pg .tab-content .row > div .content > div h6:first-of-type {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  padding-bottom: 20px;
  border-bottom: 1px solid white;
}
.prod-pg .tab-content .row > div .content > div span h6 {
  border: none !important;
  padding-top: 25px;
  border-top: 1px solid white !important;
  cursor: pointer;
}
.prod-pg .tab-content .row > div .content > div p {
  text-align: left;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  letter-spacing: 0.1em;
  line-height: 30px;
  margin: 10px 0;
  padding-left: 16px;
  position: relative;
}
.prod-pg .tab-content .row > div .content > div p:first-of-type {
  margin-top: 10px;
}
.prod-pg .tab-content .row > div .content > div p:last-of-type {
  margin-bottom: 20px;
}
.prod-pg .tab-content .row > div .content > div p:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 6px solid #d149a6;
  border-bottom: 5px solid transparent;
  left: 0;
  top: 10px;
}
.prod-pg .tab-content .momami-prod h5,
.prod-pg .tab-content .karak-prod h5,
.prod-pg .tab-content .epsa-prod h5 {
  font-size: 20px;
  font-weight: normal;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  text-align: left;
  margin-bottom: 15px;
  margin-top: 0;
}
.prod-pg .tab-content .momami-prod h6 {
  color: #E2CB74 !important;
}
.prod-pg .tab-content .momami-prod .content > div p:before {
  border-left-color: #E2CB74 !important;
}
.prod-pg .tab-content .momami-prod > div:after {
  background-color: #E2CB74 !important;
}
.modal-content,
.modal-content1,
.modal-content2
 {
  border: none;
  box-shadow: none;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 12;
  background: rgba(0, 0, 0, 0.8);
  margin: auto auto;
  height: 450px !important;
  width: 900px !important;
  border-radius: 0;
}
.modal-body-content {
  width: 900px !important;
  position: absolute !important;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 260px;
  padding: 0 50px 0 20px;
}
.modal-body-content h6 {
  letter-spacing: 0.1em;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  margin: 0;
  color: #d149a6;
  text-align: left;
  padding-bottom: 15px;
  margin-top: 20px;
  border-bottom: 1px solid white;
}
.modal-body-content img {
  border: 1px solid white;
}
.modal-body-content h5 {
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0;
}
.modal-body-content p {
  text-align: left;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  letter-spacing: 0.1em;
  line-height: 26px;
  margin: 10px 0;
  padding-left: 16px;
  position: relative;
}
.modal-body-content p:first-of-type {
  margin-top: 10px;
}
.modal-body-content p:last-of-type {
  margin-bottom: 20px;
}
.modal-body-content p:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 6px solid #d149a6;
  border-bottom: 5px solid transparent;
  left: 0;
  top: 6px;
}
.modal-body-content .owl-nav {
  position: absolute;
  width: 75px;
  bottom: -30px;
  right: 20px;
  top: auto;
}
.modal-body-content .owl-prev {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #6b3054;
  float: left;
}
.modal-body-content .owl-prev:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 3px solid #FFFFFF;
  border-top: 3px solid #FFFFFF;
  left: 11px;
  transform: rotate(-135deg);
  top: 9px;
}
.modal-body-content .owl-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #6b3054;
  float: right;
}
.modal-body-content .owl-next:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 3px solid #FFFFFF;
  border-top: 3px solid #FFFFFF;
  left: 8px;
  transform: rotate(45deg);
  top: 9px;
}
.close-button {
  position: absolute;
  font-size: 20px;
  color: white;
  top: 20px;
  right: 25px;
  font-weight: lighter;
  width: 30px;
  height: 35px;
  padding: 5px 5px;
  cursor: pointer;
  z-index: 10;
}
.close-button:after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-right: 2px solid #FFFFFF;
  border-top: 2px solid #FFFFFF;
  left: 17px;
  transform: rotate(-135deg);
  top: 9px;
}
.close-button:before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  left: 0px;
  transform: rotate(-135deg);
  top: 9px;
}
.modal-overlay {
  opacity: 1;
  display: none;
  filter: alpha(opacity=0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: none;
}
.modal-content .modal-body-content p:before {
  border-left-color: #E2CB74 !important;
}
.modal-content .modal-body-content h6 {
  color: #E2CB74 !important;
}
.modal-content .modal-body-content .owl-nav .owl-prev,
.modal-content .modal-body-content .owl-nav .owl-next {
  background: #BDA138 !important;
}
/******************************************** brands *********************************************/
.brand-pg {
  margin-top: 50px;
}
.brand-pg h5,
.brand-pg h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  line-height: 40px;
  text-align: center;
  font-size: 24px;
}
.brand-pg .momami-section .momami-img,
.brand-pg .karak-section .momami-img,
.brand-pg .momami-section .karak-img,
.brand-pg .karak-section .karak-img,
.brand-pg .epsa-section .epsa-img
.brand-pg .epsa-section .karak-img
.brand-pg .epsa-section .momami-img
.brand-pg .karak-section .epsa-img
.brand-pg .momami-section .epsa-img
 {
  margin: 35px auto 0;
  width: 100%;
}
.brand-pg .momami-section .momami-img fieldset,
.brand-pg .karak-section .momami-img fieldset,
.brand-pg .momami-section .karak-img fieldset,
.brand-pg .karak-section .karak-img fieldset {
  border: none;
  border-top: 2px solid #b7b7b7;
  width: 60%;
  margin: 0 auto;
}
.brand-pg .momami-section .momami-img fieldset legend,
.brand-pg .karak-section .momami-img fieldset legend,
.brand-pg .momami-section .karak-img fieldset legend,
.brand-pg .karak-section .karak-img fieldset legend {
  width: 253px;
  height: 115px;
  padding: 0 35px;
}
.brand-pg .momami-section .momami-img fieldset img,
.brand-pg .karak-section .momami-img fieldset img,
.brand-pg .momami-section .karak-img fieldset img,
.brand-pg .karak-section .karak-img fieldset img {
  width: 100%;
}
.brand-pg .momami-section .momami-banner,
.brand-pg .karak-section .momami-banner,
.brand-pg .momami-section .karak-banner,
.brand-pg .karak-section .karak-banner {
  background: #ccc;
}
.brand-pg .momami-section h5,
.brand-pg .karak-section h5 {
  letter-spacing: 0.025em;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  margin: 40px 0 30px;
}
.brand-pg .momami-section p,
.brand-pg .karak-section p,
.brand-pg .epsa-section p{
  line-height: 32px;
  letter-spacing: 0.025em;
  margin-top: 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  text-align: justify;
  text-align-last: center;
  -moz-text-align-last: center;
}
.brand-pg .momami-section p span,
.brand-pg .karak-section p span,
.brand-pg .epsa-section p span {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}
.brand-pg .momami-section h4,
.brand-pg .karak-section h4,
.brand-pg .epsa-section h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  text-align: center;
  margin: 60px 0 40px;
}
.brand-pg .momami-section .social-logo,
.brand-pg .karak-section .social-logo,
.brand-pg .momami-section .social-logo1,
.brand-pg .karak-section .social-logo1 {
  width: 560px;
  margin: 0 auto;
}
.brand-pg .momami-section .social-logo > div,
.brand-pg .karak-section .social-logo > div,
.brand-pg .momami-section .social-logo1 > div,
.brand-pg .karak-section .social-logo1 > div {
  padding: 0 25px;
  position: relative;
}
.brand-pg .momami-section .social-logo > div:after,
.brand-pg .karak-section .social-logo > div:after,
.brand-pg .momami-section .social-logo1 > div:after,
.brand-pg .karak-section .social-logo1 > div:after {
  position: absolute;
  content: "";
  width: 1px;
  background: #cfcfcf;
  height: 25px;
  right: 0;
  top: 10%;
}
.brand-pg .momami-section .social-logo > div:last-of-type:after,
.brand-pg .karak-section .social-logo > div:last-of-type:after,
.brand-pg .momami-section .social-logo1 > div:last-of-type:after,
.brand-pg .karak-section .social-logo1 > div:last-of-type:after {
  display: none;
}
.brand-pg .momami-section .social-logo1,
.brand-pg .karak-section .social-logo1 {
  width: 440px;
}
.brand-pg .momami-section {
  margin-top: 120px;
}
/******************************************** contact *********************************************/
.contact-pg {
  margin: 0;
  padding: 0;
}
.contact-pg .contact-head {
  margin: 80px auto 80px;
  padding: 0;
}
.contact-pg .contact-head img {
  width: 135%;
  margin-left: -20%;
}
.contact-pg .contact-head h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  margin-top: 65px;
  margin-bottom: 0;
  margin-left: 8px;
}
.contact-pg .contact-head h2,
.contact-pg .contact-head h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  margin: 0;
  margin-bottom: 30px;
  letter-spacing: 0;
  font-size: 48px;
}
.contact-pg .contact-head p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 34px;
}
.contact-pg .site-contact label {
  color: #AF0606;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
}
.contact-pg .site-contact p {
  color: #039466;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  margin: 15px 0 0;
}
.contact-pg .form-section {
  background: url('../img/map.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #FBFBFB;
  padding: 80px 0;
}
.contact-pg .form-section .form-group {
  margin-bottom: 18px;
}
.contact-pg .form-section h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  margin: 0;
}
.contact-pg .form-section h5 {
  margin-top: 45px;
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
}
.contact-pg .form-section p {
  line-height: 30px;
  letter-spacing: 0.075em;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
}
.contact-pg .form-section p:first-of-type {
  margin: 25px 0 35px;
  line-height: 24px;
}
.contact-pg .form-section p:nth-of-type(even) {
  margin-top: 35px;
}
.contact-pg .form-section p span:first-of-type {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 18px;
}
.contact-pg .form-section input,
.contact-pg .form-section textarea {
  border-color: #7d7d7d;
  width: 100%;
  height: 53px;
  resize: none;
  color: #070707;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-size: 14px;
  padding-left: 25px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.contact-pg .form-section ::-webkit-input-placeholder {
  color: #070707;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-size: 14px;
}
.contact-pg .form-section :-moz-placeholder {
  /* Firefox 18- */
  color: #070707;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-size: 14px;
}
.contact-pg .form-section ::-moz-placeholder {
  /* Firefox 19+ */
  color: #070707;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-size: 14px;
}
.contact-pg .form-section :-ms-input-placeholder {
  color: #070707;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-size: 14px;
}
.contact-pg .form-section textarea {
  padding-top: 16px !important;
}
.contact-pg .form-section [placeholder]:focus::-webkit-input-placeholder {
  transition: opacity 0.5s ease;
  opacity: 0;
}
.contact-pg .form-section [placeholder]:focus::-moz-placeholder {
  transition: opacity 0.5s ease;
  opacity: 0;
}
.contact-pg .form-section [placeholder]:focus::-ms-input-placeholder {
  transition: opacity 0.5s ease;
  opacity: 0;
}
.contact-pg .form-section button {
  width: 165px;
  height: 55px;
  background: #e02861;
  margin-top: 30px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-size: 16px;
}
.contact-pg .form-section button:hover {
  background: #B92150;
}
.contact-pg .form-section > div > div {
  padding: 0;
}
.contact-pg .form-section > div > div:last-of-type {
  padding-left: 20px;
}
.contact-pg .form-section > div > div:last-of-type p {
  line-height: 30px;
}
.contact-pg .map-section {
  position: relative;
  background: #E1E1E1;
}
.contact-pg .map-section #map {
  width: 100%;
  height: 520px;
}
.contact-pg .map-section .map-header {
  height: 65px;
  position: absolute;
  background: rgba(64, 34, 56, 0.8);
  top: 0;
  width: 100%;
  display: table;
}
.contact-pg .map-section .map-header h5 {
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  position: relative;
}
.contact-pg .map-section .map-header h5 i {
  background: url('../img/sprite.png');
  background-repeat: no-repeat;
  background-position: -3px -262px;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 15px;
}
.contact-pg .lat-prods1 {
  margin-top: 90px;
}
.contact-pg .lat-prods1 h6,
.contact-pg .lat-prods1 h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  text-align: center;
  margin: 0;
}
.contact-pg .lat-prods1 h6 {
  color: #5c3e5d;
  line-height: 18px;
}
.contact-pg .lat-prods1 h4 {
  line-height: 30px;
  margin-top: 10px;
}
.contact-pg .lat-prods1 p {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  line-height: 32px;
  letter-spacing: 0.075em;
  margin: 30px 15px 40px;
  text-align: center;
  color: #282828;
}
.contact-pg .lat-prods1 .lists {
  margin: 0;
}
.contact-pg .lat-prods1 .lists > div .owl-item > div > div {
  width: 220px;
  height: 220px;
  padding: 15px;
  margin: 0 auto;
  border: 1px solid #c2c2c2;
}
.contact-pg .lat-prods1 .lists > div .owl-item > div p {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #828282;
  margin: 20px 0 10px 0 !important;
}
.contact-pg .lat-prods1 .lists > div img {
  width: auto;
  height: 100%;
  margin: 0 auto;
  display: table;
}
.contact-pg .lat-prods1 .lists > div .owl-nav {
  position: relative;
  width: 85px;
  margin: 0 auto;
  margin-top: 20px;
}
.contact-pg .lat-prods1 .lists > div .owl-nav .owl-prev,
.contact-pg .lat-prods1 .lists > div .owl-nav .owl-next {
  background: url('../img/sprite.png');
  background-repeat: no-repeat;
  background-position: -4px -115px;
  width: 35px;
  height: 35px;
  margin: 0;
  text-indent: 0;
  font-family: 'stmary', sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #353535;
  line-height: 32px;
}
.contact-pg .lat-prods1 .lists > div .owl-nav .owl-prev:after,
.contact-pg .lat-prods1 .lists > div .owl-nav .owl-next:after {
  display: none;
}
.contact-pg .lat-prods1 .lists > div .owl-nav .owl-next {
  margin-left: 15px;
}
/******************************************** footer *********************************************/
footer {
  background: url('../img/footer.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #27080E;
}
footer .footer-content {
  padding: 0;
  height: 432px;
  color: #f0f0f0;
  padding-top: 55px;
  position: relative;
  margin-top: 80px;
}
footer .footer-content h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  letter-spacing: 0.045em;
}
footer .footer-content .qlinks {
  width: 26%;
}
footer .footer-content .qlinks h6 {
  margin-bottom: 40px;
}
footer .footer-content .qlinks nav {
  margin: 0 !important;
  line-height: 0;
  width: 100%;
  padding-left: 15px;
}
footer .footer-content .qlinks nav a {
  line-height: 20px !important;
  display: table;
  color: #f0f0f0;
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  text-transform: none;
  margin: 20px 0;
  position: relative;
}
footer .footer-content .qlinks nav a.active:after {
  position: absolute;
  content: "";
  background: white;
  width: 5px;
  height: 5px;
  top: 6px;
  left: -14px;
  border-radius: 50%;
}
footer .footer-content .contact {
  width: 38%;
}
footer .footer-content .contact p {
  line-height: 30px;
  letter-spacing: 0.025em;
  width: 225px;
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  margin-top: 35px;
}
footer .footer-content .contact p:nth-of-type(2) {
  margin-top: 20px;
  letter-spacing: 0.005em;
}
footer .footer-content .contact p a {
  color: white;
}
footer .footer-content .connected {
  width: 36%;
}
footer .footer-content .connected p {
  line-height: 30px;
  letter-spacing: 0.025em;
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  margin-top: 35px;
}
footer .footer-content .connected form {
  display: inline-block;
}
footer .footer-content .connected form input {
  height: 50px;
  width: 285px;
  background: none;
  border: 1px solid #3f3c3d;
  border-right: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 15px;
  font-style: italic;
  font-family: 'Open Sans', sans-serif;
  color: #f1f1f1;
  float: left;
}
footer .footer-content .connected form input:focus {
  outline: none;
}
footer .footer-content .connected form .submit-button {
  width: 105px;
  height: 50px;
  background: #7c0445;
  border-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  float: left;
  font-style: italic;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  text-align: center;
  padding: 0px;
  color: #f1f1f1;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}
footer .footer-content .connected form .submit-button:hover {
  background: #630337;
}
footer .footer-content .connected .social {
  margin-top: 60px;
}
footer .footer-content .connected .social p {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.045em;
  float: left;
  margin-top: 0;
}
footer .footer-content .connected .social .fb-social,
footer .footer-content .connected .social .ut-social,
footer .footer-content .connected .social .tw-social {
  width: 25px;
  height: 25px;
  float: left;
  margin: 0 10px;
}
footer .footer-content .connected .social .fb-social {
  background: url('../img/sprite.png');
  background-repeat: no-repeat;
  background-position: -6px -155px;
  width: 25px;
  margin-left: 35px;
  margin-right: 0;
}
footer .footer-content .connected .social .ut-social {
  background: url('../img/sprite.png');
  background-repeat: no-repeat;
  background-position: -3px -180px;
}
footer .footer-content .connected .social .tw-social {
  background: url('../img/sprite.png');
  background-repeat: no-repeat;
  background-position: -3px -204px;
}
footer .footer-content .copyright {
  position: absolute;
  bottom: 20px;
  width: 100%;
  clear: both;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  color: #868686;
  padding: 0 15px;
}
footer .footer-content .copyright p {
  float: left;
  color: #868686;
}
footer .footer-content .copyright a {
  float: right;
  color: #868686;
}
footer .footer-content .copyright a:first-of-type {
  margin-left: 5px;
  width: auto;
  float: right;
}
footer .footer-content .copyright a p {
  float: right;
}
.main-menu {
  margin-top: 50px;
}
.navbar-collapse .burger-icon {
  display: none;
}
/******************************************** media *********************************************/
@media screen and (min-width: 768px) {
  .main-menu {
    margin-top: 0;
  }
  .navbar-collapse {
    transform: initial !important;
  }
}
@media screen and (max-width: 1560px) {
  .lineup .favprod {
    padding: 0;
    height: auto;
    padding-bottom: 150px;
  }
  .lineup .favprod .detail-box {
    left: 47% !important;
    width: 53% !important;
  }
  .lineup .favprod .detail-box h5 {
    font-size: 22px;
    margin: 10px 0 !important;
  }
  .lineup .favprod .detail-box .more-button {
    margin: 15px 0 !important;
  }
}
@media screen and (max-width: 1366px) {
  .navbar-header {
    width: 25%;
  }
  nav {
    width: 60%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .loader img {
    width: 50%;
  }
  .owl-nav .owl-prev {
    margin-left: 2%;
  }
  .owl-nav .owl-next {
    margin-right: 2%;
  }
  nav {
    width: 60%;
    margin-left: 0 !important;
  }
  nav a {
    margin: 0 10px;
  }
  .navbar-header {
    width: auto;
  }
  .navbar-nav {
    float: right !important;
  }
  footer .footer-content .connected form input {
    width: 210px;
  }
  .banner-content {
    height: 300px !important;
    width: 400px !important;
  }
  .banner-content.second {
    height: 300px !important;
  }
  .banner-content.second h4 .word4 {
    padding-right: 0px !important;
  }
  .banner-content.first img {
    display: none !important;
  }
  .banner-content > p {
    display: none;
  }
  .banner-content .cont-details {
    margin: 10px 0 !important;
    padding: 10px 0 !important;
  }
  .banner-content .view-button {
    margin: 15px 0 !important;
  }
  .banner-content h4 {
    font-size: 32px;
  }
  .banner-content.first h4 {
    margin-top: 10px;
  }
  .whoweare h2 {
    margin-top: 10px;
  }
  .lineup .favprod .item-content .detail-box h5 {
    font-size: 20px;
    line-height: 24px;
    margin: 10px 0;
  }
  .lineup .favprod .item-content .detail-box .more-button {
    margin: 10px 0 !important;
    width: 100px;
    height: 30px;
    padding-top: 3px;
  }
  .lineup .favprod .item-content .detail-box p:last-of-type {
    line-height: 20px;
    height: 56px;
  }
  .prod-pg .tab-content .row > div .content > div {
    padding: 0 20px;
  }
  .prod-pg .tab-content .row > div .content > div h6:first-of-type {
    padding-bottom: 15px;
  }
  .prod-pg .tab-content .row > div .content > div h6:last-of-type {
    padding-top: 15px;
  }
  .prod-pg .tab-content .row > div .content > div p:first-of-type {
    margin-top: 15px;
  }
  .prod-pg .tab-content .row > div .content > div p:last-of-type {
    margin-bottom: 15px;
  }
  .prod-pg .tab-content .momami-prod h5,
  .prod-pg .tab-content .karak-prod h5 {
    font-size: 18px;
  }
  .prod-pg .nav-tabs li a > div {
    width: 120px;
    height: 60px;
  }
  .about-pg .about-head {
    margin-top: 60px;
  }
  .about-pg .about-head h5 {
    margin-top: 0;
  }
  .about-pg .vision {
    padding: 35px 0 40px;
  }
  .about-pg .vision h4 {
    margin-top: 20px;
  }
  .about-pg .vision > div {
    padding: 0 35px;
  }
  .about-pg .manage-team > div > div > div > div {
    width: 150px;
    height: 150px;
  }
  .about-pg .lat-prods {
    margin-top: 70px;
  }
  .about-pg .lat-prods p {
    margin-bottom: 40px;
  }
  .about-pg .lat-prods .lists > div .owl-item > div > div {
    width: 175px !important;
    height: 175px !important;
  }
  .contact-pg .lat-prods1 {
    margin-top: 70px;
  }
  .contact-pg .lat-prods1 p {
    margin-bottom: 40px;
  }
  .contact-pg .lat-prods1 .lists > div .owl-item > div > div {
    width: 175px;
    height: 175px;
  }
  .contact-pg .contact-head {
    margin: 75px auto 30px;
  }
  .contact-pg .contact-head h5 {
    margin-top: 40px !important;
  }
  .contact-pg .form-section {
    padding: 40px 0;
  }
  .contact-pg .map-section #map {
    height: 450px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .loader img {
    width: 50%;
  }
  .head-logo {
    width: 100px;
  }
  .head-logo h3 {
    display: none;
  }
  nav {
    width: auto;
    margin-left: 0 !important;
  }
  nav a {
    margin: 0 10px;
  }
  .navbar-header {
    width: auto;
  }
  .navbar-nav {
    float: right !important;
  }
  footer .footer-content {
    width: 100%;
  }
  footer .footer-content .qlinks {
    width: 22%;
  }
  footer .footer-content .contact {
    width: 34%;
  }
  footer .footer-content .connected {
    width: 44%;
  }
  footer .footer-content .connected form {
    width: 100%;
  }
  footer .footer-content .connected form input {
    width: 70%;
  }
  footer .footer-content .connected form .submit-button {
    width: 90px;
  }
  footer .footer-content .connected .social {
    margin-top: 40px;
  }
  footer .footer-content .connected .social .fb-social {
    margin-left: 10px;
  }
  .banner-content {
    width: 260px !important;
    height: 260px !important;
    margin: auto 0;
    margin-left: 61%;
  }
  .banner-content .cont-details {
    display: none !important;
  }
  .banner-content p {
    display: none !important;
  }
  .banner-content h4 {
    font-size: 32px !important;
  }
  .banner-content h4 .word4 {
    padding: 0 !important;
  }
  .banner-content.first img {
    display: none !important;
  }
  .banner-content.second {
    height: 260px !important;
  }
  .banner-content.second h4 .word4 {
    padding-right: 0px !important;
  }
  .banner-content.second h6 {
    display: none;
  }
  .owl-nav .owl-prev:after {
    width: 15px;
    height: 15px;
    border-right: 4px solid #bdc2c4;
    border-top: 4px solid #bdc2c4;
  }
  .owl-nav .owl-next:after {
    width: 15px;
    height: 15px;
    border-right: 4px solid #bdc2c4;
    border-top: 4px solid #bdc2c4;
  }
  .whoweare h2 {
    margin-top: 10px;
    font-size: 36px;
  }
  .whoweare h1,
  .whoweare h3 {
    margin-bottom: 20px;
    font-size: 30px;
  }
  .whoweare .legend {
    padding: 0 !important;
    margin: 40px auto;
  }
  .whoweare .legend > div p {
    min-height: 120px;
  }
  .whoweare .legend > div a p {
    min-height: 0;
  }
  .lineup .favprod {
    height: auto;
    margin: 20px 0;
    padding-bottom: 0;
  }
  .lineup .favprod > div {
    padding-bottom: 200px;
  }
  .lineup .favprod .item-content {
    width: 50%;
  }
  .lineup .favprod .item-content:nth-of-type(even) {
    float: none;
  }
  .lineup .favprod .item-content .detail-box h5 {
    margin: 5px 0;
    font-size: 20px;
    line-height: 24px;
  }
  .lineup .favprod .item-content:nth-of-type(n+3) {
    margin-top: 70px;
    clear: both;
  }
  .lineup .favprod .item-content:nth-of-type(n+3) .detail-box {
    bottom: 0;
  }
  .prod-pg {
    margin-top: 15px;
  }
  .prod-pg .tab-content .row > div .content > div {
    padding: 0 10px;
    bottom: 5px;
  }
  .prod-pg .tab-content .row > div .content > div h6:first-of-type {
    padding-bottom: 10px;
  }
  .prod-pg .tab-content .row > div .content > div h6:last-of-type {
    padding-top: 10px;
  }
  .prod-pg .tab-content .row > div .content > div p {
    line-height: 18px;
    margin: 10px 0;
  }
  .prod-pg .tab-content .row > div .content > div p:first-of-type {
    margin-top: 10px;
  }
  .prod-pg .tab-content .row > div .content > div p:last-of-type {
    margin-bottom: 10px;
  }
  .prod-pg .nav-tabs li a > div {
    width: 120px;
    height: 60px;
  }
  .about-pg .about-head {
    margin-bottom: 40px;
  }
  .about-pg .about-head h5 {
    margin-top: 0;
    text-align: center;
  }
  .about-pg .about-head h2,
  .about-pg .about-head h1 {
    margin-bottom: 10px;
    text-align: center;
  }
  .about-pg .about-head p {
    line-height: 30px;
    text-align: center;
  }
  .about-pg .about-head > div {
    width: 100%;
  }
  .about-pg .about-head > div:first-of-type {
    height: 180px;
    margin-bottom: 40px;
  }
  .about-pg .about-head > div:first-of-type img {
    width: auto;
    height: 100%;
    display: table;
    margin: 0 auto;
  }
  .about-pg .vision {
    padding: 20px 0 30px;
  }
  .about-pg .vision h4 {
    margin: 15px 0;
  }
  .about-pg .vision p {
    line-height: 30px;
  }
  .about-pg .vision img {
    width: 120px;
    height: 70px;
  }
  .about-pg .vision > div {
    padding: 0 25px;
  }
  .about-pg .vision > div:first-of-type:after {
    height: 160px;
  }
  .about-pg .manage-team:before {
    width: 150px;
    height: 150px;
    top: -50px;
  }
  .about-pg .manage-team h4 {
    margin: 40px 0 20px;
  }
  .about-pg .manage-team > div {
    padding: 40px 0 30px;
  }
  .about-pg .manage-team > div > div > div > div {
    width: 130px;
    height: 130px;
  }
  .about-pg .lat-prods {
    margin-top: 35px;
  }
  .about-pg .lat-prods p {
    margin: 15px 15px 25px;
    line-height: 28px;
  }
  .about-pg .lat-prods .lists > div .owl-item > div > div {
    width: 140px;
    height: 140px;
  }
  .brand-pg {
    margin-top: 15px;
  }
  .brand-pg h5,
  .brand-pg h1 {
    margin-bottom: 30px;
  }
  .brand-pg .momami-section .momami-img,
  .brand-pg .karak-section .momami-img,
  .brand-pg .momami-section .karak-img,
  .brand-pg .karak-section .karak-img {
    margin: 20px auto 0;
  }
  .brand-pg .momami-section .momami-img fieldset legend,
  .brand-pg .karak-section .momami-img fieldset legend,
  .brand-pg .momami-section .karak-img fieldset legend,
  .brand-pg .karak-section .karak-img fieldset legend {
    width: 200px;
    height: 85px;
    padding: 0 25px;
  }
  .brand-pg .momami-section h5,
  .brand-pg .karak-section h5 {
    margin: 30px 0 10px;
    line-height: 30px;
  }
  .brand-pg .momami-section p,
  .brand-pg .karak-section p {
    margin-top: 15px;
  }
  .brand-pg .momami-section h4,
  .brand-pg .karak-section h4 {
    margin: 30px 0 30px;
  }
  .brand-pg .karak-section {
    margin-top: 70px;
  }
  .contact-pg .lat-prods1 {
    margin-top: 35px;
  }
  .contact-pg .lat-prods1 p {
    margin: 15px 15px 25px;
    line-height: 28px;
  }
  .contact-pg .lat-prods1 .lists > div .owl-item > div > div {
    width: 140px;
    height: 140px;
  }
  .contact-pg .contact-head {
    margin: 40px auto 20px;
  }
  .contact-pg .contact-head > div:first-of-type {
    width: 100%;
    height: 220px;
  }
  .contact-pg .contact-head > div:first-of-type img {
    width: auto;
    height: 100%;
    display: table;
    margin: 0 auto;
  }
  .contact-pg .contact-head > div:last-of-type {
    width: 100%;
    text-align: center;
  }
  .contact-pg .contact-head > div:last-of-type h5 {
    margin-top: 10px;
  }
  .contact-pg .contact-head > div:last-of-type h2 {
    margin-bottom: 10px;
  }
  .contact-pg .contact-head > div:last-of-type p {
    line-height: 30px;
  }
  .contact-pg .form-section {
    padding: 40px 0;
  }
  .contact-pg .form-section > div > div:first-of-type {
    width: 58.33333333%;
    padding-right: 20px;
  }
  .contact-pg .form-section > div > div:last-of-type {
    margin-left: 0;
  }
  .contact-pg .form-section > div > div:last-of-type p {
    line-height: 26px;
  }
  .contact-pg .map-section #map {
    height: 400px;
  }
  .modal-content,
  .modal-content1 {
    width: 700px !important;
    height: 330px !important;
  }
  .modal-content .modal-body-content,
  .modal-content1 .modal-body-content {
    width: 700px !important;
    height: 210px !important;
  }
  .modal-content .modal-body-content p,
  .modal-content1 .modal-body-content p {
    font-size: 12px;
    line-height: 20px;
    margin: 5px 0;
  }
  .modal-content .modal-body-content h5,
  .modal-content1 .modal-body-content h5 {
    font-size: 18px;
  }
  .modal-content .modal-body-content h6,
  .modal-content1 .modal-body-content h6 {
    font-size: 16px;
    margin: 0;
  }
  .modal-content .modal-body-content .owl-prev:after,
  .modal-content1 .modal-body-content .owl-prev:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 3px solid #FFFFFF;
    border-top: 3px solid #FFFFFF;
    left: 11px;
    transform: rotate(-135deg);
    top: 9px;
  }
  .modal-content .modal-body-content .owl-next:after,
  .modal-content1 .modal-body-content .owl-next:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 3px solid #FFFFFF;
    border-top: 3px solid #FFFFFF;
    left: 8px;
    transform: rotate(45deg);
    top: 9px;
  }
}
@media screen and (width: 768px) {
  .lineup .favprod .item-content .image-box img:first-of-type {
    margin-left: -35px;
    width: 125%;
  }
  .lineup .favprod .item-content:nth-of-type(n+3) .detail-box {
    bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .addmenu {
    transition: transform ease-in-out 0.3s !important;
    transform: translate(0, 0) !important;
    -webkit-transform: translate(0, 0) !important;
    -moz-transform: translate(0, 0) !important;
    -o-transform: translate(0, 0) !important;
  }
  .loader img {
    width: 30%;
  }
  header {
    position: fixed !important;
    top: 0;
    transition: top 0.2s ease-in-out;
    -webkit-transition: top 0.2s ease-in-out;
    -ms-transition: top 0.2s ease-in-out;
    -moz-transition: top 0.2s ease-in-out;
    width: 100%;
    z-index: 5;
  }
  .nav-up {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    top: -70px;
  }
  .nav-up .navbar-collapse {
    top: 0px !important;
  }
  h2,
  h1 {
    font-size: 36px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 18px;
  }
  .navbar {
    height: 70px;
  }
  .navbar-header {
    width: 100%;
    padding: 0 15px;
    margin: 0;
  }
  nav .active:after {
    display: none !important;
  }
  .head-logo {
    float: left;
    margin-top: 0;
  }
  .head-logo .logo-img {
    width: 80px;
    height: 70px;
  }
  .head-logo h3 {
    margin-top: 22px;
  }
  nav {
    width: 100%;
    margin: 0 !important;
  }
  nav a {
    display: block;
    text-align: center;
    line-height: 50px;
  }
  .navbar-toggle {
    margin-right: 0 !important;
    right: 0;
  }
  .navbar-collapse {
    transition: all ease-in-out 0.3s;
    position: fixed;
    top: 0;
    width: 250px;
    -webkit-box-shadow: 0 8px 6px -6px black;
    -moz-box-shadow: 0 8px 6px -6px black;
    box-shadow: 0 7px 20px -6px black;
    background: black !important;
    color: white;
    border: none;
    right: 0px;
    height: 100% !important;
    transform: translate(255px, 0);
    -webkit-transform: translate(255px, 0);
    -moz-transform: translate(255px, 0);
    -o-transform: translate(255px, 0);
    display: block !important;
  }
  .navbar-collapse .burger-icon {
    display: block;
    top: -7px;
    right: 5px;
    cursor: pointer;
  }
  .navbar-collapse .burger-icon .burger-bun-top {
    transform: rotate(45deg);
    top: 34px;
    width: 20px;
    height: 3px;
  }
  .navbar-collapse .burger-icon .burger-bun-bot {
    transform: rotate(-45deg);
    top: 0px;
    width: 20px;
    height: 3px;
  }
  .navbar-collapse nav a:last-of-type {
    margin-right: 23px;
  }
  .navbar-collapse nav a.active {
    font-weight: bold;
    color: #FF4E4E;
  }
  .navbar-collapse nav a:hover {
    font-weight: bold;
    color: white;
  }
  footer .footer-content {
    height: 550px;
    padding-top: 20px;
    margin-top: 35px;
  }
  footer .footer-content .qlinks {
    width: 40%;
    float: left;
  }
  footer .footer-content .qlinks h6 {
    margin-bottom: 20px;
  }
  footer .footer-content .qlinks nav a {
    margin: 10px 0;
  }
  footer .footer-content .contact {
    width: 50%;
    float: left;
  }
  footer .footer-content .contact h6 {
    margin-bottom: 20px;
  }
  footer .footer-content .contact p {
    margin-top: 20px;
    line-height: 26px;
  }
  footer .footer-content .contact p:nth-of-type(2) {
    margin-top: 10px;
  }
  footer .footer-content .connected {
    width: 100% ;
    clear: both;
    padding-top: 20px;
  }
  footer .footer-content .connected .social {
    margin-top: 20px;
  }
  footer .footer-content .connected h6 {
    margin-bottom: 20px;
  }
  footer .footer-content .connected p {
    margin-top: 20px;
  }
  footer .footer-content .copyright {
    bottom: 10px;
  }
  footer .footer-content .copyright p {
    float: none;
    text-align: center;
    line-height: 5px;
  }
  footer .footer-content .copyright a {
    width: 100%;
    margin-top: 5px;
  }
  footer .footer-content .copyright a:first-of-type {
    float: none;
  }
  footer .footer-content .copyright a p {
    float: none;
  }
  .banner {
    padding-top: 70px;
  }
  .banner-content {
    width: 170px !important;
    height: 160px !important;
    margin: auto 0;
    margin-left: 61% !important;
  }
  .banner-content.second h6 {
    display: none;
  }
  .banner-content.second h4 .word4 {
    padding-right: 0px !important;
  }
  .banner-content.first img {
    display: none !important;
  }
  .banner-content .cont-details {
    display: none !important;
  }
  .banner-content p {
    display: none !important;
  }
  .banner-content h4 {
    font-size: 24px !important;
    line-height: 32px !important;
    margin-top: 10px;
    width: 85%;
    text-align: center;
  }
  .banner-content h4 .word4 {
    padding: 0 !important;
  }
  .banner-content .view-button {
    display: none !important;
  }
  .banner-content.first img {
    zoom: 0.6;
  }
  .owl-nav .owl-prev:after {
    width: 15px;
    height: 15px;
    border-right: 4px solid #bdc2c4;
    border-top: 4px solid #bdc2c4;
  }
  .owl-nav .owl-next:after {
    width: 15px;
    height: 15px;
    border-right: 4px solid #bdc2c4;
    border-top: 4px solid #bdc2c4;
  }
  .owl-dots {
    bottom: 40px;
  }
  .whoweare h2 {
    margin: 10px 0;
    padding: 0 15px;
  }
  .whoweare h1,
  .whoweare h3 {
    padding: 0 15px;
    margin: 10px 0;
    font-size: 28px;
  }
  .whoweare .legend {
    padding: 0;
    margin: 25px auto 25px;
  }
  .whoweare .legend > div:first-of-type {
    padding-right: 15px;
  }
  .whoweare .legend > div:last-of-type {
    padding-left: 15px;
    margin-top: 15px;
  }
  .whoweare .legend > div:last-of-type img {
    margin: 0 25px;
  }
  .lineup .favprod {
    height: auto;
    margin: 20px 0;
    padding-bottom: 0;
  }
  .lineup .favprod > div {
    padding-bottom: 200px;
  }
  .lineup .favprod .item-content {
    width: 100%;
    float: none;
    margin-top: 20px !important;
  }
  .lineup .favprod .item-content .image-box {
    width: 35%;
  }
  .lineup .favprod .item-content .image-box img {
    width: 125px;
    display: table;
    margin: 0 auto;
  }
  .lineup .favprod .item-content .image-box img:last-of-type {
    display: none;
  }
  .lineup .favprod .item-content .detail-box {
    width: 65% !important;
    left: 35% !important;
    bottom: 0;
  }
  .lineup .favprod .item-content .detail-box h5 {
    margin: 5px 0;
    font-size: 19px;
    line-height: 20px;
  }
  .lineup .favprod .item-content .detail-box h5 br {
    display: none;
  }
  .lineup .favprod .item-content .detail-box .more-button {
    width: 100px;
    height: 30px;
    padding-top: 3px;
  }
  .lineup .favprod .item-content .detail-box p:last-of-type {
    line-height: 22px;
    width: 100%;
    height: 44px;
    -webkit-line-clamp: 2;
  }
  .lineup .favprod .item-content:nth-of-type(n+3) {
    clear: both;
  }
  .lineup .favprod .item-content:nth-of-type(n+3) .detail-box {
    bottom: 0;
  }
  .latest-prod {
    margin-top: -70px;
  }
  .latest-prod > div:after {
    display: none;
  }
  .latest-prod > div .owl-carousel {
    width: 100%;
  }
  .latest-prod > div .owl-carousel .owl-item img {
    width: 75%;
    margin: 0 auto;
  }
  .latest-prod > div .owl-carousel:last-of-type {
    margin-top: 20px;
  }
  .prod-pg {
    margin-top: 80px;
  }
  .prod-pg h5,
  .prod-pg h1 {
    margin-bottom: 15px;
  }
  .prod-pg .nav-tabs li p {
    padding: 20px 0 15px;
  }
  .prod-pg .nav-tabs li a > div {
    width: 120px;
    height: 60px;
  }
  .prod-pg .tab-content .row {
    margin-top: 0;
  }
  .prod-pg .tab-content .row > div {
    margin-top: 30px;
  }
  .prod-pg .tab-content .row > div .content > div {
    padding: 0 15px;
  }
  .prod-pg .tab-content .row > div .content > div p {
    line-height: 20px;
  }
  .prod-pg .tab-content .row > div .content > div h6:first-of-type {
    padding-bottom: 10px;
  }
  .prod-pg .tab-content .row > div .content > div span h6 {
    padding-top: 10px;
    padding-bottom: 0 !important;
  }
  .prod-pg .tab-content .momami-prod h5,
  .prod-pg .tab-content .karak-prod h5 {
    margin-bottom: 10px;
    min-height: 40px;
    margin-top: 25px;
  }
  .about-pg .about-head {
    margin-top: 100px;
    margin-bottom: 25px;
    text-align: center;
  }
  .about-pg .about-head h5 {
    margin-top: 40px;
    margin-left: 0;
  }
  .about-pg .about-head h2,
  .about-pg .about-head h1 {
    margin-bottom: 10px;
    font-size: 36px;
  }
  .about-pg .about-head p {
    line-height: 30px;
  }
  .about-pg .about-head div:first-of-type {
    height: 180px;
    margin-bottom: 20px;
  }
  .about-pg .about-head div:first-of-type img {
    width: auto;
    height: 100%;
    display: table;
    margin: 0 auto;
  }
  .about-pg .vision {
    padding: 20px 0 100px;
  }
  .about-pg .vision h4 {
    margin: 15px 0;
  }
  .about-pg .vision p {
    line-height: 30px;
  }
  .about-pg .vision img {
    width: 120px;
    height: 70px;
  }
  .about-pg .vision > div {
    padding: 0 25px;
  }
  .about-pg .vision > div:first-of-type {
    padding-bottom: 20px;
  }
  .about-pg .vision > div:first-of-type:after {
    width: 80%;
    height: 1px;
    top: auto;
    bottom: 0;
    right: 10%;
  }
  .about-pg .vision > div:last-of-type {
    padding-top: 20px;
  }
  .about-pg .manage-team:before {
    width: 150px;
    height: 150px;
    top: -90px;
  }
  .about-pg .manage-team h4 {
    margin: 40px 0 20px;
  }
  .about-pg .manage-team > div {
    padding: 40px 0 30px;
  }
  .about-pg .manage-team > div > div > div > div {
    width: 90px;
    height: 90px;
  }
  .about-pg .lat-prods {
    margin-top: 35px;
  }
  .about-pg .lat-prods p {
    margin: 15px 15px 25px;
    line-height: 28px;
  }
  .about-pg .lat-prods .lists > div .owl-nav {
    margin-top: 5px;
  }
  .about-pg .lat-prods .lists > div .owl-item > div > div {
    width: 120px;
    height: 120px;
  }
  .brand-pg {
    margin-top: 75px;
  }
  .brand-pg h5,
  .brand-pg h1 {
    margin-bottom: 25px;
  }
  .brand-pg .momami-section .momami-img,
  .brand-pg .karak-section .momami-img,
  .brand-pg .momami-section .karak-img,
  .brand-pg .karak-section .karak-img {
    margin: 20px auto 0;
  }
  .brand-pg .momami-section .momami-img fieldset legend,
  .brand-pg .karak-section .momami-img fieldset legend,
  .brand-pg .momami-section .karak-img fieldset legend,
  .brand-pg .karak-section .karak-img fieldset legend {
    width: 200px;
    height: 85px;
    padding: 0 25px;
  }
  .brand-pg .momami-section h5,
  .brand-pg .karak-section h5 {
    margin: 30px 0 10px;
    line-height: 30px;
  }
  .brand-pg .momami-section p,
  .brand-pg .karak-section p {
    margin-top: 15px;
  }
  .brand-pg .momami-section h4,
  .brand-pg .karak-section h4 {
    margin: 30px 0 30px;
  }
  .brand-pg .momami-section {
    margin-top: 70px;
  }
  .contact-pg h1 {
    font-size: 36px !important;
  }
  .contact-pg .lat-prods1 {
    margin-top: 35px;
  }
  .contact-pg .lat-prods1 p {
    margin: 15px 15px 25px;
    line-height: 28px;
  }
  .contact-pg .lat-prods1 .lists > div .owl-nav {
    margin-top: 5px;
  }
  .contact-pg .lat-prods1 .lists > div .owl-item > div > div {
    width: 120px;
    height: 120px;
  }
  .contact-pg .contact-head {
    margin: 100px auto 20px;
  }
  .contact-pg .contact-head > div:first-of-type {
    width: 100%;
    height: 220px;
  }
  .contact-pg .contact-head > div:first-of-type img {
    width: auto;
    height: 100%;
    display: table;
    margin: 0 auto;
  }
  .contact-pg .contact-head > div:last-of-type {
    width: 100%;
    text-align: center;
  }
  .contact-pg .contact-head > div:last-of-type h5 {
    margin-top: 10px;
  }
  .contact-pg .contact-head > div:last-of-type h2 {
    margin-bottom: 10px;
  }
  .contact-pg .contact-head > div:last-of-type p {
    line-height: 30px;
  }
  .contact-pg .form-section {
    background-size: cover;
    padding: 25px 0;
  }
  .contact-pg .form-section > div > div:first-of-type {
    width: 100%;
    padding-right: 0px;
  }
  .contact-pg .form-section > div > div:last-of-type {
    margin-left: 0;
    padding-left: 0;
    margin-top: 30px;
  }
  .contact-pg .form-section > div > div:last-of-type p {
    line-height: 26px;
  }
  .contact-pg .form-section p:first-of-type {
    margin: 15px 0 10px;
  }
  .contact-pg .form-section p:nth-of-type(even) {
    margin-top: 25px;
  }
  .contact-pg .form-section button {
    margin-top: 0;
    width: 130px;
    height: 40px;
  }
  .contact-pg .form-section h5 {
    margin-top: 30px;
  }
  .contact-pg .form-section input,
  .contact-pg .form-section textarea {
    height: 45px;
  }
  .contact-pg .form-section textarea {
    padding-top: 12px !important;
  }
  .contact-pg .map-section #map {
    height: 400px;
  }
  .contact-pg .map-section .map-header h5 {
    line-height: 30px;
  }
  .modal-content,
  .modal-content1 {
    width: 400px !important;
    min-height: 475px !important;
  }
  .modal-content .modal-body-content,
  .modal-content1 .modal-body-content {
    width: 400px !important;
    min-height: 475px !important;
    padding: 0 20px 0 20px;
  }
  .modal-content .modal-body-content .owl-item img,
  .modal-content1 .modal-body-content .owl-item img {
    width: 180px;
    display: table;
    margin: 20px auto 20px auto;
  }
  .modal-content .modal-body-content p,
  .modal-content1 .modal-body-content p {
    font-size: 12px;
    line-height: 20px;
    margin: 5px 0;
  }
  .modal-content .modal-body-content h5,
  .modal-content1 .modal-body-content h5 {
    font-size: 18px;
  }
  .modal-content .modal-body-content h6,
  .modal-content1 .modal-body-content h6 {
    font-size: 16px;
    margin: 0;
  }
  .modal-content .modal-body-content h6:last-of-type,
  .modal-content1 .modal-body-content h6:last-of-type {
    margin-top: 20px;
  }
  .modal-content .modal-body-content .owl-nav,
  .modal-content1 .modal-body-content .owl-nav {
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 10px;
  }
  .modal-content .modal-body-content .owl-prev:after,
  .modal-content1 .modal-body-content .owl-prev:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 3px solid #FFFFFF;
    border-top: 3px solid #FFFFFF;
    left: 11px;
    transform: rotate(-135deg);
    top: 9px;
  }
  .modal-content .modal-body-content .owl-next:after,
  .modal-content1 .modal-body-content .owl-next:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 3px solid #FFFFFF;
    border-top: 3px solid #FFFFFF;
    left: 8px;
    transform: rotate(45deg);
    top: 9px;
  }
}
@media screen and (max-width: 640px) {
  .brand-pg .momami-section .momami-img fieldset,
  .brand-pg .karak-section .momami-img fieldset,
  .brand-pg .momami-section .karak-img fieldset,
  .brand-pg .karak-section .karak-img fieldset {
    width: 80%;
  }
  .brand-pg .social-logo {
    width: 100% !important;
  }
  .brand-pg .social-logo > div {
    padding: 0 15px !important;
  }
  .prod-pg .tab-content .row > div:after {
    display: none;
  }
  .prod-pg .tab-content .row > div .content > div {
    padding: 0 5px !important;
  }
  .prod-pg .tab-content .row > div .content > div h6 {
    font-size: 16px !important;
    line-height: 16px !important;
  }
  .prod-pg .tab-content .row > div .content > div h6:first-of-type {
    padding-bottom: 5px !important;
  }
  .prod-pg .tab-content .row > div .content > div span h6 {
    padding-top: 5px !important;
  }
  .prod-pg .tab-content .row > div .content > div p {
    margin-bottom: 10px !important;
    font-size: 12px !important;
    line-height: 18px !important;
    letter-spacing: 0.05em;
  }
  .prod-pg .tab-content .row > div .content > div p:before {
    top: 3px !important;
  }
  .lineup .favprod {
    /* IE10+ */
    background-image: -ms-linear-gradient(left, #000000 0%, #A32A7B 100%);
    /* Mozilla Firefox */
    background-image: -moz-linear-gradient(left, #000000 0%, #A32A7B 100%);
    /* Opera */
    background-image: -o-linear-gradient(left, #000000 0%, #A32A7B 100%);
    /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #000000), color-stop(100, #A32A7B));
    /* Webkit (Chrome 11+) */
    background-image: -webkit-linear-gradient(left, #000000 0%, #A32A7B 100%);
    /* W3C Markup */
    background-image: linear-gradient(to right, #000000 0%, #A32A7B 100%);
    margin: 50px 0;
  }
  .lineup .favprod > div {
    margin-top: 0px;
    padding-bottom: 25px;
  }
  .latest-prod {
    margin-top: 0;
  }
}
@media screen and (max-width: 670px) {
  .modal-content,
  .modal-content1 {
    width: 417px !important;
    height: 85% !important;
    overflow-y: scroll;
    min-height: 65% !important;
  }
  .modal-content .modal-body-content,
  .modal-content1 .modal-body-content {
    min-height: 100% !important;
  }
  .modal-content1 .owl-controls,
  .modal-content .owl-controls {
    position: relative;
    margin-top: 25px !important;
  }
  .modal-content1 .owl-controls .owl-nav,
  .modal-content .owl-controls .owl-nav {
    margin: 10px auto;
    left: 0;
    right: 0;
    bottom: -5px;
  }
}
@media screen and (max-width: 480px) {
  .loader img {
    width: 75%;
  }
  .head-logo {
    width: 220px;
  }
  .head-logo h3 {
    font-size: 18px;
  }
  .navbar-toggle {
    margin-right: 0;
  }
  .banner-content {
    width: 115px !important;
    height: 110px !important;
  }
  .banner-content h4 {
    font-size: 16px !important;
    line-height: 22px !important;
    margin-top: 5px;
  }
  .banner-content.first img {
    zoom: 0.4;
  }
  .owl-nav .owl-prev:after {
    width: 10px;
    height: 10px;
    border-right: 2px solid #bdc2c4;
    border-top: 2px solid #bdc2c4;
  }
  .owl-nav .owl-next:after {
    width: 10px;
    height: 10px;
    border-right: 2px solid #bdc2c4;
    border-top: 2px solid #bdc2c4;
  }
  .owl-dots {
    display: none !important;
  }
  footer .footer-content {
    height: auto !important;
    padding-top: 20px;
    padding-bottom: 90px;
  }
  footer .footer-content .qlinks {
    width: 100%;
    float: none;
  }
  footer .footer-content .qlinks h6 {
    margin-bottom: 10px;
    margin-top: 0;
  }
  footer .footer-content .qlinks nav {
    padding-left: 0;
  }
  footer .footer-content .qlinks nav a:last-of-type {
    margin-bottom: 0;
  }
  footer .footer-content .contact {
    width: 100%;
    float: none;
    padding-top: 30px;
  }
  footer .footer-content .contact h6 {
    margin-bottom: 10px;
    margin-top: 0px;
  }
  footer .footer-content .contact p {
    margin-top: 10px;
  }
  footer .footer-content .contact p:nth-of-type(2) {
    margin-top: 10px;
  }
  footer .footer-content .connected {
    width: 100% ;
    clear: both;
    padding-top: 30px;
  }
  footer .footer-content .connected .social {
    margin-top: 10px;
  }
  footer .footer-content .connected form {
    width: 100%;
  }
  footer .footer-content .connected form input {
    width: 70%;
  }
  footer .footer-content .connected form .submit-button {
    width: 30%;
  }
  footer .footer-content .connected h6 {
    margin-bottom: 0px;
    margin-top: 0px;
  }
  footer .footer-content .connected p {
    margin-top: 10px;
  }
  footer .footer-content .copyright {
    bottom: 10px;
  }
  footer .footer-content .copyright p {
    float: none;
    text-align: center;
  }
  footer .footer-content .copyright a {
    width: 100%;
    margin-top: 5px;
  }
  .whoweare h2 {
    font-size: 30px;
  }
  .whoweare h1,
  .whoweare h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .lineup .favprod {
    height: auto;
    margin: 35px 0;
    margin-top: 40px;
    padding-bottom: 0;
  }
  .lineup .favprod > div {
    padding-bottom: 20px;
  }
  .lineup .favprod .item-content {
    width: 100%;
    float: none;
    margin-top: 15px !important;
  }
  .lineup .favprod .item-content .image-box {
    width: 100%;
  }
  .lineup .favprod .item-content .image-box img {
    width: 125px;
    display: table;
    margin: 0 auto;
    margin-left: -50px;
    position: relative;
    left: 42%;
  }
  .lineup .favprod .item-content .detail-box {
    width: 100% !important;
    position: relative;
    left: 0 !important;
    margin-top: 0;
    text-align: center;
  }
  .lineup .favprod .item-content .detail-box h4 {
    margin: 5px 0;
    font-size: 25px;
  }
  .lineup .favprod .item-content .detail-box .more-button {
    width: 100px;
    height: 30px;
    padding-top: 3px;
    margin: 0 auto !important;
    margin-top: 10px !important;
  }
  .lineup .favprod .item-content .detail-box p:last-of-type {
    line-height: 22px;
  }
  .lineup .favprod .item-content:nth-of-type(n+3) {
    clear: both;
  }
  .lineup .favprod .item-content:nth-of-type(n+3) .detail-box {
    bottom: 0;
  }
  .latest-prod {
    margin-top: 0px;
  }
  .prod-pg .tab-content .row h5 {
    min-height: 0;
    margin-top: 10px;
  }
  .prod-pg .tab-content .row > div {
    width: 100%;
  }
  .prod-pg .tab-content .row > div .content > div {
    padding: 0 10px;
  }
  .prod-pg .tab-content .row > div .content > div h6:last-of-type {
    display: block !important;
  }
  .prod-pg .tab-content .row > div .content > div h6:first-of-type {
    padding-bottom: 10px !important;
  }
  .prod-pg .tab-content .row > div .content > div span h6 {
    padding-top: 10px !important;
  }
  .prod-pg .tab-content .row > div .content > div p {
    font-size: 14px !important;
    line-height: 24px !important;
  }
  .about-pg .about-head {
    margin-top: 90px;
  }
  .about-pg .about-head div:first-of-type {
    height: 110px;
  }
  .about-pg .vision {
    padding: 20px 0 80px;
  }
  .about-pg .manage-team:before {
    width: 180px;
    height: 180px;
    top: -70px;
  }
  .about-pg .manage-team > div {
    padding: 30px 0 5px !important;
  }
  .about-pg .manage-team > div > div > div {
    width: 50%;
    margin-bottom: 15px;
  }
  .about-pg .manage-team > div > div > div p {
    margin: 0 !important;
  }
  .about-pg .manage-team > div > div > div p:first-of-type {
    margin-top: 15px !important;
  }
  .about-pg .lat-prods p {
    margin: 10px 0 20px !important;
  }
  .about-pg .lat-prods .lists > div .owl-item > div p {
    margin: 10px 0 0px 0 !important;
  }
  .about-pg .lat-prods .owl-theme .owl-controls {
    margin-top: 0;
  }
  .brand-pg .momami-section fieldset,
  .brand-pg .karak-section fieldset {
    width: 100% !important;
  }
  .brand-pg .momami-section p,
  .brand-pg .karak-section p {
    text-align: center;
  }
  .brand-pg .momami-section {
    margin-top: 50px;
  }
  .brand-pg .social-logo > div,
  .brand-pg .social-logo1 > div {
    width: 100%;
    margin-bottom: 10px;
  }
  .brand-pg .social-logo > div:after,
  .brand-pg .social-logo1 > div:after {
    display: none;
  }
  .brand-pg .social-logo > div img,
  .brand-pg .social-logo1 > div img {
    width: auto;
    margin: 0 auto;
    display: table;
  }
  .brand-pg .social-logo > div:nth-of-type(3) {
    margin-bottom: 20px !important;
  }
  .brand-pg .social-logo1 {
    width: 100% !important;
  }
  .brand-pg .social-logo1 > div:nth-of-type(2) {
    margin-bottom: 20px !important;
  }
  .contact-pg .lat-prods1 p {
    margin: 10px 0 20px !important;
  }
  .contact-pg .lat-prods1 .lists > div .owl-item > div p {
    margin: 10px 0 0px 0 !important;
  }
  .contact-pg .lat-prods1 .owl-theme .owl-controls {
    margin-top: 0;
  }
  .contact-head {
    margin-top: 90px;
  }
  .contact-head > div:first-of-type {
    height: 160px !important;
  }
  .modal-content,
  .modal-content1 {
    width: 337px !important;
  }
  .modal-content .modal-body-content,
  .modal-content1 .modal-body-content {
    width: 320px !important;
    padding: 0;
  }
  .modal-content .modal-body-content img,
  .modal-content1 .modal-body-content img {
    width: 150px !important;
  }
}
@media screen and (max-width: 380px) {
  .prod-pg .tab-content > div > div > div {
    width: 100%;
  }
  .prod-pg .tab-content > div > div > div .content > div {
    padding: 0 10px;
  }
  .prod-pg .tab-content > div > div > div .content > div h6,
  .prod-pg .tab-content > div > div > div .content > div p {
    display: block !important;
  }
  .prod-pg .nav-tabs li a > div {
    width: 90px !important;
    height: 40px !important;
  }
  .prod-pg .nav-tabs li:first-of-type:before {
    top: 5px;
    height: 50px;
  }
}
.modal-new {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: none;
  display: none;
}
@media screen and (max-width: 320px) {
  body {
    min-width: 320px;
  }
}
/******************************************** animate.css *********************************************/
/*
Animate.css - http://daneden.me/animate
Licensed under the ? license (http://licence.visualidiot.com/)

Copyright (c) 2012 Dan Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden;
}
.animatedtxt {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInRight1 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRight1 {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRight1 {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRight1 {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight1 {
  -webkit-animation-name: fadeInRight1;
  -moz-animation-name: fadeInRight1;
  -o-animation-name: fadeInRight1;
  animation-name: fadeInRight1;
}
/******************************************** animations.css *********************************************/
/*animations*/
/******************
* Bounce in right *
*******************/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.slow {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.slower {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.slowest {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* Added by Andy Meetan */
.delay-250 {
  -webkit-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  -o-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.delay-500 {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.delay-750 {
  -webkit-animation-delay: 0.75s;
  -moz-animation-delay: 0.75s;
  -o-animation-delay: 0.75s;
  animation-delay: 0.75s;
}
.delay-1000 {
  -webkit-animation-delay: 1.0s;
  -moz-animation-delay: 1.0s;
  -o-animation-delay: 1.0s;
  animation-delay: 1.0s;
}
.delay-1250 {
  -webkit-animation-delay: 1.25s;
  -moz-animation-delay: 1.25s;
  -o-animation-delay: 1.25s;
  animation-delay: 1.25s;
}
.delay-1500 {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.delay-1750 {
  -webkit-animation-delay: 1.75s;
  -moz-animation-delay: 1.75s;
  -o-animation-delay: 1.75s;
  animation-delay: 1.75s;
}
.delay-2000 {
  -webkit-animation-delay: 2.0s;
  -moz-animation-delay: 2.0s;
  -o-animation-delay: 2.0s;
  animation-delay: 2.0s;
}
.delay-2500 {
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  -o-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.delay-2000 {
  -webkit-animation-delay: 2.0s;
  -moz-animation-delay: 2.0s;
  -o-animation-delay: 2.0s;
  animation-delay: 2.0s;
}
.delay-2500 {
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  -o-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.delay-3000 {
  -webkit-animation-delay: 3.0s;
  -moz-animation-delay: 3.0s;
  -o-animation-delay: 3.0s;
  animation-delay: 3.0s;
}
.delay-3500 {
  -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
  -o-animation-delay: 3.5s;
  animation-delay: 3.5s;
}
.bounceInRight,
.bounceInLeft,
.bounceInUp,
.bounceInDown {
  opacity: 0;
  -webkit-transform: translateX(400px);
  transform: translateX(400px);
}
.fadeInRight,
.fadeInLeft,
.fadeInUp,
.fadeInDown {
  opacity: 0;
  -webkit-transform: translateX(400px);
  transform: translateX(400px);
}
.flipInX,
.flipInY,
.rotateIn,
.rotateInUpLeft,
.rotateInUpRight,
.rotateInDownLeft,
.rotateDownUpRight,
.rollIn {
  opacity: 0;
}
.lightSpeedInRight,
.lightSpeedInLeft {
  opacity: 0;
  -webkit-transform: translateX(400px);
  transform: translateX(400px);
}
/***********
* bounceIn *
************/
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn.go {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
/****************
* bounceInRight *
****************/
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(400px);
  }
  60% {
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(400px);
  }
  60% {
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.bounceInRight.go {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
/******************
* Bounce in left *
*******************/
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-400px);
  }
  60% {
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-400px);
  }
  60% {
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.bounceInLeft.go {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
/******************
* Bounce in up *
*******************/
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(400px);
  }
  60% {
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(400px);
  }
  60% {
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.bounceInUp.go {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/******************
* Bounce in down *
*******************/
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-400px);
  }
  60% {
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-400px);
  }
  60% {
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.bounceInDown.go {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
/**********
* Fade In *
**********/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
.fadeIn {
  opacity: 0;
}
.fadeIn.go {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
/**********
* Grow in *
***********/
@-webkit-keyframes growIn {
  0% {
    -webkit-transform: scale(0.2);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes growIn {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.growIn {
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
  opacity: 0;
}
.growIn.go {
  -webkit-animation-name: growIn;
  animation-name: growIn;
}
/********
* Shake *
********/
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
  }
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}
.shake.go {
  -webkit-animation-name: shake;
  animation-name: shake;
}
/********
* ShakeUp *
********/
@-webkit-keyframes shakeUp {
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateY(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateY(10px);
  }
}
@keyframes shakeUp {
  0%,
  100% {
    transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateY(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateY(10px);
  }
}
.shakeUp.go {
  -webkit-animation-name: shakeUp;
  animation-name: shakeUp;
}
/*************
* FadeInLeft *
*************/
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(-400px);
  transform: translateX(-400px);
}
.fadeInLeft.go {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
/*************
* FadeInRight *
*************/
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(400px);
  transform: translateX(400px);
}
.fadeInRight.go {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
/*************
* FadeInUp *
*************/
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(400px);
  transform: translateY(400px);
}
.fadeInUp.go {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
/*************
* FadeInDown *
*************/
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  opacity: 0;
  -webkit-transform: translateY(-400px);
  transform: translateY(-400px);
}
.fadeInDown.go {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
/*****************
* rotateIn *
*****************/
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn.go {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
/*****************
* rotateInUpLeft *
*****************/
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft.go {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
/*******************
* rotateInDownLeft *
*******************/
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft.go {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
/******************
* rotateInUpRight *
*******************/
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight.go {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
/********************
* rotateInDownRight *
********************/
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight.go {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
/*********
* rollIn *
**********/
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn.go {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/*********
* wiggle *
**********/
@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
  }
}
@keyframes wiggle {
  0% {
    transform: skewX(9deg);
  }
  10% {
    transform: skewX(-8deg);
  }
  20% {
    transform: skewX(7deg);
  }
  30% {
    transform: skewX(-6deg);
  }
  40% {
    transform: skewX(5deg);
  }
  50% {
    transform: skewX(-4deg);
  }
  60% {
    transform: skewX(3deg);
  }
  70% {
    transform: skewX(-2deg);
  }
  80% {
    transform: skewX(1deg);
  }
  90% {
    transform: skewX(0deg);
  }
  100% {
    transform: skewX(0deg);
  }
}
.wiggle.go {
  -webkit-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/********
* swing *
*********/
@-webkit-keyframes swing {
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transform-origin: top center;
  }
  20% {
    -webkit-transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing.go {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
/*******
* tada *
********/
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada.go {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/*********
* wobble *
**********/
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble.go {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
/********
* pulse *
*********/
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse.go {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
/***************
* lightSpeedInRight *
****************/
@-webkit-keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedInRight {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedInRight.go {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
/***************
* lightSpeedInLeft *
****************/
@-webkit-keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translateX(-100%) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(20%) skewX(-30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedInLeft {
  0% {
    transform: translateX(-100%) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(20%) skewX(-30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedInLeft.go {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
/*******
* Flip *
*******/
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) scale(1);
    animation-timing-function: ease-in;
  }
}
.flip.go {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip;
}
/**********
* flipInX *
**********/
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX.go {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
/**********
* flipInY *
**********/
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY.go {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
/*****************
* Out animations *
*****************/
/************
* bounceOut *
*************/
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut.goAway {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
/************
* bounceOutUp *
*************/
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp.goAway {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/************
* bounceOutDown *
*************/
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown.goAway {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
/************
* bounceOutLeft *
*************/
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft.goAway {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
/************
* bounceOutRight *
*************/
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight.goAway {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
/************
* fadeOut *
*************/
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut.goAway {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
/************
* fadeOutUp *
*************/
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUp.goAway {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
/************
* fadeOutDown *
*************/
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDown.goAway {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
/************
* fadeOutLeft *
*************/
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeft.goAway {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
/************
* fadeOutRight *
*************/
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRight.goAway {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
/************
* flipOutX *
*************/
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX.goAway {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
/************
* flipOutY *
*************/
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
/************
* lightSpeedOutRight *
*************/
@-webkit-keyframes lightSpeedOutRight {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOutRight.goAway {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/************
* lightSpeedOutLeft *
*************/
@-webkit-keyframes lightSpeedOutLeft {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-100%) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOutLeft.goAway {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/************
* rotateOut *
*************/
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut.goAway {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
/************
* rotateOutUpLeft *
*************/
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -transform-origin: left bottom;
    -transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft.goAway {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
/************
* rotateOutDownLeft *
*************/
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft.goAway {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
/************
* rotateOutUpRight *
*************/
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight.goAway {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
/************
* rollOut *
*************/
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut.goAway {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/*****************
* Short Animations
*******************/
/*********************
* fadeInUpShort
*********************/
@-webkit-keyframes fadeInUpShort {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInUpShort {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpShort {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}
.fadeInUpShort.go {
  -webkit-animation-name: fadeInUpShort;
  animation-name: fadeInUpShort;
}
/*********************
* fadeInDownShort
*********************/
@-webkit-keyframes fadeInDownShort {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDownShort {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownShort {
  opacity: 0;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}
.fadeInDownShort.go {
  -webkit-animation-name: fadeInDownShort;
  animation-name: fadeInDownShort;
}
/*********************
* fadeInRightShort
*********************/
@-webkit-keyframes fadeInRightShort {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRightShort {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightShort {
  opacity: 0;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}
.fadeInRightShort.go {
  -webkit-animation-name: fadeInRightShort;
  animation-name: fadeInRightShort;
}
/*********************
* fadeInLeftShort
*********************/
@-webkit-keyframes fadeInLeftShort {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeftShort {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftShort {
  opacity: 0;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}
.fadeInLeftShort.go {
  -webkit-animation-name: fadeInLeftShort;
  animation-name: fadeInLeftShort;
}
/*********************owl carousel*********************/
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
/*
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}
/********************* owl theme.css****************/
/*
* 	Owl Carousel Owl Demo Theme
*	v1.3.3
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}
/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: alpha(opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: alpha(opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}
/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: alpha(opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: alpha(opacity=100);
  /*IE7 fix*/
  opacity: 1;
}
/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center;
}
