/* #region RESET */
/* RESET HTML5 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
hr,
menu,
nav,
section {
  display: block;
}
a,
hr {
  padding: 0;
}
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}
ins,
mark {
  background-color: #ff9;
  color: #000;
}
body {
  line-height: 1;
}
nav ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none;
}
a {
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}
ins {
  text-decoration: none;
}
mark {
  font-style: italic;
  font-weight: 700;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
}
input,
select {
  vertical-align: middle;
}
textarea {
  resize: none;
  overflow: auto;
}
* {
  outline: none;
}
html > object {
  display: none;
}
/* #endregion */

/* #region Defaults */
body {
    background: #fff;
    color: #000;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* DEFAULTS */
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  *,
  *::before,
  *::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
  }
  a {
    text-decoration: none;
  }

.font {
    font-family: 'Black Ops One', cursive;
    font-weight: 400;
}
/* FONT */
.font-light {
    font-weight: 300 !important;
  }
  .font-normal {
    font-weight: 400 !important;
  }
  .font-bold {
    font-weight: 700 !important;
  }

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

.clear {
    clear: both;
  }
  .opacity:hover {
    filter: alpha(opacity=80);
    -khtml-opacity: 0.8;
    -moz-opacity: 0.8;
    opacity: 0.8;
    cursor: pointer;
  }
  
.transition {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

/* CONTAINER */
.container {
    width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }
  .container::after {
    content: '';
    display: table;
    clear: both;
  }
  @media (max-width: 1220px) {
    .container {
      width: 1000px;
    }
  }
  @media (max-width: 1023px) {
    .container {
      width: 760px;
    }
  }
  @media (max-width: 767px) {
    .container {
      width: 300px;
    }
  }

  .show768 {
    display: none;
  }
  .show320 {
    display: none;
  }
  @media screen and (max-width: 1023px) {
    .hide768 {
      display: none;
    }
    .show768 {
      display: block;
    }
  }
  @media (max-width: 767px) {
    .show320 {
      display: block;
    }
    .hide320 {
      display: none;
    }
  }
/* #endregion */

/* #region Header */

body > header {
    width: 100%;
    height: 132px;
    background-color: #000;
}

body > header > .container {
    border-bottom: 5px solid #C79430;
    display: flex;
    justify-content: space-between;
    height: 137px;
}

#logo {
    width: 351px;
    height: 234px;
    z-index: 999;
    margin-top: 8px;
}
#logo img {
    width: 100%;
}

.nav-desktop {
    margin-top: 67px;
    height: 32px;
}

.nav-desktop:first-of-type {
    padding-left: 60px;
}
.nav-desktop:last-of-type {
    padding-right: 60px;
}

.nav-desktop > a {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    font-style: italic;
    padding: 5px 22px;
    line-height: 18px;
}


.nav-desktop > i {
    font-size: 18px;
    color: #C79430;
    font-weight: 700;
    font-style: italic;
    padding-top: 5px;
}

.nav-desktop > a.nav-icon {
    padding: 5px 0px;
}

.icon-home {
    width: 26px;
    height: 22px;
    margin-bottom: -3px;
    margin-right: 20px;
}
.icon-instagram {
    width: 26px;
    height: 22px;
    margin-bottom: -5px;
    margin-right: 20px;
}
.icon-whatsapp {
    width: 26px;
    height: 22px;
    margin-bottom: -5px;
}

#mobile-nav {
    margin: 0 20px 0 auto;
    position: relative;
}

#mobile-nav.show {
    margin-top: 16px;
}

#mobile-action {
    width: 60px;
    height: 40px;
    margin-top: 20px;
}

#mobile-action > small {
    width: 60px;
    height: 6px;
    background-color: #C79430;
    display: block;
    margin-bottom: 10px;
    transition: all .3s;
}


#mobile-nav.show #mobile-action > small:nth-child(2) {
    display: none;
}

#mobile-nav.show #mobile-action > small:first-of-type {
    transform: rotate(40deg);
    margin-bottom: 0;
}

#mobile-nav.show #mobile-action > small:last-of-type{
    transform: rotate(-40deg);
    margin-bottom: 0;
    margin-top: -5px;
}

#mobile-links {
    display: none;
    padding: 25px 0;
}

#mobile-links > a {
    width: 100%;
    float: left;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    font-style: italic;
    padding: 5px 30px;
}



#mobile-nav.show #mobile-links {
    display: block;
    position: absolute;
    background-color: #000;
    z-index: 998;
    width: 260px;
    right: 0;
    top: 100px;
}

@media (max-width: 1220px) {
    .nav-desktop > a {
        font-size: 16px;
        padding: 5px 4px;
    }
}
@media (max-width: 1023px) {
    body > header {
        height: 80px;
    }
    #logo {
        width: 200px;
        height: 134px;
        margin-top: 0px;
    }


}
@media (max-width: 767px) {
    
}

/* #endregion */

/* #region Footer */
body > footer {
    width: 100%;
    background-color: #fff;
    clear: both;
    position: relative;
    padding-top: 90px;
}

#footer-bg {
    background-color: #000;
    width: 100%;
    height: 300px;
}

#footer-logo {
    width: 408px;
    height: 283px;
    margin-top: 10px;
    float: left;
}

#footer-logo > img { 
    width: 100%;
}

body > footer nav {
    width: 220px;
    float: left;
    margin-top: 38px;
}

body > footer nav > a {
    width: 100%;
    float: left;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    font-style: italic;
    padding: 5px 0px;
}

.icon-stars {
    width: 12px;
    height: 11px;
    margin-right: 16px;
}

.footer-line {
    width: 3px;
    height: 180px;
    background-color: #C79430;
    float: left;
    margin: 60px 60px 0 0;

}

#footer-contacts {
    float: left;
    margin-top: 85px;

}
#footer-social {
    float: left;
}

#footer-whatsapp {
    color: #fff;
    font-size: 24px;
    margin-top: 3px;
    float: left;
    margin-left: 24px;

}

.footer-whatsapp {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    margin-bottom: -6px;
}

#footer-mail {
    color: #fff;
    font-size: 14px;
    margin-top: 20px;
    float: left;
    width: 100%;
    clear: both;
}

.footer-mail {
    width: 18px;
    height: 15px;
    margin-right: 10px;
    margin-bottom: -2px;
}

#footer-address {
    color: #fff;
    font-size: 14px;
    margin-top: 3px;
    float: left;
    width: 100%;
    clear: both;
    margin-top: 20px;
}

.footer-address {
    width: 15px;
    height: 19px;
    margin-right: 10px;
    margin-bottom: -4px;
}

#copyright {
    padding: 90px 0 68px;
    position: relative;
}

#copyright > small {
    width: 100%;
    height: 2px;
    margin-bottom: 3px;
    background-color: #000;
    display: block;
}

#copyright > div {
    width: 580px;
    height: 44px;
    margin: -25px auto 0;
    background-color: #000;
    color: #fff;
    text-align: center;
    line-height: 44px;
    font-size: 14px;
}

@media (max-width: 1220px) {
    body > footer nav {
        display: none;
    }

    .footer-line:first-of-type {
        display: none;

    }
}
@media (max-width: 1023px) {

    #footer-bg {
        height: 250px;
    }

    body > footer .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #footer-logo {
        width: 260px;
        height: 181px;
        margin-top: 0px;
        float: left;
    }
    
    .footer-line {
        display: none;

    }

    #footer-contacts {
        margin-top: 0px;
    }

    #footer-mail {
        display: none;
    }

    #footer-address {
        display: none;
    }

    #copyright {
        padding: 0px 0 0px;
        position: relative;
    }
    #copyright > div {
        width: 300px;
        margin: -47px auto 0;
        font-size: 12px;
        padding: 6px 40px;
        line-height: 16px;
    }

}
@media (max-width: 767px) {
    body > footer {
        padding-top: 50px;
    }
    #footer-bg {
        height: 290px;
    }

    #footer-contacts {
        display: flex;
        align-content: center;
        flex-direction: column;
        justify-content: center;
    }

    #footer-social {
        text-align: center;
    }

    #footer-whatsapp {
        margin-left: 0;
    }
}
/* #endregion */

/* #region Home */


/* Banner */
.flexslider img {
    margin: 0px auto !important;
    width: 100%;
}
.flexslider {
    width: 100%;
    overflow: hidden;
    border: none !important;
    margin: 0 !important;
}
#banner,
#banner768{
    width: 100%;
    position: relative;
}
#banner-nav {
}

.flex-control-nav {
    position: relative !important;
    bottom: 0px !important;
    text-align: center !important;
    margin-top: -50px !important;
    width: 100% !important;
    float: right;
}

.flex-control-paging li a {
    width: 80px !important;
    height: 5px !important;
    background: #fff !important;
    border-radius: 0px !important;
    border: none;
    text-align: left !important;
    box-shadow: none !important;
}
.flex-control-paging li a.flex-active {
    background: #C79430 !important;
}


.title {
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
}

.icon-left {
    width: 130px;
    height: 17px;
    position: absolute;
    left: -150px;
    top: 10px;
}
.icon-right {
    width: 130px;
    height: 17px;
    position: absolute;
    right: -150px;
    top: 10px;
}

@media (max-width: 1023px) {

}
@media (max-width: 767px) {

    .title {
        font-size: 30px;
    }

    .icon-left {
        display: none;
    }
    .icon-right {
        display: none;
    }
    
}

#blog {}

#blog-title {
    padding-top: 90px;
    width: 100%;
    height: 340px;
    background-color: #C79430;
    position: relative;
}

#blog-lines {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;

}

#blog-lines > small {
    width: 100%;
    height: 2px;
    margin-bottom: 3px;
    background-color: #000;
    display: block;
}

#blog-list {
    margin-top: -150px;
}

#blog-list > div {
    width: 33.33%;
    float: left;
    padding: 10px 10px;
    position: relative;
}

#blog-list > div a > img {
    width: 100%;
    height: auto;
}

#blog-list > div a {
    cursor: pointer;
    margin-bottom: 20px;
}

#blog-list > div a > div {
    background-color: #464646;
    padding: 20px 36px;
    position: relative;
    margin-top: -6px;
}

#blog-list > div a > div > small {
    width: 180px;
    height: 5px;
    background-color: #C79430;
    position: absolute;
    top: -5px;
    left: 0;
    display: block;
}

#blog-list > div a > div > i {
    color: #C79430;
    font-weight: 300!important;
    font-size: 20px;
    display: block;
    font-style: normal;
}

#blog-list > div a > div > b {
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    margin-top: 6px;
}

#blog-list > div a > div > img {
    width: 150px;
    height: 32px;
    margin-top: 12px;
}

.blog-link {
    color: #000;
    margin: 40px 0;
    display: inline-block;
    font-size: 20px;
    cursor: pointer;
}
.blog-link:hover {
    color: #C79430;
}

#blog-line {
    width: 100%;
    height: 31px;
    background: url('../images/fixed/blog-line.png') no-repeat center center; 
}

@media (max-width: 1023px) {

}
@media (max-width: 767px) {

    #blog-title {
        padding-top: 50px;
        height: 270px;
    }

    #blog-list > div {
        width: 100%;
        float: left;
        padding: 10px 10px;
        position: relative;
    }

    .blog-link {
        margin: 20px 0 30px;
        font-size: 20px;
    }
    
}

#photos {
    padding-top: 90px;

}

.icon-photos {
    width: 32px;
    height: 27px;
    margin-right: 16px;
    margin-bottom: -2px;
}

#photos > div > p {
    font-size: 18px;
    font-weight: 300;
}

#photos-list {
    padding: 80px 0 0;
    margin-top: 80px;
    background: url('../images/fixed/photos-bg.png') no-repeat #EBEBEB center center; 
}

#photos-list > div > div {
    width: 25%;
    float: left;
    padding: 10px 10px;
    text-align: center;
    position: relative;
}

#photos-list > div > div img {
    width: 100%;
    float: left;
}

#photos-list > div > div a {
    cursor: pointer;
    float: left;
}

#photos-list > div > div a > small {
    display: none;
    width: 60%;
    height: 60%;
    background-color: rgba(0, 0, 0, .75);
    position: absolute;
    top: 20%;
    left: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
#photos-list > div > div a:hover > small {
    opacity: 1;
}

.icon-zoom {
    width: 50px;
    height: 50px;

}

.photos-link {
    color: #000;
    margin: 26px 0 34px;
    display: inline-block;
    font-size: 20px;
    cursor: pointer;
}
.photos-link:hover {
    color: #C79430;
}

@media (max-width: 1023px) {

}
@media (max-width: 767px) {
    #photos {
        padding-top: 50px;
    }
    
    #photos > div > p {
        font-size: 16px;
        padding: 0 30px;
    }

    #photos-list {
        margin-top: 40px;
        padding: 40px 0 0;
    }

    #photos-list > div > div {
        width: 50%;
        float: left;
        padding: 10px 10px;
        text-align: center;
        position: relative;
    }

    .photos-link {
        margin: 16px 0 24px;
    }
}

.contacts {
    padding-top: 90px;

}

#contacts-data {
    width: 50%;
    padding: 80px 20px 0;
    float: left;
}


#contacts-data > p {
    font-size: 24px;
    font-weight: 300;
}

.icon-contact {
    width: 37px;
    height: 33px;
    margin-right: 16px;
    margin-bottom: -2px;
}

#contacts-stars {
    margin-top: 20px;
}

.contact-star {
    width: 22px;
    height: 21px;
    margin-right: 8px;
}

#contact-whatsapp {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-top: 20px;
    float: left;
}

.contact-whatsapp {
    width: 30px;
    height: 30px;
    margin-right: 20px;
    margin-bottom: -6px;
}

#contact-mail {
    color: #000;
    font-size: 24px;
    margin-top: 24px;
    float: left;
    width: 100%;
    clear: both;
}

.contact-mail {
    width: 29px;
    height: 23px;
    margin-right: 20px;
    margin-bottom: -5px;
}

#contact-address {
    color: #000;
    font-size: 24px;
    margin-top: 24px;
    float: left;
    width: 100%;
    clear: both;
    padding-left: 44px;
    position: relative;
}

.contact-address {
    width: 24px;
    height: 30px;
    position: absolute;
    top: 21px;
    left: 0;
}

#contacts-form {
    width: 50%;
    padding: 80px 20px 0;
    float: left;
}

#send-contact {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: -4px 0 0 -2px;
}

.send-contact {
    width: 190px;
    height: 32px;
}

@media (max-width: 1023px) {

    #contact-mail {
        font-size: 18px;
    }

}
@media (max-width: 767px) {
    .contacts {
        padding-top: 50px;
    }

    #contacts-data {
        width: 100%;
        padding: 0px 0 0;
    }
    #contacts-data > p {
        font-size: 18px;
    }
    #contact-mail {
        font-size: 16px;
    }
    #contact-address {
        font-size: 20px;
    }
    #contacts-form {
        width: 100%;
        padding: 40px 0px 0;
    }
    #send-contact {
        margin-left: 55px;
    }

}

.how-to-get {
    padding-top: 90px;
}

.icon-how-to-get {
    width: 29px;
    height: 29px;
    margin-right: 16px;
    margin-bottom: -2px;
}


#how-to-get-line {
    margin-top: 10px;
    height: 18px;
    text-align: center;
}
#how-to-get-line > small {
    margin: 0 auto;
    width: 800px;
    height: 18px;
    display: inline-block;
    background-color: #C79430;
}

#how-to-get-map {
    width: 50%;
    background-color: #aaa;
    float: left;
}

#how-to-get-map::after {
    padding-top: 105%;
    display: block;
    content: '';
}

#how-to-get-video {
    width: 50%;
    background-color: #eee;
    float: left;
}

.video-container {
    overflow: hidden;
    position: relative;
    width:100%!important;
}

.video-container::after {
    padding-top: 105%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width:100%!important;
    max-width:100%!important;
    height: 100%;
}

@media (max-width: 1023px) {

    #how-to-get-map {
        width: 100%;
    }

    #how-to-get-video {
        width: 100%;
    }

    #how-to-get-line > small {
        width: 600px;
    }

}
@media (max-width: 767px) {
    .how-to-get {
        padding-top: 50px;
    }

    #how-to-get-line > small {
        width: 300px;
    }
}


/* #endregion */

/* #region Form */

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
  }

  
input,
select,
textarea {
  outline: 0;
  background: #fff;
  width: 100%;
  border: 2px solid #000000;
  margin: 0 0 16px;
  padding: 16px 24px;
  box-sizing: border-box;
  font-size: 18px;
  color: #000;
}
input:hover,
input:active,
input:focus,
select:hover,
select:active,
select:focus,
textarea:hover,
textarea:active,
textarea:focus {
  border: 2px solid #C79430;
}

textarea {
    min-height: 150px;
    height: auto;
  }

  ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #999999;
    font-family: 'Kanit', sans-serif;
  }
  ::-moz-placeholder { /* Firefox 19+ */
    color: #999999;
    font-family: 'Kanit', sans-serif;
  }
  :-ms-input-placeholder { /* IE 10+ */
    color: #999999;
    font-family: 'Kanit', sans-serif;
  }
  :-moz-placeholder { /* Firefox 18- */
    color: #999999;
    font-family: 'Kanit', sans-serif;
  }

/* #endregion */

/* #region Header */


#page-title {
    padding-top: 120px;
    width: 100%;
    height: 250px;
    background-color: #C79430;
    position: relative;
}

.page-title-blog {
    height: 370px!important;
}


#page-lines {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;

}

#page-lines > small {
    width: 100%;
    height: 2px;
    margin-bottom: 3px;
    background-color: #000;
    display: block;
}

.mt-0 {
    margin-top: 0!important;
}
.pb-80 {
    padding-bottom: 80px!important;
}


#blog-pagination {
    margin-top: 40px;
}
#blog-pagination {
    width: 100%;
    float: left;
    color: #000;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
}
#blog-pagination b,
#blog-pagination a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}
#blog-pagination b {
    color: #C79430;
    cursor: default;
    font-weight: 300;
}
#blog-pagination a:hover {
    color: #C79430;
}

.blog-content {
    position: relative;
    width: 70%;
    margin: -150px auto 0;
}

.blog-cover {
    width: 100%;
    float: left;
    padding-bottom: 20px;
}
.blog-cover a {
    width: 100%;
    float: left;
}

.blog-cover img {
    width: 100%;
    float: left;
}

.blog-title {
    width: 100%;
    float: left;
    color: #000;
    font-size: 30px;
}

.blog-date {
    width: 100%;
    float: left;
    color: #C79430;
    padding-bottom: 20px;
}

.blog-text {
    width: 100%;
    float: left;
    padding-bottom: 20px;
}

.blog-text p {
    font-size: 18px;
    padding-bottom: 20px;
}

.fb-comments, .fb-comments span, .fb-comments.fb_iframe_widget span iframe {
    width: 100% !important;
}

/* #endregion */

/* #region Header */

/* #endregion */