@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop
$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

Inside media queries 1em is always 16px i.e 1em = 16px at every screen size only inside media queries
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  font-family: inherit; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 59%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 56%; } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 65%; } }

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  line-height: 1.5;
  font-family: sans-serif;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: 'Source Sans Pro', sans-serif; }

a {
  text-decoration: none;
  color: inherit; }

li {
  list-style: none; }

input:focus,
button:focus,
a:focus,
textarea:focus {
  outline: none; }

button {
  border: none;
  cursor: pointer; }

textarea {
  resize: none; }

p {
  color: #fff;
  font-size: 2rem; }

.heading-primary {
  font-size: 6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center; }
  @media only screen and (max-width: 37.5em) {
    .heading-primary {
      font-size: 4.5rem; } }

.heading-sec__mb-bg {
  margin-bottom: 4rem; }
  @media only screen and (max-width: 56.25em) {
    .heading-sec__mb-bg {
      margin-bottom: 2rem; } }

.heading-sec__mb-med {
  margin-bottom: 3rem; }
  @media only screen and (max-width: 56.25em) {
    .heading-sec__mb-med {
      margin-bottom: 2rem; } }

.heading-sec__main {
  display: block;
  font-size: 4rem;
  text-transform: uppercase;
  text-align: center;
  position: relative; }

.heading-sec__sub {
  display: block;
  text-align: center;
  color: #777;
  font-size: 2rem;
  font-weight: 500;
  max-width: 80rem;
  margin: auto;
  line-height: 1.6; }
  @media only screen and (max-width: 37.5em) {
    .heading-sec__sub {
      font-size: 1.8rem; } }
  .heading-sec__sub--lt {
    color: #eee; }

.heading-sm {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px; }

.main-container {
  margin: auto; }

.btn {
  background: #fff;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  font-weight: 700;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s; }
  .btn:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px); }
  .btn--bg {
    padding: 1.5rem 8rem;
    font-size: 2rem; }
  .btn--med {
    padding: 1.5rem 5rem;
    font-size: 1.6rem; }
  .btn--theme {
    background: #fdeda2;
    color: #fff; }
  .btn--theme-inv {
    color: #fdeda2;
    background: #fff;
    border: 2px solid #fdeda2;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: calc(1.5rem - 2px) calc(5rem - 2px); }

.sec-pad {
  padding: 0rem 0; }
  @media only screen and (max-width: 56.25em) {
    .sec-pad {
      padding: 0rem 0; } }

.text-primary {
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  width: 100%;
  line-height: 1.6; }
  @media only screen and (max-width: 37.5em) {
    .text-primary {
      font-size: 2rem; } }

.d-none {
  display: none; }

.mb-1 {
  margin-bottom: 1rem; }

.item-box {
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  -webkit-box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.5); }

.w800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto; }

.w600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto; }

.w365 {
  max-width: 365px;
  margin-left: auto;
  margin-right: auto; }

.grid-container-2-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px; }
  @media only screen and (max-width: 37.5em) {
    .grid-container-2-1 {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr; } }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden; }

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.event-list .item-box {
  display: inline-block;
  vertical-align: top;
  width: 30%;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 30px; }
  @media only screen and (max-width: 37.5em) {
    .event-list .item-box {
      width: 100%; } }

.grid-container-4-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
  text-align: center; }
  @media only screen and (max-width: 37.5em) {
    .grid-container-4-2 {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr; } }

.grid-container-3-2-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr 1fr;
  grid-template-columns: 2fr 1fr 1fr;
  grid-gap: 0px; }

.grid-container-3-2-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 0px; }

.con {
  line-height: 0; }

.rwd-img {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  line-height: 0; }

.ta-c {
  text-align: center; }

.visible_m {
  display: none !important; }

@media only screen and (max-width: 37.5em) {
  .visible_pc {
    display: none !important; }
  .visible_m {
    display: block !important; } }

.slick-prev, .slick-next {
  width: 30px;
  height: 30px;
  z-index: 99; }
  .slick-prev::before, .slick-next::before {
    font-size: 30px; }

.slick-next {
  right: 2%; }

.slick-prev {
  left: 2%; }

.slider-tab2 .slick-prev, .slider-tab2 .slick-next {
  opacity: 0; }

.slider-tab3 {
  width: 90%;
  margin-left: 5%;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 0 !important;
  padding-bottom: 0px;
  line-height: 0; }
  .slider-tab3 .slick-prev, .slider-tab3 .slick-next {
    opacity: 0; }
  .slider-tab3 .pic img {
    padding-bottom: 0; }
  .slider-tab3 .slick-dots {
    right: 5%;
    bottom: 10px;
    width: auto; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 25px;
  height: 25px;
  line-height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before, .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.dn {
  display: none !important; }

.text-center {
  text-align: center !important; }

.pt-1 {
  padding-top: 6px;
  display: block; }

.home-hero {
  position: relative;
  max-height: 1200px; }
  .home-hero .slider-tab1 {
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 0; }
  @media only screen and (max-width: 37.5em) {
    .home-hero {
      height: unset;
      min-height: unset; } }
  .home-hero__content {
    position: absolute;
    bottom: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%; }
    @media only screen and (max-width: 37.5em) {
      .home-hero__content {
        margin: auto;
        bottom: 8%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); } }
  .home-hero__info {
    margin: 3rem auto 0 auto;
    max-width: 80rem; }
  .home-hero__cta {
    margin-top: 5rem;
    text-align: center; }

@media only screen and (max-width: 37.5em) {
  .fixbtn-form {
    position: fixed;
    z-index: 99;
    bottom: -5px; }
    .fixbtn-form a {
      padding: 0;
      margin: 0; }
      .fixbtn-form a img {
        line-height: 0; } }

.title {
  font-size: 3rem;
  color: #fff;
  text-align: center; }

.title2 {
  background-color: #4d79b5;
  font-size: 3rem;
  color: #fff;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 15px;
  margin-bottom: 2rem;
  line-height: 1em;
  border-radius: 10px; }

.food {
  background-image: url(../assets/images/food-bg.jpg); }

.trans {
  background-image: url(../assets/images/trans-bg.jpg); }
  .trans .transbtn-list {
    margin-top: 2rem;
    text-align: center; }
    .trans .transbtn-list a {
      display: inline-block;
      margin-left: 10px;
      margin-right: 10px; }
      @media only screen and (max-width: 37.5em) {
        .trans .transbtn-list a {
          width: 30%;
          margin-left: 1%;
          margin-right: 1%; } }

.lottery {
  background-image: url(../assets/images/lottery-bg-top.jpg), url(../assets/images/lottery-bg.jpg);
  background-position: top, bottom ,top center;
  background-repeat: repeat-x, repeat , repeat; }
  .lottery ul {
    margin-left: 2rem; }
    .lottery ul li {
      color: #fff;
      font-size: 16px;
      list-style-type: style;
      padding-bottom: 5px; }

.safe {
  background-color: #eda2b0; }

.about {
  background-image: url(../assets/images/main-bg-top.jpg), url(../assets/images/main-bg-bot.png), url(../assets/images/main-bg.jpg);
  background-position: top, bottom ,top center;
  background-repeat: repeat-x, no-repeat , repeat; }
  .about__content {
    margin: auto; }
    .about__content-title {
      font-weight: 700;
      font-size: 2.8rem;
      margin-bottom: 3rem; }
      @media only screen and (max-width: 37.5em) {
        .about__content-title {
          font-size: 2.4rem; } }
    .about__content-details-para {
      font-size: 1.8rem;
      color: grey;
      max-width: 60rem;
      line-height: 1.7;
      margin-bottom: 1rem; }
      .about__content-details-para--hl {
        font-weight: 700;
        margin: 0 3px; }
      .about__content-details-para:last-child {
        margin-bottom: 4rem; }

.fixbtn {
  position: fixed;
  right: 1%;
  bottom: 3%;
  z-index: 999;
  width: 80px;
  text-align: center; }
  @media only screen and (max-width: 37.5em) {
    .fixbtn {
      width: 60px;
      right: 0%; } }

.projects__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 1fr;
  grid-template-columns: 1.5fr 1fr;
  grid-gap: 5rem;
  margin-bottom: 11rem; }
  @media only screen and (max-width: 56.25em) {
    .projects__row {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      grid-gap: 2rem;
      margin-bottom: 8rem; } }
  @media only screen and (max-width: 56.25em) {
    .projects__row {
      text-align: center; } }
  .projects__row:last-child {
    margin-bottom: 0; }
  .projects__row-img-cont {
    overflow: hidden; }
  .projects__row-img {
    width: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover; }
  .projects__row-content {
    padding: 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
    @media only screen and (max-width: 56.25em) {
      .projects__row-content {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
    .projects__row-content-title {
      font-weight: 700;
      font-size: 2.8rem;
      margin-bottom: 2rem; }
      @media only screen and (max-width: 37.5em) {
        .projects__row-content-title {
          font-size: 2.4rem; } }
    .projects__row-content-desc {
      font-size: 1.8rem;
      color: grey;
      max-width: 60rem;
      line-height: 1.7;
      margin-bottom: 3rem; }
      @media only screen and (max-width: 37.5em) {
        .projects__row-content-desc {
          font-size: 1.7rem; } }

.contact {
  background: -webkit-gradient(linear, left top, right top, from(rgba(253, 237, 162, 0.8)), to(rgba(253, 237, 162, 0.8))), url(../assets/svg/common-bg.svg);
  background: -webkit-linear-gradient(left, rgba(253, 237, 162, 0.8), rgba(253, 237, 162, 0.8)), url(../assets/svg/common-bg.svg);
  background: -o-linear-gradient(left, rgba(253, 237, 162, 0.8), rgba(253, 237, 162, 0.8)), url(../assets/svg/common-bg.svg);
  background: linear-gradient(to right, rgba(253, 237, 162, 0.8), rgba(253, 237, 162, 0.8)), url(../assets/svg/common-bg.svg);
  background-size: cover;
  background-position: center; }
  .contact__form-container {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0);
    padding: 4rem;
    margin-top: 6rem;
    max-width: 80rem;
    text-align: right;
    width: 95%;
    border-radius: 5px;
    margin: 5rem auto 0 auto; }
    @media only screen and (max-width: 37.5em) {
      .contact__form-container {
        padding: 3rem; } }
  .contact__form-field {
    margin-bottom: 4rem; }
    @media only screen and (max-width: 37.5em) {
      .contact__form-field {
        margin-bottom: 3rem; } }
  .contact__form-label {
    color: #666;
    font-size: 1.4rem;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    text-align: left; }
  .contact__form-input {
    color: #333;
    padding: 2rem;
    width: 100%;
    border: 1px solid #ebebeb;
    font-size: 1.6rem;
    letter-spacing: 0px;
    background: #f0f0f0;
    border-radius: 5px;
    font-weight: 600;
    /* Code for Modern Browsers */
    /* Code for WebKit, Blink, Edge */
    /* Code for Internet Explorer 10-11 */
    /* Code for Microsoft Edge */
    /* Code for Mozilla Firefox 4 to 18 */
    /* Code for Mozilla Firefox 19+ */ }
    .contact__form-input::-webkit-input-placeholder {
      color: #999;
      font-weight: 600;
      font-size: 1.6rem; }
    .contact__form-input:-ms-input-placeholder {
      color: #999;
      font-weight: 600;
      font-size: 1.6rem; }
    .contact__form-input::-ms-input-placeholder {
      color: #999;
      font-weight: 600;
      font-size: 1.6rem; }
    .contact__form-input::placeholder {
      color: #999;
      font-weight: 600;
      font-size: 1.6rem; }
    .contact__form-input::-webkit-input-placeholder {
      color: #999;
      font-weight: 600;
      font-size: 1.6rem; }
    .contact__form-input:-ms-input-placeholder {
      color: #999;
      font-weight: 600;
      font-size: 1.6rem; }
    .contact__form-input::-ms-input-placeholder {
      color: #999;
      font-weight: 600;
      font-size: 1.6rem; }
    .contact__form-input:-moz-placeholder {
      opacity: 1;
      color: #999;
      font-weight: 600;
      font-size: 1.6rem; }
    .contact__form-input::-moz-placeholder {
      opacity: 1;
      color: #999;
      font-weight: 600;
      font-size: 1.6rem; }
  .contact__btn {
    width: 30%;
    padding: 2rem 4rem;
    font-size: 1.6rem; }
    @media only screen and (max-width: 37.5em) {
      .contact__btn {
        width: 100%; } }

.p-info-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  margin-top: 10px; }
  @media only screen and (max-width: 37.5em) {
    .p-info-list {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr; } }
  .p-info-list .p-info-item {
    padding: 5px 10px; }
    .p-info-list .p-info-item:nth-child(even) {
      background-color: #ebf1bb;
      /* 淺灰色底 */ }
    .p-info-list .p-info-item:nth-child(odd) {
      background-color: #ffffff;
      /* 白色底 */ }
  .p-info-list p {
    color: #333; }
  .p-info-list a {
    color: #b51e23; }
  .p-info-list h4 {
    font-size: 2rem;
    padding-bottom: 5px;
    margin-bottom: 5px;
    color: #333;
    border-bottom: 1px solid #666; }

.pic {
  position: relative; }
  .pic .info-txt {
    position: relative;
    z-index: 99;
    bottom: 0px;
    width: 100%;
    color: #3b4d65;
    font-size: 3rem;
    font-weight: bold;
    padding: 5px 0; }
    @media only screen and (max-width: 37.5em) {
      .pic .info-txt {
        font-size: 2.5rem; } }
    .pic .info-txt.text-sm {
      font-size: 1.75rem; }

.slick-dots li {
  padding: 5px 0 !important;
  margin: 0 !important; }

a.btnlink {
  margin-top: 1rem;
  display: inline-block;
  color: #fff;
  background-color: #b51e23;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 2rem;
  position: relative;
  overflow: hidden; }
  a.btnlink:after {
    content: " ";
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 55%;
    z-index: 9;
    top: 0;
    left: 0; }

.videobox {
  position: relative; }

.video_name {
  padding-top: 1rem;
  color: #fff;
  position: relative;
  font-size: 2.5rem;
  text-align: center; }

.table-style {
  width: 100%;
  border: 1px solid #eee; }
  .table-style tr:nth-child(even) {
    background-color: #eee; }
  .table-style th {
    font-size: 2rem;
    text-align: center;
    font-weight: bold; }
  .table-style td {
    font-size: 2rem;
    text-align: center; }

.table-style1 {
  width: 100%;
  border: 1px solid #eee; }
  .table-style1.s-og tr td:first-child {
    color: #fff;
    background-color: #e78c2f; }
  .table-style1.s-og tr th {
    color: #fff;
    background-color: #e78c2f; }
  .table-style1.s-g tr td:first-child {
    color: #fff;
    background-color: #abc839; }
  .table-style1.s-g tr th {
    color: #fff;
    background-color: #abc839; }
  .table-style1.s-red tr td:first-child {
    color: #fff;
    background-color: #cc452e; }
  .table-style1.s-red tr th {
    color: #fff;
    background-color: #cc452e; }
  .table-style1 th {
    padding: 5px 5px;
    font-size: 2rem;
    text-align: center; }
  .table-style1 td {
    padding: 5px 5px;
    font-size: 2rem;
    text-align: center;
    background-color: #eee; }
    .table-style1 td span {
      background-color: #cc452e;
      color: #fff;
      display: inline-block;
      padding: 0 8px;
      margin-right: 5px;
      font-size: 0.8em;
      border-radius: 10px; }
    .table-style1 td:nth-child(odd) {
      border-bottom: 1px solid #eee;
      width: 15%; }
    .table-style1 td:nth-child(even) {
      text-align: left; }

span.text-s {
  font-size: 0.8em; }

.kv-title {
  text-align: center;
  width: 80%;
  margin-left: 10%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem 0; }

@media only screen and (min-width: 56.25em) {
  .event-list .item-box.h390 {
    height: 390px; } }

@media only screen and (min-width: 56.25em) {
  .event-list .item-box.h420 {
    height: 420px; } }

@media only screen and (min-width: 56.25em) {
  .event-list .item-box.h450 {
    height: 450px; } }

.slider-tab2 .slick-slide {
  padding: 10px; }

.slick-dots li.slick-active button:before, .slick-dots li button:before {
  color: #fff; }

.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
  color: #333;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  border-radius: 10px; }
  .white-popup .title {
    border-radius: 10px; }
  .white-popup h4 {
    font-size: 2.5rem;
    padding-bottom: 1rem; }
    .white-popup h4 a {
      color: #b51e23;
      border-bottom: 1px solid #b51e23; }
  .white-popup p {
    color: #333; }

.white2-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 800px;
  margin: 20px auto;
  color: #333;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  border-radius: 10px; }
  .white2-popup .title {
    border-radius: 10px; }
  .white2-popup h4 {
    font-size: 2.5rem;
    padding-bottom: 1rem; }
  .white2-popup p {
    color: #333; }
  .white2-popup a {
    color: #b51e23; }

/**/
.wrapper {
  max-width: 750px;
  margin: auto; }

.con-list {
  width: 100%;
  overflow: hidden; }
  .con-list .item {
    padding: 20px 0;
    position: relative; }
    .con-list .item .obj3 {
      position: absolute;
      max-width: 33%;
      top: -20px;
      right: -11%; }
    .con-list .item .obj8 {
      position: absolute;
      max-width: 28%;
      top: -25px;
      left: -5%; }

.con2-sever {
  background-image: url(../assets/images/con2-bg.jpg);
  background-repeat: repeat-y;
  background-size: 100%;
  background-position: right 0; }
  .con2-sever .item {
    padding: 30px 0; }
    .con2-sever .item .pic {
      padding-bottom: 20px; }

.con2 {
  background-color: #fff; }

.project-cs-hero {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(rgba(253, 237, 162, 0.8)), to(rgba(253, 237, 162, 0.8))), url(../../assets/svg/common-bg.svg);
  background: -webkit-linear-gradient(left, rgba(253, 237, 162, 0.8), rgba(253, 237, 162, 0.8)), url(../../assets/svg/common-bg.svg);
  background: -o-linear-gradient(left, rgba(253, 237, 162, 0.8), rgba(253, 237, 162, 0.8)), url(../../assets/svg/common-bg.svg);
  background: linear-gradient(to right, rgba(253, 237, 162, 0.8), rgba(253, 237, 162, 0.8)), url(../../assets/svg/common-bg.svg);
  background-size: cover;
  background-position: center;
  position: relative; }
  @media only screen and (max-width: 37.5em) {
    .project-cs-hero {
      height: unset;
      min-height: unset; } }
  .project-cs-hero__content {
    padding: 25rem 0 17rem 0;
    max-width: 90rem;
    width: 92%;
    margin: auto; }
    @media only screen and (max-width: 37.5em) {
      .project-cs-hero__content {
        padding: 19rem 0 13rem 0;
        margin: auto;
        position: static;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0); } }
  .project-cs-hero__info {
    margin: 3rem auto 0 auto;
    max-width: 80rem; }
  .project-cs-hero__cta {
    margin-top: 5rem;
    text-align: center; }

.project-details__content {
  padding: 8rem 0;
  max-width: 90rem;
  margin: auto; }
  .project-details__content-title {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 3rem; }
    @media only screen and (max-width: 37.5em) {
      .project-details__content-title {
        font-size: 2.4rem; } }

.project-details__showcase-img-cont {
  width: 100%;
  margin-bottom: 6rem; }

.project-details__showcase-img {
  width: 100%; }

.project-details__content-main {
  width: 100%;
  max-width: 70rem;
  margin: auto; }

.project-details__desc {
  margin: 0 0 7rem 0; }
  .project-details__desc-para {
    font-size: 1.8rem;
    line-height: 1.7;
    color: grey;
    margin-bottom: 2rem; }

.project-details__tools-used {
  margin: 0 0 7rem 0; }
  .project-details__tools-used-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .project-details__tools-used-item {
    padding: 1rem 2rem;
    margin-bottom: 1.5rem;
    margin-right: 1.5rem;
    font-size: 1.6rem;
    background: rgba(153, 153, 153, 0.2);
    border-radius: 5px;
    font-weight: 600;
    color: #777; }

.project-details__links {
  margin: 0 0; }
  .project-details__links-btn {
    margin-right: 2rem; }
    @media only screen and (max-width: 37.5em) {
      .project-details__links-btn {
        margin-right: 0;
        width: 70%;
        margin-bottom: 2rem;
        text-align: center; } }
    .project-details__links-btn:last-child {
      margin: 0; }
      @media only screen and (max-width: 37.5em) {
        .project-details__links-btn:last-child {
          margin: 0; } }

.header {
  display: none;
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: #000;
  -webkit-box-shadow: 0 10px 100px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 100px rgba(0, 0, 0, 0.1); }
  .header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 5rem; }
    @media only screen and (max-width: 56.25em) {
      .header__content {
        padding: 0 2rem; } }
  .header__logo-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    color: #333;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s; }
    .header__logo-container:hover {
      color: #fdeda2; }
  .header__logo-img-cont {
    margin-right: 1.5rem; }
    @media only screen and (max-width: 56.25em) {
      .header__logo-img-cont {
        margin-right: 1rem;
        width: 75%; } }
  .header__logo-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block; }
  .header__logo-sub {
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px; }
  .header__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 37.5em) {
      .header__links {
        display: none; } }
    .header__links .submenu1 {
      position: absolute;
      background-color: #000;
      border: 1px solid #666;
      padding: 10px 5px 0px 5px;
      display: none; }
      .header__links .submenu1 a {
        color: #fff !important;
        display: block;
        font-size: 1.6em;
        margin-bottom: 8px;
        padding: 5px 8px 0px 8px;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s; }
        .header__links .submenu1 a:hover {
          background-color: #1378bf; }
  .header__link-wrapper:hover .submenu1 {
    display: block; }
  .header__linksub {
    padding: 1.5rem 3rem;
    display: inline-block;
    font-size: 1.6rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    position: relative; }
    .header__linksub:hover {
      color: #fdeda2; }
    @media only screen and (max-width: 56.25em) {
      .header__linksub {
        padding: 3rem 1.8rem;
        font-size: 1.5rem; } }
  .header__link {
    padding: 1rem 1.5rem;
    display: inline-block;
    font-size: 1.6rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s; }
    .header__link span {
      font-size: 1.2rem; }
    @media only screen and (max-width: 37.5em) {
      .header__link.submenubtn:before {
        content: '+';
        position: absolute;
        right: 5%; }
      .header__link.submenubtn:focus:before {
        content: '—'; } }
    .header__link:hover {
      color: #fdeda2; }
    @media only screen and (max-width: 56.25em) {
      .header__link {
        padding: 3rem 1.8rem;
        font-size: 1.5rem; } }
  .header__main-ham-menu-cont {
    display: none;
    width: 3rem;
    padding: 2.2rem 0; }
    @media only screen and (max-width: 37.5em) {
      .header__main-ham-menu-cont {
        display: block; } }
  .header__main-ham-menu {
    width: 100%; }
  .header__main-ham-menu-close {
    width: 100%; }
  .header .submenu {
    height: 0;
    overflow: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
    @media only screen and (max-width: 37.5em) {
      .header .submenu a {
        font-size: 1.8rem;
        border: 0px solid #eee !important;
        padding: 1rem 2rem; } }
  .header .submenu-active {
    height: auto; }
  .header__sm-menu {
    background: #000;
    position: absolute;
    width: 100%;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1); }
    .header__sm-menu--active {
      visibility: hidden;
      opacity: 0; }
      @media only screen and (max-width: 37.5em) {
        .header__sm-menu--active {
          visibility: visible;
          opacity: 1; } }
  @media only screen and (max-width: 37.5em) {
    .header__sm-menu-link.active .submenubtn:before {
      content: '–' !important; } }
  .header__sm-menu-link a {
    display: block;
    text-decoration: none;
    padding: 2.5rem 3rem;
    font-size: 1.6rem;
    color: #fff;
    text-align: left;
    border-bottom: 0px solid #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s; }
    @media only screen and (max-width: 37.5em) {
      .header__sm-menu-link a {
        padding: 1.6rem 3rem;
        font-size: 2.5rem; } }
    .header__sm-menu-link a:hover {
      color: #fdeda2; }
  .header__sm-menu-link:first-child a {
    border-top: 1px solid #eee; }
  .header__sm-menu-link-last {
    border-bottom: 0; }

.main-footer {
  background: #000;
  color: #fff; }
  @media only screen and (max-width: 37.5em) {
    .main-footer {
      padding-bottom: 80px; }
      .main-footer .foot-logo {
        max-width: 45%; } }
  .main-footer__upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8rem 0; }
    @media only screen and (max-width: 56.25em) {
      .main-footer__upper {
        padding: 6rem 0; } }
    @media only screen and (max-width: 37.5em) {
      .main-footer__upper {
        display: block; } }
  .main-footer__row-1 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
    @media only screen and (max-width: 56.25em) {
      .main-footer__row-1 {
        margin-bottom: 5rem; } }
  .main-footer__row-2 {
    width: 40%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    max-width: 50rem; }
    @media only screen and (max-width: 56.25em) {
      .main-footer__row-2 {
        width: 100%; } }
  .main-footer__short-desc {
    margin-top: 2rem;
    color: #eee;
    font-size: 1.5rem;
    line-height: 1.7; }
  .main-footer__social-cont {
    margin-top: 2rem; }
  .main-footer__icon {
    margin-right: 1rem;
    width: 2.5rem; }
    .main-footer__icon--mr-none {
      margin-right: 0; }
  .main-footer__lower {
    padding: 4rem 2rem;
    border-top: 1px solid #444;
    color: #eee;
    font-size: 2rem;
    text-align: left; }
    .main-footer__lower a {
      text-decoration: underline;
      font-weight: bold;
      margin-left: 2px; }
    @media only screen and (max-width: 56.25em) {
      .main-footer__lower {
        padding: 3.5rem 0; } }

.skills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .skills__skill {
    padding: 1rem 2rem;
    margin-bottom: 1.5rem;
    margin-right: 1.5rem;
    font-size: 1.6rem;
    background: rgba(153, 153, 153, 0.2);
    border-radius: 5px;
    font-weight: 600;
    color: #777; }

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid #eee;
  border-radius: 60px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  overflow: hidden; }
  .mouse::before {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: 7px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #eee;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 1.3s infinite;
    -webkit-animation: wheel 1.3s infinite; }

@keyframes wheel {
  to {
    opacity: 0;
    top: 27px; } }

@-webkit-keyframes wheel {
  to {
    opacity: 0;
    top: 27px; } }
