

.title.small, .subtitle, .btn {
  font-family: 'Montserrat-Medium', cursive;
  font-weight: normal;
  letter-spacing: -1px;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  line-height: 1;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

h2, h3, h4 {
  font-weight: normal;
}

img {
  vertical-align: top;
  max-width: 100%;
}

p {
  font-size: 18px;
}

sup, sub {
  font-size: 50%;
  vertical-align: baseline;
  position: relative;
  top: -.7em;
  left: .05em;
}

sub {
  top: .4em;
}

li {
  list-style: none;
}

a {
  color: #444;
}

a:active, a:focus {
  outline: 0;
  border: 0;
}

*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  h1, h2, h3 {
    font-size: 22px;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  hr {
    height: 1px;
    width: 90%;
  }
}

@media (min-width: 768px) {
  body {
    background: #00c4ff;
  }
}

.container {
  padding-top: 70px;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

#main-content {
  display: block;
}

.flex-grid {
  display: flex;
}

.flex-grid .col {
  flex: 1;
}

.section {
  padding: 0px 100px 10px 100px;
  background-position: right top, left bottom;
  background-repeat: no-repeat, no-repeat;
}

@media (max-width: 1170px) {
  .section {
    padding: 0px 50px 50px;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 0px 30px 30px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 15px;
    margin-top: 70px;
  }
}

@media (max-width: 767px) {
  .section {
    margin: 0;
    padding: 0px 30px 20px;
  }
}

@media (max-width: 767px) {
  .section:first-child {
    margin: 0 0 0px;
  }
}

.top-header-container .menu-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-content: flex-start;
  -ms-align-content: flex-start;
  align-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.top-header-container .menu-internal {
  position: relative;
  z-index: 1;
}

.top-header-container .to-open-close-menu-mobile{
  display: none;
}

.top-header-container nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-content: flex-start;
  -ms-align-content: flex-start;
  align-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  z-index: 1;
  position: relative;
  background: #00c4ff;
  padding: 0px 20px;
}

.top-header-container nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-align-content: flex-start;
  -ms-align-content: flex-start;
  align-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.top-header-container nav ul li {
  margin: 0 3px;
  position: relative;
}

.top-header-container nav ul li > a {
  display: block;
  padding: 8px 15px;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  outline: none;
}

.top-header-container .logo {
  display: block;
  padding: 0 20px;
}

.top-header-container .logo h1 {
  text-indent: -9999px;
  z-index: 10;
}

.top-header-container .logo img {
  display: block;
  height: 92px;
  -ms-interpolation-mode: bicubic;
}

body.ie .top-header-container nav ul li > a {
  padding-top: 14px;
}

@media (min-width: 1170px) {
  .top-header-container nav ul li > a:hover, .top-header-container nav ul li > a:focus, .top-header-container nav ul li > a.active {
    background: #ff0000;
    color: #ffffff;
    border-radius: 10px;
  }
}

@media (max-width: 1332px) {
  .top-header-container .to-open-close-menu-mobile {
    display: block;
    z-index: 999;
    margin: 0 20px 0 0;
  }
}

@media (max-width: 1332px) {
  .top-header-container .to-open-close-menu-mobile i {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}

@media (max-width: 1332px) {
  .top-header-container .to-open-close-menu-mobile i, .top-header-container .to-open-close-menu-mobile i::before, .top-header-container .to-open-close-menu-mobile i::after {
    display: block;
    width: 35px;
    height: 3px;
    background-color: #ffffff;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    transition-property: background-color, transform;
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s;
  }
}

@media (max-width: 1332px) {
  .top-header-container .to-open-close-menu-mobile i::before, .top-header-container .to-open-close-menu-mobile i::after {
    position: absolute;
    content: '';
  }
}

@media (max-width: 1332px) {
  .top-header-container .to-open-close-menu-mobile i::before {
    top: -10px;
  }
}

@media (max-width: 1332px) {
  .top-header-container .to-open-close-menu-mobile i::after {
    top: 10px;
  }
}

@media (max-width: 1332px) {
  .top-header-container .to-open-close-menu-mobile .to-close {
    display: none;
  }
}

@media (max-width: 1332px) {
  .top-header-container .menu-options {
    background: #5da7ff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    margin: 100px 0 0;
    z-index: 1;
    padding: 0;
    display: none;
  }
}

@media (max-width: 1170px) {
  .top-header-container .menu-container {
    height: 100%;
    padding: 20px;
  }
}

@media (max-width: 1170px) {
  .top-header-container nav ul {
    width: 100%;
    margin: 15px 0;
    display: block;
  }
}

@media (max-width: 1170px) {
  .top-header-container nav ul > li {
    display: block;
    float: none;
    text-align: left;
    opacity: 0;
    margin: 0;
  }
}

@media (max-width: 1170px) {
  .top-header-container nav ul > li a {
    text-transform: uppercase;
    font-size: 30px;
    padding: .5% 0;
  }
}

@media (max-width: 767px) {
  .top-header-container nav ul > li a {
    text-transform: uppercase;
    font-size: 30px;
    padding: 2.5% 0;
  }
}

@media (max-width: 1170px) {
  .top-header-container .menu-options {
    height: calc(100% - 60px);
    margin: 70px 0 0;
  }
}

@media (max-width: 1170px) {
  .top-header-container .logo img {
    height: 92px;
  }
}

@media (max-width: 767px) {
  .top-header-container .menu {
    background: #127dfb;
  }
}

@media (max-width: 767px) {
  .top-header-container .menu-options {
    height: calc(100% - 50px);
    margin: 70px 0 0;
  }
}

@media (max-width: 767px) {
  .top-header-container .logo img {
    height: 70px;
  }
}

#submenu {
  position: absolute;
  width: 100%;
  top: calc(50px - 900px);
  z-index: 0;
  height: 257px;
}

#submenu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: flex-start;
  -ms-align-content: flex-start;
  align-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  list-style-type: none;
}

#submenu li {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
  overflow: hidden;
}

#submenu li a {
  display: block;
  text-decoration: none;
  height: 100%;
  background: #13205433;
  padding: 3%;
}

#submenu li a:hover{
  background: #1320545e;
}

#submenu li a > .left-side {
  margin: 0;
}

#submenu li a > .left-side img {
  width: 80%;
  display: block;
  margin: 5px 10px 5px 10px;
  margin-left: auto;
  margin-right: auto;
}

#submenu li a > .right-side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  -webkit-align-content: flex-end;
  -ms-align-content: flex-end;
  align-content: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0 13px;
  margin: 7px 0;
  text-align: left;
  height: 48px;
  overflow: hidden;
}

#submenu li a > .right-side p {
  font-size: 19px;
  line-height: 24px;
  color: #fff;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  max-height: 48px;
}

#submenu li a > .right-side p span {
  font-size: 16px;
}

#submenu li a .btn {
  font-size: 16px;
  color: #1e9cd6;
  background: #000;
  padding: 8px 0;
  text-align: left;
}

@media (min-width: 768px) {
  #submenu li a:hover .btn, #submenu li a:focus .btn {
    color: #fff;
    background: #000;
  }
}

@media (max-width: 1170px) {
  #submenu {
    display: none !important;
  }
}

@media (max-width: 980px) {
  #submenu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  #submenu {
    display: none !important;
  }
}

.srt {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  margin: 0;
  padding: 0;
}

.srt:focus {
  background-color: #ccc;
  border-radius: 3px;
  clip: auto;
  color: #000;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  line-height: normal;
  padding: 15px 23px 14px;
  position: absolute;
  left: 5px;
  top: 5px;
  text-decoration: none;
  text-transform: none;
  width: auto;
  z-index: 11;
}

@media (max-width: 767px) {
  #skip-link {
    display: none;
  }
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (max-width: 1170px) {
  .hide-tab {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .just-mobile {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .hide-tablet-mobile {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .just-tablet-mobile {
    display: none !important;
  }
}

.hidden, .visually-hidden {
  display: none !important;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type='checkbox'] {
  -webkit-appearance: checkbox;
}

.clear {
  display: block;
  clear: both;
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .top-header-container .logo img {
    margin-left: 20px;
  }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .top-header-container .menu-mobile-shadow {
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .container {
  }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .home-slides > .container .slide {
    padding: 0 7%;
  }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .home-slides .owl-dot {
    position: relative;
    left: 7%;
  }
}

@keyframes brandShowUp {
  0% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.delay-0 {
  animation-delay: 0s !important;
}

.delay-1 {
  animation-delay: .05s !important;
}

.delay-2 {
  animation-delay: .1s !important;
}

.delay-3 {
  animation-delay: .15s !important;
}

.delay-4 {
  animation-delay: .2s !important;
}

.delay-5 {
  animation-delay: .25s !important;
}

.delay-6 {
  animation-delay: .3s !important;
}

.delay-7 {
  animation-delay: .35s !important;
}

.delay-8 {
  animation-delay: .4s !important;
}

.delay-9 {
  animation-delay: .45s !important;
}

.delay-10 {
  animation-delay: .5s !important;
}

.delay-11 {
  animation-delay: .55s !important;
}

.delay-12 {
  animation-delay: .6s !important;
}

.delay-13 {
  animation-delay: .65s !important;
}

.delay-14 {
  animation-delay: .7s !important;
}

.delay-15 {
  animation-delay: .75s !important;
}

.delay-16 {
  animation-delay: .8s !important;
}

.delay-17 {
  animation-delay: .85s !important;
}

.delay-18 {
  animation-delay: .9s !important;
}

h1, h2, h3 {
  color: #151515;
  font-size: 38px;
  line-height: 1.2;
}

h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

.title {
  color: #151515;
  font-size: 95px;
  line-height: 1;
  position: relative;
  text-align: left;
  margin: 0 0 30px;
}

.title.small {
  color: #fff;
  text-align: center;
  font-size: 50px;
}

.title.uppercase {
  text-transform: uppercase;
  font-size: 85px;
}

.title.uppercase span {
  font-size: 60px;
}

.subtitle {
  color: #151515;
  font-size: 20px;
  line-height: 25px;
  margin: 0 0 30px;
  text-align: left;
}

@media (max-width: 1170px) {
  .title {
    margin: 0 0 25px;
  }
}

@media (max-width: 1170px) {
  .subtitle {
    margin: 0 0 25px;
  }
}

@media (max-width: 980px) {
  .title {
    font-size: 75px;
    margin: 0 0 20px;
  }
}

@media (max-width: 980px) {
  .title.uppercase {
    font-size: 60px;
  }
}

@media (max-width: 980px) {
  .title.uppercase span {
    font-size: 45px;
  }
}

@media (max-width: 980px) {
  .title.small {
    font-size: 40px;
  }
}

@media (max-width: 980px) {
  .subtitle {
    font-size: 16px;
    line-height: 21px;
    margin: 0 0 20px;
  }
}

@media (max-width: 767px) {
  .title {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .title.uppercase {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .title.uppercase span {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .title.small {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .subtitle {
    font-size: 14px;
    line-height: 19px;
  }
}

@keyframes hoverIcon {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.btn {
  transition: all .5s ease;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  padding: 10px 20px;
  text-decoration: none;
  text-align: center;
  background: #ff0000;
  position: relative;
  border-color: rgba(255,255,255,0);
}

.btn span {
  z-index: 1;
  position: relative;
}

@media (min-width: 768px) {
  .btn:hover, .btn:focus {
    color: #ffffff;
    background: #c30000;
  }
}

body.ie .btn {
  padding-top: 16px;
}

.view-more-button {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .btn {
    font-size: 14px;
    padding: 10px 30px;
  }
}

@media (max-width: 375px) {
  .btn {
    font-size: 12px;
    padding: 8px 20px;
  }
}

.owl-carousel {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
}

.owl-carousel .owl-stage::after {
  content: '.';
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel.owl-fluid-scroll .owl-stage {
  transition: transform 5s linear !important;
}

.owl-carousel .owl-stage-outer {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  position: relative;
  overflow: hidden;
}

.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: visible !important;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: visible !important;
  position: relative;
  min-height: 1px;
  float: left;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  background-color: transparent;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.owl-carousel .owl-nav .owl-prev:focus, .owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-next:focus, .owl-carousel .owl-nav .owl-next:hover {
  outline: none;
}

.owl-carousel .owl-nav .owl-prev {
  left: -50px;
  background-image: url("../../client/img/angle-left-solid.svg");
  filter: invert(1);
}

.owl-carousel .owl-nav .owl-next {
  right: -50px;
  background-image: url("../../client/img/angle-right-solid.svg");
  filter: invert(1);
}

.owl-carousel .owl-dot {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.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 {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .owl-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-align-content: flex-start;
  -ms-align-content: flex-start;
  align-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: relative;
  bottom: -10px;
  left: 50%;
}

.owl-carousel .owl-dots .owl-dot {
  background: none;
  margin: 0 5px;
}

.owl-carousel .owl-dots .owl-dot span {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ccc;
}

.owl-carousel .owl-dots .owl-dot:hover span, .owl-carousel .owl-dots .owl-dot:focus span, .owl-carousel .owl-dots .owl-dot.active span {
  background: #151515;
}

.owl-carousel .owl-dots .owl-dot:focus {
  outline: none;
}

.no-js .owl-carousel {
  display: block;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.owl-height {
  
}

@keyframes hoverPaginationSlides {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5) rotate(0deg);
    transform: scale(1.5) rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(180deg);
    transform: scale(1) rotate(180deg);
  }
}

@media (max-width: 980px) {
  .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 980px) {
  .owl-carousel .owl-nav .owl-prev {
    left: -20px;
  }
}

@media (max-width: 980px) {
  .owl-carousel .owl-nav .owl-next {
    right: -20px;
  }
}

.home-slides {
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  overflow: hidden;
  /*margin-top:70px;
  max-height: 600px;*/
}

.home-slides .container {
  padding: 0;
}

.home-slides #video-mobile {
  display: none;
}

.home-slides .slide {
  position: relative;
  width: 100%;
  text-align: center;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.home-slides .slide img {
  width: 100%;
  height: auto;
}

.home-slides .slide .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.home-slides .slide h2 {
  color: #fff;
  font-size: 65px;
  line-height: 1.2;
  text-align: left;
}

.home-slides .slide .btn-parent {
  text-align: center;
  padding: 40px 0 0;
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
}

.home-slides .slide .full-link {
  display: block;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
}

.home-slides .slide iframe, .home-slides .slide video {
  box-sizing: border-box;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  width: 177.77777778vh;
  z-index: 3;
}

.home-slides .video-layer {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 6;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-slides .video-layer:hover, .home-slides .video-layer:focus {
  opacity: 1;
}

.home-slides .video-layer.ios {
  display: none;
}

.home-slides .video-layer .btn-playing {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  margin: 20px 0 0 20px;
  z-index: 6;
}

.home-slides .video-layer .btn-playing > div {
  display: none;
}

.home-slides .video-layer .btn-playing > div svg {
  width: 30px;
  height: 30px;
}

.home-slides .video-layer .btn-playing > div.active {
  display: block;
}

.home-slides .video-layer .btn-sound {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  margin: 20px 20px 0 0;
  z-index: 6;
}

.home-slides .video-layer .btn-sound > div {
  display: none;
}

.home-slides .video-layer .btn-sound > div svg {
  width: 30px;
  height: 30px;
}

.home-slides .video-layer .btn-sound > div.active {
  display: block;
}

.home-slides .owl-carousel .owl-dots {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  bottom: 20px;
  position: absolute;
}

.home-slides .owl-carousel .owl-dots .owl-dot {
  background: none;
}

.home-slides .owl-carousel .owl-dots .owl-dot span {
  background: #fff;
}

.home-slides .owl-carousel .owl-dots .owl-dot:hover span, .home-slides .owl-carousel .owl-dots .owl-dot:focus span, .home-slides .owl-carousel .owl-dots .owl-dot.active span {
  background: #0f5cb6;
}

@media (max-width: 767px) {
  .home-slides {
    width: 100%;
    margin-top: 0;
    display: block;
    overflow: hidden;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-height: none;
  }
}

@media (max-width: 767px) {
  .home-slides #video-mobile {
    display: block;
  }
}

@media (max-width: 767px) {
  .home-slides .slide {
    height: 125vw;
    max-height: none;
  }
}

@media (max-width: 767px) {
  .home-slides .slide img {
    max-height: none;
  }
}

@media (max-width: 767px) {
  .home-slides .slide h2 {
    font-size: 40px;
  }
}

@keyframes buttonHover {
  0% {
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
    opacity: .3;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.products {
  
}

.products.subpage {
  background-position: 100% top, right bottom;
  background-size: 90%, 100%;
  /*margin-top: 70px;*/
}

.products .title {
  color: #fff;
  font-size: 60px;
  margin-bottom: 20px;
  margin-left: 10px;
}

.products .subtitle {
  color: #961612;
}

.products .thumbnails .thumbnail {
  text-align: left;
  display: block;
  text-decoration: none;
  margin: 0px 10px;
}

.products .thumbnails .thumbnail .img-container {
  display: block;
  margin: 0 0 20px;
  text-align: center;
  overflow: hidden;
  padding: 10px;
}

.products .thumbnails .thumbnail .img-container .img-content, .products .thumbnails .thumbnail .img-container .img-inside {
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.products .thumbnails .thumbnail .img-container img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  width: 100%;
}

.products .thumbnails .thumbnail .product-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-content: flex-start;
  -ms-align-content: flex-start;
  align-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 81px;
  padding: 0 15px;
  position: relative;
  overflow: hidden;
}

.products .thumbnails .thumbnail .product-title h2, .products .thumbnails .thumbnail .product-title h3 {
  color: #fff;
  font-size: 22px;
  line-height: 27px;
  max-height: 81px;
}

.products .thumbnails .thumbnail .btn-parent {
  padding: 10px 15px;
}

@media (min-width: 768px) {
  .products .thumbnails .thumbnail:hover .btn, .products .thumbnails .thumbnail:focus .btn {
    color: #ffffff;
    background: #3c8acb;
  }
}

.products .thumbnails .thumbnail.category .product-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  -webkit-align-content: flex-start;
  -ms-align-content: flex-start;
  align-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 50px;
}

.products .thumbnails .thumbnail.category .product-title h2, .products .thumbnails .thumbnail.category .product-title h3 {
  font-size: 25px;
  line-height: 25px;
  max-height: 80px;
  text-transform: uppercase;
}

.products .thumbnails .thumbnail.category .product-title h2 span, .products .thumbnails .thumbnail.category .product-title h3 span {
  font-size: 20px;
}

.products .thumbnails .thumbnail.related .btn-parent {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
}

.products .thumbnails .thumbnail.related .img-container {
  margin: 0;
}

@media (min-width: 768px) {
  .products .thumbnails .thumbnail:hover .img-container img, .products .thumbnails .thumbnail:focus .img-container img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.products .thumbnails-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: flex-start;
  -ms-align-content: flex-start;
  align-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.products .thumbnails-grid .thumbnail {
  width: 25%;
}

.products .thumbnails-grid-detail .thumbnail {
  /*width: 100%;*/
}

.artcles .owl-carousel {
  padding: 0 1px;
}

.products .owl-carousel {
  padding: 0 1px;
}

.articles .owl-carousel .owl-dots {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  bottom: auto;
  position: absolute;
}

.products .owl-carousel .owl-dots {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  bottom: auto;
  /*position: absolute;*/
}

.products .owl-carousel .owl-dots .owl-dot {
  background: none;
}

.articles .owl-carousel .owl-dots .owl-dot {
  background: none;
}

.products .owl-carousel .owl-dots .owl-dot span {
  background: #0f5cb6;
}

.articles .owl-carousel .owl-dots .owl-dot span {
  background: #990000;
}

.products .owl-carousel .owl-dots .owl-dot:hover span, .products .owl-carousel .owl-dots .owl-dot:focus span, .products .owl-carousel .owl-dots .owl-dot.active span {
  background: #ffffff;
}

.articles .owl-carousel .owl-dots .owl-dot:hover span, .articles.owl-carousel .owl-dots .owl-dot:focus span, .articles .owl-carousel .owl-dots .owl-dot.active span {
  background: #0f5cb6;
}

@media (max-width: 1170px) {
  .articles .thumbnails .thumbnail.category .articles-title {
    height: 60px;
  }
}

@media (max-width: 1170px) {
  .products .thumbnails .thumbnail.category .product-title {
    height: 60px;
  }
}

@media (max-width: 1170px) {
  .articles .thumbnails .thumbnail.category .articles-title h2, .articles .thumbnails .thumbnail.category .articles-title h3 {
    font-size: 25px;
    line-height: 30px;
    max-height: 60px;
  }
}

@media (max-width: 1170px) {
  .products .thumbnails .thumbnail.category .product-title h2, .products .thumbnails .thumbnail.category .product-title h3 {
    font-size: 25px;
    line-height: 30px;
    max-height: 60px;
  }
}

@media (max-width: 980px) {
  .products .owl-carousel .owl-dots {
    position: relative;
  }
}

@media (max-width: 767px) {
  .products .thumbnails .thumbnail .img-container {
    margin: 0 0 15px;
  }
}

@media (max-width: 767px) {
  .products .thumbnails .thumbnail .product-title {
    height: 69px;
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  .products .thumbnails .thumbnail .product-title h2, .products .thumbnails .thumbnail .product-title h3 {
    font-size: 18px;
    line-height: 23px;
    max-height: 69px;
  }
}

@media (max-width: 767px) {
  .products .thumbnails .thumbnail .btn-parent {
    padding: 15px 10px;
  }
}

@media (max-width: 767px) {
  .products .thumbnails .thumbnail.category .product-title {
    height: 44px;
  }
}

@media (max-width: 767px) {
  .products .thumbnails .thumbnail.category .product-title h2, .products .thumbnails .thumbnail.category .product-title h3 {
    font-size: 17px;
    line-height: 22px;
    max-height: 44px;
  }
}

@media (max-width: 767px) {
  .products .thumbnails .thumbnail.category .product-title h2 span, .products .thumbnails .thumbnail.category .product-title h3 span {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .products .thumbnails .thumbnail.related .btn-parent {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .products .thumbnails-grid .thumbnail {
    width: 50%;
  }
}

.footer-logo {
  margin-left: 12vw;
  max-width: 10%;
  bottom: -0.5vw;
  position: absolute;
  /* margin-left: -50%; */
  left: -7vw;
}

.header-logo {
  width: 130px;
  padding: 5px;
}

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 0;
}

.menu-padimas {
}

.wrapper {
  margin-top: 70px;
}

.header-img {
  margin-top: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto;
}

.tag-header {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
  font-size: xx-large;
  color: #ffffff;
}

@media (max-width: 767px) {
  .tag-header {
    font-size: 20px;
  }
}

.btn-outline-success.focus, .btn-outline-success:focus{
  box-shadow: 0 0 0 0rem rgb(40 167 69 / 50%);
}

.char-2 {
  position: absolute;
  width: 10%;
  margin-left: 80%;
}

.char-1 {
  position: absolute;
  width: 10%;
  margin-left: 10%;
}

.section .products .subpage .content > * {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}

.section .products .subpage .content > div:first-child img {
  width: 100%;
}

img {
}

.btn-dark.focus, .btn-dark:focus {
  color: #fff;
  box-shadow: 0 0 0 0 rgb(82 88 93 / 50%);
}

.btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #c30000;
  border-color: #171a1d;
}

.btn-dark:hover {
  color: #000000;
  background-color: #fff500;
  border-color: rgba(255,255,255,0);
}

.btn-dark {
  color: #fff;
  border-color: rgba(255,255,255,0);
}

.product-details .columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: flex-start;
  -ms-align-content: flex-start;
  align-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.product-details .pack {
  display: block;
  text-decoration: none;
}

.to-buy-now {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  display: inline-block;
}

a {
  color: #444;
}

.product-details .pack img {
  width: 100%;
}

.product-details .parent-buy-now {
  padding: 20px 0 0;
  text-align: left;
}

@media (min-width: 768px) {
  .just-mobile {
    display: none !important;
  }
}

@media (min-width: 1171px) {
  .just-tab {
    display: none !important;
  }
}

.product-details .pack {
  display: block;
  text-decoration: none;
}

.to-buy-now {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  display: inline-block;
}

.product-details h1 {
  text-align: left;
  color: #151515;
  line-height: 33px;
  font-size: 28px;
}

.top-header-container nav ul li > a, #submenu li a > .right-side p, #submenu li a .btn, h1, h2, h3, h4, .title, .page-node-type-products .linkable, .product-details h1 {
  font-family: 'Montserrat-Bold', sans-serif;
  font-weight: normal;
  letter-spacing: -1px;
}

h1, h2, h3 {
  color: #151515;
  font-size: 38px;
  line-height: 1.2;
}

body, p, .product-details .disclaimer p a {
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  letter-spacing: -1px;
}

.title.small, .subtitle, .btn {
  font-family: 'Montserrat-Bold', cursive;
  font-weight: normal;
  letter-spacing: -1px;
}

.top-header-container nav ul li > a, #submenu li a > .right-side p, #submenu li a .btn, h1, h2, h3, h4, .title, .page-node-type-products .linkable, .product-details h1 {
  font-family: 'Montserrat-Bold', sans-serif;
  font-weight: normal;
  letter-spacing: -1px;
}

.product-details {
  text-align: left;
}

.product-details h1 {
  text-align: left;
  color: #151515;
  line-height: 33px;
  font-size: 28px;
}

.product-details .columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: flex-start;
  -ms-align-content: flex-start;
  align-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.product-details .columns > div:first-child {
  width: 50%;
  text-align: center;
}

.product-details .columns > div:first-child + div {
  background: #fff;
  width: 50%;
  padding: 40px 20px;
}

.product-details .pack {
  display: block;
  text-decoration: none;
}

.product-details .pack img {
  width: 100%;
}

.product-details .pack:hover .btn, .product-details .pack:focus .btn {
  color: #000;
  background: #fff;
}

.product-details .parent-buy-now {
  padding: 20px 0 0;
  text-align: left;
}

.product-details .copy-for-description h2 {
  color: #151515;
  font-size: 35px;
  margin-bottom: 36px;
  margin-top: -10px;
  text-transform: uppercase;
}

.product-details .copy-for-description hr {
  display: none;
}

.product-details .expandible {
  padding-bottom: 15px;
}

.product-details .disclaimer p {
  font-size: 12px;
  margin-top: 10px;
  word-wrap: break-word;
}

.product-details .disclaimer p a {
  color: inherit;
}

.related-products {
  margin-top: 5%;
  padding: 3% 5%;
}

@media (max-width: 980px) {
  .product-details > .container > div {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .page-node-type-products .product-details .copy-for-description {
    padding: 0 5%;
  }
}

.page-node-type-products .product-details > .container > div {
  padding: 0;
}

@media (max-width: 767px) {
  .page-node-type-products .product-details .parent-buy-now {
    text-align: center;
    padding: 20px 0;
  }
}

.page-node-type-products #product-title-mobile {
  max-width: 90%;
  font-size: 33px;
  color: #151515;
  line-height: 1em;
  text-align: center;
  margin: 0 auto 20px;
}

.page-node-type-products #product-title-mobile + img {
  max-width: 80%;
  max-height: 240px;
  margin-left: auto;
  margin-right: auto;
}

.page-node-type-products #nutrition-facts {
  padding: 0;
}

.page-node-type-products .to-buy-now.just-mobile {
  display: inline-block !important;
  margin: 30px auto;
}

.page-node-type-products .linkable {
  display: block;
  margin-bottom: 15px;
  margin-top: 20px;
  position: relative;
  color: #151515;
  font-size: 23px;
  padding: 0 0 11px;
  border-bottom: 3px solid #ee3124;
  text-align: left;
  text-decoration: none;
}

.top-header-container nav ul li > a, #submenu li a > .right-side p, #submenu li a .btn, h1, h2, h3, h4, .title, .page-node-type-products .linkable, .product-details h1 {
  font-family: 'Montserrat-Bold', sans-serif;
  font-weight: normal;
  letter-spacing: -1px;
}

.page-node-type-products .expandible p {
  font-size: 15px;
  line-height: 1.5;
}

.page-node-type-products .expandible ul, .page-node-type-products .expandible li, .page-node-type-products .expandible p {
  text-align: left;
  word-wrap: break-word;
}

.page-node-type-products .expandible.expanded {
  display: block;
}

@media (max-width: 767px) {
  .page-node-type-products .product-details .columns > div {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .page-node-type-products .product-details .columns > div + div {
    width: 100%;
    margin-right: 0;
    padding: 20px 10px;
  }
}

.product-details .columns > div:first + child + div {
  background: #fff;
  width: 50%;
  padding: 40px 20px;
}

.blog-wrap {
  padding: 20px 0;
  background: #fff;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 992px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}

@media (min-width: 768px) {
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

@media (min-width: 1200px) {
  .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

aside, footer, header, nav, section {
  display: block;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

p {
  font-size: 17px;
}

@media (min-width: 768px) {
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 768px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}

@media (min-width: 576px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}

.pull-left {
  float: left;
}

.sharePopup {
  font-size: 11px;
}

.jssocials-shares {
  margin: 0.2em 0;
}

.btn.btn-dark.btn-lg.btn-activities {
  margin-top: .5%;
}

.product-category {
  margin-bottom: 20px;
}

.btn:hover {
  color: #ffffff;
  text-decoration: none;
  background: #c30000;
  border-color: #ffffff00;
}

#category-description {
  margin-bottom: 20px;
}

.card-img-top {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
  height: 50px;
}

@media (min-width: 1174px) {
  .header-logo{
    margin-left: 0px;
  }
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9); /* Black with a little bit see-through */
}

/* The content */
.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

/* Close button */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}

/* Style the search field */
.overlay input[type=text] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  width: 80%;
  background: white;
}

.overlay input[type=text]:hover {
  background: #f1f1f1;
}

/* Style the submit button */
.overlay button {
  float: left;
  width: 20%;
  padding: 15px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.overlay button:hover {
  background: #bbb;
}

.loading-food-img {
  margin-left: auto;
  margin-right: auto;
  width: 15%;
  padding: 0.5vw;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

body, p {
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  letter-spacing: -1px;
}

body {
  background: #fff;
}

.top-header-container {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.top-header-container nav ul li > a, #submenu li a > .right-side p, #submenu li a .btn, h1, h2, h3, h4, .title, .home-slides .slide h2, .products .thumbnails .thumbnail .product-title h2, .products .thumbnails .thumbnail .product-title h3 {
  font-family: 'Montserrat-Bold', sans-serif;
  font-weight: normal;
  letter-spacing: -1px;
}

.prevent-overflow {
  width: 100%;
  overflow: hidden;
}

.about {
  /*position: relative;*/
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  overflow: hidden;
  background-color: #3c8dbc00;
  background-size: 150%;
  background-repeat: repeat;
}

.about-img{
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  width: 100%;
}

.about1{
  position: absolute;
  /*margin-top: 25%;*/
  background: #fff;
  padding: 2% 1%;
  bottom: 0px;
  width: 100%;
  height: 40%;
}

.about-info{
  padding: 10px 10px;
}

.about-info > p{
  font-size: 1.2vw;
  overflow-wrap: break-word;
  line-height: 1.6vw;
  font-weight: 600;
  font-family: 'gishabd';
}

.about-food-img {
  margin-left:auto;
  margin-right:auto;
  width:10%;
  padding: 1.5vw;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.products{
  background-color: #00c4ff;
  background-size:120%;
  background-position:center;
}

.distribusi{
  position: relative;
  background: rgb(255, 255, 255);
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  overflow: hidden;
}

.distribusi-img{
    position: relative;
    left: 0px;
    top: 0px;
    z-index: 1;
    /*width: 90%;*/
}

.tag-up{
  background: #fff;
  width: 20%;
  max-width: 30%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0px 0px 20px 20px;
  overflow:hidden;
}

.tag-title{
  font-size:2vw;
  text-align: center;
  color:#0f70b7;
  text-transform: uppercase;
}

.tag-title-add{
  font-size:2vw;
  text-align: center;
  color:#00c4ff;
  text-transform: uppercase;
}

.tag-title-sub{
  text-align: center;
  color: #00c4ff;
  text-transform: uppercase;
}

.tag-img{
  width: 10%;
  fill: #00c4ff;
}

.card-kegiatan {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  /* background-color: #fff; */
  background-clip: border-box;
  /* border: 1px solid rgba(0,0,0,.125); */
  border-radius: .25rem;
  transition: transform .2s;
}

.card-title{
  font-size:2vw;
}

.row-contact{
  padding: 2vw 0px 40px;
  text-align-last: left;
}

.row-contact li {
  margin: 0px 0px 4% 0px;
}

.row-contact a {
  color: #fff;
  /*font-size: 1.5vw;*/
}

.contact-text{
  color: #fff;
  font-size: 17px;
}

.contact-img{
  width:20%;
  margin: 10px 10px 30px;
}

.to-language{
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 10px;
  border: #fff 1px solid;
  text-transform: uppercase;
  padding: 7px 5px 3px;
  margin-left: 5px;
}
 
.kegiatan {
  background: #feed00;
  position: relative;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  overflow: hidden;
}

.kegiatan > .row {
  margin: 5% 5% 10% 5%;
  position: inherit;
  -ms-transform: translateY(-50%);
  width: 90%;
}

.kegiatan > .btn-more{
  position: absolute;
  background: #fff;
  bottom: 0;
  width: 100%;
  height: 15%;
}

.btn-activities{
  font-size: 1vw;
}

.social > .row {
  margin: 0 5%;
  position: inherit;
  -ms-transform: translateY(-50%);
  width: 90%;
  margin-top: 30px;
}

.social-col {
  width: 55.3333%;
  margin-bottom: 20px;
}

.social-img{
  max-width: 100%;
}

.social {
  background-size: cover;
}

.contact {
  position: relative;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  overflow: hidden;
}

.contact > .row {
  /*margin: 0 5%;*/
  margin: 0 5% 7vw!important;
  position: inherit;
}

.kontak-icon {
  color: #fff;
  font-size: 1vw;
  width: 3vw;
}

.footer {
  background-color: #00c4ff;
  position: absolute;
  bottom: 3vw;
  width: 100%;
  margin-left: 11.5vw;
}

.footer-text {
  margin-left: auto;
  margin-right: auto;
  color: #132054;
  font-size: 1.5vw;
  /* position: absolute; */
  bottom: 4vw;
  left: 26vw;
  padding: 0.5vw;
}

.products-slider{
  margin: 50px 0 0;
}

.sub-product-slides{
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  overflow: hidden;
}

.tombol-menu-active, .tombol-menu-active:hover, .tombol-menu:hover{
  /*background: #ff0000;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  padding: 3px;*/
  background: #ffffff00;
  color: #0f70b7;
  border-radius: 10px;
  text-decoration: none;
  padding: 5px;
  border-color: #0f70b7;
  border-style: solid;
  border-width: 3px;
}

.event-subpage{
  padding:0px;
  background-color: #feed00; 
  /*margin-top: 70px;*/
  position: relative;
}

.tag-up-event{
  /*width: 30%;*/
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0px 0px 30px 30px;
  overflow:hidden;
  background: #fff;
  position: absolute;
  z-index: 1;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.side-left{
  background-size: contain;
  background-position: top;
  background-repeat: repeat;
  background-position-x: 8px;
  /*background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-position-x: 5px; */
  /* background-position-y: 10px; */
  background-color: #beab07;
}

.side-right{
  background-size: contain;
  background-position: top;
  background-repeat: repeat;
  background-position-x: -7px;
  /*background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-position-x: 5px; */
  /* background-position-y: 10px; */
  background-color: #beab07;
  /*transform:scaleX(-1);*/
}

.card-kegiatan > a:hover {
  border-radius: 10px;
  text-decoration: none;
  /*padding: 3px;*/
}

.subevent > .card-kegiatan > a:hover {
  border-radius: 10px;
  text-decoration: none;
  /*padding: 3px;*/
  transform: scale(1.1);
  transition: transform .5s;
  z-index: 1;
}

.menu-right {
  background-color: #beab07;
}

.menu-right-head {
  margin-top: 20px;
  font-weight: bold;
  color:#000;
}

.tab {
  margin-top: 10px;
}

.tablinks {
  font-size:15px;
  color:#000;
  font-weight: bold;
}

.tab > a:hover, .tab > a.active{
  background: #ff0000;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  padding: 5px;
}

.tabcontent {
  margin-top: 30px;
  display: block;
  text-align: left;
  color: #000;
  margin: 30px 0px 30px 30px;
}

.tabcontent > ul > li {
  list-style: disc;
  padding: 7px 0px;
}

.tabcontent > ul > li > a{
  color:#000;
}

.tabcontent > ul > li > a:hover, .tabcontent > ul > li > a.active{
  background: #ff0000;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  padding: 5px;
  line-height: 30px;
}

.caption-product{
  padding: 20px;
  margin-top: -20vw;
  color: #fff;
}

.loading-img{
  width: 30%;
  margin-bottom: 2%;
}

@media (max-width: 767px){
  .tag-up-event{
    width: 80%;
  }
  .tag-up-event > .tag-title {
    margin-top: 5px;
    font-size: 5vw;
    padding: 10px 0px;
    color: #0f70b7;
  }
}

@media (max-width: 980px) {
  html, body {
    height: auto;
  }
}

/*-- CSS untuk Desktop --*/

@media(min-width: 1170px){
  
  .top-header-container nav {
    padding: 0px 100px;
  }

  .about-info{
    padding: 0px 300px 0px;
  }

  .distribusi-img {
    left: 0px;
    z-index: 1;
    /*width: 90%;*/
    /*margin: 0 5%;*/
  }

  .social > .row {
    margin: 0 5%;
  }

  .contact > .row {
    margin: 0 5%;
  }

  .social-col {
    padding: 5vw;
  }
}

/*-- CSS untuk Mobile --*/

@media (max-width: 767px) {
  .loading-img{
    width: 30%;
    margin-bottom: 10%;
  }

  .top-header-container nav{
    padding: 0px 20px;
  }
  
  .tag-up{
    background: #fff;
    width: 60%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0px 0px 20px 20px;
    overflow:hidden;
  }

  .tag-title{
    font-size:5vw;
    text-align: center;
    color:#0f70b7;
    text-transform: uppercase;
  }

  .tag-title-add{
    font-size:5vw;
    text-align: center;
    text-transform: uppercase;
  }

  .about1 {
    margin-top: 150px;
  }

  .about-info{
    padding: 10px 10px;
    min-height: 250px;
  }

  .about-info > p {
    margin-top: 20px;
    padding-bottom: 40px;
    font-size: 4vw;
    overflow-wrap: break-word;
    line-height: 5vw;
    font-family: 'gishabd';
  }

  .about {
    background-size: 300%;
  }

  .card-title{
    font-size:15px;
  }

  .kegiatan > .btn-more{
    height: 60px;
  }

  .btn-activities{
    font-size: 10px;
  }

  .social > .row {
    margin: 40px 5%;
    justify-content: center !important;
  }
  
  .social {
    background-size: 350%;
  }

  .row-contact li {
    margin: 0px 0px 2% 0px;
  }

  .kontak-icon {
    color: #fff;
    font-size: 90%;
    width: 6vw;
  }

  .contact-text{
    color: #fff;
    font-size: 15px;
  }

  .row-contact a {
    color: #fff;
    font-size: 15px;
  }

  .contact-img{
    width: 15%;
    margin: 10px 10px 30px;
  }

  .row-contact{
    padding: 4vw 0px 0px;
  }

  .footer-logo {
    max-width: 15%;
  }

  .footer-text {
    font-size: 2.3vw;
    bottom: 6.5vw;
    margin-left: 20%;
  }
}

/* --- Animasi ---*/

.bounce-1 {
  animation-name: bounce-1;
  animation-timing-function: ease;
}
@keyframes bounce-1 {
  0%   { transform: translateY(0); }
  10%  { transform: translateY(-15px); }
  50%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}

.bounce-2 {
  animation-name: bounce-2;
  animation-timing-function: ease;
}
@keyframes bounce-2 {
  0%   { transform: translateY(0); }
  5%   { transform: translateY(0); }
  15%  { transform: translateY(-15px); }
  60%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}

.bounce-3 {
  animation-name: bounce-3;
  animation-timing-function: ease;
}
@keyframes bounce-3 {
  0%   { transform: translateY(0); }
  10%   { transform: translateY(0); }
  20%  { transform: translateY(-15px); }
  70%  { transform: translateY(0px); }
  100% { transform: translateY(0); }
}

.bounce-4 {
  animation-name: bounce-4;
  animation-timing-function: ease;
}
@keyframes bounce-4 {
  0%   { transform: translateY(0); }
  15%   { transform: translateY(0); }
  30%  { transform: translateY(-15px); }
  80% { transform: translateY(0); }
  100% { transform: translateY(0); }
}

.bounce-5 {
  animation-name: bounce-5;
  animation-timing-function: ease;
}
@keyframes bounce-5 {
  0%   { transform: translateY(0); }
  20%   { transform: translateY(0); }
  40%  { transform: translateY(-15px); }
  90% { transform: translateY(0); }
  100% { transform: translateY(0); }
}

.bounce-6 {
  animation-name: bounce-6;
  animation-timing-function: ease;
}
@keyframes bounce-6 {
  0%   { transform: translateY(0); }
  30%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.bounce-product {
  animation-name: bounce-product;
  animation-timing-function: ease;
}
@keyframes bounce-product {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.carousel-control-next-icon{
  background-image: url("../../client/img/next.svg");
}

.carousel-control-prev-icon{
  background-image: url("../../client/img/previous.svg");
}

.section-product{
  position: relative;
  margin: 0 0;
  overflow: hidden;
}

.container-product{
  position: relative;
  z-index: 2;
  width: 80%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.justify-content-center{
  justify-content: center !important;
}

.product_wrapper{
  position: relative;
  padding: 10px;
}

.justify-content-md-start{
  justify-content: flex-start !important;
}

.bg-bottom{
  padding-top: 21.3334%;
  margin-top: -14%;
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.top-header-container .menu-auxiliar {
  display: none;
}

@media (max-width: 1170px) {
  .top-header-container .menu-auxiliar {
    opacity: 0;
    text-align: left;
    margin: 0;
    position: relative;
    display: block;
  }
}

.social-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-content: flex-start;
  -ms-align-content: flex-start;
  align-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 20px 0 0;
}

.social-icons a {
  -webkit-transform-origin: center center;
  transform-origin: center center;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
  max-width: 100%;
  background-size: 360%;
  margin: 0 10px 0 0;
  background-image: url("../../client/img/medsos.png");
  display: block;
  position: relative;
}

.social-icons a:hover, .social-icons a:focus {
  animation-delay: 0s;
  animation-duration: .5s;
  animation-name: hoverIcon;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  -webkit-animation-delay: 0s;
  -webkit-animation-duration: .5s;
  -webkit-animation-name: hoverIcon;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
}

.social-icons .facebook {
  background-position: 60px 0;
}

.social-icons .instagram {
  background-position: 0 25%;
}

.social-icons .snapchat {
  background-position: 0 50%;
}

.social-icons .twitter {
  background-position: 138px 0%;
}

.social-icons .youtube {
  background-position: 0 100%;
}