@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&display=swap');

:root {
  --color-gray-100: hsl(220, 12%, 98%);
  --color-gray-200: hsl(220, 12%, 90%);
  --color-gray-300: hsl(220, 12%, 85%);
  --color-gray-400: hsl(220, 12%, 65%);
  --color-gray-500: hsl(220, 12%, 45%);

  --color-dark-100: hsl(240, 10%, 15%);
  --color-dark-200: hsl(240, 10%, 12%);
  --color-dark-300: hsl(240, 10%, 9%);
  --color-dark-400: hsl(240, 10%, 6%);
  --color-dark-500: hsl(240, 10%, 3%);

  --color-blue-100: hsl(217, 80%, 65%);
  --color-blue-200: hsl(217, 80%, 60%);
  --color-blue-300: hsl(217, 80%, 55%);
  --color-blue-400: hsl(217, 80%, 50%);
  --color-blue-500: hsl(217, 80%, 45%);

  --color-yellow-100: hsl(55, 80%, 65%);
  --color-yellow-200: hsl(55, 80%, 60%);
  --color-yellow-300: hsl(55, 80%, 55%);
  --color-yellow-400: hsl(55, 80%, 50%);
  --color-yellow-500: hsl(55, 80%, 45%);

  --color-red-100: hsl(0, 100%, 65%);
  --color-red-200: hsl(0, 100%, 60%);
  --color-red-300: hsl(0, 100%, 55%);
  --color-red-400: hsl(0, 100%, 50%);
  --color-red-500: hsl(0, 100%, 45%);
  --color-red-dark: hsl(0, 100%, 40%);
  --color-red-darkain: hsl(0, 100%, 10%);

  --color-green-100: hsl(129, 100%, 65%);
  --color-green-200: hsl(129, 100%, 60%);
  --color-green-300: hsl(129, 100%, 55%);
  --color-green-400: hsl(129, 100%, 50%);
  --color-green-500: hsl(129, 100%, 45%);
  --color-green-dark: hsl(129, 100%, 40%);

  --color-link-hover: hsl(0, 100%, 25%);

  --shadow-small: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  --shadow-medium: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  --shadow-large: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  --shadow-extra: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;

  --main-font: "Noto Sans Thai", ui-sans-serif, sans-serif;

  --font-size-xxl: 2.46rem;
  --font-size-xl: 1.86rem;
  --font-size-lg: 1.26rem;
  --font-size-md: 0.96rem;
  --font-size-sm: 0.86rem;
  --font-size-xs: 0.76rem;
  --font-size-xxs: 0.66rem;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  /* box-sizing: inherit; */
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: var(--main-font);
  font-size: clamp(0.96rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
}

main,
section {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  user-select: none !important;
  border: none !important;
  outline: none !important;
  color: inherit;
  background: unset;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--main-font);
  line-height: 1.25;
  text-wrap: balance;
  word-wrap: break-word;
}

p,
li {
  font-family: var(--main-font);
  line-height: 1.5;
  text-wrap: pretty;
  word-wrap: break-word;
}

img,
svg,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

img {
  border-radius: 2px;
}

.bxl,
.bx {
  line-height: inherit;
  display: inline-grid;
  vertical-align: middle;
  align-items: center;
  padding: 0 2px;
}

.fs-xxl {
  font-size: var(--font-size-xxl);
}

.fs-xl {
  font-size: var(--font-size-xl);
}

.fs-lg {
  font-size: var(--font-size-lg);
}

.fs-md {
  font-size: var(--font-size-md);
}

.fs-sm {
  font-size: var(--font-size-sm);
}

.fs-xs {
  font-size: var(--font-size-xs);
}

.fs-xxs {
  font-size: var(--font-size-xxs);
}


.section {
  padding-block: 6rem 3rem;
}

.container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.center {
  text-align: center;
  vertical-align: middle;
}


.title-small {
  font-family: var(--main-font);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
}

.title-medium {
  font-family: var(--main-font);
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
}

.title-large {
  font-family: var(--main-font);
  font-size: clamp(1.65rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

.text-small {
  font-family: var(--main-font);
  font-size: 0.85rem;
  line-height: 1.5;
}

.text-base {
  font-family: var(--main-font);
  font-size: 1rem;
  line-height: 1.5;
}

.text-medium {
  font-family: var(--main-font);
  font-size: 1.15rem;
  line-height: 1.5;
}

.text-large {
  font-family: var(--main-font);
  font-size: 1.3rem;
  line-height: 1.5;
}

.text-upper {
  text-transform: uppercase;
}

.text-lower {
  text-transform: lowercase;
}

.text-capital {
  text-transform: capitalize;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semi {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.btn {
  display: inline-flex;
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  vertical-align: middle;
  column-gap: 0.35rem;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  border-radius: 3rem;
  transition: all 0.25s ease;
}

.btn:hover {
  box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19) !important;
}

.btn-primary-custom,
.btn-primary-custom:hover,
.btn-primary-custom:focus,
.btn-primary-custom:active,
.btn-primary-custom::before {
  color: var(--color-yellow-100);
  background-color: var(--color-red-500);
  box-shadow: var(--shadow-medium);
}

.btn-neutral {
  color: var(--color-dark-300);
  background-color: var(--color-gray-100);
  box-shadow: var(--shadow-medium);
}

.btn-darken {
  color: var(--color-gray-100);
  background-color: var(--color-dark-100);
  box-shadow: var(--shadow-medium);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
  background-color: var(--color-yellow-300);
  border-bottom: 2px solid var(--color-green-dark);
}

.header.on-scroll {
  background-color: var(--color-yellow-400);
  box-shadow: var(--shadow-medium);
}

.navbar-custom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: baseline;
  column-gap: 1rem;
  width: auto;
  height: 4rem;
  margin-inline: auto;
}

.brand {
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-gray-100);
}

.brand img {
  max-height: 3.8rem;
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-block: 2.8rem;
  background-color: var(--color-yellow-400);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.menu.is-active {
  top: 0;
  left: 0;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
  padding-top: 1.25rem;
  margin-left: -2rem;
  list-style: none;
  list-style-type: none;
}

.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-red-dark);
}

.menu-block {
  margin-left: auto;
}

@media screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: initial;
    width: auto;
    padding: 0;
    margin-left: auto;
    background: unset;
    box-shadow: unset;
    transition: unset;
  }

  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin-inline: auto;
  }

  .menu-link {
    text-transform: capitalize;
  }

  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  cursor: pointer;
  position: relative;
  display: block;
  order: -1;
  z-index: 10;
  width: 1.5rem;
  height: 1rem;
  user-select: none;
  visibility: visible;
}

@media screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 2px;
  background-color: var(--color-red-100);
  transition: all 0.25s ease;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
  left: -1rem;
  opacity: 0;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.overlay {
  position: fixed;
  display: none;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: black;
  transition: all 0.3s ease;
}

.overlay.is-active {
  display: block;
}

/*
.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
  column-gap: 2rem;
}

@media screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    margin-top: 4rem;
  }
}

@media screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 4rem;
  }
}

.banner-image {
  display: block;
  max-width: 18rem;
  height: auto;
  object-fit: cover;
  justify-self: center;
}

@media screen and (min-width: 48rem) {
  .banner-image {
    order: 1;
    max-width: 20rem;
  }
}

@media screen and (min-width: 64rem) {
  .banner-image {
    max-width: 24rem;
  }
}

*/


.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  row-gap: 1.5rem;
}

.banner-link {
  position: absolute;
  display: grid;
  top: 30%;
  right: 1.5rem;
  justify-items: center;
  row-gap: 0.5rem;
  visibility: hidden;
}

@media screen and (min-width: 64rem) {
  .banner-link {
    visibility: visible;
  }
}

.banner-link>* {
  font-size: 1.25rem;
  line-height: inherit;
  color: var(--color-gray-100);
}

.banner-link::before,
.banner-link::after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: var(--color-gray-100);
}

.banner-link::before {
  top: -3rem;
}

.banner-link::after {
  bottom: -3rem;
}


.slick-prev,
.slick-next {
  border-radius: 15px;
  border-color: transparent;
}


.hero-slider {
  position: relative;
}

.btn-slick {
  border-radius: .24rem;
}

.hero-slider .btn-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 8px;
}

.hero-slider .btn-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 8px;
}

.hero-content {
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.45);
}

.hero-text-shadow {
  color: #FFF;
  text-shadow: 1px 1px #131313;
}


.btn-prev,
.btn-next {
  padding-bottom: 0px;
  background-color: rgba(196, 196, 196, 0.25);
  font-size: var(--font-size-xl);
  color: #cecece;
}


.heading-box {
  margin-top: 18px;
  width: 100%;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 6px;
  box-shadow: 0 0px #111 inset, 0 -1px rgba(0, 0, 0, 0.09) inset, -0px 0 #111 inset, 0px 0 #111 inset;
  -moz-box-shadow: 0 0px #111 inset, 0 -1px rgba(0, 0, 0, 0.09) inset, -0px 0 #111 inset, 0px 0 #111 inset;
  -webkit-box-shadow: 0 0px #111 inset, 0 -1px rgba(0, 0, 0, 0.09) inset, -0px 0 #111 inset, 0px 0 #111 inset;
}

.heading-box h2 {
  font-weight: 500;
  font-size: 1.4rem;
  padding: 0.2rem 0.2rem;
  margin-bottom: 4px;
}


.slide-products .item {
  padding: 14px;
}

.slide-products .slick-arrow {
  visibility: visible;
  width: 40px;
  height: 40px;
  z-index: 1;
}

.slide-products .slick-arrow:before {
  font-size: 40px;
  color: var(--color-arrow) !important;
}

.slide-products button.slick-prev {
  margin-left: 12px;
}

.slide-products button.slick-next {
  margin-right: 12px;
}

.card-product {
  transition: .3s transform cubic-bezier(.155, 1.105, .295, 1.12), .3s box-shadow, .3s -webkit-transform cubic-bezier(.155, 1.105, .295, 1.12);
  border-radius: 1rem;
  padding: 4px;
}

.card-product .card-body {
  padding: 2px;
}

.card-product:hover {
  transform: scale(1.02);
}

.card-product h2 {
  font-size: 1rem;
}

.card-product h5 {
  overflow: hidden;
  height: 40px;
  font-weight: 300;
  font-size: 1rem;
}

.card-product .card-title {
  font-size: var(--font-size-md);
}

.card-img-border img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: calc(0.48rem - 1px);
  box-shadow: 0 6px 10px hsla(0, 0%, 0%, 0.08), 0 0 6px hsla(0, 0%, 0%, 0.05);
  transition: .3s transform cubic-bezier(.155, 1.105, .295, 1.12), .3s box-shadow, .3s -webkit-transform cubic-bezier(.155, 1.105, .295, 1.12);
}

.card-news,
.card-news:hover {
  border: 1px dotted #cecece;
  box-shadow: 0 0px #111 inset, 0 -1px rgba(0, 0, 0, 0.09) inset, -0px 0 #111 inset, 0px 0 #111 inset;
  -moz-box-shadow: 0 0px #111 inset, 0 -1px rgba(0, 0, 0, 0.09) inset, -0px 0 #111 inset, 0px 0 #111 inset;
  -webkit-box-shadow: 0 0px #111 inset, 0 -1px rgba(0, 0, 0, 0.09) inset, -0px 0 #111 inset, 0px 0 #111 inset;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(1rem - 1px);
  border-top-right-radius: calc(1rem - 1px);
}

.card-img-top img {
  width: 100%;
  padding: 20px 2px;
}

.card-text {
  font-size: var(--font-size-md);
}


.image-future {
  max-width: 6rem;
  max-height: 10rem;
}


.custom-footer-area {
  background-color: #fbfbfd;
  margin-top: 1rem;
}

.footer-cta {
  padding: 18px 0px;
  border-bottom: 1px solid #898989;
}

.single-cta .cta-icon {
  min-width: 32px;
}

.cta-icon i {
  color: var(--color-primary-hover);
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}


.custom-footer-top {
  padding: 40px 1px;
  position: relative;
  overflow-x: hidden;
}

.custom-footer-top a:hover,
.custom-footer-top a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
}


.custom-footer-top .footer-social_icon a+a {
  margin-left: 4px;
}

.custom-footer-top .footer-title {
  margin-top: 18px;
  padding-bottom: 6px;
  font-weight: 600;
  font-size: 1.125rem;
  color: #263b5e;
}

.custom-footer-top .company_widget p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #6a7695;
  margin-bottom: 20px;
}

.custom-footer-top .company_widget .f_subscribe_two .btn_get {
  border-width: 1px;
  margin-top: 20px;
}

.custom-footer-top .footer-widget {
  font-size: var(--font-size-md);
}

.custom-footer-top .footer-widget .footer-list li a {
  color: #121212;
}

.custom-footer-top .footer-widget .footer-list li a:hover {
  color: var(--color-link-hover);
}

.custom-footer-top .footer-widget .footer-list li {
  margin-bottom: 10px;
}

.custom-bg-footer-top {
  background-color: rgba(255, 255, 255, 0.10);
  border-radius: 5px;
}

.footer-widget .footer-list li:last-child {
  margin-bottom: 0px;
}

.footer-widget .footer-list li {
  margin-bottom: 15px;
}

.custom-footer-top .footer-social-icon a {
  width: 44px;
  height: 44px;
  line-height: 43px;
  font-size: 24px;
  color: var(--color-red-dark);
}

.footer-social-icon a {
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-red-dark);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 45px;
  display: inline-block;
  margin-right: 0.2rem;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.footer-social-icon a:hover {
  text-decoration: none;
  background: var(--color-red-dark);
  color: var(--color-yellow-100);
}

.footer-bottom {
  /* background-color: rgba(64, 0, 0, 0.10); */
  padding: 0 0;
  font-size: 0.825rem;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-dark-400);
}

.footer-bottom a {
  color: var(--color-dark-400);
}

.footer-bottom a:hover {
  color: var(--color-hover-white);
}

.footer .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 0px;
}

@media(max-width: 392px) {
  .list-inline-item {
    display: block;
    padding: 4px 1px;
  }
}

.footer-bottom {
  text-align: center;
  font-size: var(--font-size-sm);
  /* background-color: var(--color-red-dark); */
  /* color: var(--color-yellow-100); */
}

.custom-bg-footer {
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: top center;

}

.custom-bg-copyright {
  background-color: #ededed70;
}



.slick-dots li button:before {
  font-size: 15px;
  color: rgb(148, 148, 148);
}

.testimonial {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  color: rgb(16, 16, 16);
}

.testimonial-slide {
  padding: 20px;
}

.testimonial_box-top {
  background: #f20004;
  background: radial-gradient(circle, rgba(242, 0, 4, 1) 0%, rgba(112, 1, 1, 1) 100%);
  padding: 30px;
  border-radius: 15px;
  display: flex;
  position: relative;
  box-shadow: 5px 5px 20px rgba(80, 0, 0, 0.3);
}

.testimonial_box-icon {
  margin-top: -12px;
  padding-right: 20px;
}

.testimonial_box-icon i {
  font-size: 25px;
  color: var(--color-gray-100);
}

.testimonial_box-text p {
  color: var(--color-gray-100);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}

.testimonial_box-shape {
  position: absolute;
  bottom: -10px;
  left: 50px;
  width: 20px;
  height: 20px;
  background: rgb(158, 0, 0);
  background: linear-gradient(90deg, rgb(157, 0, 0) 0%, rgba(158, 0, 0, 1) 50%, rgba(150, 0, 0, 1) 100%);
  -webkit-transform: rotateZ(50deg);
  transform: rotateZ(45deg);
}

.testimonial_box-bottom {
  padding-top: 35px;
  padding-left: 25px;
}

.testimonial_box-profile {
  display: flex;
}

.testimonial_box-img {
  display: flex;
  justify-content: center;
}

.testimonial_box-img img {
  width: 180px;
  height: 180px;
  border-radius: 50px;
  border: 2px solid #00b819;
}

.testimonial_box-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 20px;
}

.testimonial_box-name h4 {
  font-size: 16px;
  line-height: 25px;
  color: rgb(38, 38, 38);
  margin-bottom: 0;
}

.testimonial_box-job p {
  color: rgb(53, 53, 53);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 0;
}


/*  ปรับแต่งเอง */
.testimonial_bar-bottom {
  padding-top: 35px;
  padding-bottom: 20px;
}

.testimonial_bar-img {
  display: flex;
  justify-content: center;
}

.testimonial_bar-img img {
  max-width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 2px solid #e5e5e5;
}

.testimonial_bar-info {
  display: block;
}

.testimonial_bar-name h4 {
  font-size: 16px;
  line-height: 25px;
  color: rgb(38, 38, 38);
  margin-bottom: 0;
}

.testimonial_bar-job p {
  color: rgb(53, 53, 53);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 0;
}

.brands {
  padding-top: 2rem;
}

.brand-logo {
  border-radius: 5px;
}


.slick-slide {
  margin: 0px 4px;
}

.slick-slide img {
  width: 100%;
}

/*
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
} */

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.block-youtube {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.youtube-player iframe {
  width: 100%;
  height: 100%;
  min-height: 315px;
}

.article-gallery {
  border-radius: 5px;
}


/* IMAGE MODAL */
.img-modal {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.img-modal:hover {
  opacity: 0.7;
}

.gallery-modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.gallery-modal-content {
  margin: auto;
  display: block;
  width: 100%;
  max-width: 900px;
}

.image-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.gallery-modal-content,
.image-caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0)
  }

  to {
    -webkit-transform: scale(1)
  }
}

@keyframes zoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.gallery-modal .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.gallery-modal .close:hover,
.gallery-modal .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .gallery-modal-content {
    width: 100%;
  }
}
