.lang {
  display: flex;
  align-items: center;
  height: auto;
  padding: .5rem;
}
.lang p {
  color: white;
}
.lang a{
  height: auto;
  color: white;
  transition: 0.35s ease-in-out;
}
.lang a:hover {
  color: #FDD426;
}

.en {
  display: block;
  visibility: visible;
  opacity: 1;
  width: 100%;
  left: 0;
  transition: 0.35s ease-in-out;
}
.en.enlarge {
  display: none;
  visibility: hidden;
  opacity: 0;
  width: 0;
  right: 0;
}
.english {
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: 0.35s ease-in-out; 
}
.english.active {
  display: block;
  visibility: visible;
  opacity: 1;
}
.lang div {
  display: none;
}



.all-lang {
  display: none;
  width: 260px;
  position: absolute;
  top: 70px;
  right: 50px;
  visibility: hidden;
  opacity: 0;
  /* background-color: rgba(0, 0, 0, 0.25); */
  padding: 0;
  transition: 0.35s ease-in-out;
}
.all-lang a{
  width: 150px;
  height: auto;
  text-align: center;
  margin-bottom: 10px;
  color: white;
  transition: 0.35s ease-in-out;
}
.all-lang a:hover {
  color: #FDD426;
}
.all-lang.active {
  width: 260px;
  display: inline-block;
  visibility: visible;
  opacity: 1;
  padding: 5px 15px;
}

.navbar-intro.active {
  display: none;
}

/* ปรับตำแหน่ง text ที่ datavoffset (0 คือตรงกลาง ติดลบคือด้านบน ไม่ติดลบคือลงล่าง) */

/* ขนาด text (large device) */
[class*="scaption"][class*="-large"]{
  font-size: 72px;
  line-height: 66px;
  font-weight: bold;
  letter-spacing: 0.3px!important;
}

[class*="scaption"][class*="-medium"]{
  font-size: 48px;
  line-height: 66px;
}

[class*="scaption"][class*="-small"]{
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.8px!important;
}

/* ขนาด text (mobile) */
@media (max-width: 500px) {

  /* LAYER 1 */
  .layer-1-top { font-size: 50px !important; }
  .layer-1-middle { font-size: 40px !important; }
  .layer-1-bottom { font-size: 12px !important; }
  /* END LAYER 1 */



  /* LAYER 2 */
  .layer-2-top { font-size: 45px !important; }
  .layer-2-middle { font-size: 35px !important; }
  .layer-2-bottom { font-size: 10px !important; }
  /* END LAYER 2 */

  

  /* LAYER 3 */
  .layer-3-top { font-size: 35px !important; }
  .layer-3-bottom { font-size: 13px !important; }
  /* END LAYER 3 */



  /* LAYER 4 */
  .layer-4-top { font-size: 30px !important; }
  .layer-4-bottom { font-size: 14px !important; }
  /* END LAYER 4 */
  
}





/* ----------------------------------
  1. Reset default browser styles
  2. Global
  3. General classes
  4. Typography
  5. Header
  6. Content Elements
  7. UI Elements
      7.1. Buttons
      7.2. Forms
          7.2.1. Inputs & Textarea
          7.2.2. Label & Legend
          7.2.3. Checkbox & Radio
          7.2.4. Select
          7.2.5. Fieldset
          7.2.6. Form variations
      7.3. Tables
      7.4. Lists
      7.5. Blockquotes
      7.6. Dividers
  8. Widgets & Shortcodes
      8.1. Twitter Feed
      8.2. Instagram Feed
      8.3. LightBox
      8.5. Accordions & Toggles
      8.6. Alert boxes
      8.7. Callouts
      8.8. Pagination
      8.9. Dropcaps
      8.10. Icon Boxes
      8.11. Testimonials
      8.12. Carousel Sliders
      8.13. Progress Bars
      8.14. Pricing Tables
      8.15. Counters
      8.16. Tabs & Tour Sections
      8.17. Isotope
      8.18. Team Members
      8.19. Google Map
      8.20. Services
      8.21. Countdown
      8.22. Audio Player
  9. Blog
      9.1. Entries
  10. Portfolio
  11. Footer
-------------------------------------*/


/* -----------------------------------

  1. Reset default browser styles

------------------------------------- */

@viewport{user-zoom: fixed;}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

iframe{width: 100%;}

b, strong{font-weight: bold !important;}

ul,
ol{
  list-style: none;
}

q{quotes: none;}

table, table td{ 
  padding: 0;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}

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

embed{ vertical-align: top;}

input,
button{
  -webkit-appearance: none;
  outline: none;
}

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

html{
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,body{height: 100%;}

/* -----------------------------------

  2. Global 

------------------------------------- */

body{
  font: 18px/30px 'Heebo', sans-serif;
  color: #202732;
  font-weight: normal;
  position: relative;
}

.wrapper-container{
  position: relative;
  background: #0b6e69;
}

::selection{
  background: #fdbc36;
}

::-moz-selection{
  background: #fdbc36;
}

::-o-selection{
  background: #fdbc36;
}

::-ms-selection{
  background: #fdbc36;
}

img{
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.clearfix:after,
.row:after{
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  content: ".";
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
  font-size: 16px;
  font-weight: 300;
  color: #202732;
  text-overflow:ellipsis;
  transition: text-indent .5s ease,color .5s ease;
  -webkit-transition:text-indent .5s ease,color .5s ease;
}

input::-moz-placeholder,
input:-moz-placeholder,
textarea::-moz-placeholder,
textarea:-moz-placeholder{
  font-size: 16px;
  font-weight: 300;
  text-overflow:ellipsis;
  color: #202732;
  opacity: 1;
}

[placeholder]:focus::-webkit-input-placeholder{
  text-indent:10em;
  color:transparent;
}

[placeholder]:focus::-webkit-textarea-placeholder{
  text-indent:10em;
  color:transparent;
}

/* ------------------------------------------------------
  
  3. General classes
  
------------------------------------------------------ */

.full-width-block{width: 100%;}

.wrapper{overflow: hidden;}

.relative{position: relative;}

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

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

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

.f-left{float: left;}

.f-right{float: right;}

.hide{display: none;}

.show{display: block;}

.invisible{visibility: hidden;}

img[class*="align"]{
  margin-bottom: 15px;
  max-width: 50%;
}

img.alignleft{
  float: left;
  margin-right: 30px;
}

img.alignright{
  float: right;
  margin-left: 30px;
}

.page-content-wrap{padding: 90px 0;}

.page-content-wrap2{padding: 150px 0;}

.page-content-wrap2.no-top-space{padding: 0 0 150px;}

[class*="page-section"]{padding: 90px 0;}

[class*="page-section"].no-space{padding: 0;}

[class*="page-section"].no-bottom-space{padding-bottom: 0;}

.page-section-2{
  padding: 120px 0;
}

.page-section-3{
  padding: 70px 0 160px;
}

.page-section-4{
  padding: 140px 0;
}

.page-section-bg{background: #f3f5f6;}

.page-section-bg2{background: #fdbc36;}

.page-section-bg3{background: #202732;}

.content-element:not(:last-child){margin-bottom: 70px;}

.content-element2:not(:last-child){margin-bottom: 50px;}

.content-element3:not(:last-child){margin-bottom: 30px;}

.content-element4:not(:last-child){margin-bottom: 140px;}

.content-element6:not(:last-child){margin-bottom: 90px;}

.extra{width: 99%;}

.container.container-size{
  width: 1280px;
}

.container.container-extra{
  width: 1600px;
}

.container.container-extra-2{
  width: 1700px;
}

[class*="page-section-bg"] .section-title,
[class*="page-section-bg"]{
  color: #fff;
}

[class*="flex-row"]{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

[class*="flex-row"]:after{
  display: none;
}

[class*="flex-row"] > *{
  float: none;
}

.flex-justify{
  justify-content: space-between;
}

.flex-h-center{
  justify-content: center;
}

.flex-center{
  align-items: center;
}

.responsive-iframe{
  position: relative;
  z-index: 1;
  height: 0px;
  padding-bottom: 56.2%;
}

.responsive-iframe > iframe{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.page-section-bg3 .custom-list > li:not(:last-child){
  margin-bottom: 5px;
}

/* -----------------------------------

  4. Typography

------------------------------------- */

h1,h2,h3,h4,h5,h6{
  font-family: 'Playfair Display', serif;
  color: #202732;
  line-height: 1.25em;
  font-weight: normal;
}

h1{font-size: 72px;}

h2{font-size: 60px;}

h3{font-size: 48px;}

h4{font-size: 36px;}

h5{font-size: 30px;}

h6{font-size: 24px;}

h1:not(:last-child){
  margin-bottom: 3px;
}

h2:not(:last-child){
  margin-bottom: 10px;
}

h3:not(:last-child){
  margin-bottom: 12px;
}

h4:not(:last-child){
  margin-bottom: 18px;
}

h5:not(:last-child){
  margin-bottom: 15px;
}

h6:not(:last-child){
  margin-bottom: 15px;
}

p{
  padding: 0;
  font-weight: 300;
}

p:not(:last-child){
  margin-bottom: 15px;
}

p + .info-btn{
  margin-top: 5px;
}

.text-size-small2{
  font-size: 12px;
}

.fw-medium{
  font-weight: 600;
}

.text-style2{
  color: #64686d;
  text-transform: uppercase;
}

a{
  margin: 0;
  padding: 0;
  font-size: 100%;
  outline: none;
  text-decoration: none;
  background: transparent;
  vertical-align: baseline;
}

a, a > *{
  text-decoration: none;
  outline: none !important;
}

a{
  color: #2a2c32;
}

a:hover{
  color: #fdbc36;
}

a,
button{
  -webkit-transition: all .5s ease;
          transition: all .5s ease;
}

a:hover,
button:hover{
  -webkit-transition: all .1s ease-in;
          transition: all .1s ease-in; 
}

.rev-slider a,
.rev-slider button{
  -webkit-transition: all .5s ease!important;
          transition: all .5s ease!important;
}

.rev-slider a:hover,
.rev-slider button:hover{
  -webkit-transition: all .1s ease-in!important;
          transition: all .1s ease-in!important; 
}

a.link-text,
a.info-btn{
  position: relative;
  color: inherit;
}

a.link-text:before,
a.info-btn:before{
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
}

a.link-text:hover:before,
a.info-btn:hover:before{
  width: 100%;
}

a.link-text.with-icon-left:before{
  left: 30px;
}

a.link-text.with-icon-left:hover:before{
  width: calc(100% - 30px);
}

[class^="icon-"]:before, 
[class*="icon-"]:before{
  width: auto;
  margin: 0;
  padding: 0;
}

.selected-type-1{
  background: #fdbc36;
}

.selected-type-2{
  background: #202732;
  color: #fff;
}

.section-title:not(:last-child){
  margin-bottom: 43px;
}

h4.section-title:not(:last-child),
.sub-title:not(:last-child){
  margin-bottom: 30px;
}

h6.section-title:not(:last-child){
  margin-bottom: 25px;
}

.sub-title.style-2:not(:last-child){
  margin-bottom: 10px;
}

.img-content .sub-title.style-2:not(:last-child){
  margin-bottom: 0;
}

.sub-title{
  font-family: 'Heebo', sans-serif;
  line-height: 48px;
}

.text-size-medium{
  font-size: 18px;
  line-height: 30px;
}

.text-size-small{
  font-size: 14px;
}

/* Tooltips */

.tooltips a{
  position: relative;
  color: #64686d;
  border-bottom: 1px dotted transparent;
}

.tooltips a:hover{
  border-bottom-color: #64686d;
}

.tooltip{
  position:absolute;
  display:block;
  background:#b1b3b6;
  padding:6px 10px;
  color: #fff;
  font-size: 12px;
  line-height: 13px;
  opacity:0;
  visibility: hidden;
  white-space: nowrap;
  font-weight: normal;
  z-index:5;

  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

a.top-tooltip .tooltip{
  bottom: 100%;
  left: 50%;
  margin-bottom: 5px;
  -webkit-transform: translate(-50%,-15px);
  -moz-transform: translate(-50%,-15px);
  -o-transform: translate(-50%,-15px);
  -ms-transform: translate(-50%,-15px);
  transform: translate(-50%,-15px);
}

a.left-tooltip .tooltip{
  top: 50%;
  right: 100%;
  margin-right: 5px;
  -webkit-transform: translate(-15px,-50%);
  -moz-transform: translate(-15px,-50%);
  -o-transform: translate(-15px,-50%);
  -ms-transform: translate(-15px,-50%);
  transform: translate(-15px,-50%);
}

a.right-tooltip .tooltip{
  top: 50%;
  left: 100%;
  margin-left: 9px;
  -webkit-transform: translate(15px,-50%);
  -moz-transform: translate(15px,-50%);
  -o-transform: translate(15px,-50%);
  -ms-transform: translate(15px,-50%);
  transform: translate(15px,-50%);
}

a.bottom-tooltip .tooltip{
  top: 100%;
  left: 50%;
  margin-top: 5px;
  -webkit-transform: translate(-50%,15px);
  -moz-transform: translate(-50%,15px);
  -o-transform: translate(-50%,15px);
  -ms-transform: translate(-50%,15px);
  transform: translate(-50%,15px);
}

a.top-tooltip:hover .tooltip{
  -webkit-transform: translate(-50%,0px);
  -moz-transform: translate(-50%,0px);
  -o-transform: translate(-50%,0px);
  -ms-transform: translate(-50%,0px);
  transform: translate(-50%,0px);
}

a.left-tooltip:hover .tooltip{
   -webkit-transform: translate(0px,-50%);
  -moz-transform: translate(0px,-50%);
  -o-transform: translate(0px,-50%);
  -ms-transform: translate(0px,-50%);
  transform: translate(0px,-50%);
}

a.right-tooltip:hover .tooltip{
   -webkit-transform: translate(0px,-50%);
  -moz-transform: translate(0px,-50%);
  -o-transform: translate(0px,-50%);
  -ms-transform: translate(0px,-50%);
  transform: translate(0px,-50%);
}

a.bottom-tooltip:hover .tooltip{
  -webkit-transform: translate(-50%,0);
  -moz-transform: translate(-50%,0);
  -o-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  transform: translate(-50%,0);
}

.tooltips a .tooltip:after{
  position:absolute;
  content:"";
  width:0;
  height:0;
}

a.top-tooltip .tooltip:after{
  border-left:7px solid transparent;
  border-top:5px solid #202732;
  border-right:7px solid transparent;
  top: 100%;
  left:50%;
  margin-left:-7px;
}

a:hover .tooltip{
  opacity: 1;
  visibility: visible;
}

.tooltips a:hover{text-decoration: none;}

.tooltips a.left-tooltip .tooltip:after{
  border-top: 7px solid transparent;
  border-left: 5px solid #202732;
  border-bottom: 7px solid transparent;
  top: calc(50% - 7px);
  left: 100%;
}

.tooltips a.right-tooltip .tooltip:after{
  border-top: 7px solid transparent;
  border-right: 5px solid #202732;
  border-bottom: 7px solid transparent;
  right: 100%;
  top: calc(50% - 7px);
}

.tooltips a.bottom-tooltip .tooltip:after{
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 5px solid #202732;
  border-top: none;
  bottom: 100%;
  left: calc(50% - 7px);
}

/* -----------------------------------

  5. Header

------------------------------------- */

#header.sticky-header.clone-fixed{
  position: fixed;
  top: -132px;
  z-index: 91;
  transition: 0.5s top cubic-bezier(.3, .73, .3, .74);
}

#header{
  background-color: #202732;
  position: relative;
  z-index: 9;
  width: 100%;
  padding: 30px;

  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;

  transition: all 0.5s ease;
}

#header.fixed-header{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
}

  #header .top-header{
    padding: 28px 0;

    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
  }

  #header.sticky .top-header{
    padding: 18px 0;
  }

  .logo{
    display: inline-block;
  }

/* Main Navigation */

#wrapper{
  min-height: 100%;
  overflow: hidden;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.nav-bttn{
  font-size: 14px;
  background-color: transparent;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 35px;
}

.nav-bttn:before{
  content: "\e92b";
  font-family: 'linearicons';
  font-size: 40px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: -10px;
}

.nav-bttn.close-bttn:before{
  content: "\e92a";
}

.nav-menu.type-hr ul{
  margin: 0 -20px -10px;
  font-size: 0;
  transform: translateX(0);
}

.nav-menu ul > li{
  font-size: 14px;
  font-weight: 500;
}

.nav-menu.type-hr ul > li{
  margin: 0 20px 10px;
  display: inline-block;
}

.nav-menu ul > li > a{
  position: relative;
  letter-spacing: 0.8px;
  white-space: nowrap;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  transition: 0.4s ease-in-out;
}

.nav-menu ul > li > a:hover{
  color: #FDD426;
}

.nav-menu ul > li > a:before,
.page-nav-menu > ul > li > a:before,
.isotope-nav > button:before{
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -40%;
  background-image: linear-gradient(90deg, #fdf09c 0%, #b07e1b 33%, #fdf09c 66%, #b07e1b 100%);
  transition: 0.5s ease;
  z-index: 1;
  /* content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: inherit;
  transition-duration: inherit; */
}

.nav-menu ul > li a:hover:before,
.nav-menu ul > li.current > a:before,
.page-nav-menu > ul > li.current > a:before,
.isotope-nav > button.is-checked:before{
  width: 100%;
}

.nav-menu ul > li.sub-menu.current > a:before,
.nav-menu ul > li.sub-menu > a:hover:before{
  width: calc(100% - 44px);
}

.navbar-menu{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #fdbc36;
  padding: 60px 30px;
  z-index: 99;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;

  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.navbar-menu.open-navbar{
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

  .navbar-menu .nav-menu{
    margin-top: 150px;
    opacity: 0;
    -webkit-transform: translateY(3rem);
    -ms-transform: translateY(3rem);
    -o-transform: translateY(3rem);
    transform: translateY(3rem);
    -webkit-transition: all 0.5s 0.7s ease;
    -o-transition: all 0.5s 0.7s ease;
    transition: all 0.5s 0.7s ease;
  }

  .navbar-menu.open-navbar .nav-menu{
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }

    .navbar-menu .nav-menu > ul li{
      font-size: 18px;
      text-transform: uppercase;
      line-height: 48px;
    }

    .navbar-menu .nav-menu > ul > li.sub-menu > ul{
      display: none;
      padding-left: 15px;
    }

    .navbar-menu .nav-menu > ul > li.sub-menu.active > ul{
      display: block;
    }

      .navbar-menu .nav-menu > ul > li.sub-menu > ul > li{
        font-size: 16px;
      }

    .navbar-menu .nav-menu > ul > li.sub-menu > a:after{
      font-family: 'Linearicons';
      content: "\e93a";
      display: inline-block;
      margin-left: 20px;
      font-size: 24px;
      vertical-align: -3px;
    }

      .navbar-menu .nav-menu > ul > li a{
        color: #202732;
        display: inline-block;
        line-height: 18px;
      }

/* Page navigation menu */

.page-nav-menu{
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  text-align: right;
}

  .page-nav-menu #menu{
    transition: all .6s ease;
  }

  .page-nav-menu > ul > li > a{
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    position: relative;
    display: inline-block;
  }

  .page-nav-menu > ul > li:first-child > a{
    font-size: 18px;
    text-transform: uppercase;
  }

  .page-nav-menu > ul > li > a:after{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-left: 20px;
  }

  .page-nav-menu > ul > li.current > a:before{
    width: calc(100% - 30px);
  }

  .page-nav-menu > ul > li.current > a:after{
    background-color: #fff;
  }

  .page-nav-menu.menu-style-2 > ul > li > a{
    color: #202732;
  }

  .page-nav-menu.menu-style-2 > ul > li.current > a:after{
    background-color: #202732;
  }

  .page-nav-menu.menu-style-2 > ul > li > a:after{
    border-color: #202732;
  }

.page-nav-btn{
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -30px;
  background-color: #202732;
  font-size: 24px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  font-family: 'linearicons';
  color: #fff;
  transition: all .5s ease!important;
}

.page-nav-btn:after{
  content: "\e92c";
}

.page-nav-menu.open-page-nav .page-nav-btn{
  top: -60px;
}

.page-nav-menu.open-page-nav .page-nav-btn:after{
  content: "\e92a";
}

.page-nav-menu.open-page-nav #menu{
  opacity: 1;
  visibility: visible;

  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

/* ------------------------------------------------------
    
    6. Content Elements
    
------------------------------------------------------ */

#content{position: relative;}

/* Media holder */

.media-holder{
  position: relative;
  padding: 50px 0;
  display: table;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;
  width: 100%;
  color: #fff;
}

  .media-holder > .container{
    display: table-cell;
    vertical-align: middle;
    width: 100%;
  }

  .media-holder p{
    color: #e4e2e0;
    font-size: 24px;
    line-height: 36px;
  }

  .media-holder-title{
    color: #fff;
  }

  .media-holder-title.size2{
    font-size: 60px;
    line-height: 78px;
  }

/* Section with half col images */

.half-bg-col{
  position: relative;
}

.half-bg-col:not(.one-col-img) .flex-row{
  align-items: flex-end;
}

.img-content{
  display: inline-block;
  text-align: left;
}

[class*="img-col"]{
  position: relative;
}

[class*="img-col"]:before{
  content: '';
  position: absolute;
  background-color: #fff;
  width: calc(100% - 50px);
  height: 100%;
  top: 0;
  z-index: 1;

  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.13);
  -moz-box-shadow:    0px 0px 30px 0px rgba(0, 0, 0, 0.13);
  box-shadow:         0px 0px 30px 0px rgba(0, 0, 0, 0.13);
}

[class*="img-col"] a{
  overflow: hidden;
}

[class*="img-col"] img{
  z-index: 3;
  position: relative;
}

.half-bg-col .custom-slider .project-link img{
  width: 100%;
}

.half-bg-col .custom-slider{
  padding: 30px 0;
  width: calc(100% - 50px);
  display: inline-block;
  z-index: 9;
}

[class*="img-col"] a{
  display: block;
}

[class*="img-col"] .custom-slider + .custom-slider{
  margin-top: -30px;
}

.img-col-left{
  text-align: right;
}

.img-col-left:before{
  left: 0;
}

.img-col-right:before{
  right: 0;
}

.img-content.style-2{
  padding: 90px 50px;
  max-width: 600px;
}

.img-content.style-3{
  padding: 50px;
  max-width: 680px;
}
 
/* Cookies */

.cookies{
  background: rgba(42,44,50,0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 25px 0;
  color: #fff;
}

  .cookies span:before{
    content: '\e955';
    font-family: 'Linearicons';
    font-size: 24px;
    display: inline-block;
    margin-right: 10px;
  }

  .cookies .btn{
    margin: 0 2px;
  }

/* Revolution slider */

.tparrows{
  background: none;
  width: auto;
  height: auto;
  opacity: 1!important;
  visibility: visible!important;
}

.tparrows:before{
  font-family: 'Linearicons';
  font-size: 30px;
  color: #fff;
}

.tparrows:hover{background: none;}

  .tparrows.tp-leftarrow:before{
    content: '\e93b';
  }

  .tparrows.tp-rightarrow:before{
    content: '\e93c';
  }

.tp-bullet, 
.tp-bullet.selected, 
.tp-bullet:hover{
    background: none;
    height: auto;
    width: auto;
}

.circle-bullet,
.owl-dots .owl-dot{
  display: block;
  background: transparent;
  border: 1px solid #202732;
  border-radius: 50%;

  -webkit-transition: all .35s ease;
          transition: all .35s ease;
}

.circle-bullet{
  border-color: #fff;
}

.circle-bullet,
.owl-dots .owl-dot{
  width: 10px;
  height: 10px;
}

.owl-dots .owl-dot.active{
  background-color: #202732;
}

.tp-bullet.selected .circle-bullet{
  background-color: #fff;
}

[class*="scaption"]{
  font-size: 18px;
  line-height: 24px;
}

[class*="scaption-white"]{
  color: #fff;
}

[class*="scaption"][class*="-large"],
[class*="scaption"][class*="-medium"]{
  font-family: 'Playfair Display', serif;
}


[class*="scaption"][class*="-small2"]{
  font-size: 36px;
  line-height: 42px;
  font-weight: 300;
  text-transform: none;
}

.video-icon-play{
  font-size: 14px;
  letter-spacing: 0.8px!important;
  color: #fff;
  text-align: center!important;
  text-transform: uppercase;
  font-weight: 500;
  display: block;  
}

.video-icon-play:before{
  content: '';
  width: 90px;
  height: 90px;
  display: block;
  background: url("../images/icon_play.png") center no-repeat;
}

.tp-caption .btn{
  letter-spacing: 0.8px!important;
}

/* page navigation */

.page-nav{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}

  .page-nav a[class*="page-"]{
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
  }

  .page-nav > *{
    margin-bottom: 10px;
  }

  .page-nav a[class*="page-"]:before,
  .page-nav a[class*="page-"]:after{
    font-family: 'Linearicons';
    font-size: 30px;
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
  }

  .page-nav a.page-prev:before{
    content: "\e93b";
    padding-right: 10px;
  }

  .page-nav a.page-next:after{
    content: "\e93c";
    padding-left: 10px;
  }

.price-section{
  padding-top: 25px;
}

  .price-section > span{
    color: #64686d;
    font-weight: 300;
    text-transform: uppercase;
  }

  .price-section .price-numb{
    font-weight: 900;
  }

.share .title{
  color: #64686d;
  font-weight: 300;
  padding-right: 10px;
}

/* loader */

.ip-header{
  position: fixed;
  top: 0;
  z-index: 999;
  min-height: 200px;
  width: 100%;
  height: 100%;
  background: #0b6e69;
}

.ip-header h1{
  margin: 0;
}

.ip-logo,
.ip-loader{
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

.ip-logo{
  top: 0;
  height: 100%;
  text-align: center;
  -webkit-transform: translate3d(0,35%,0);
  transform: translate3d(0,35%,0);
}

.ip-loader{
  bottom: 35%;
}

.ip-header .ip-inner{
  display: block;
  margin: 0 auto;
}

.ip-header .ip-logo svg {
  min-width: 320px;
  max-width: 480px;
  width: 25%;
}

.ip-header .ip-logo svg path {
  fill: #ef6e7e;
}

.ip-header .ip-loader svg path {
  fill: none;
  stroke-width: 6;
}

.ip-header .ip-loader svg path.ip-loader-circlebg {
  stroke: #fff;
}

.ip-header .ip-loader svg path.ip-loader-circle {
  -webkit-transition: stroke-dashoffset 0.2s;
  transition: stroke-dashoffset 0.2s;
  stroke: #fdbc36;
}

/* Animations */

/* Initial animation of header elements */
.loading .ip-logo,
.loading .ip-loader {
  opacity: 1;
  -webkit-animation: animInitialHeader 1s cubic-bezier(0.7,0,0.3,1) both;
  animation: animInitialHeader 1s cubic-bezier(0.7,0,0.3,1) both;
}

.loading .ip-loader {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes animInitialHeader {
  from { opacity: 0; -webkit-transform: translate3d(0,800px,0); }
}

@keyframes animInitialHeader {
  from { opacity: 0; -webkit-transform: translate3d(0,800px,0); transform: translate3d(0,800px,0); }
}

/* Header elements when loading finishes */
.loaded .ip-logo,
.loaded .ip-loader {
  opacity: 1;
}

.loaded .ip-logo {
  -webkit-transform-origin: 50% -200%;
  transform-origin: 50% -200%;
  -webkit-animation: animLoadedLogo 1s cubic-bezier(0.7,0,0.3,1) forwards;
  animation: animLoadedLogo 1s cubic-bezier(0.7,0,0.3,1) forwards;
}

.layout-switch .ip-header{
  display: none!important;
}

@-webkit-keyframes animLoadedLogo {
  to { -webkit-transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); }
}

@keyframes animLoadedLogo {
  to { -webkit-transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); }
}

.loaded .ip-loader {
  -webkit-animation: animLoadedLoader 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
  animation: animLoadedLoader 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
}

@-webkit-keyframes animLoadedLoader {
  to { opacity: 0; -webkit-transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); }
}

@keyframes animLoadedLoader {
  to { opacity: 0; -webkit-transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); }
}

/* Header animation when loading finishes */
.loaded .ip-header {
  -webkit-animation: animLoadedHeader 1s cubic-bezier(0.7,0,0.3,1) forwards;
  animation: animLoadedHeader 1s cubic-bezier(0.7,0,0.3,1) forwards;
}

@-webkit-keyframes animLoadedHeader {
  to { -webkit-transform: translate3d(0,-100%,0); }
}

@keyframes animLoadedHeader {
  to { -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); }
}

/* Content animations */
.loaded .wrapper-container{
  -webkit-animation: animLoadedContent 1s cubic-bezier(0.7,0,0.3,1);
  animation: animLoadedContent 1s cubic-bezier(0.7,0,0.3,1);
}

@-webkit-keyframes animLoadedContent {
  from { opacity: 0; -webkit-transform: translate3d(0,200px,0); }
}

@keyframes animLoadedContent {
  from { opacity: 0; -webkit-transform: translate3d(0,200px,0); transform: translate3d(0,200px,0); }
}

/* -----------------------------------

  7. UI Elements

------------------------------------- */

  /*----------- Buttons --------------*/

  .btn{
    padding: 6px 30px;
    display: inline-block;
    font-size: 14px;
    background: transparent;
    border: 1px solid #202732;
    color: #202732;
    text-align: center;
    line-height: 30px;
    font-weight: normal;
    white-space: nowrap;
    letter-spacing: 0.8px;
  }

  .btn:hover{
    background: #202732;
    color: #fff;
  }

  .btn-small{
    font-size: 12px;
    padding: 1px 30px;
  }

  .btn-big{
    padding: 11px 30px;
    font-size: 16px;
  }

  [class*="btn"].btn-icon i{
    font-size: 20px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
  }

  .btn-small.btn-icon i{
    font-size: 18px;
  }

  .btn-big.btn-icon i{
    font-size: 24px;
  }

  [class*="btn"][class*="style-"]{
    border-color: transparent;
  }

  [class*="btn"].style-2{
    background: #fdbc36;
  }

  [class*="btn"].style-2:hover{
    background: #202732;
  }

  [class*="btn"].style-3{
    background: #202732;
    color: #fff;
  }

  [class*="btn"].style-3:hover{
    background: #fdbc36;
  }

  [class*="btn"].style-4{
    background: #f3f5f6;
  }

  [class*="btn"].style-4:hover{
    background: #b1b3b6;
  }

  [class*="btn"].style-5{
    background: #b1b3b6;
    color: #fff;
  }

  [class*="btn"].style-5:hover{
    background: #fdbc36;
  }

  [class*="btn"].style-6{
    background: #e1e7e9;
    color: #2a2c32;
  }

  [class*="btn"].style-6:hover{
    background: #494c55;
  }

  .go-to-top{
    position: fixed;
    z-index: 103;
    right: 0;
    bottom: 20%;
    background: #b1b3b6;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    font-family: 'Linearicons';
    -webkit-animation-duration: .5s;
    animation-duration: .5s;    
  }

  .go-to-top.go-top-visible{
    right: 20px;
    opacity: 1;
    visibility: visible;
    display: block;
  }

  .go-to-top:before{
    content: "\e939";
  }

  .go-to-top:hover{
    background: #202732;
  }

  .go-to-top{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    text-align: center;
    font-size: 24px;
  }

  .btns-set .flex-row{
    margin: 0 -20px -20px;
  }

  .btns-set .flex-row > .btn-col{
    padding: 0 20px 20px;
  }

  .btns-set .btn-col ul > li:not(:last-child){
    margin-bottom: 20px;
  }

  .info-btn{
    font-size: 14px;
    line-height: 30px;
    display: inline-block;
    position: relative;
    letter-spacing: 0.8px;
  }

  .info-btn:after{
    position: absolute;
    left: 100%;
    top: 0;
    content: '\e965';
    font-family: 'linearicons';
    font-size: 16px;
    margin-left: 10px;
    display: block;
  }

  /*----------- Forms --------------*/

  form.with-icon input{
    padding: 10px 60px 10px 20px;
  }

  form.with-icon input+button{
    position: absolute;
    right: 15px;
    top: 0;
    line-height: 40px;
    font-size: 20px;
    color: #80c644;
    background: transparent;
  }

  form.with-icon input+button:hover{
    color: #2a2c32;
  }

    /* Inputs & Textarea */

    input:not([type="submit"]),
    textarea,
    .custom-select .select-title{
      width: 100%;
      color: #202732;
      height: 44px;
      padding: 0 20px;
      font-weight: 300;
      font-size: 16px;
      border: 1px solid #202732;
      background-color: transparent;
      text-align: left;
      white-space: nowrap;
      line-height: 44px;

      -webkit-box-sizing: border-box;
         -moz-box-sizing: border-box;
              box-sizing: border-box;

      -webkit-transition: box-shadow .35s ease, border-color .35s ease;
              transition: box-shadow .35s ease, border-color .35s ease;
    }

    textarea{
      display: block;
      height: initial;
      resize: none;
      min-height: 200px;
    }

    input:not([type="submit"]):focus,
    textarea:focus{
      border-color: #fdbc36;
      -moz-appearance:none;
      outline:0px none transparent;
    }

    /* Label & Legend */

    label,
    legend{
      font-size: 16px;
      color: #202732;
      font-weight: 300;
      margin-bottom: 2px;
      display: block;   
    }

    legend{
      color: inherit;
      padding: 0 7px;
      margin-bottom: 0px;
    }

    label[for]{
      cursor: pointer;

      -webkit-user-select: none;
         -moz-user-select: none;
           -o-user-select: none;
              user-select: none;
    }

    .required:after{
      content: "*";
      color: #eb0b0b;
      display: inline-block;
      margin-left: 2px;
      font-size: 14px;
    }

    /* Checkbox & Radio */

    .input-wrapper{
      text-align: left;
    }

    .input-wrapper > span{
      padding-right: 20px;
      font-size: 16px;
      line-height: 20px;
      display: inline-block;
      vertical-align: middle;
    }

    input[type="radio"],
    input[type="checkbox"]{
      display: none;
    }

    input[type="radio"] + label,
    input[type="checkbox"] + label{
      font-size: 16px;
      font-weight: 300;
      text-transform: none;
      width: initial;
      padding-top: 5px;
      padding-bottom: 5px;
      float: none;
      margin-bottom: 0px;
      display: inline-block;

      position: relative;
      padding-left: 35px;

      -webkit-user-select: none;
         -moz-user-select: none;
           -o-user-select: none;
              user-select: none;
    }

    input[type="checkbox"] + label{
      padding-left: 32px;
    }

    input[type="radio"] + label:not(:last-child),
    input[type="checkbox"] + label:not(:last-child){
      margin-right: 20px;
    }

    input[type="radio"] + label::before,
    input[type="checkbox"] + label::before,
    input[type="radio"] + label::after,
    input[type="checkbox"] + label::after{
      content: "";
      display: block;
      position: absolute;
    }

    input[type="radio"] + label::before,
    input[type="checkbox"] + label::before{
      background: transparent;
      border: 1px solid #202732;
      left: 0;
      top: 7px;
    }

    input[type="radio"] + label::before{
      border-radius: 50%;
      width: 26px;
      height: 26px;
    }

    input[type="checkbox"] + label::before{
      top: 5px;
      border-radius: 3px;
      width: 22px;
      height: 22px;
    }

    input[type="radio"] + label::after,
    input[type="checkbox"] + label::after{
      opacity: 0;
      visibility: hidden;
    }

    input[type="radio"] + label::after{
      left: 7px;
      top: 14px;
      border-radius: 50%;
      background-color: #202732;
      width: 12px;
      height: 12px;
    }

    input[type="checkbox"] + label::after{
      border: 2px solid #202732;
      width: 25px;
      height: 15px;
      left: -1px;
      top: 2px;

      clip: rect(6px, 18px, 15px, 0px);

      -webkit-transform: skew(10deg) rotate(-45deg);
          -ms-transform: skew(10deg) rotate(-45deg);
              transform: skew(10deg) rotate(-45deg);
    }

    input[type="radio"]:checked + label::after,
    input[type="checkbox"]:checked + label::after{
      opacity: 1;
      visibility: visible;
    }

    /*----------- Custom Select --------------*/

    .custom-select{
      position: relative;
      display: inline-block;
      vertical-align: middle;
      width: 100%;
    }

      .custom-select .select-title{
        cursor: pointer;
        position: relative;
        overflow: hidden;
        padding-right: 50px;
      }

      .custom-select .select-title.active{
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
      }

      .custom-select .select-list{
        position: absolute;
        left: 0;
        top: 100%;
        cursor: pointer;
        background: #fff;
        z-index: 1;
        border: 1px solid #202732;
        display: none;
        font-weight: 300;
        width: 100%;
        border-top: none;
      }

        .custom-select .select-list li{
          padding: 7px 20px;
          color: #202732;

          -webkit-transition: all .3s ease;
          -o-transition: all .3s ease;
          transition: all .3s ease;
        }

        .custom-select .select-list li:hover{
          background: #202732;
          color: #fff;
        }

      .custom-select .select-title:before{
        content: "\e93a";
        font-family: 'linearicons';
        position: absolute;
        top: 0;
        right: 0;
        padding: 0 20px;
        background-color: #fff;
        line-height: 44px;
        color: #202732;
      }

      .custom-select .select-title.active:before{content: '\e939';}

    /* Fieldset */

    fieldset{
      border-radius: 8px;
      padding: 20px;
      border-color: #f1f1f1;
    }

    fieldset:not(:last-child){
      margin-bottom: 15px;
    }

    /* Form variations */

    .contact-form{
      font-size: 16px;
      font-weight: 300;
    }

    .contact-form:not(:last-child){
      margin-bottom: 30px;
    }

      .contact-form > button.btn{
        margin-top: 10px;
        text-transform: uppercase;
      }

      .contact-form .form-row{
        margin: -20px -10px 0;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-flow: row wrap;
        flex-flow: row wrap;
      }

      .contact-form .form-row:not(:last-child){
        margin-bottom: 20px;
      }

        .contact-form .form-row [class*="form-col"]{
          padding: 20px 10px 0;
          width: 100%;
        }

        .contact-form .form-row .form-col-2{
          width: 50%;
        }

        .contact-form .form-row .form-col-3{
          width: 33.3333%;
        }

      .contact-form.style-2 input:not([type="submit"]), 
      .contact-form.style-2 textarea, 
      .contact-form.style-2 .custom-select .select-title{
        border: none;
        background-color: #fff;
      }

      .contact-form.style-2 textarea{
        display: block;
        height: initial;
        resize: none;
        min-height: 90px;
      }

      .contact-form.style-2 input[type="radio"] + label::before{
        background: #fff;
        border: none;
      }

      .contact-form.style-2 .btn:hover{
        background-color: #b1b3b6;
      }

    .contact-form-wrap{
      position: relative;
    }

    .contact-popup{
      position: absolute; 
      left: 0;
      top: 0;
      width: 100%;
      background-color: #fdbc36;
      padding: 50px;
      text-align: center;
      z-index: 9;

      -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.13);
      -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.13);
      box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.13);
    }

    .contact-popup p{
      color: #645133;
    }

    .our-contact-section{
      font-size: 0;
      margin: 0 -20px -10px;
    }

    .our-contact-section > a.link-text{
      display: inline-block;
      margin: 0 20px 10px;
      font-size: 16px;
      font-weight: 300;
    }

    .our-contact-section > a.link-text span{
      font-size: 20px;
      margin-right: 10px;
      display: inline-block;
      vertical-align: middle;
    }

  /*----------- Tables --------------*/

  table{
    width: 100%;
    border-collapse: collapse;
  }

  [class*="table-type"]{
    overflow: hidden;
  }

  [class*="table-type"] table tr > td,
  [class*="table-type"] table tr > th{
    padding: 15px 25px;
    text-align: left;
    font-weight: 300;
  }

  [class*="table-type"] table tr > th,
  [class*="table-type"] table tr.bg-cell > td{
    color: #fff;
  }

  [class*="table-type"] table tr.bg-cell > td,
  [class*="table-type"] table tr.bg-cell > th{
    font-weight: bold;
  }

  [class*="table-type"] table tr:not(:last-child) > td{
    border-top: 1px solid #d2d4d6;
  }

  [class*="table-type"]:not(.aa-table) table tr:nth-child(2) > td{
    border-top: none;
  }

  [class*="table-type"]:not(.aa-table) table tr:last-child > td{
    border-top: 1px solid #202732;
    border-bottom: 1px solid #202732;
    font-weight: 500;
  }

  .table-type-1 table tr.bg-cell > td{
    border: none;
    background: #80c644;
  }

  .table-type-2 table tr.bg-cell td,
  .table-type-2 table tr.bg-cell th{
    border: none;
    background: #80c644;
  }

  .table-type-1 tr:first-child > th,
  .table-type-2 tr:not(:last-child) > th{
    background: #f3f5f6;
    color: #64686d;
  }

  .aa-table table tr td,
  .aa-table table tr th{
    padding: 15px 20px;
  }

  .aa-table table tr.toggle-row-header.active td{
    border-bottom: 1px solid #d2d4d6;
  }

  .aa-table table tr.toggle-row td{
    border-bottom: 1px solid #d2d4d6;
  }

  .aa-table table tr.toggle-row.last-row td,
  .aa-table table tr.toggle-row-header td{
    border-bottom: 1px solid #202732;
  }

  .aa-table table tr.toggle-row td a i{
    font-size: 20px;
  }

  .aa-table table tr.toggle-row td a{
    display: inline-block;
  }

  .aa-table table tr.toggle-row td .td-icon-area{
    margin: 0 -10px -10px;
  }

  .aa-table table tr.toggle-row td .td-icon-area > a{
    margin: 0 10px 10px;
  }

  .aa-table table tr.toggle-row:hover{
    background-color: #f3f5f6;
  }

  /*----------- Lists --------------*/

  .custom-list:not(:last-child){
    margin-bottom: 30px;
  }

  .custom-list > li{
    position: relative;
    font-weight: 300;
    font-size: 16px;
  }

    .custom-list li span{
      color: #7b8285;
    }

    .custom-list > li > ul > li,
    .custom-list > li > ol > li{
      margin-left: 35px;
    }

  .custom-list.type2:not(:last-child){
    margin-bottom: 20px;
  }

  .custom-list.type2 > li:not(:last-child){
    margin-bottom: 0;
  }

  .custom-list > li:not(:last-child),
  .custom-list > li > ul > li:not(:last-child),
  .custom-list > li > ol > li:not(:last-child){
    margin-bottom: 12px;
  }

  .custom-list > li > ul,
  .custom-list > li > ol{
    margin-top: 10px;
  }

  .custom-list > li h6{
    font-family: 'Heebo', sans-serif;
    line-height: 26px;
    color: #4b4e50;
  }

  .custom-list > li h6:not(:last-child){
    margin-bottom: 5px;
  }

  .custom-list[class*="type-"] li::before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    font-family: 'linearicons';
    color: #fdbc36;
    font-size: 20px;
  }

  .custom-list.type-1 li::before{
    content: "\e959";
  }

  .custom-list.type-2 li::before{
    content: "\e965";
  }

  .custom-list.type-3 li::before{
    content: "\e99e";
  }

  .custom-list.type-4,
  .custom-list.type-4 > li > ol{
    counter-reset: item;
  }

  .custom-list.type-4 li:before{
    content: counters(item, ".")".";
    counter-increment: item;
    font-size: 16px;
    font-weight: bold;
  }

  .custom-list > li:not(:last-child){
    margin-bottom: 12px;
  }

  .custom-list.style-2 > li{
    color: #fff;
  }

  .custom-list[class*="type-"].style-2 li::before{
    color: #e8ad35;
  }

  /* detail table list */

  .project-detail-list:not(:last-child){
    margin-bottom: 40px;
  }

  .project-detail-list > li{
    line-height: 26px;
    font-size: 16px;
    font-weight: 300;
  }

  .project-detail-list > li:not(:last-child){
    margin-bottom: 10px;
  }

  .project-detail-list > li:first-child{
    padding-top: 0;
  }

  .project-detail-list > li:last-child{
    padding-bottom: 0;
    border-bottom: none;
  }

  .project-detail-list .detail-col{
    width: 50%;
  }

  .project-detail-list .detail-col:only-child{
    width: 100%;
  }

    .project-detail-list .detail-col span:first-child{
      width: 55%;
      text-transform: uppercase;
    }

    .project-detail-list .detail-col span:last-child{
      width: 45%;
      color: #64686d;
    }

    .project-detail-list .detail-col span{
      display: inline-block;
      vertical-align: top;
    }
 
    .project-detail-list .detail-col:only-child span:first-child{
      width: 55%;
    }

    .project-detail-list .detail-col:only-child span:last-child{
      width: 45%;
    }

  .project-detail-list.style-2 > li{
    color: #fff;
  }

    .project-detail-list.style-2 .detail-col span:last-child{
      color: #e8ad35;
    }

  /*----------- Blockquotes --------------*/

  .blockquote-holder:not(:last-child){margin-bottom: 30px;}

  blockquote{
    color: #202732;
    padding: 40px 50px 40px 75px;
    border: 2px solid #202732;
  }

  blockquote p{
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 36px;
  }

  blockquote p:not(:last-child){
    margin-bottom: 25px;
  }

  blockquote .author{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }

  blockquote .author-status{
    font-size: 14px;
    line-height: 24px;
    color: #64686d;
    font-weight: 300; 
    letter-spacing: 0.3px;
  }

  .blockquote-holder{
    position: relative;
    overflow: hidden;
  }

  .blockquote-holder.with-bg{
    background: #f3f5f6;
  }

  .blockquote-holder.with-bg blockquote{
    border: none;
  }

  /*----------- Dividers --------------*/

  hr{
    border-style: solid;
    border-color: #d2d4d6;
    margin: 15px 0;
  }

  hr.item-divider{
    border-width: 1px 0 0 0;
  }

  hr.item-divider-2{
    border-width: 2px 0 0 0;
  }

  hr.item-divider-3{
    border-width: 3px 0 0 0;
    width: 70px;
  }

  hr.style-2{
    border-color: #202732;
  }

  hr.style-3{
    border-color: #fdbc36;
  }

/* Social icons */

.social-icons{
  font-size: 0;
  margin: -5px -15px 0;
}

  .social-icons > li{
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    padding: 5px 15px 0;
  }

    .social-icons > li > a{
      display: inline-block;
      text-align: center;
      color: #202732;
    }

    .social-icons > li > a:hover{
      color: #fdbc36;
    }

.social-icons.style-2{
  margin: 0 -2.5px -5px;
}

  .social-icons.style-2 > li{
    display: inline-block;
    vertical-align: middle;
    padding: 0 2.5px 5px;
  }

    .social-icons.style-2 > li > a{
      display: block;
      text-align: center;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      line-height: 40px;
      color: #fff;
    }

    .social-icons.style-2 > li > a.sh-facebook{
      background-color: #3a5a9a;
    }

    .social-icons.style-2 > li > a.sh-twitter{
      background-color: #1da1f2;
    }

    .social-icons.style-2 > li > a.sh-pinterest{
      background-color: #cc2128;
    }

    .social-icons.style-2 > li > a:hover{
      color: #fff;
    }

/* -----------------------------------

  8. Widgets & Shortcodes

------------------------------------- */

  /*----------- Twitter Feed --------------*/

  /*----------- Instagram Feed --------------*/

  /*----------- LightBox --------------*/

  /*----------- Accordions & Toggles --------------*/

  .accordion{
    text-align: left;
  }

  .accordion .accordion-item{
    padding: 15px 0;
    border-color: #202732;
    border-style: solid;
  }

  .accordion .accordion-item:first-child{
    border-top-width: 1px;
  }

  .accordion .accordion-item{
    border-bottom-width: 1px;
  }

  .accordion .a-title,
  .aa-table table tr td.toggle-title{
    font-family: 'Heebo', sans-serif;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 0.8px;
    font-weight: 500;
    line-height: 30px;
  }

  .accordion .a-content{
    padding-top: 20px;
  }

    .accordion .a-title span{
      color: #85888c;
    }

  .accordion .a-title:after,
  .aa-table table tr td.toggle-title:after{
    font-family: 'Linearicons';
    content: '\e93c';
    font-size: 20px;
    margin-left: 20px;
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
  }

  .accordion .a-title.active:after,
  .aa-table table tr.toggle-row-header.active td.toggle-title:after{
    content: '\e93a';
  }

  .accordion .a-content .custom-list:not(:last-child){
    margin-bottom: 20px;
  }

  /*----------- Alert boxes --------------*/

  [class*="alert"]{
    padding: 14px 45px 13px 20px;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
  }

  [class*="alert"]:before{
    font-family: 'linearicons';
    font-size: 24px;
    color: #fff;
    display: inline-block;
    vertical-align: -3px;
    margin-right: 5px;
  }

  [class*="alert"].alert-warning,
  .warning{
    background: #ffb74d;
  }

  [class*="alert"].alert-warning:before{
    content: "\e956";
  }

  [class*="alert"].alert-success,
  .success{
    background: #8bc34a;
  }

  [class*="alert"].alert-success:before{
    content: "\e959";
  }

  [class*="alert"].alert-info,
  .info{
    background: #2196f3;
  }

  [class*="alert"].alert-info:before{
    content: "\e961";
  }

  [class*="alert"].alert-error,
  .error{
    background: #ef5350;
  }

  [class*="alert"].alert-error:before{
    content: "\e95a";
  }

    [class*="alert"] .close{
      font-family: 'Linearicons';
      position: absolute;
      right: 20px;
      top: calc(50% - 15px);
      background: none;
      font-weight: bold;
      color: #fff;
      font-size: 15px;
    }

    [class*="alert"] .close:hover{color: #2a2c32;}

    [class*="alert"] .close:after{
      content: '\e935';
    }

  [class*="message-container"]{
    display: inline-block;
    margin-top: 10px;
    top: 100%;
    left: 15px;
    position: absolute;
  }

  [class*="message-container"] p{
    color: #fff;
  }

  .alert-box i{
    float: left;
    position: relative;
    font-style: normal;
    font-weight: bold;
    margin-right: 10px;
  }

  .alert-box p{
    white-space: nowrap;
  }

  /*----------- Callouts --------------*/

  /*----------- Pagination --------------*/

  .pagination{
    text-align: center;
    margin: -10px -18px 0;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    align-items: center;
  }

  .pagination > li{
    padding: 10px 18px 0;
  }

  .pagination > li > a{
    color: #202732;
    font-size: 18px;
  }

  .pagination > li.active > a:not([class*="-page"]),
  .pagination > li:hover > a:not([class*="-page"]){
    text-decoration: underline;
  }

  .prev-page::before,
  .next-page::before{
    font-family: 'linearicons';
    font-size: 30px;
  }

  .prev-page::before{
    content: '\e943';
  }

  .next-page::before{
    content: '\e944';
  }

  /*----------- Dropcaps --------------*/

  .dropcap::first-letter{
    font-family: 'Playfair Display', serif;
    display: block;
    float: left;
    font-weight: bold;
    margin: 10px 10px 0 0;
  }

  .dropcap::first-letter{
    font-size: 58px;
  }

  .dropcap.type-1::first-letter{
    color: #202732;
  }

  .dropcap.type-2::first-letter{
    color: #fdbc36;
  }

  /* scroll down icon */

  .icon-scroll{
    z-index: 90;
  }

  .icon-scroll,
  .icon-scroll:before {
    position: absolute;
    left: 50%;
  }

  .icon-scroll{
    width: 24px;
    height: 40px;
    margin-left: -15px;
    bottom: 40px;
    box-shadow: inset 0 0 0 1px #fff;
    border-radius: 25px;
  }

  .icon-scroll:before{
    content: '';
    width: 2px;
    height: 6px;
    background: #fff;
    margin-left: -1px;
    top: 10px;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
            animation-name: scroll;
  }

  @-webkit-keyframes scroll{
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      -webkit-transform: translateY(26px);
              transform: translateY(26px);
    }
  }

  @keyframes scroll{
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      -webkit-transform: translateY(26px);
              transform: translateY(26px);
    }
  }

  .fb-link{
    position: fixed;
    z-index: 99;
    top: 50%;
    margin-top: -30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #fff;
    background-color: #3a5a9a;
    font-size: 24px;
    text-align: center;
    left: 0;
    opacity: 0;
    visibility: hidden;
  }

  .fb-link.fb-visible{
    left: 20px;
    opacity: 1;
    visibility: visible;
    display: block;
  }

  .fb-link:hover{
    color: #3a5a9a;
    background-color: #fff;

    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.13);
  }

  /*----------- Icon Boxes --------------*/

  .icons-box:not(:last-child){margin-bottom: 60px;}

  .icons-box > .flex-row{
    margin-bottom: -30px;
  }

    .icons-box [class*="col-"]{
      padding-bottom: 30px;
    }

      .icons-box .icons-wrap .icons-item > img{width: 100%;}

      .icons-box .icons-wrap .icons-item.type-2{
        display: block;
        height: auto;
        background: none;
        border: none;
      }

        .icons-box:not(.type-2) .icons-wrap .icons-item > .item-box{
          position: relative;
          text-align: center;
        }

          .icons-box .icons-wrap .icons-item > .item-box .icons-box-title{
            font-family: 'Heebo', sans-serif;
            font-weight: normal;
            line-height: 25px;
          }

          .icons-box .icons-wrap .icons-item > .item-box .icons-box-title:not(:last-child){
            margin-bottom: 13px;
          }

          .icons-box .icons-wrap .icons-item > .item-box > p{
            font-size: 16px;
            color: #202732;
            line-height: 26px;
          }

          .icons-box:not(.type-2) .icons-wrap .icons-item > .item-box > *{
            -webkit-transition: color .35s ease;
            -o-transition: color .35s ease;
            transition: color .35s ease;
          }

          .icons-box:not(.type-2) .icons-wrap .icons-item > .item-box i{
            font-size: 40px;
            width: 100px;
            height: 100px;
            color: #202732;
            margin-bottom: 30px;
            display: inline-block;
            border-radius: 50%;
            line-height: 100px;
            text-align: center;
            background-color: #fdbc36;
          }

      .icons-box.type-2 .icons-wrap .icons-item > .item-box{
        position: relative;
        padding-left: 80px;
      }

        .icons-box.type-2 .icons-wrap .icons-item > .item-box .icons-box-title{
          padding-top: 10px;
        }

        .icons-box.type-2 .icons-wrap .icons-item > .item-box > .icons-box-title > a{
          border-bottom-width: 1px;
          border-bottom-style: solid;
          border-bottom-color: transparent;
        }

        .icons-box.type-2:not(.style-2) .icons-wrap .icons-item > .item-box i{
            font-size: 24px;
            width: 60px;
            height: 60px;
            color: #202732;
            border-radius: 50%;
            line-height: 60px;
            text-align: center;
            background-color: #fdbc36;
          }

        .icons-box.type-2 .icons-wrap .icons-item > .item-box i{
          position: absolute;
          left: 0;
          top: 0;
          margin-bottom: 0;
        }

      .icons-box.type-2.style-2 .icons-wrap .icons-item > .item-box{
        padding-left: 115px;
      }

        .icons-box.type-2.style-2 .icons-wrap .icons-item > .item-box i{
          font-family: 'Playfair Display', serif;
          font-size: 60px;
          font-weight: 900;
          line-height: 26px;
          color: rgba(253,188,54,0.5);
          font-style: normal;
        }

        .icons-box.type-2.style-2 .icons-wrap .icons-item > .item-box i:after{
          content: '/';
          font-size: 72px;
          display: inline-block;
          vertical-align: -20px;
        }

  /*----------- Testimonials --------------*/

  .testimonial:not(:last-child){margin-bottom: 45px;}

  .owl-carousel .testimonial{
    max-width: 750px;
    display: inline-block;
  }

  .owl-item.cloneds{
    display: none;
  }

  .testimonial blockquote{
    padding: 0;
    border: none;
  }

  .testimonial blockquote p{
    font-family: 'Playfair Display', serif;
    color: #202732;
    font-size: 24px;
    line-height: 36px;
  }

  .testimonial h6:not(:last-child){margin-bottom: 20px;}

  .testimonial .author-box{
    overflow: hidden;
    line-height: 22px;
    display: inline-block;
    text-align: left;
  }

  .testimonial:not(.type-2) .author-box > *{
    display: table-cell;
    vertical-align: middle;
  }

  .testimonial:not(.type-2) .avatar{padding-right: 20px;}

  .testimonial .avatar img{
    border-radius: 50%;
    max-width: 100px;
    max-height: 100px;
  }

  .testimonial .author-name{
    font-size: 16px;
    display: block;
    font-weight: 500;
    color: #3c4049;
    font-family: 'Heebo', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  .testimonial .author-position,
  .testimonial .author-about,
  .testimonial .author-company{
    display: block;
    font-size: 14px;
    color: #64686d;
    font-weight: 300;
    letter-spacing: 0.3px;
  }

  .testimonial .author-name:not(:last-child){
    margin-bottom: 4px;
  }

  .testimonial .author-position:not(:last-child){
    margin-bottom: 4px;
  }

  .testimonial .testimonial-holder{margin-bottom: 35px;}

  .testimonial.type-2 .author-box{
    float: left;
    margin-right: 50px;
  }

  .testimonial.type-2 .author-box .avatar{
    display: block;
  }

  .testimonial.type-2 .testimonial-holder{
    overflow: hidden;
  }

  .testimonial.type-2 .avatar:not(:last-child){
    margin-bottom: 15px;
  }

  /*----------- Carousel Sliders --------------*/

  .carousel-type-1 .owl-carousel .owl-nav{
    display: none!important;
  }

  .owl-item{
    backface-visibility: hidden;
    transform: translateZ(0) scale(1.0, 1.0);
   -webkit-backface-visibility: hidden;
   -webkit-transform: translateZ(0) scale(1.0, 1.0);
  }

  [class*="carousel-type"] .owl-dots{
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  [class*="carousel-type"] .owl-dots .owl-dot{
    display: block;
  }

  [class*="carousel-type"] .owl-dots .owl-dot:not(:last-child){
    margin-bottom: 20px;
  }

  .owl-carousel .animated{
    -webkit-animation-duration: 1s;
        -ms-animation-duration: 1s;
            animation-duration: 1s;
  }

  /*----------- Progress Bars --------------*/

  .pbar-wrap{
    position: relative;
  }

  .pbar{
    position: relative;
    height: 5px;
    background-color: #f3f5f6;
  }

  .pbar-wrap:not(:last-child){
    margin-bottom: 22px;
  }

  .pbar-inner{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #202732;
  }

  .pbar-wrap .pbar-title{
    font-weight: 300;
    margin-bottom: 5px;
    color: #202732;
  }

    .pbar-wrap .pbar-title > span{
      float: right;
    }

  /*----------- Pricing Tables --------------*/

  .pricing-tables-holder{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-align-items: center;
            align-items: center;

    -webkit-justify-content: space-around;
            justify-content: space-around;

    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
  }

  .pricing-tables-holder.cols-2 .pricing-table{
    -webkit-flex-basis: 50%;
            flex-basis: 50%;
  }

  .pricing-tables-holder.cols-3 .pricing-table{
    width: 33.33333%;
  }

  .pricing-tables-holder.cols-4 .pricing-table{
    width: 25%;
  }

  .pricing-table{
    background-color: #f3f5f6;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .pricing-table.selected{
    border: 2px solid #202732;
    background-color: #fff;
    padding: 20px 0;
    z-index: 2;
  }

  .pt-header{
    color: #202732;
    padding: 35px 30px 20px;
    word-break: break-all;
  }

  .pt-type{
    font-size: 16px;
    text-transform: uppercase;
    color: #202732;
    font-weight: bold;
    letter-spacing: 0.8px;
  }

  .pt-price{
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: #202732;
    text-transform: uppercase;
  }

  .pt-type,
  .pt-price{
    line-height: 1.2em;
  }

  .pt-price:not(:last-child){
    margin-bottom: 5px;
  }

  .pt-type:not(:last-child){
    margin-bottom: 15px;
  }

  .pt-period{
    font-size: 14px;
    font-weight: 300;
    color: #64686d;
    line-height: 14px;
  }

  .pt-lifetime{
    vertical-align: baseline;
  }

  .pt-features-list{
    padding: 20px 30px 20px;
    color: #7b8285;
    font-size: 16px;
    font-weight: 300;
  }

  .pt-features-list > li:not(:last-child){
    margin-bottom: 6px;
  }

  .pt-footer{
    padding: 10px 30px 40px;
  }

  .pt-header,
  .pt-footer,
  .pt-features-list{
    position: relative;
    z-index: 1;
  }

  .label{
    font-size: 12px;
    line-height: 1em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    display: block;
    padding: 6px 10px;
    position: absolute;
    background-color: #202732;
    right: 0;
    top: 0;
    z-index: 2;
  }

  /*----------- Counters --------------*/

  .counter{
    color: #202732;
    font-size: 16px;
  }

  .count-number{
    font-family: 'Playfair Display', serif;
    color: #202732;
    font-size: 60px;
    font-weight: 900;
    line-height: 43px;
  }

  .counter .count-number:not(:last-child){margin-bottom: 20px;}

  .counter > span{
    color: #fff;
    float: left;
    font-size: 60px;
    margin-right: 20px;
  }

  /*----------- Tabs & Tour Sections --------------*/

  .tabs-conrainer{position: relative;}

  .tabs .tabs-nav li{
    display: inline-block;
  }

  .tabs .tabs-content{
    display: block;
    padding: 30px 0 20px;
    border-bottom: 1px solid #202732;
  }

  .tabs .tabs-nav{
    width: 100%;
    overflow: hidden;
  }

    .tabs .tabs-nav > li > a{
      display: block;
      font-weight: 500;
      font-size: 16px;
      padding: 14px 30px;
      letter-spacing: 0.8px;
      color: #202732;
      position: relative;
      border: 1px solid #202732;
      text-transform: uppercase;
    }

    .tabs .tabs-nav > li.ui-tabs-active a{
      background-color: #202732;
      color: #fff;
    }

  .tabs.style-2 .tabs-nav > li > a{
    color: #fff;
    background-color: #b1b3b6;
    border: none;
    font-size: 14px;
    font-weight: normal;
    padding: 9px 30px 7px;
  }

  .tabs.style-2 .tabs-nav > li.ui-tabs-active > a{
    color: #202732;
    background-color: #fdbc36;
  }

  .tabs.style-2 .tabs-content{
    border-bottom: none;
    padding-bottom: 0;
  }

  .tabs.vertical{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }

  .tabs.vertical .tabs-nav{
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
    max-width: 33%;
    margin-bottom: 0;
  }

  .tabs.vertical .tabs-content{
    -webkit-flex-basis: 67%;
    flex-basis: 67%;
    max-width: 67%;
    margin-left: 30px;
    padding-top: 0;
  }

    .tabs.vertical .tabs-nav li{display: block;}

    .tabs.vertical .tabs-nav li:not(:last-child){
      margin-bottom: 5px;
    }

  /*----------- Isotope --------------*/

  .isotope .item:not(:last-child){
    margin-bottom: 80px;
  }

  #options:not(:last-child){
    margin-bottom: 50px;
  }

  .isotope-nav{
    margin: 0 -20px -20px;
  }

    .isotope-nav > button{
      margin: 0 20px 20px;
      background: none;
      font-size: 16px;
      text-transform: uppercase;
      color: #3c4049;
      position: relative;
      line-height: 22px;
    }

  /*----------- Team Members --------------*/

  .team-holder .team-item{
    text-align: center;
  }

  .team-holder .team-item .team-member .member-photo{
    display: block;
  }

  .team-holder .team-item .team-member .member-photo:not(:last-child){
    margin-bottom: 30px;
  }

  .team-holder .team-item .team-member .member-name{
    line-height: 30px;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Heebo', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .team-holder .team-item .team-member .member-name a{
    color: #202732;
  }

  .team-holder .team-item .team-member .member-name a:hover{
    color: #fdbc36;
  }

  .team-holder .team-item .team-member .member-name:not(:last-child){
    margin-bottom: 5px;
  }

  .team-member{
    position: relative;
    z-index: 1;
  }

  .team-member .member-link{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
  }

  .team-member .member-photo{
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
  }

  .member-about{
    color: #858585;
  }

  .member-info{
    position: relative;
  }

  .member-info p{
    font-size: 16px;
    line-height: 26px;
  }

  .member-info:not(:last-child){
    margin-bottom: 25px;
  }

  .member-position{
    color: #64686d;
    font-size: 16px;
    letter-spacing: 0.3px;
    font-weight: 300;
    font-family: 'Heebo', sans-serif;
  }

  .member-position:not(:last-child){
    margin-bottom: 25px;
  }

  /*----------- Google Map --------------*/

  #googleMap,
  #googleMap3{
    width: 100%;
    padding-bottom: 24%;
    min-height: 450px;
    z-index: 1;
    overflow: hidden;
  }

  #googleMap.size-2{
    padding-bottom: 66%;
    min-height: 350px;
  }

  #googleMap2{
    padding-bottom: 35%;
    min-height: 450px;
  }

  iframe::-webkit-scrollbar{
      display: none!important;
  }

  iframe::scrollbar{
      display: none!important;
  }

  .map-markers > a{
    font-size: 16px;
    display: block;
    letter-spacing: 0.8px;
  }

  /*style the box*/  
  .gm-style .gm-style-iw {
    background: #fff!important;
    font-family: 'Heebo', sans-serif!important;
    color: #202732!important;
    padding: 10px 25px 5px 15px!important;
    width: 130px!important;
    left: calc(50% - 65px)!important;
    top: 25px!important;
    z-index: 999!important;

    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.13);
  }

  .gm-style .gm-style-iw:after{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 17px solid transparent;
    border-top: 15px solid #000;
    border-right: 17px solid transparent;
    top: 100%;
    left: 50%;
    margin-left: -17px;
  }

    .gm-style .gm-style-iw > div{
      width: 100%!important;
    }

  /* white background and box outline */
  .gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div{
    /* we have to use !important because we are overwritng inline styles */
    background-color: transparent !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    border: none!important;
    margin-left: -4px!important;
  }

  /* image icon inside close button */
  .gm-style > div:first-child > div + div > div:last-child > div > div:last-child > img{
    display: none;
  }

  .gm-style .gm-style-iw + div{
    top: 37px!important;
    right: 17px!important;
    opacity: 1!important;
  }

  .gm-style > div:first-child > div + div > div:last-child > div > div:hover:after{
    color: #3c4049!important;
  }

  .gm-style > div:first-child > div + div > div:last-child > div > div:last-child:after{
    content: "\e92a";
    font-family: 'linearicons';
    font-size: 15px;
    color: #b7b9bb;
    display: block;
    transition: color .4s ease;
  }

  /* arrow colour */
  .gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div > div > div
  {
    background-color: #fff!important;
    box-shadow: none !important;
    z-index: 9999!important;
    height: 20px!important;
  }

  .gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div > div:first-child > div{
    left: 3px!important;
    transform: skewX(32deg)!important;
  }

  .gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div > div:last-child > div{
    left: 3px!important;
    transform: skewX(-32deg)!important;
  }

  /* ----------------- Tags Widget ---------------- */

  .tagcloud{
    overflow: hidden;
    margin: -4px -2px 0;
  }

  .tagcloud a{
    font-weight: 300;
  }

  .tagcloud a:hover{
    text-decoration: underline;
    color: inherit;
  }

  .tagcloud span{
    font-weight: 300;
    font-size: 18px;
    color: #64686d;
  }

  /*----------- Services --------------*/

  /*----------- Countdown --------------*/

  /*----------- Audio Player --------------*/

  /*----------- Widget calendar --------------*/

/* -----------------------------------

  9. Blog

------------------------------------- */

  .entry-box:not(.owl-carousel){
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin: -15px;
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
  }

  /*----------- Entries --------------*/

  .entry-holder .entry:not(:last-child),
  .entry-holder:not(:last-child){
    margin-bottom: 80px;
  }

  .entry .entry-meta:not(:last-child){
    margin-bottom: 20px;
  }

  .entry .entry-meta .entry-cat{
    text-transform: uppercase;
    display: block;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.8px;
  }

  .entry .entry-meta .entry-date{
    font-size: 14px;
    color: #64686d;
    font-weight: 300;
  }

  .entry .entry-title:not(:last-child){
    margin-bottom: 30px;
  }

  .entry .entry-body:not(:last-child){
    margin-bottom: 30px;
  }

  .entry-holder.type-list .entry{
    transition: all .45s;
  }

  .entry-holder.type-list .entry:hover{
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.13);
  }

  .entry-holder.type-list .entry .entry-body{
    padding: 20px 60px;
  }

  .entry.entry-single .entry-meta{
    text-align: center;
  }

  .entry.entry-single .entry-meta:not(:last-child){
    margin-bottom: 20px;
  }

  .entry.entry-single .entry-title:not(:last-child){
    margin-bottom: 60px;
  }

  .entry.entry-single .entry-attachment:not(:last-child){
    margin-bottom: 50px;
  }

  /* ------------------------------------------------------

      Comments
      
  ------------------------------------------------------ */

  .comments-list{
      overflow: hidden;
  }

  .comments-list:not(:last-child){
      margin-bottom: 30px;
  }

  .comments-list .children .comment{
      padding-left: 40px;
  }

  .comment > article{
      position: relative;
      padding: 20px 0 20px;
      overflow: hidden;
  }

  .gravatar{
      float: left;
      width: 130px;
      margin-right: 30px;
  }

  .comment-body{
      overflow: hidden;
  }

  .comment-meta{
      font-size: 14px;
      line-height: 24px;
      color: #64686d;
      font-weight: 300;
  }

  .comment-meta:not(:last-child){
    margin-bottom: 15px;
  }

  .comment-meta > *:not(.comment-author){
    display: inline-block;
    vertical-align: baseline;
    font-size: 14px;
  }

  .comment-meta > *:not(.comment-author):not(:last-child):after{
    content: '/';
    display: inline-block;
    margin: 0 5px;
  }

  .comment-author{
    font-size: 16px;
    display: block;
    letter-spacing: 0.8px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Heebo', sans-serif;
  }

  .comment-author:not(:last-child){
    margin-bottom: 5px;
  }

  a.comment-reply-link{
    font-weight: 300;
    letter-spacing: 1px;
    color: #202732;
  }

  .comment-reply-link:hover{
    text-decoration: underline;
  }

/* -----------------------------------

  10. Portfolio

------------------------------------- */

.portfolio-holder:not(:last-child){
  margin-bottom: 40px;
}

.portfolio-holder.push-bottom{
  margin-bottom: -50px;
  display: inline-flex;
}

.portfolio-holder .flex-row{
  margin-bottom: -30px;
}

.portfolio-holder .flex-row > [class*="col-"]{
  padding-bottom: 30px;
}

.portfolio-holder .flex-row > [class*="col-"]:not(:last-child){
  margin-bottom: 0;
}

.project,
.project-image{
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.project-image > img{width: 100%;}

.portfolio-holder .project-link{
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.project-link{
  cursor: url(../images/icon_zoomin.png) 24 24, auto;
}

.portfolio-holder .project .project-image img{
  transition: opacity .45s ease;
}

.portfolio-holder .project:hover .project-image img{
  opacity: 0.8;
}

.project-description .project-cats li{
  display: inline-block;
}

.project-description .project-cats li a{
  color: #365ddd;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.project-title{
  font-weight: bold;
  letter-spacing: 0;
}

/* -----------------------------------

  13. Footer

------------------------------------- */

#footer{
  padding: 25px 30px;
  background-color: #f3f5f6;
  position: relative;
  z-index: 9;

  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

#footer.style-2{
  display: block;
}

#footer.fixed-footer{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent;
}

  #footer .copyright{
    font-size: 14px;
    color: #64686d;
    line-height: 30px;
  }

  #footer .copyright:not(:last-child){
    margin-bottom: 0;
  }

  #footer .copyright a{
    color: #202732;
  }

  #footer .copyright a:hover{
    text-decoration: underline;
  }

  #footer.fixed-footer .copyright,
  #footer.fixed-footer .copyright a,
  #footer.fixed-footer .social-icons > li > a:not(:hover){
    color: #fff;
  }


.nav-sub-menu{
  position: relative;
  z-index: 1;
}
.nav-sub-menu-box{
  display: flex;
  flex-direction: column;
  position: absolute;
  padding: 15px;
  width: 180px;
  background-color: #b07e1b;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibilty 0s, opacity 0.4s ease-in-out;
}
.nav-sub-menu:hover + .nav-sub-menu-box, .nav-sub-menu-box:hover { 
  visibility: visible;
  opacity: 1;
}