/*-------------------------------------------------------------------------------------------------------------------------------*/
/*This is main CSS file that contains custom style rules used in this template*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* Template Name: SiteTitle*/
/* Version: 1.0 Initial Release*/
/* Build Date: 22-04-2015*/
/* Author: Unbranded*/
/* Website: http://moonart.net.ua/site/ 
/* Copyright: (C) 2015 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------*/
/* TABLE OF CONTENTS: */
/*--------------------------------------------------------*/
/* 01 - GLOBAL SETTINGS */
/* 02 - LOADRER */
/* 03 - ELEMENTS */
/* 04 - TT-HEADER-1 */
/* 05 - TT-FOOTER */
/* 06 - TT-SEARCH-POPUP */
/* 07 - SWIPER */
/* 08 - TT-MSLIDE */
/* 09 - TT-COMMERCIAL */
/* 10 - TT-COMMERCIAL-2 */
/* 11 - TT-COMMERCIAL-3 */
/* 12 - TT-TWO-BLOCKS */
/* 13 - TT-TWO-BLOCKS-2 */
/* 14 - TT-SERVICE */
/* 15 - TT-SERVICE-2 */
/* 16 - TT-SERVICE-3 */
/* 17 - TT-PROJECT */
/* 18 - TT-VIDEO */
/* 19 - TT-TESTIMONIAL */
/* 20 - TT-ACCORDION */
/* 21 - TT-BANNER */
/* 22 - TT-HEADING */
/* 23 - TT-SQUARE */
/* 24 - TT-PORTFOLIO */
/* 25 - TT-PORTFOLIO-2 */
/* 26 - LIGHTBOX */
/* 27 - TT-FILTER TYPE-1 */
/* 28 - TT-CLIENT */
/* 29 - TT-POST */
/* 30 - TT-POST-2 */
/* 31 - TT-PAGINATION */
/* 32 - TT-SEARCH */
/* 33 - TT-CATEGORY */
/* 34 - TT-CLOUD */
/* 35 - TT-COMMENT-BLOCK */
/* 36 - TT-FORM-BLOCK */
/* 37 - TT-CART-TABLE */
/* 38 - TT-CHEKOUT */
/* 39 - TT-MESSAGE */
/* 40 - TT-CHECKOUT */
/* 41 - TT-ORDER */
/* 42 - NOT FOUND */
/* 43 - TT-CONTACT */
/* 44 - TT-CONTACT-FORM */
/* 45 - TT-CONTACT-MAP */
/* 46 - TT-PRODUCT */
/* 47 - TT-PRODUCT-2 */
/* 48 - TT-MPRODUCT */
/* 49 - TT-TAB-WRAPPER TYPE-1 */
/* 50 - TT-TAB-WRAPPER TYPE-2 */
/* 51 - TT-TAB-WRAPPER TYPE-3 */
/* 52 - TT-PROJECT-DETAIL */
/* 53 - TT-FILTER */
/* 54 - TT-BROSHURE */
/* 55 - CUSTOM MARGINS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 01 - GLOBAL SETTINGS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
body {
  font-family: 'Open Sans';
  color: #4f4f4f;
}

/*table*/
.table-view {
  height: 100%;
  width: 100%;
  display: table;
}

.row-view {
  display: table-row;
}

.cell-view {
  display: table-cell;
  vertical-align: middle;
}

.background-block {
  -moz-background-size: cover;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: center center;
}

.background-right {
  background-position: top right;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
}

/*nopadding class*/
.nopadding {
  padding-left: 0;
  padding-right: 0;
}

.nomargin {
  margin-left: 0;
  margin-right: 0;
}

a {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

a, a:link, a:visited, a:active, a:hover {
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

a, input, textarea, button {
  outline: none !important;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 02 - LOADRER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
#loader-wrapper {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 200;
  margin-top: 0px;
  top: 0px;
}

#loading-text {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: 45px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #222;
}

#loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  border: 4px solid #c2935a;
  -webkit-animation: loader 2s infinite ease;
     -moz-animation: loader 2s infinite ease;
          animation: loader 2s infinite ease;
}

#loader span {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #c2935a;
  -webkit-animation: loader-inner 2s infinite ease-in;
     -moz-animation: loader-inner 2s infinite ease-in;
          animation: loader-inner 2s infinite ease-in;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-moz-keyframes loader {
  0% {
    -moz-transform: rotate(0deg);
         transform: rotate(0deg);
  }
  25% {
    -moz-transform: rotate(180deg);
         transform: rotate(180deg);
  }
  50% {
    -moz-transform: rotate(180deg);
         transform: rotate(180deg);
  }
  75% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

@-moz-keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 03 - ELEMENTS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.bg-1 {
  background-color: #f5f4f4;
}

.bg-2 {
  background-color: #2b303b;
}

.bg-3 {
  background-color: #e3e3e3;
}

.bg-4 {
  background-color: #faf9f9;
}

.tt-custom-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: top;
  max-width: 100%;
}

.tt-custom-hover:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, transparent 0%, rgba(34, 34, 34, 0.9) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, rgba(34, 34, 34, 0.9)));
  background: -webkit-linear-gradient(top, transparent 0%, rgba(34, 34, 34, 0.9) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(34, 34, 34, 0.9)));
  background: linear-gradient(to bottom, transparent 0%, rgba(34, 34, 34, 0.9) 100%);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
          transition: all 0.5s ease;
}

.tt-custom-hover-info {
  position: absolute;
  width: 100%;
  bottom: 15px;
  opacity: 0;
  -webkit-transform: translateY(50px);
     -moz-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
          transition: all 0.3s ease;
}

.tt-custom-hover:hover:before {
  opacity: 1;
  -webkit-transform: scale(1.2);
     -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.tt-custom-hover:hover .tt-custom-hover-info {
  opacity: 1;
  -webkit-transform: translateY(0px);
     -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

.tt-custom-hover-info {
  text-align: center;
}

.tt-custom-hover-info h5 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
}

.tt-custom-hover-info span {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.5px;
}

.simple-text {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #898989;
  letter-spacing: 0.5px;
}

.simple-text.size-2 {
  font-size: 14px;
  line-height: 20px;
}

.simple-text.size-3 {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.5px;
}

.simple-text.size-4 {
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0.5px;
}

.simple-text.size-5 {
  font-size: 14px;
  line-height: 24px;
}

.simple-text.size-6 {
  font-size: 13px;
  line-height: 20px;
}

.simple-text.size-7 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.simple-text.size-8 {
  font-size: 25px;
  line-height: 31px;
  font-weight: 300;
  letter-spacing: 0.4px;
}

.simple-text.color-2, .simple-text.color-2 h1, .simple-text.color-2 h2, .simple-text.color-2 h3, .simple-text.color-2 h4, .simple-text.color-2 h5, .simple-text.color-2 h6 {
  color: #fff;
}

.simple-text.color-3 {
  color: #bbbdc3;
}

.simple-text.color-4 {
  color: #6b6a6a;
}

.simple-text.font-2 {
  font-family: 'Poppins';
}

.simple-text.font-3 {
  font-family: 'Raleway';
}

.simple-text h1.big, .c-h1.big {
  font-size: 70px;
  line-height: 60px;
  letter-spacing: 2px;
}

.simple-text h1, .c-h1 {
  font-family: 'Raleway';
  font-size: 55px;
  line-height: 55px;
  font-weight: 800;
  color: #242424;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0;
}

.simple-text h2, .c-h2 {
  font-family: 'Raleway';
  font-size: 35px;
  line-height: 35px;
  font-weight: 800;
  color: #242424;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 0;
}

.simple-text h3, .c-h3 {
  font-family: 'Raleway';
  font-size: 28px;
  line-height: 28px;
  font-weight: 800;
  color: #242424;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 0;
}

.simple-text h4, .c-h4 {
  font-family: 'Raleway';
  font-size: 25px;
  line-height: 28px;
  font-weight: 800;
  color: #242424;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 0;
}

.simple-text h5.big, .c-h5.big {
  font-family: 'Raleway';
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  color: #242424;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 0;
}

.simple-text h5, .c-h5 {
  font-family: 'Raleway';
  font-size: 18px;
  line-height: 22px;
  font-weight: 800;
  color: #242424;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 0;
}

.simple-text h6, .c-h6 {
  font-family: 'Raleway';
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
  color: #242424;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 0;
}

@media (max-width: 991px) {
  .simple-text h1.big, .c-h1.big {
    font-size: 60px;
    line-height: 50px;
  }
  .simple-text h1, .c-h1 {
    font-size: 40px;
    line-height: 45px;
  }
  .simple-text h3, .c-h3 {
    font-size: 25px;
    line-height: 25px;
  }
}

.c-h1:focus, .c-h2:focus, .c-h3:focus, .c-h4:focus, .c-h5:focus, .c-h6:focus {
  color: #242424;
}

.simple-text.style-2 h1, .simple-text.style-2 h2, .simple-text.style-2 h3, .simple-text.style-2 h4, .simple-text.style-2 h5, .simple-text.style-2 h6 {
  text-transform: inherit;
  font-weight: 300;
}

.simple-text.style-3 h1, .simple-text.style-3 h2, .simple-text.style-3 h3, .simple-text.style-3 h4, .simple-text.style-3 h5, .simple-text.style-3 h6 {
  text-transform: inherit;
  font-weight: 400;
  margin-bottom: 0;
}

.simple-text.style-4 h1, .simple-text.style-4 h2, .simple-text.style-4 h3, .simple-text.style-4 h4, .simple-text.style-4 h5, .simple-text.style-4 h6 {
  font-family: 'Open Sans';
  text-transform: inherit;
  font-weight: 600;
}

.simple-text.style-5 h1, .simple-text.style-5 h2, .simple-text.style-5 h3, .simple-text.style-5 h4, .simple-text.style-5 h5, .simple-text.style-5 h6 {
  font-family: 'Open Sans';
  font-weight: 700;
  margin-bottom: 10px;
}

.simple-text.style-5 p {
  margin-bottom: 10px;
}

.simple-text.style-6 h1, .simple-text.style-6 h2, .simple-text.style-6 h3, .simple-text.style-6 h4, .simple-text.style-6 h5, .simple-text.style-6 h6 {
  font-family: 'Open Sans';
  text-transform: inherit;
  font-weight: 600;
  margin-bottom: 10px;
}

.simple-text.style-6 p {
  margin-bottom: 10px;
}

/*margins*/
.simple-text p,
.simple-text h1,
.simple-text h2,
.simple-text h3,
.simple-text h4,
.simple-text h5,
.simple-text h6,
.simple-text img,
.simple-text blockquote,
.simple-text ul,
.simple-text ol,
.simple-text div[class^="col-"] {
  margin-bottom: 20px;
}

.simple-text .row:last-child {
  margin-bottom: -20px;
}

/*image*/
.simple-text img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.simple-text img[align="left"] {
  margin-right: 30px;
}

.simple-text img[align="right"] {
  margin-left: 30px;
}

/*last-child*/
.simple-text p:last-child,
.simple-text h1:last-child,
.simple-text h2:last-child,
.simple-text h3:last-child,
.simple-text h4:last-child,
.simple-text h5:last-child,
.simple-text h6:last-child,
.simple-text img:last-child,
.simple-text blockquote:last-child,
.simple-text ul:last-child,
.simple-text ol:last-child {
  margin-bottom: 0;
}

/*list*/
.simple-text ul {
  list-style: none;
  margin-bottom: 25px;
  padding-left: 0;
}

.simple-text ul li {
  position: relative;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #ff8c04;
  padding-left: 20px;
  margin-bottom: 4px;
}

.simple-text ul li:before {
  content: '\f105';
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.simple-text ul li:last-child {
  margin-bottom: 0;
}

/*link*/
.simple-text a {
  color: inherit;
  text-decoration: underline;
}

.simple-text a:hover {
  text-decoration: none;
}

/*blockquote*/
.simple-text blockquote {
  position: relative;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #8e8d8d;
  letter-spacing: 0.3px;
  background: #f7f7f7;
  padding: 33px 55px 33px 104px;
  margin-bottom: 25px;
  border-left: 0;
}

.simple-text blockquote:before {
  content: "\f10d";
  display: inline-block;
  position: absolute;
  top: 38px;
  left: 32px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 55px;
  color: #131418;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.simple-text blockquote p {
  margin-bottom: 0;
}

.simple-text blockquote footer {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #131418;
  letter-spacing: 0.3px;
  text-align: right;
}

.simple-text blockquote footer:before {
  content: '- ';
}

.simple-text blockquote cite {
  font-style: normal;
}

@media (max-width: 991px) {
  .simple-text blockquote {
    padding-left: 85px;
  }
  .simple-text blockquote:before {
    font-size: 35px;
    left: 25px;
  }
}

@media (max-width: 767px) {
  .simple-text blockquote {
    padding: 15px;
  }
  .simple-text blockquote:before {
    position: static;
    display: block;
    left: 15px;
    text-align: center;
  }
}

/*c-btn*/
.c-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
}

.c-btn.type-1 {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  background: #00a8d4;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 2px solid #00a8d4;
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.c-btn.type-1:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
     -moz-transform-origin: 0 50%;
      -ms-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-transition: -webkit-transform 0.3s ease-out;
     -moz-transition: -moz-transform 0.3s ease-out;
          transition: transform 0.3s ease-out;
}

.c-btn.type-1 span, .c-btn.type-1 input {
  position: relative;
  display: block;
  padding: 10px 47px 10px 21px;
  z-index: 1;
}

.c-btn.type-1 input {
  background: transparent;
  border: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.c-btn.type-1 .fa {
  position: absolute;
  top: 50%;
  right: 15px;
  font-size: 14px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn.type-1:hover {
  color: #00a8d4;
}

.c-btn.type-1:hover:before {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.c-btn.type-1.color-2 {
  border-color: #cca15a;
  background: #3c763d;
}

.c-btn.type-1.color-2:hover {
  color: #cca15a;
}

.c-btn.type-1.color-3 {
  border-color: #fff;
  background: transparent;
}

.c-btn.type-1.color-3:hover {
  color: #cca15a;
}

.c-btn.type-1.color-4 {
  border-color: #f8b156;
  background: #f8b156;
  color: #000;
}

.c-btn.type-1.color-4:hover {
  color: #f8b156;
}

.c-btn.type-1.color-5 {
  border-color: #56b5f8;
  background: #56b5f8;
}

.c-btn.type-1.color-5:hover {
  color: #56b5f8;
}

.c-btn.type-1.color-6 {
  border-color: #56b5f8;
  background: #56b5f8;
}

.c-btn.type-1.color-6:hover {
  color: #56b5f8;
}

.c-btn.type-1.color-7 {
  border-color: #cbcbcb;
  color: #000;
  background: transparent;
}

.c-btn.type-1.color-7:before {
  background-color: #c2935a;
}

.c-btn.type-1.color-7:hover {
  color: #fff;
}

.c-btn.type-1.color-8 {
  border-color: #6d6d6d;
  color: #19242a;
  background: #fff;
}

.c-btn.type-1.color-8:before {
  background-color: #c2935a;
}

.c-btn.type-1.color-8:hover {
  color: #fff;
  border-color: #c2935a;
}

.c-btn.type-1.color-9 {
  border-color: #eeeeee;
  color: #000;
  background: #dfdfdf;
}

.c-btn.type-1.color-9:before {
  background-color: #c2935a;
}

.c-btn.type-1.color-9:hover {
  color: #fff;
  border-color: #c2935a;
}

.c-btn.type-1.size-2 {
  font-size: 15px;
  line-height: 17px;
}

.c-btn.type-1.size-2 span, .c-btn.type-1.size-2 input {
  padding: 10px 23px;
}

.c-btn.type-1.size-3 {
  font-size: 20px;
  line-height: 24px;
}

.c-btn.type-1.size-3 span, .c-btn.type-1.size-3 input {
  padding: 10px 36px;
}

.c-btn.type-1.size-4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 2.5px;
}

.c-btn.type-1.size-4 span, .c-btn.type-1.size-4 input {
  padding: 10px 28px;
}

.c-btn.type-1.size-5 {
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.c-btn.type-1.size-5 span, .c-btn.type-1.size-5 input {
  padding: 10px 39px 10px 18px;
}

.c-btn.type-1.size-6 {
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  letter-spacing: 1.3px;
}

.c-btn.type-1.size-6 span, .c-btn.type-1.size-6 input {
  padding: 14px 47px 14px 23px;
}

.c-btn.type-1.size-6 .fa {
  right: 24px;
}

.c-btn.type-1.size-7 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.c-btn.type-1.size-7 span, .c-btn.type-1.size-7 input {
  padding: 8px 22.5px;
}

.c-btn.type-1.size-8 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.c-btn.type-1.size-8 span, .c-btn.type-1.size-8 input {
  padding: 6px 19px;
}

.c-btn.type-1.size-9 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.c-btn.type-1.size-9 span, .c-btn.type-1.size-9 input {
  padding: 16px 19px;
}

.c-btn.type-1.size-10 {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.c-btn.type-1.size-10 span, .c-btn.type-1.size-10 input {
  padding: 6px 17px;
}

.c-btn.type-1.full {
  width: 100%;
  text-align: center;
}

.c-btn.type-1.full span, .c-btn.type-1.full input {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.c-btn.type-1.font-2 {
  font-family: 'Raleway';
}

.c-btn.type-1.font-3 {
  font-family: 'Poppins';
}

.c-btn.type-1.radius-0 {
  -moz-border-radius: 0;
       border-radius: 0;
}

.c-btn.type-1.border-1 {
  border-width: 1px;
}

.c-btn.type-1.txt-initian {
  text-transform: initial;
}

@media (max-width: 767px) {
  .c-btn.type-1 {
    width: 100%;
    text-align: center;
  }
  .c-btn.type-1.type-1 input, .c-btn.type-1.type-1 span {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.c-btn.type-2 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #cfa35b;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.c-btn.type-2:hover {
  color: #242424;
}

/*custom input-1*/
.c-input-1 {
  width: 100%;
  height: 45px;
  font-size: 14px;
  line-height: 43px;
  font-weight: 400;
  color: #c4c4c4;
  letter-spacing: 0.3px;
  background: #fff;
  padding: 0 20px;
  border: 1px solid #eee;
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.c-input-1::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 43px;
  font-weight: 400;
  color: #c4c4c4;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-input-1:-moz-placeholder {
  font-size: 14px;
  line-height: 43px;
  font-weight: 400;
  color: #c4c4c4;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-input-1::-moz-placeholder {
  font-size: 14px;
  line-height: 43px;
  font-weight: 400;
  color: #c4c4c4;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-input-1:-ms-input-placeholder {
  font-size: 14px;
  line-height: 45px;
  font-weight: 400;
  color: #c4c4c4;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-input-1:focus {
  outline: none;
  border: 1px solid #c2935a;
}

.c-input-1.size-2 {
  height: 38px;
  line-height: 36px;
}

.c-input-1.size-2::-webkit-input-placeholder {
  line-height: 36px;
}

.c-input-1.size-2:-moz-placeholder {
  line-height: 36px;
}

.c-input-1.size-2::-moz-placeholder {
  line-height: 36px;
}

.c-input-1.size-2:-ms-input-placeholder {
  line-height: 36px;
}

.c-input-1.size-3 {
  font-size: 15px;
  height: 55px;
  line-height: 53px;
}

.c-input-1.size-3::-webkit-input-placeholder {
  font-size: 15px;
  line-height: 53px;
}

.c-input-1.size-3:-moz-placeholder {
  font-size: 15px;
  line-height: 53px;
}

.c-input-1.size-3::-moz-placeholder {
  font-size: 15px;
  line-height: 53px;
}

.c-input-1.size-3:-ms-input-placeholder {
  font-size: 15px;
  line-height: 53px;
}

.c-input-1.color-2 {
  color: #959595;
  border-color: #d6d6d6;
}

.c-input-1.color-2:focus {
  border: 1px solid #c2935a;
}

.c-input-1.font-2 {
  font-family: 'Raleway';
}

/*custom input-2*/
.c-input-2 {
  display: inline-block;
  width: 130px;
  height: 35px;
  font-size: 14px;
  line-height: 33px;
  font-weight: 400;
  color: #8e8d8d;
  letter-spacing: 0.3px;
  border: 1px solid #eee;
  padding: 0 5px;
  text-align: center;
  vertical-align: bottom;
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.c-input-2::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 31px;
  font-weight: 400;
  color: #8e8d8d;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-input-2:-moz-placeholder {
  font-size: 14px;
  line-height: 31px;
  font-weight: 400;
  color: #8e8d8d;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-input-2::-moz-placeholder {
  font-size: 14px;
  line-height: 31px;
  font-weight: 400;
  color: #8e8d8d;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-input-2:-ms-input-placeholder {
  font-size: 14px;
  line-height: 31px;
  font-weight: 400;
  color: #8e8d8d;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-input-2:focus {
  outline: none;
  border: 1px solid #c2935a;
}

/*custom input-3*/
.c-input-3 {
  display: inline-block;
  width: 40px;
  height: 35px;
  font-family: 'Raleway';
  font-size: 14px;
  line-height: 33px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.3px;
  border: 1px solid #eaeaea;
  text-align: center;
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.c-input-3::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-input-3:-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-input-3::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-input-3:-ms-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-input-3:focus {
  outline: none;
  border: 1px solid #c2935a;
}

/*custom textarea*/
.c-area-1 {
  display: block;
  width: 100%;
  height: 173px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #c4c4c4;
  letter-spacing: 0.3px;
  border: none;
  padding: 15px 20px;
  border: 1px solid #eee;
  background: #fff;
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.c-area-1::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #c4c4c4;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-area-1:-moz-placeholder {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #c4c4c4;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-area-1::-moz-placeholder {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #c4c4c4;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-area-1:-ms-input-placeholder {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #c4c4c4;
  letter-spacing: 0.3px;
  opacity: 1;
}

.c-area-1:focus {
  outline: none;
  border: 1px solid #c2935a;
}

.c-area-1.size-2 {
  font-size: 15px;
  height: 203px;
}

.c-area-1.size-2::-webkit-input-placeholder {
  font-size: 15px;
}

.c-area-1.size-2:-moz-placeholder {
  font-size: 15px;
}

.c-area-1.size-2::-moz-placeholder {
  font-size: 15px;
}

.c-area-1.size-2:-ms-input-placeholder {
  font-size: 15px;
}

.c-area-1.color-2 {
  color: #959595;
  border-color: #d6d6d6;
}

.c-area-1.color-2:focus {
  border: 1px solid #c2935a;
}

/*c-are type-2*/
.c-area-2 {
  width: 100%;
  height: 103px;
  font-size: 14px;
  font-weight: 400;
  color: #c6c6c6;
  letter-spacing: 0.5px;
  background: #fff;
  border: 1px solid #e2e2e2;
  padding: 15px 20px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.c-area-2::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #c6c6c6;
  opacity: 1;
}

.c-area-2:-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #c6c6c6;
  opacity: 1;
}

.c-area-2::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #c6c6c6;
  opacity: 1;
}

.c-area-2:-ms-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #c6c6c6;
  opacity: 1;
}

.c-area-2:focus {
  border-color: #c2935a;
}

/*custom select 1*/
.c-select-1 {
  position: relative;
  width: 96px;
}

.c-select-1 select {
  display: block;
  width: 100%;
  font-weight: 400;
  color: #b8b8b8;
  background: transparent;
  height: 42px;
  font-size: 12px;
  line-height: 30px;
  padding: 0px 11px;
  border: 1px solid #eee;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.c-select-1 select::-ms-expand {
  display: none;
}

.c-select-1 select:focus {
  outline: none;
}

.c-select-1 .select-arrow {
  display: block;
  position: absolute;
  top: 1px;
  right: 1px;
  text-align: center;
  background: #fff;
  color: #bdbdbd;
  width: 37px;
  height: 40px;
  line-height: 40px;
  border-left: 1px solid #eee;
  pointer-events: none;
}

/*custom select 2*/
.c-select-2 {
  position: relative;
  width: 100%;
}

.c-select-2 select {
  display: block;
  width: 100%;
  font-weight: 400;
  color: #b8b8b8;
  background: transparent;
  height: 38px;
  font-size: 14px;
  line-height: 36px;
  padding: 0px 11px;
  border: 1px solid #e2e2e2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.c-select-2 select::-ms-expand {
  display: none;
}

.c-select-2 select:focus {
  outline: none;
}

.c-select-2 .select-arrow {
  display: block;
  position: absolute;
  top: 1px;
  right: 1px;
  text-align: center;
  background: #fff;
  color: #4e4e4e;
  width: 37px;
  height: 36px;
  line-height: 36px;
  pointer-events: none;
}

/*tt-checkbox*/
.tt-checkbox-entry {
  display: inline-block;
  cursor: pointer;
}

.tt-checkbox-form[type=checkbox] {
  position: relative;
  top: 2px;
  margin-right: 12px;
}

.tt-checkbox-form[type=checkbox]:focus {
  outline: none;
}

.tt-checkbox-text {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.3px;
}

/*tt-radio*/
.tt-radio-entry {
  display: block;
}

.tt-radio-form[type=radio] {
  position: relative;
  top: 2px;
  margin-right: 12px;
}

.tt-radio-form[type=radio]:focus {
  outline: none;
}

.tt-radio-text {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.3px;
}

/*custom-links*/
.custom-links {
  list-style: none;
  padding-left: 0;
}

.custom-links a {
  display: block;
  position: relative;
  font-family: 'Raleway';
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #ce9d48;
  padding-left: 26px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.custom-links a:before {
  content: '\f18e';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  left: 0;
}

.custom-links a:hover {
  color: #242424;
}

.custom-links li:last-child a {
  margin-bottom: 0;
}

/*custom-links-2*/
.custom-links-2 {
  list-style: none;
  padding-left: 0;
}

.custom-links-2 a {
  display: block;
  position: relative;
  font-family: 'Raleway';
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #999999;
  padding-left: 26px;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}

.custom-links-2 a:before {
  content: '\f18e';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 14px;
  color: #eba42c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 2px;
  left: 0;
}

.custom-links-2 a:hover {
  color: #eba42c;
}

.custom-links-2 li:last-child a {
  margin-bottom: 0;
}

/*custom-links-3*/
.custom-links-3 {
  list-style: none;
  padding-left: 0;
}

.custom-links-3 a {
  display: block;
  position: relative;
  font-family: 'Raleway';
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  color: #c2935a;
  padding-left: 32px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.custom-links-3 a:before {
  content: '\f0a4';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 18px;
  color: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0px;
  left: 0;
}

.custom-links-3 a:hover {
  color: #242424;
}

.custom-links-3 li:last-child a {
  margin-bottom: 0;
}

/*tt-block-title*/
.tt-block-title {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 18px;
}

.tt-block-title:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: #d9ab46;
}

.tt-block-title.color-2 {
  color: #fff;
}

.tt-block-title.color-2:after {
  background: #fff;
}

.tt-block-title.size-2 {
  padding-bottom: 13px;
}

.tt-block-title:after {
  width: 35px;
}

.tt-overlay {
  position: relative;
}

.tt-overlay:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #71572b;
  opacity: 0.9;
}

.tt-overlay > * {
  position: relative;
}

.tt-overlay.color-2:before {
  background: #000;
  opacity: 0.65;
}

.tt-devider {
  height: 1px;
  background: #d1d1d1;
}

.marg2 {
  margin-left: -2px;
  margin-right: -2px;
}

.marg5 {
  margin-left: -5px;
  margin-right: -5px;
}

.padd2 {
  padding-left: 2px;
  padding-right: 2px;
}

.padd5 {
  padding-left: 5px;
  padding-right: 5px;
}

.pright50 {
  padding-right: 50px;
}

.pleft20 {
  padding-left: 20px;
}

.pleft30 {
  padding-left: 30px;
}

.pright30 {
  padding-right: 30px;
}

@media (max-width: 1199px) {
  .pright50 {
    padding-right: 0;
  }
  .pleft20 {
    padding-left: 0;
  }
  .pleft30 {
    padding-left: 0;
  }
  .pright30 {
    padding-right: 0;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 04 - TT-HEADER-1 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-header-1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0a2196;
  z-index: 101;
}

.tt-header-1 ul {
  padding-left: 0;
}

.tt-header-1 .logo {
  display: inline-block;
  position: relative;
  width: 304px;
  height: 60px;
  line-height: 60px;
  z-index: 101;
}

.tt-header-1 .logo img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/*general navigation*/
.tt-header-1 .main-nav > ul {
  list-style: none;
  margin-bottom: 0;
}

.tt-header-1 .main-nav > ul > li > a {
  font-family: 'Roboto';
  font-size: 15px;
  line-height: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.tt-header-1 .main-nav > ul > li.active > a, .tt-header-1 .main-nav > ul > li:hover > a {
  color: #bed9ff;
}

.tt-header-1 .main-nav > ul > li > ul {
  list-style: none;
}

.tt-header-1 .main-nav > ul > li > ul > li > ul {
  list-style: none;
}

/*top-info*/
.tt-header-1 .top-line {
  text-align: right;
}

.tt-header-1 .top-info {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  text-align: left;
  min-width: 256px;
  vertical-align: middle;
}

.tt-header-1 .top-info:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 34px;
  background: #fff;
  margin-top: -16px;
  opacity: 0.4;
}

.tt-header-1 .top-info:first-child:before {
  display: none;
}

.tt-header-1 .top-info:last-child {
  padding-right: 0;
}

.tt-header-1 .top-info .stroke-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  font-size: 30px;
  margin-right: 12px;
  color: #fff;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.tt-header-1 .top-info .simple-text {
  padding-left: 40px;
}

.tt-header-1 .top-info .simple-text a {
  color: #fff;
  text-decoration: none;
}

.tt-header-1 .top-info .simple-text a:hover {
  color: #282f39;
}

/*nav-more*/
.tt-header-1 .nav-more {
  display: inline-block;
  font-size: 0;
  padding-top: 10px;
}

.tt-header-1 .nav-more a {
  display: inline-block;
  width: 33px;
  height: 33px;
  font-size: 14px;
  line-height: 33px;
  text-align: center;
  color: #fff;
  border: 1px solid #d0d0d0;
  -moz-border-radius: 50%;
       border-radius: 50%;
  margin-right: 25px;
}

.tt-header-1 .nav-more a:hover {
  color: #282f39;
  border-color: #282f39;
}

.tt-header-1 .nav-more a:last-child {
  margin-right: 0;
}

/*cmn-toggle-switch*/
.cmn-toggle-switch:focus {
  outline: none;
}

.tt-header-1 .cmn-toggle-switch {
  display: none;
  position: relative;
  float: right;
  margin-top: 15px;
  padding: 0;
  width: 30px;
  height: 17px;
  font-size: 0;
  text-indent: -9999px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-border-radius: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
  z-index: 101;
}

.tt-header-1 .cmn-toggle-switch span {
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  height: 3px;
  background: #fff;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.tt-header-1 .cmn-toggle-switch::before, .tt-header-1 .cmn-toggle-switch::after {
  content: "";
  position: absolute;
  display: block;
  top: 7px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.tt-header-1 .cmn-toggle-switch::before {
  margin-top: -7px;
}

.tt-header-1 .cmn-toggle-switch::after {
  margin-top: 7px;
}

.tt-header-1 .cmn-toggle-switch.active::before {
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.tt-header-1 .cmn-toggle-switch.active::after {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.tt-header-1 .cmn-toggle-switch.active span {
  opacity: 0;
}

.tt-header-margin-1 {
  height: 173px;
}

@media (min-width: 992px) {
  .tt-header-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .tt-header-1.stick {
    position: fixed;
    top: -110px;
  }
  .tt-header-1 .top-inner {
    position: relative;
    padding-top: 30px;
    padding-bottom: 22px;
  }
  .tt-header-1 .top-inner:before {
    content: '';
    display: block;
    position: absolute;
    top: -34px;
    left: -30px;
    border-bottom: 23px solid #fff;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    height: 0;
    width: 328px;
    z-index: 1;
  }
  .tt-header-1 .top-line {
    position: absolute;
    top: 38px;
    left: 0;
    width: 100%;
    height: 49px;
  }
  .tt-header-1 .toggle-block {
    display: block !important;
    border-top: 1px solid #e0c39d;
    border-bottom: 1px solid #e0c39d;
    margin-top: 1px;
    margin-bottom: 5px;
  }
  .tt-header-1 .main-nav {
    display: inline-block;
    vertical-align: top;
  }
  .tt-header-1 .main-nav > ul > li {
    position: relative;
    float: left;
    padding: 13px 0;
  }
  .tt-header-1 .main-nav > ul > li > a {
    display: block;
    position: relative;
    padding: 4px 23px;
  }
  .tt-header-1 .main-nav > ul > li > a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: url(../img/header/border.png);
  }
  .tt-header-1 .main-nav > ul > li:last-child > a:before {
    display: none;
  }
  /*2nd level*/
  .tt-header-1 .main-nav > ul > li > ul {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 200px;
    background: #fff;
    padding: 12px 25px 8px 25px;
    margin-top: 25px;
    margin-left: -100px;
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.11);
       -moz-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.11);
            box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.11);
    -webkit-transform: translateY(40px);
       -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
            transform: translateY(40px);
    -webkit-transition: all 300ms ease-in-out;
       -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
  }
  .tt-header-1 .main-nav > ul > li > ul:before {
    content: '';
    display: block;
    position: absolute;
    top: -8px;
    left: 44px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 9px 8px 9px;
    border-color: transparent transparent #ffffff transparent;
  }
  .tt-header-1 .main-nav > ul > li > ul:after {
    content: '';
    display: block;
    position: absolute;
    top: -45px;
    left: 0;
    width: 100%;
    height: 45px;
  }
  .tt-header-1 .main-nav > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
  .tt-header-1 .main-nav > ul > li > ul > li {
    border-bottom: 1px solid #f1f1f1;
    text-align: left;
  }
  .tt-header-1 .main-nav > ul > li > ul > li:last-child {
    border-bottom: 0;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > a {
    display: block;
    position: relative;
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
    color: #242424;
    letter-spacing: 0.3px;
    padding: 10px 0px 10px 18px;
    text-transform: uppercase;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > a:before {
    content: "\f105";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-top: -7px;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > a:hover {
    color: #c2935a;
  }
  /*3rd level*/
  .tt-header-1 .main-nav > ul > li > ul > li {
    position: relative;
    display: block;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > ul {
    display: block !important;
    position: absolute;
    top: -11px;
    left: 100%;
    width: 200px;
    background: #fff;
    padding: 12px 25px 8px 25px;
    margin-top: 0;
    margin-left: 40px;
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.11);
       -moz-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.11);
            box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.11);
    -webkit-transform: translateY(40px);
       -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
            transform: translateY(40px);
    -webkit-transition: all 300ms ease-in-out;
       -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > ul:before {
    content: '';
    position: absolute;
    top: 0;
    left: -41px;
    bottom: 0;
    width: 41px;
    background: transparent;
    z-index: 200;
  }
  .tt-header-1 .main-nav > ul > li:nth-last-child(1) > ul > li > ul, .tt-header-1 .main-nav > ul > li:nth-last-child(2) > ul > li > ul {
    left: auto;
    right: 100%;
    margin-right: 5px;
  }
  .tt-header-1 .main-nav > ul > li > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
  .tt-header-1 .main-nav > ul > li > ul > li > ul > li {
    border-bottom: 1px solid #f1f1f1;
    text-align: left;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > ul > li:last-child {
    border-bottom: 0;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > ul > li > a {
    display: block;
    position: relative;
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
    color: #242424;
    letter-spacing: 0.3px;
    padding: 10px 0px 10px 18px;
    text-transform: uppercase;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > ul > li > a:before {
    content: "\f105";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-top: -6px;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > ul > li > a:hover {
    color: #c2935a;
  }
  .tt-header-1 .menu-toggle {
    display: none;
  }
  .tt-header-1 .nav-more {
    float: right;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .tt-header-1 .logo {
    width: 240px;
  }
  .tt-header-1 .nav-more {
    margin-left: 10px;
  }
  .tt-header-1 .main-nav > ul > li > a {
    padding: 4px 16px;
  }
  .tt-header-1 .top-info {
    padding: 0 15px 0 20px;
    min-width: 1px;
  }
  .tt-header-1 .top-info .stroke-icon {
    left: 15px;
  }
  .tt-header-1 .top-inner:before {
    left: -60px;
  }
}

@media (max-width: 991px) {
  .tt-header-1 .logo {
    width: 240px;
    height: 46px;
    line-height: 52px;
  }
  .tt-header-1 {
    position: absolute;
    left: 0;
    right: 0;
    padding-left: 15px;
    padding-right: 15px;
    height: auto;
  }
  .tt-header-1 .top-inner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    padding: 9px 15px;
    background: #0a2196;
    z-index: 1;
  }
  .tt-header-1 .top-inner {
    margin-top: 0px;
    float: none;
    padding-left: 0;
    padding-right: 0;
  }
  .tt-header-1 .cmn-toggle-switch {
    display: block;
  }
  .tt-header-1 .toggle-block {
    display: none;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    overflow: auto;
    background: #A37A4A;
    padding: 70px 0 30px 0;
  }
  .tt-header-1 .main-nav {
    margin-bottom: 10px;
  }
  .tt-header-1 .main-nav > ul > li {
    padding: 13px 0;
  }
  .tt-header-1 .main-nav > ul > li > a {
    display: block;
  }
  .tt-header-1 .main-nav > ul > li.parent > ul {
    display: none;
    background: #282f39;
    margin-top: 10px;
  }
  .tt-header-1 .main-nav > ul > li.parent > a {
    position: relative;
    padding-left: 25px;
    padding-right: 25px;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > a {
    display: inline-block;
    font-size: 11px;
    line-height: 15px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.5px;
    padding: 12px 22px;
    text-transform: uppercase;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .tt-header-1 .main-nav > ul > li > a {
    position: relative;
    padding-left: 25px;
    padding-right: 25px;
  }
  .tt-header-1 .main-nav > ul > li > ul {
    display: none;
    background: #171f2b;
    padding: 15px 0;
    margin-top: 15px;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > a {
    display: block;
    position: relative;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > a:hover {
    color: #c2935a;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > ul {
    display: none;
    list-style: none;
    padding: 5px 0 0 0;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > ul > li {
    margin-bottom: 10px;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > ul > li > a {
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
    color: #787878;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .tt-header-1 .main-nav > ul > li > ul > li > ul > li > a:hover {
    color: #fff;
  }
  .tt-header-1 .menu-toggle, .tt-header-1 .menu-toggle-inner {
    position: absolute;
    top: 50%;
    right: 0;
    padding: 13px 16px;
    margin-top: -20px;
  }
  .tt-header-1 .nav-more {
    margin: 0 0 25px 0;
    padding-top: 0;
  }
  .tt-header-1 .top-info {
    display: block;
    max-width: 400px;
    text-align: center;
    padding: 0;
    margin: 0 auto 20px auto;
  }
  .tt-header-1 .top-info:before {
    display: none;
  }
  .tt-header-1 .top-info .stroke-icon {
    display: inline-block;
    position: static;
    margin: 0 0 15px 0;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .tt-header-1 .top-info .simple-text {
    padding-left: 0;
  }
  .tt-header-1 .top-line .container {
    width: 100%;
  }
  .tt-header-margin-1 {
    height: 70px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 05 - TT-FOOTER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-footer {
  background: #161616;
}

.tt-footer-title {
  display: block;
  font-family: 'Raleway';
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: #bf9b5e;
  letter-spacing: 0.5px;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}

.tt-footer-title:after {
  content: '';
  display: block;
  height: 1px;
  background: #262728;
  margin-top: 22px;
}

.tt-more-link {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #aa8d5d;
}

.tt-more-link:hover {
  color: #fff;
}

.tt-footer-social a {
  font-size: 22px;
  color: #7c7c7c;
  margin-right: 22px;
}

.tt-footer-social a:last-child {
  margin-right: 0;
}

.tt-footer-social a:hover {
  color: #bc945e;
}

.tt-footer-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.tt-footer-list li {
  width: 100%;
  padding: 15px 3px;
  border-top: 1px solid #2c2c2e;
}

.tt-footer-list li:first-child {
  border-top: 0;
}

.tt-footer-list a {
  display: block;
  position: relative;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #8c8c8c;
  letter-spacing: 0px;
  padding-left: 15px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.tt-footer-list a:before {
  content: "\f105";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: -6px;
}

.tt-footer-list a:hover {
  color: #bc945e;
}

.tt-footer-contact {
  padding-left: 0;
  list-style: none;
}

.tt-footer-contact li {
  position: relative;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #8c8c8c;
  letter-spacing: 0.3px;
  border-top: 1px solid #2c2c2e;
  padding: 13px 20px 15px 35px;
}

.tt-footer-contact .fa {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 20px;
  color: #bf9b5e;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.tt-footer-contact a {
  color: #8c8c8c;
}

.tt-footer-contact a:hover {
  color: #bc945e;
}

.tt-footer-inner {
  position: relative;
}

.tt-footer-img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 25%;
  height: auto;
}

.tt-footer-line {
  background: #0f0f0f;
  padding: 31px 0;
}

.tt-footer-copy {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #424242;
  letter-spacing: 0.5px;
  text-align: left;
}

.tt-footer-copy a {
  color: #8c8c8c;
}

.tt-footer-copy a:hover {
  color: #bc945e;
}

.tt-footer-author {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #424242;
  letter-spacing: 0.5px;
  text-align: right;
}

.tt-footer-author a {
  color: #8c8c8c;
}

.tt-footer-author a:hover {
  color: #bc945e;
}

@media (max-width: 991px) {
  .tt-footer-img {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .tt-footer-img {
    display: none;
  }
  .tt-footer-line {
    padding: 25px 0;
  }
  .tt-footer-copy {
    text-align: center;
    margin-bottom: 15px;
  }
  .tt-footer-author {
    text-align: center;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 06 - TT-SEARCH-POPUP */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-search-popup {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 501;
  background: rgba(194, 147, 90, 0.5);
  -webkit-transform: scale(1.5);
     -moz-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 400ms cubic-bezier(0.345, 0.855, 0.565, 1) 10ms;
     -moz-transition: all 400ms cubic-bezier(0.345, 0.855, 0.565, 1) 10ms;
          transition: all 400ms cubic-bezier(0.345, 0.855, 0.565, 1) 10ms;
}

.tt-search-popup.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.tt-search-popup-vertical {
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  top: 50%;
  position: absolute;
  width: inherit;
}

.tt-search-popup form {
  position: relative;
  width: 100%;
  background: #333;
  padding: 90px;
}

.tt-search-popup-title {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 20px;
  padding-bottom: 45px;
  margin-top: 0;
}

.tt-search-popup-field {
  position: relative;
}

.tt-search-popup-field input[type="text"] {
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  background: none;
  color: #fff;
  width: 100%;
  padding-right: 50px;
  padding-bottom: 14px;
  border: 0;
}

.tt-search-popup-devider {
  position: relative;
  width: 100%;
  height: 2px;
  background: #fff;
  overflow: hidden;
  z-index: 5;
  -webkit-transition: all 400ms cubic-bezier(0.345, 0.855, 0.565, 1) 10ms;
     -moz-transition: all 400ms cubic-bezier(0.345, 0.855, 0.565, 1) 10ms;
          transition: all 400ms cubic-bezier(0.345, 0.855, 0.565, 1) 10ms;
}

.tt-search-popup-devider:after {
  content: '';
  position: absolute;
  top: 0px;
  left: -100%;
  width: 100%;
  height: 2px;
  background: #c2935a;
  z-index: 5;
  -webkit-transition: all 400ms cubic-bezier(0.345, 0.855, 0.565, 1) 10ms;
     -moz-transition: all 400ms cubic-bezier(0.345, 0.855, 0.565, 1) 10ms;
          transition: all 400ms cubic-bezier(0.345, 0.855, 0.565, 1) 10ms;
}

.tt-search-popup-field input[type="text"]:focus + .tt-search-popup-devider:after {
  left: 0;
}

.tt-search-popup-submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #909090;
}

.tt-search-popup-submit input {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 30px;
  padding: 0px;
  background: transparent;
  border: 0;
}

.tt-search-popup .close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  background: #c2935a;
  color: #fff;
  text-align: center;
  line-height: 40px;
  opacity: 1;
}

.tt-search-popup .close span {
  font-size: 24px;
  position: relative;
  -webkit-backface-visibility: hidden;
     -moz-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  display: block;
  font-family: Helvetica;
}

.tt-search-popup .close:hover {
  background: #fff;
  color: #c2935a;
}

@media (max-width: 767px) {
  .tt-search-popup form {
    padding: 30px;
  }
  .tt-search-popup-title {
    padding-bottom: 20px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 07 - SWIPER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-swiper-separated {
  margin-left: -15px;
  margin-right: -15px;
}

.tt-swiper-separated .swiper-slide > * {
  margin-left: 15px;
  margin-right: 15px;
}

.tt-custom-arrow {
  position: relative;
}

.tt-arrow-left, .tt-arrow-right {
  cursor: pointer;
}

/*swiper-arrow type-1*/
.tt-arrow-left.type-1, .tt-arrow-right.type-1 {
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  background: #be9662;
  color: #fff;
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-arrow-left.type-1 .fa-angle-left {
  position: relative;
  left: -1px;
}

.tt-arrow-right.type-1 .fa-angle-right {
  position: relative;
  left: 1px;
}

.tt-arrow-left.type-1:hover, .tt-arrow-right.type-1:hover {
  background: #d4b48b;
}

/*swiper-arrow position-1*/
.tt-arrow-right.pos-1 {
  position: absolute;
  right: 15px;
  top: -85px;
}

.tt-arrow-left.pos-1 {
  position: absolute;
  right: 55px;
  top: -85px;
}

.tt-swiper-pagination.type-1 {
  margin-top: 60px;
}

.tt-swiper-pagination.type-1 .swiper-pagination-switch {
  width: 16px;
  height: 16px;
}

.tt-swiper-pagination.type-1 .swiper-active-switch {
  background: #fff;
  border-color: #fff;
}

.tt-swiper-pagination.type-1.color-2 .swiper-pagination-switch {
  border-color: #cca15a;
}

.tt-swiper-pagination.type-1.color-2 .swiper-active-switch {
  background: #cca15a;
}

@media (max-width: 991px) {
  .tt-swiper-pagination.type-1 {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .tt-swiper-pagination.type-1 {
    margin-top: 30px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 08 - TT-MSLIDE */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-mslide {
  position: relative;
  -webkit-background-size: cover;
     -moz-background-size: cover;
          background-size: cover;
  background-position: center center;
}

.tt-mslide:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
}

.tt-mslide-table {
  position: relative;
  display: table;
  width: 100%;
  height: 756px;
  padding: 154px 0;
}

.tt-mslide-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.tt-mslide-cell.bottom {
  vertical-align: bottom;
}

.tt-mslide-title {
  color: #fff;
}

.tt-mslide .simple-text {
  margin-bottom: 44px;
}

.tt-mslide-btn {
  font-size: 0;
}

.tt-mslide-btn .c-btn {
  margin-right: 20px;
}

.tt-mslide.style-2:before {
  opacity: 0.6;
}

.tt-mslide-2-cat {
  color: #f8b156;
}

.tt-mslide-2-title {
  color: #fff;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .tt-mslide-table {
    height: 700px;
    padding: 120px 0;
  }
}

@media (max-width: 767px) {
  .tt-mslide .simple-text {
    margin-bottom: 30px;
  }
  .tt-mslide-table {
    height: 550px;
    padding: 80px 0;
  }
  .tt-mslide-btn .c-btn {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .tt-mslide-btn .c-btn:last-child {
    margin-bottom: 0;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 09 - TT-COMMERCIAL */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-commercial-img {
  margin-bottom: 34px;
}

.tt-commercial-title {
  display: block;
  margin-bottom: 10px;
}

.tt-commercial-title:hover {
  color: #cca15a;
}

.tt-commercial .simple-text {
  margin-bottom: 15px;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 10 - TT-COMMERCIAL-2 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-commercial-2 {
  text-align: center;
}

.tt-commercial-2-img {
  margin-bottom: 45px;
}

.tt-commercial-2-title {
  display: block;
  margin-bottom: 10px;
}

.tt-commercial-2-title:hover {
  color: #cca15a;
}

.tt-commercial-2 .simple-text {
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .tt-commercial-2.tt-commercial-2 {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 11 - TT-COMMERCIAL-3 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-commercial-3-title {
  display: block;
  font-family: 'Open Sans';
  font-weight: 600;
  text-transform: initial;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.tt-commercial-3-title:hover {
  color: #cca15a;
}

.tt-commercial-3 .simple-text {
  margin-bottom: 15px;
}

.tt-commercial-3-links a {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #757575;
  letter-spacing: 0.5px;
  margin-right: 38px;
}

.tt-commercial-3-links a .fa {
  margin-right: 10px;
}

.tt-commercial-3-links a:hover {
  color: #cca15a;
}

@media (max-width: 767px) {
  .tt-commercial-3 .tt-custom-hover {
    margin-bottom: 15px;
  }
  .tt-commercial-3-links a {
    display: block;
    margin-bottom: 15px;
  }
  .tt-commercial-3-links a:last-child {
    margin-bottom: 0;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 12 - TT-TWO-BLOCKS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-two-blocks {
  position: relative;
}

.tt-two-blocks-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 53%;
  background-position: top center;
}

@media (max-width: 991px) {
  .tt-two-blocks-img {
    position: relative;
    width: 100%;
    height: 200px;
    left: 0;
    margin-bottom: 30px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 13 - TT-TWO-BLOCKS-2 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-two-blocks-2 {
  position: relative;
}

.tt-two-blocks-2-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 63%;
  background-position: top center;
}

.tt-two-blocks-2-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.15;
}

@media (max-width: 1400px) {
  .tt-two-blocks-2-img {
    right: 67%;
  }
}

@media (max-width: 1199px) {
  .tt-two-blocks-2-img {
    right: 60%;
  }
}

@media (max-width: 991px) {
  .tt-two-blocks-2-img {
    position: relative;
    width: 100%;
    height: 200px;
    left: 0;
    margin-bottom: 30px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 14 - TT-SERVICE */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-service-icon {
  float: left;
  position: relative;
  width: 83px;
  height: 83px;
  border: 2px solid #b58f5f;
  -moz-border-radius: 50%;
       border-radius: 50%;
  overflow: hidden;
}

.tt-service-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 83px;
  max-height: 83px;
  -webkit-transform: translateY(-50%) translateX(-50%);
     -moz-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

.tt-service-info {
  padding-left: 120px;
}

.tt-service-title, .tt-service-title:focus {
  display: block;
  color: #c7a162;
  font-weight: 700;
  margin-bottom: 8px;
}

.tt-service-title:hover {
  color: #fff;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 15 - TT-SERVICE-2 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-service-2-icon {
  float: left;
  width: 32px;
}

.tt-service-2-info {
  padding-left: 49px;
}

.tt-service-2-title {
  display: block;
  font-family: 'Open Sans';
  color: #fff;
  margin-bottom: 14px;
}

.tt-service-2-title:after {
  content: '';
  display: block;
  width: 45px;
  height: 3px;
  background: #d9ab46;
  margin-top: 14px;
}

.tt-service-2-title:hover {
  color: #cca15a;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 16 - TT-SERVICE-3 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-service-3 {
  text-align: center;
}

.tt-service-3-icon {
  width: 88px;
  height: 88px;
  border: 1px solid #fff;
  text-align: center;
  -moz-border-radius: 88px;
       border-radius: 88px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

.tt-service-3-icon i {
  font-size: 40px;
  line-height: 86px;
  color: #fff;
}

.tt-service-3-title {
  display: block;
  color: #fff;
  margin-bottom: 8px;
}

.tt-service-3-title:hover {
  color: #cfa35b;
}

@media (max-width: 767px) {
  .tt-service-3 {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 17 - TT-PROJECT */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-project {
  display: block;
  position: relative;
  overflow: hidden;
}

.tt-project img {
  width: 100%;
}

.tt-project-caption {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(35, 40, 52, 0.78);
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
     -moz-transition: all 0.35s ease-in-out;
          transition: all 0.35s ease-in-out;
}

.tt-project-caption-table {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0px 50px;
}

.tt-project-caption-inner {
  display: table-cell;
  vertical-align: middle;
  -webkit-transform: translateY(-15%);
     -moz-transform: translateY(-15%);
      -ms-transform: translateY(-15%);
          transform: translateY(-15%);
  -webkit-transition: all 0.35s ease-in-out;
     -moz-transition: all 0.35s ease-in-out;
          transition: all 0.35s ease-in-out;
}

.tt-project-name {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tt-project:hover .tt-project-caption {
  opacity: 1;
}

.tt-project:hover .tt-project-caption-inner {
  -webkit-transform: translateY(0%);
     -moz-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 18 - TT-VIDEO */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-video-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.tt-video-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
}

.tt-video-img img {
  width: 100%;
}

.tt-video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 98px;
  height: 98px;
  border: 3px solid rgba(181, 143, 95, 0.61);
  -moz-border-radius: 50%;
       border-radius: 50%;
  margin-top: -49px;
  margin-left: -49px;
  background: rgba(0, 0, 0, 0.38);
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-video-icon:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 30px;
  border-color: transparent transparent transparent #fd6919;
}

.tt-video-img:hover .tt-video-icon {
  border: 3px solid #b58f5f;
}

.tt-video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 200;
  -webkit-transform: translateY(-100%);
     -moz-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-video-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 200;
}

.tt-video-table {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  overflow: auto;
}

.tt-video-table:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.tt-video-cell {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 983px;
  z-index: 201;
}

.tt-video-close {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.tt-video-close:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-video-close:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-video-close:hover:before, .tt-video-close:hover:after {
  background: #cca15a;
}

.tt-video-popup .embed-responsive {
  overflow: visible;
}

.tt-video-popup.active {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 1199px) {
  .tt-video-table {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .tt-video-img {
    margin-bottom: 30px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 19 - TT-TESTIMONIAL */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-testimonial-top {
  margin-bottom: 27px;
}

.tt-testimonial-user {
  display: block;
  float: left;
  position: relative;
  width: 130px;
  height: 130px;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  border: 2px solid #fff;
}

.tt-testimonial-info {
  padding-left: 165px;
  padding-top: 15px;
}

.tt-testimonial-title {
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #242424;
  margin-bottom: 8px;
}

.tt-testimonial-title:hover {
  color: #cca15a;
}

.tt-testimonial .simple-text {
  margin-bottom: 40px;
}

.tt-testimonial-info .simple-text {
  margin-bottom: 10px;
}

.tt-testimonial-rating {
  color: #223655;
}

.tt-testimonial-rating .fa {
  margin-right: 9px;
}

.tt-testimonial-rating .fa:last-child {
  margin-right: 0;
}

@media (max-width: 991px) {
  .tt-testimonial .simple-text {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .tt-testimonial-user {
    float: none;
    margin: 0 auto 15px auto;
  }
  .tt-testimonial-info {
    padding: 0;
  }
  .tt-testimonial {
    text-align: center;
  }
  .tt-testimonial .simple-text {
    margin-bottom: 15px;
  }
  .tt-testimonial-top {
    margin-bottom: 15px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 20 - TT-ACCORDION */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-accordion-title {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 60px 15px 20px;
  background: transparent;
  border-top: 1px solid #ebebeb;
  cursor: pointer;
}

.tt-accordion-icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 28px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
}

.tt-accordion-icon:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 3px;
  background: #898989;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.tt-accordion-icon:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #898989;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.tt-accordion-body {
  display: none;
  padding: 30px 0 35px 0;
}

.tt-accordion-panel:last-child .tt-accordion-body {
  padding-bottom: 0;
}

.tt-accordion-body.active {
  display: block;
}

.tt-accordion-title.active {
  background: #ebebeb;
}

.tt-accordion-title.active .tt-accordion-icon:before {
  background: transparent;
}

@media (max-width: 767px) {
  .tt-accordion-title {
    padding-left: 15px;
  }
  .tt-accordion-body {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 21 - TT-BANNER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-banner-title {
  float: left;
  width: 75%;
  font-size: 35px;
  line-height: 45px;
  font-weight: 600;
  color: #ffd68e;
  font-style: italic;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: 0;
  padding: 37px 0;
}

.tt-banner-btn {
  float: right;
  width: 25%;
  padding: 58px 0;
}

@media (max-width: 991px) {
  .tt-banner-title {
    float: none;
    font-size: 30px;
    line-height: 40px;
    width: 100%;
    padding: 30px 0;
  }
  .tt-banner-btn {
    float: none;
    padding: 0;
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .tt-banner-title {
    font-size: 25px;
    line-height: 32px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 22 - TT-HEADING */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-heading {
  position: relative;
  padding: 74px 0;
}

.tt-heading:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tt-heading-title {
  color: #fff;
  border-left: 4px solid #c2935a;
  padding-left: 12px;
  margin-bottom: 0;
}

.tt-breadcrumbs {
  list-style: none;
  font-size: 0;
}

.tt-breadcrumbs li {
  display: inline-block;
  position: relative;
  margin-right: 19px;
}

.tt-breadcrumbs li:after {
  content: '\f105';
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  margin-left: 6px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tt-breadcrumbs li:last-child {
  margin-right: 0;
}

.tt-breadcrumbs li:last-child:after {
  display: none;
}

.tt-breadcrumbs a, .tt-breadcrumbs span {
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.tt-breadcrumbs a:hover {
  color: #cca15a;
}

.tt-breadcrumbs a .fa {
  font-size: 14px;
  margin-right: 5px;
}

.tt-heading .tt-breadcrumbs {
  float: right;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 9px;
}

@media (max-width: 991px) {
  .tt-heading {
    padding: 45px 0;
  }
}

@media (max-width: 767px) {
  .tt-heading .tt-breadcrumbs {
    float: none;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 23 - TT-SQUARE */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-square a {
  margin-bottom: 4px;
}

@media (max-width: 991px) {
  .tt-square {
    max-width: 470px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 24 - TT-PORTFOLIO */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-portfolio {
  position: relative;
  border: 1px solid #dfdfdf;
  background: #fff;
  padding: 11px;
}

.tt-portfolio img {
  width: 100%;
}

.tt-portfolio-title {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #5f5f5f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #fff;
  margin: 0;
  padding: 16px 22px;
  min-width: 69%;
  z-index: 2;
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-portfolio-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  opacity: 0;
  z-index: 1;
  -webkit-transform: scale(0);
     -moz-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-portfolio-btn {
  position: absolute;
  top: 30px;
  right: 30px;
}

.tt-portfolio-btn a {
  display: block;
  width: 44px;
  height: 44px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background: #2c2c2c;
  line-height: 44px;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}

.tt-portfolio-btn a:last-child {
  margin-bottom: 0;
}

.tt-portfolio-btn a:hover {
  background: #bc945e;
}

.tt-portfolio:hover .tt-portfolio-title {
  color: #c2935a;
}

.tt-portfolio:hover .tt-portfolio-caption {
  opacity: 1;
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

@media (max-width: 767px) {
  .tt-portfolio {
    max-width: 480px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 25 - TT-PORTFOLIO-2 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-portfolio-2 {
  position: relative;
  border: 1px solid #dfdfdf;
  background: #fff;
}

.tt-portfolio-2 img {
  width: 100%;
}

.tt-portfolio-2-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  opacity: 0;
  z-index: 1;
  -webkit-transform: scale(0);
     -moz-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-portfolio-2-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  z-index: 2;
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-portfolio-2-btn {
  position: absolute;
  top: 30px;
  right: 30px;
}

.tt-portfolio-2-btn a {
  display: block;
  width: 44px;
  height: 44px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background: #2c2c2c;
  line-height: 44px;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}

.tt-portfolio-2-btn a:last-child {
  margin-bottom: 0;
}

.tt-portfolio-2-btn a:hover {
  background: #bc945e;
}

.tt-portfolio-2:hover .tt-portfolio-title {
  color: #c2935a;
}

.tt-portfolio-2:hover .tt-portfolio-caption {
  opacity: 1;
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

@media (max-width: 767px) {
  .tt-portfolio-2 {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 26 - LIGHTBOX */
/*-------------------------------------------------------------------------------------------------------------------------------*/
#imagelightbox {
  position: fixed;
  z-index: 9999;
  -ms-touch-action: none;
  touch-action: none;
}

#imagelightbox-close {
  width: 2.5em;
  height: 2.5em;
  text-align: left;
  background-color: #fff;
  position: fixed;
  z-index: 10002;
  top: 2.5em;
  right: 2.5em;
  -webkit-transition: color .3s ease;
  -moz-transition: color .3s ease;
  transition: color .3s ease;
  border: none;
}

#imagelightbox-close:hover, #imagelightbox-close:focus {
  background-color: #111;
  outline: none;
}

#imagelightbox-close:before, #imagelightbox-close:after {
  width: 2px;
  background-color: #c2935a;
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 50%;
  margin-left: -1px;
}

#imagelightbox-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

#imagelightbox-close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#imagelightbox-loading, #imagelightbox-loading div {
  -moz-border-radius: 50%;
  border-radius: 50%;
}

#imagelightbox-loading {
  width: 2.5em;
  height: 2.5em;
  background-color: #444;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 10003;
  top: 50%;
  left: 50%;
  padding: 0.625em;
  margin: -1.25em 0 0 -1.25em;
  -moz-box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
}

#imagelightbox-loading div {
  width: 1.25em;
  height: 1.25em;
  background-color: #fff;
  -webkit-animation: imagelightbox-loading .5s ease infinite;
  -moz-animation: imagelightbox-loading .5s ease infinite;
  animation: imagelightbox-loading .5s ease infinite;
}

#imagelightbox-overlay {
  background-color: rgba(194, 147, 90, 0.5);
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#imagelightbox-caption {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  color: #fff;
  background-color: #cca15a;
  position: fixed;
  z-index: 10001;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 0px;
}

.imagelightbox-arrow {
  font-size: 40px;
  line-height: 56px;
  font-weight: 400;
  color: #fff;
  width: 3.75em;
  height: 7.5em;
  background-color: transparent;
  vertical-align: middle;
  display: none;
  position: fixed;
  z-index: 10001;
  top: 50%;
  margin-top: -3.75em;
  border: none;
}

.imagelightbox-arrow-left {
  left: 2.5em;
}

.imagelightbox-arrow-right {
  right: 2.5em;
}

.imagelightbox-arrow-left:focus, .imagelightbox-arrow-right:focus {
  outline: none;
}

.imagelightbox-arrow-left:hover, .imagelightbox-arrow-right:hover {
  color: #cca15a;
}

#imagelightbox-loading, #imagelightbox-overlay, #imagelightbox-close, #imagelightbox-caption, #imagelightbox-nav, .imagelightbox-arrow {
  -webkit-animation: fade-in .25s linear;
  -moz-animation: fade-in .25s linear;
  animation: fade-in .25s linear;
}

@media only screen and (max-width: 660px) {
  #container {
    width: 100%;
  }
  #imagelightbox-close {
    top: 1.25em;
    right: 1.25em;
  }
  #imagelightbox-nav {
    bottom: 1.25em;
  }
  .imagelightbox-arrow {
    width: 2.5em;
  }
  .imagelightbox-arrow-left {
    left: 1.25em;
  }
  .imagelightbox-arrow-right {
    right: 1.25em;
  }
}

@media only screen and (max-width: 320px) {
  .imagelightbox-arrow-left {
    left: 0;
  }
  .imagelightbox-arrow-right {
    right: 0;
  }
}

@media (max-width: 767px) {
  .block.type-7 .filter-nav li {
    margin-bottom: 10px;
  }
  .block.type-7 .filter-content a {
    display: block;
  }
  .block.type-7 .filter-content a img {
    margin: 0 auto;
  }
  .block.type-7 .icon-wrapper .icon-entry {
    margin-bottom: 30px;
  }
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes imagelightbox-loading {
  from {
    opacity: .5;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: .5;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}

@-moz-keyframes imagelightbox-loading {
  from {
    opacity: .5;
    -moz-transform: scale(0.75);
    transform: scale(0.75);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: .5;
    -moz-transform: scale(0.75);
    transform: scale(0.75);
  }
}

@keyframes imagelightbox-loading {
  from {
    opacity: .5;
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    transform: scale(0.75);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: .5;
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    transform: scale(0.75);
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 27 - TT-FILTER TYPE-1 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-filter.type-1 .isotope-nav {
  list-style: none;
  font-size: 0;
  padding-left: 0;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 10px 24px;
  margin-bottom: 60px;
}

.tt-filter.type-1 .isotope-nav li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
}

.tt-filter.type-1 .isotope-nav li a {
  display: block;
  font-family: 'Roboto';
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #878787;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  padding: 12px 6px;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.tt-filter.type-1 .isotope-nav li:after {
  content: '/';
  display: block;
  position: absolute;
  top: 0;
  right: -16px;
  font-size: 13px;
  line-height: 42px;
  color: #c8c8c8;
}

.tt-filter.type-1 .isotope-nav li.selected a {
  color: #2898d2;
}

.tt-filter.type-1 .isotope-nav li:last-child:after {
  display: none;
}

/*filte-select*/
.tt-filter.type-1 .tt-filter-select {
  display: none;
  position: relative;
  background: #fff;
}

.tt-filter.type-1 .tt-filter-select select {
  display: block;
  width: 100%;
  font-weight: 400;
  color: #333;
  background: transparent;
  border: 1px solid #d9d9d9;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.tt-filter.type-1 .tt-filter-select select::-ms-expand {
  display: none;
}

.tt-filter.type-1 .tt-filter-select select:focus {
  outline: none;
}

.tt-filter.type-1 .tt-filter-select .select-arrow {
  display: block;
  position: absolute;
  top: 1px;
  right: 1px;
  text-align: center;
  background: #C2935A;
  color: #fff;
  pointer-events: none;
}

.tt-filter.type-1 .tt-filter-select select {
  height: 42px;
  font-size: 14px;
  line-height: 30px;
  padding: 0px 11px;
}

.tt-filter.type-1 .tt-filter-select .select-arrow {
  width: 37px;
  height: 40px;
  line-height: 40px;
}

@media (max-width: 1199px) {
  .tt-filter.type-1 .isotope-nav {
    padding: 10px 15px;
    margin-bottom: 50px;
  }
  .tt-filter.type-1 .isotope-nav li {
    margin-right: 15px;
  }
  .tt-filter.type-1 .isotope-nav li:after {
    right: -8px;
  }
  .tt-filter.type-1 .isotope-nav li a {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .tt-filter.type-1 .tt-filter-select {
    display: block;
    margin-bottom: 30px;
  }
  .tt-filter.type-1 .isotope-nav {
    display: none;
  }
}

.tt-filter.type-1.style-2 .isotope-nav {
  margin-bottom: 50px;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  border: 3px solid #ededed;
}

.tt-filter.type-1.style-2 .isotope-nav li a {
  color: #535353;
}

.tt-filter.type-1.style-2 .isotope-nav li.selected a {
  color: #2898d2;
}

.tt-filter.type-1.style-2 .isotope-nav li:after {
  font-size: 16px;
  color: #535353;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 28 - TT-CLIENT */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-client {
  display: block;
  border: 1px solid #f0f0f0;
  opacity: 1;
}

.tt-client img {
  margin-left: auto;
  margin-right: auto;
}

.tt-client:hover {
  opacity: 0.7;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 29 - TT-POST */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-post-top {
  position: relative;
  padding-left: 127px;
}

.tt-post-top {
  margin-bottom: 35px;
}

.tt-blog-item-date {
  position: absolute;
  left: 20px;
  top: -29px;
  min-width: 74px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.5px;
  font-style: italic;
  background: #c2935a;
  text-align: center;
  padding: 19px 12px;
}

.tt-blog-item-date:before {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.tt-blog-item-date span {
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
}

.tt-post-label {
  padding-top: 19px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}

.tt-post-label {
  font-size: 0;
}

.tt-post-label span {
  display: inline-block;
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  color: #a0a0a0;
  letter-spacing: 0.4px;
  font-style: italic;
  margin-right: 30px;
}

.tt-post-label span:last-child {
  margin-right: 0;
}

.tt-post-label a {
  color: #a0a0a0;
}

.tt-post-label a:hover {
  color: #cca15a;
}

.tt-post-label .fa {
  color: #d9ab46;
  margin-right: 10px;
}

.tt-post-title.big {
  display: inline-block;
  text-transform: initial;
  margin-bottom: 10px;
}

a.tt-post-title:hover {
  color: #cca15a;
}

.tt-post .simple-text {
  margin-bottom: 27px;
}

.tt-post.small .tt-post-title.big {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .tt-blog-item-date {
    top: 0;
    left: 0;
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .tt-post-top {
    padding: 0;
  }
  .tt-post-top {
    margin-bottom: 20px;
  }
  .tt-post-label {
    margin-bottom: -5px;
    padding: 9px 5px 5px 5px;
  }
  .tt-post-label span {
    margin-bottom: 5px;
  }
}

@media (max-width: 479px) {
  .tt-blog-item-date {
    position: relative;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .tt-post-label {
    padding: 5px;
  }
  .tt-blog-item-date span {
    display: inline;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 30 - TT-POST-2 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-post-2-img {
  float: left;
  width: 110px;
}

.tt-post-2-info {
  padding-left: 140px;
}

.tt-post-title {
  display: inline-block;
  font-size: 13px;
  line-height: 17px;
  font-weight: 400;
  color: #242424;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.tt-post-2-info .simple-text {
  margin-bottom: 10px;
}

.tt-post-date {
  font-family: 'Raleway';
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
  color: #1cbac8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 31 - TT-PAGINATION */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-pagination {
  list-style: none;
  padding: 0;
  font-size: 0;
  margin-bottom: -10px;
}

.tt-pagination li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.tt-pagination a {
  display: block;
  min-width: 50px;
  font-size: 24px;
  line-height: 48px;
  font-weight: 400;
  color: #8e8d8d;
  text-align: center;
  background: #fff;
  border: 1px solid #e2e2e2;
  padding: 0 10px;
}

.tt-pagination a:hover, .tt-pagination li.active a {
  background: #c2935a;
  color: #fff;
}

.tt-pagination li:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .tt-pagination a {
    min-width: 40px;
    font-size: 18px;
    line-height: 38px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 32 - TT-SEARCH */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-search {
  position: relative;
}

.tt-search input[type="text"] {
  width: 100%;
  height: 46px;
  font-size: 14px;
  font-weight: 400;
  color: #909090;
  letter-spacing: 0.5px;
  background: #12100f;
  border: 2px solid #12100f;
  padding: 0 70px 0 28px;
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-search input[type="text"]::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #909090;
  opacity: 1;
}

.tt-search input[type="text"]:-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #909090;
  opacity: 1;
}

.tt-search input[type="text"]::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #909090;
  opacity: 1;
}

.tt-search input[type="text"]:-ms-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #909090;
  opacity: 1;
}

.tt-search input[type="text"]:focus {
  border-color: #c2935a;
}

.tt-search-submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 46px;
  background: #c2935a;
  text-align: center;
  line-height: 46px;
  color: #fff;
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-search-submit input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
}

.tt-search-submit:hover {
  background: #00a8d4;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 33 - TT-CATEGORY */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-category {
  list-style: none;
  padding-left: 0;
}

.tt-category li {
  border-bottom: 1px solid #e6e6e6;
}

.tt-category a {
  display: block;
  position: relative;
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
  color: #898989;
  letter-spacing: 0.5px;
  padding: 10px 15px 10px 0;
}

.tt-category a:before {
  content: '\f105';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 5px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  margin-top: -9px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tt-category a:hover {
  color: #cfa35b;
}

.tt-category li:first-child a {
  padding-top: 0;
}

.tt-category li:first-child a:before {
  margin-top: -15px;
}

.tt-category li:last-child {
  border-bottom: 0;
}

.tt-category li:last-child a {
  padding-bottom: 0;
}

.tt-category li:last-child a:before {
  margin-top: -2px;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 34 - TT-CLOUD */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-cloud-wrapper {
  font-size: 0;
  list-style: none;
  padding-left: 0;
  margin-bottom: -10px;
  margin-right: -10px;
}

.tt-cloud-wrapper li {
  display: inline-block;
}

.tt-cloud {
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #787878;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid #eaeaea;
  background: #fff;
  padding: 11px 21px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.tt-cloud:hover, .tt-cloud.active {
  background: #e5e5e5;
  border-color: #e5e5e5;
  color: #787878;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 35 - TT-COMMENT-BLOCK */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-comment-block {
  border: 1px solid #eee;
  list-style: none;
  padding-left: 0;
}

.tt-comment-block li {
  padding: 25px 25px 25px 25px;
}

.tt-comment-block > li {
  border-bottom: 1px solid #eee;
}

.tt-comment-block > li:nth-child(even) {
  background: #fcfcfc;
}

.tt-comment-block > li:last-child {
  border-bottom: 0;
}

.tt-comment-avatar {
  float: left;
}

.tt-comment-text {
  padding-left: 100px;
}

.tt-comment-name {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.tt-comment-name:hover {
  color: #cca15a;
}

.tt-comment-text .simple-text {
  margin-bottom: 10px;
}

.tt-comment-label a {
  color: #c2935a;
}

.tt-comment-label a:hover {
  color: #202020;
}

.tt-comment-label span {
  display: inline-block;
  position: relative;
  font-size: 13px;
  line-height: 17px;
  font-weight: 400;
  color: #434343;
  letter-spacing: 0.3px;
  padding-right: 12px;
  margin-right: 7px;
}

.tt-comment-label span:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 13px;
  margin-top: -6.5px;
  background: #c2c2c2;
}

.tt-comment-label span:last-child {
  padding-right: 0;
  margin-right: 0;
}

.tt-comment-label span:last-child:before {
  display: none;
}

.tt-comment-block .children {
  list-style: none;
  padding-left: 100px;
  padding-top: 23px;
}

.tt-comment-block .children > li {
  padding-left: 0;
  padding-right: 0;
}

.tt-comment-block .children > li:last-child {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .tt-comment-block {
    text-align: center;
  }
  .tt-comment-avatar {
    float: none;
    margin-bottom: 10px;
  }
  .tt-comment-text {
    padding-left: 0;
  }
  .tt-comment-block .children {
    padding-left: 0;
    padding-top: 0;
  }
  .tt-comment-block li {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 36 - TT-FORM-BLOCK */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-form-block {
  border: 1px solid #eee;
  padding: 50px 25px;
  background: #f7f7f7;
}

.tt-form-block input[type="text"] {
  margin-bottom: 20px;
}

.tt-form-block textarea {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .tt-form-block {
    padding: 25px 15px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 37 - TT-CART-TABLE */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-cart-table table {
  width: 100%;
  max-width: 100%;
}

.tt-cart-table table > thead > tr > th {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.3px;
  background: #f9f9f9;
  padding: 16px 25px;
  border: 1px solid #ebebeb;
}

.tt-cart-table table > tbody > tr > td {
  vertical-align: middle;
  border: 1px solid #ebebeb;
  padding: 0 25px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #8e8d8d;
}

.tt-cart-img {
  display: block;
  margin: 24px auto;
  border: 1px solid #e9e9e9;
  width: 130px;
  max-width: 100%;
}

.tt-cart-link {
  color: #8e8d8d;
}

.tt-cart-link:hover {
  color: #cca15a;
}

.tt-cart-remove {
  display: block;
  width: 22px;
  font-family: 'Raleway';
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #000;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tt-cart-remove:hover {
  color: #cca15a;
}

.tt-cart-table table > tfoot {
  background: #f9f9f9;
  border: 1px solid #ebebeb;
}

.tt-cart-table table > tfoot > tr > td {
  padding: 27px 39px;
}

.tt-cart-table table > tfoot .c-btn {
  vertical-align: bottom;
}

.tt-cart-table-right {
  text-align: right;
}

.tt-coupon .c-input-2 {
  margin-right: 20px;
}

@media (max-width: 767px) {
  .tt-coupon .c-input-2 {
    width: 100%;
  }
  .tt-cart-table table, .tt-cart-table tbody, .tt-cart-table tr, .tt-cart-table td, .tt-cart-table tfoot {
    display: block;
    width: 100%;
    text-align: center;
    float: left;
  }
  .tt-cart-table thead {
    display: none;
  }
  .tt-cart-table td:before {
    content: attr(data-label);
    display: block;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 5px;
  }
  .tt-cart-table table > tbody > tr > td {
    padding: 15px;
  }
  .tt-cart-table .c-select-1 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
  .tt-cart-img {
    margin: 0 auto;
  }
  .tt-cart-table table > tfoot {
    padding: 15px;
  }
  .tt-cart-table table > tfoot > tr > td {
    padding: 0 0 15px 0;
  }
  .tt-cart-table table > tfoot > tr > td:last-child {
    padding: 0;
  }
  .tt-coupon .c-input-2 {
    margin-right: 0;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 38 - TT-CHEKOUT */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-chekout {
  border: 1px solid #ebebeb;
  border-bottom: 0;
}

.tt-chekout-head {
  font-family: 'Raleway';
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.3px;
  background: #f9f9f9;
  border-bottom: 1px solid #ebebeb;
  padding: 15px 24px;
}

.tt-chekout-row {
  padding: 15px 24px;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #8e8d8d;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #ebebeb;
}

.tt-chekout-label {
  font-family: 'Raleway';
  display: inline-block;
  width: 34%;
  color: #000;
  vertical-align: middle;
}

.tt-chekout-price {
  display: inline-block;
  vertical-align: middle;
}

.tt-chekout-row.proceed {
  padding-top: 24px;
  padding-bottom: 27px;
  text-align: right;
}

@media (max-width: 767px) {
  .tt-chekout-row.proceed {
    padding: 15px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 39 - TT-MESSAGE */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-message {
  font-size: 15px;
  line-height: 23px;
  font-weight: 400;
  color: #8e8e8e;
  background: #f9f9f9;
  letter-spacing: 0.3px;
  padding: 22px 30px;
  border: 1px solid #ebebeb;
}

.tt-message a {
  color: #ff851f;
}

.tt-message a:hover {
  color: #cca15a;
}

@media (max-width: 767px) {
  .tt-message {
    padding: 15px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 40 - TT-CHECKOUT */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.input-label {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.3px;
}

.input-label span {
  color: #fe5454;
}

.input-label.color-2 span {
  color: #8e8d8d;
}

.tt-checkout-form .input-label {
  margin-bottom: 5px;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 41 - TT-ORDER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-order {
  background: #f8f8f8;
  border: 1px solid #d9d9d9;
  padding: 25px 29px;
}

.tt-order-label {
  font-family: 'Raleway';
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #8e8d8d;
  vertical-align: middle;
}

.tt-order-count {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #8e8d8d;
  vertical-align: middle;
}

.tt-order-count.total {
  font-size: 18px;
  color: #010101;
}

.tt-order-info {
  position: relative;
  background: #ececec;
  padding: 20px 30px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.tt-order-info:before {
  content: '';
  display: block;
  position: absolute;
  top: -12px;
  left: 27px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 9.5px 12px 9.5px;
  border-color: transparent transparent #ececec transparent;
}

.tt-order-pay {
  margin-top: -8px;
}

.tt-order-faq {
  text-align: right;
}

.tt-order-link {
  font-size: 13px;
  line-height: 17px;
  font-weight: 400;
  color: #fe5454;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.tt-order-link:hover {
  color: #010101;
}

.tt-address-more {
  display: none;
}

@media (max-width: 767px) {
  .tt-order {
    padding-left: 15px;
    padding-right: 15px;
  }
  .tt-order-faq {
    text-align: left;
  }
  .tt-order-pay {
    margin-bottom: 15px;
  }
  .tt-order-faq {
    margin-bottom: 15px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 42 - NOT FOUND */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-notfound-title {
  font-size: 200px;
  line-height: 200px;
  font-weight: 800;
  color: #c2935a;
  margin-top: 0;
  margin-bottom: 0;
  margin-bottom: 10px;
}

.tt-notfound-desc {
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.2px;
  margin-top: 0;
  margin-bottom: 20px;
}

.tt-notfound .simple-text {
  margin-bottom: 45px;
}

@media (max-width: 1199px) {
  .tt-notfound-title {
    font-size: 170px;
    line-height: 170px;
  }
  .tt-notfound .tt-notfound-desc {
    font-size: 34px;
    line-height: 40px;
  }
}

@media (max-width: 991px) {
  .tt-notfound-title {
    font-size: 144px;
    line-height: 144px;
  }
  .tt-notfound .tt-notfound-desc {
    font-size: 28px;
    line-height: 34px;
  }
  .tt-notfound .simple-text.size-8 {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 767px) {
  .tt-notfound-title {
    font-size: 110px;
    line-height: 110px;
  }
  .tt-notfound {
    text-align: center;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 43 - TT-CONTACT */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-contact-wrapper {
  position: relative;
  padding: 40px 10px;
  border: 1px solid #e5e5e5;
}

.tt-contact {
  position: relative;
  padding: 0 20px;
}

.tt-contact:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -15px;
  width: 1px;
  height: 100%;
  background: #ebebeb;
}

.tt-contact-img {
  float: left;
  width: 50px;
  height: 50px;
  font-size: 30px;
  line-height: 48px;
  border: 1px solid #e1ba60;
  text-align: center;
  color: #e1ba60;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.tt-contact-info {
  padding-left: 80px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: #898989;
  padding-top: 2px;
}

.tt-contact-info a {
  color: #898989;
}

.tt-contact-info a:hover {
  color: #cca15a;
}

.tt-contact.first:before {
  display: none;
}

@media (max-width: 991px) {
  .tt-contact {
    text-align: center;
  }
  .tt-contact-img {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
  .tt-contact-info {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .tt-contact-wrapper {
    padding: 30px 10px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 44 - TT-CONTACT-FORM */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-contact-form .c-input-1 {
  margin-bottom: 20px;
}

.tt-contact-form .c-area-1 {
  margin-bottom: 30px;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 45 - TT-CONTACT-MAP */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-contact-map {
  height: 428px;
}

@media (max-width: 767px) {
  .tt-contact-map {
    height: 300px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 46 - TT-PRODUCT */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-product {
  border: 1px solid #e9e9e9;
  text-align: center;
}

.tt-product-img {
  border-bottom: 1px solid #e9e9e9;
}

.tt-product-info {
  background: #f9f9f9;
  padding: 26px 15px;
}

.tt-product-title {
  display: inline-block;
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
  color: #242424;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tt-product-title:hover {
  color: #cfa35b;
}

.tt-product-rating {
  margin-bottom: 5px;
}

.tt-product-rating .fa {
  margin-right: 3px;
  color: #cfa35b;
}

.tt-product-rating .fa:last-child {
  margin-right: 0;
}

.tt-product-price {
  font-family: 'PT Serif';
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  color: #2d2d2d;
  font-style: italic;
  margin-bottom: 13px;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 47 - TT-PRODUCT-2 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-product-2-img {
  float: left;
  display: block;
  width: 120px;
  border: 1px solid #f0f0f0;
}

.tt-product-2-info {
  padding-left: 150px;
}

.tt-product-2-title {
  display: block;
  font-family: 'Raleway';
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tt-product-2-title:hover {
  color: #cfa35b;
}

.tt-product-2-link {
  font-family: 'Raleway';
  font-size: 13px;
  line-height: 19px;
  font-weight: 500;
  color: #eba42c;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tt-product-2-link:hover {
  color: #000;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 48 - TT-MPRODUCT */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-mproduct-img {
  display: inline-block;
  border: 1px solid #f4f4f4;
}

.tt-mproduct-title {
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 18px;
}

.tt-mproduct-info .simple-text {
  padding-bottom: 25px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 25px;
}

.tt-mproduct-price {
  font-family: 'PT Serif';
  font-size: 26px;
  line-height: 26px;
  font-weight: 400;
  color: #fb3a0e;
  font-style: italic;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.tt-mproduct-price span {
  display: inline-block;
  font-family: 'Raleway';
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  font-style: normal;
  color: #999;
  vertical-align: middle;
  margin-right: 7px;
}

.tt-mproduct-quantity {
  margin-bottom: 46px;
}

.tt-mproduct-quantity span {
  display: inline-block;
  font-family: 'Raleway';
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  font-style: normal;
  color: #999;
  vertical-align: middle;
  margin-right: 7px;
}

@media (max-width: 767px) {
  .tt-mproduct-quantity {
    margin-bottom: 30px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 49 - TT-TAB-WRAPPER TYPE-1 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-tab-wrapper .tt-tab-info {
  display: none;
}

.tt-tab-wrapper .tt-tab-info.active {
  display: block;
}

.tt-tab-wrapper .tt-tab-select {
  display: none;
}

.tt-tab-wrapper .tt-tab-select select:focus {
  outline: none;
}

.tt-tab-wrapper.type-1 .tt-nav-tab {
  font-size: 0;
}

.tt-tab-wrapper.type-1 .tt-nav-tab-item {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #505050;
  letter-spacing: 0.3px;
  background: #f6f6f7;
  padding: 12px 35px;
  margin-right: 10px;
  border: 1px solid #e3e3e3;
  border-bottom: 0;
  margin-bottom: -1px;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-tab-wrapper.type-1 .tt-nav-tab-item:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #eba42c;
  -webkit-transform: translateX(-100%);
     -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-tab-wrapper.type-1 .tt-nav-tab-item.active {
  z-index: 2;
  background: #fff;
}

.tt-tab-wrapper.type-1 .tt-nav-tab-item.active:before {
  -webkit-transform: translateX(0);
     -moz-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.tt-tab-wrapper.type-1 .tt-tab-select {
  display: none;
  position: relative;
}

.tt-tab-wrapper.type-1 .tt-tabs-content {
  position: relative;
  border: 1px solid #e3e3e3;
  padding: 45px 35px;
  z-index: 1;
}

.tt-tab-wrapper.type-1 .tt-tab-select {
  position: relative;
}

.tt-tab-wrapper.type-1 .tt-tab-select select {
  display: block;
  width: 100%;
  font-weight: 400;
  color: #505050;
  background: transparent;
  border: 1px solid #e3e3e3;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.tt-tab-wrapper.type-1 .tt-tab-select select::-ms-expand {
  display: none;
}

.tt-tab-wrapper.type-1 .tt-tab-select .select-arrow {
  display: block;
  position: absolute;
  top: 1px;
  right: 1px;
  text-align: center;
  background: #e3e3e3;
  color: #fff;
  pointer-events: none;
}

.tt-tab-wrapper.type-1 .tt-tab-select select {
  height: 42px;
  font-size: 14px;
  line-height: 30px;
  padding: 0px 11px;
}

.tt-tab-wrapper.type-1 .tt-tab-select .select-arrow {
  width: 37px;
  height: 40px;
  line-height: 40px;
}

@media (max-width: 991px) {
  .tt-tab-wrapper.type-1 .tt-tab-select {
    display: block;
    margin-bottom: 30px;
  }
  .tt-tab-wrapper.type-1 .tt-nav-tab {
    display: none;
  }
  .tt-tab-wrapper.type-1 .tt-tabs-content {
    padding: 30px 15px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 50 - TT-TAB-WRAPPER TYPE-2 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-tab-wrapper.type-2 .tt-nav-tab-item {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: #242424;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 18px 20px;
  background: #f9f4ef;
  border: 1px solid #e4d7c7;
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

.tt-tab-wrapper.type-2 .tt-nav-tab-item:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c2935a;
  margin-top: -2px;
  -webkit-transform: translateY(100%);
     -moz-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-tab-wrapper.type-2 .tt-nav-tab-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.tt-tab-wrapper.type-2 .tt-nav-tab-item span {
  position: relative;
}

.tt-tab-wrapper.type-2 .tt-nav-tab-item:hover:before,
.tt-tab-wrapper.type-2 .tt-nav-tab-item.active:before {
  margin-top: 0;
  -webkit-transform: translateY(0%);
     -moz-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}

.tt-tab-wrapper.type-2 .tt-nav-tab-item:hover,
.tt-tab-wrapper.type-2 .tt-nav-tab-item.active {
  color: #fff;
}

.tt-tab-wrapper.type-2 .tt-tab-select {
  position: relative;
  background: #fff;
}

.tt-tab-wrapper.type-2 .tt-tab-select select {
  display: block;
  width: 100%;
  font-weight: 400;
  color: #333;
  background: transparent;
  border: 1px solid #d9d9d9;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.tt-tab-wrapper.type-2 .tt-tab-select select::-ms-expand {
  display: none;
}

.tt-tab-wrapper.type-2 .tt-tab-select select:focus {
  outline: none;
}

.tt-tab-wrapper.type-2 .tt-tab-select .select-arrow {
  display: block;
  position: absolute;
  top: 1px;
  right: 1px;
  text-align: center;
  background: #C2935A;
  color: #fff;
  pointer-events: none;
}

.tt-tab-wrapper.type-2 .tt-tab-select select {
  height: 42px;
  font-size: 14px;
  line-height: 30px;
  padding: 0px 11px;
}

.tt-tab-wrapper.type-2 .tt-tab-select .select-arrow {
  width: 37px;
  height: 40px;
  line-height: 40px;
}

@media (max-width: 991px) {
  .tt-tab-wrapper.type-2 .tt-tab-select {
    display: block;
    margin-bottom: 30px;
  }
  .tt-tab-wrapper.type-2 .tt-nav-tab {
    display: none;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 51 - TT-TAB-WRAPPER TYPE-3 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-tab-wrapper.type-3 .tt-nav-tab {
  font-size: 0;
}

.tt-tab-wrapper.type-3 .tt-nav-tab-item {
  display: inline-block;
  position: relative;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #969595;
  letter-spacing: 0.3px;
  background: transparent;
  padding: 15px 25px;
  min-width: 140px;
  text-align: center;
  margin-right: 0;
  border: 1px solid #e3e3e3;
  text-transform: uppercase;
  border-bottom: 0;
  margin-left: -1px;
  margin-bottom: -1px;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: color 300ms ease-in-out;
     -moz-transition: color 300ms ease-in-out;
          transition: color 300ms ease-in-out;
}

.tt-tab-wrapper.type-3 .tt-nav-tab-item:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #c2935a;
  -webkit-transform: translateY(-100%);
     -moz-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-tab-wrapper.type-3 .tt-nav-tab-item:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 5px 0 5px;
  border-color: #c2935a transparent transparent transparent;
  margin-left: -5px;
  -webkit-transform: translateY(-200%);
     -moz-transform: translateY(-200%);
      -ms-transform: translateY(-200%);
          transform: translateY(-200%);
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.tt-tab-wrapper.type-3 .tt-nav-tab-item.active {
  z-index: 2;
  padding-top: 18px;
  padding-bottom: 18px;
  background: #fff;
}

.tt-tab-wrapper.type-3 .tt-nav-tab-item:hover {
  color: #c2935a;
}

.tt-tab-wrapper.type-3 .tt-nav-tab-item:hover:before {
  -webkit-transform: translateY(-200%);
     -moz-transform: translateY(-200%);
      -ms-transform: translateY(-200%);
          transform: translateY(-200%);
}

.tt-tab-wrapper.type-3 .tt-nav-tab-item.active {
  color: #c2935a;
}

.tt-tab-wrapper.type-3 .tt-nav-tab-item.active:before {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.tt-tab-wrapper.type-3 .tt-nav-tab-item.active:after {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.tt-tab-wrapper.type-3 .tt-tab-select {
  display: none;
  position: relative;
}

.tt-tab-wrapper.type-3 .tt-tabs-content {
  position: relative;
  border: 1px solid #e3e3e3;
  padding: 29px;
  z-index: 1;
}

.tt-tab-wrapper.type-3 .tt-tab-select {
  position: relative;
}

.tt-tab-wrapper.type-3 .tt-tab-select select {
  display: block;
  width: 100%;
  font-weight: 400;
  color: #505050;
  background: transparent;
  border: 1px solid #e3e3e3;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.tt-tab-wrapper.type-3 .tt-tab-select select::-ms-expand {
  display: none;
}

.tt-tab-wrapper.type-3 .tt-tab-select .select-arrow {
  display: block;
  position: absolute;
  top: 1px;
  right: 1px;
  text-align: center;
  background: #e3e3e3;
  color: #fff;
  pointer-events: none;
}

.tt-tab-wrapper.type-3 .tt-tab-select select {
  height: 42px;
  font-size: 14px;
  line-height: 30px;
  padding: 0px 11px;
}

.tt-tab-wrapper.type-3 .tt-tab-select .select-arrow {
  width: 37px;
  height: 40px;
  line-height: 40px;
}

@media (max-width: 991px) {
  .tt-tab-wrapper.type-3 .tt-tab-select {
    display: block;
    margin-bottom: 30px;
  }
  .tt-tab-wrapper.type-3 .tt-nav-tab {
    display: none;
  }
  .tt-tab-wrapper.type-3 .tt-tabs-content {
    padding: 30px 15px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 52 - TT-PROJECT-DETAIL */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-project-detail-entry {
  padding-top: 25px;
  padding-bottom: 27px;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.tt-project-detail-info {
  padding-top: 25px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e3e3e3;
}

.tt-project-detail-block {
  background: #f5f5f5;
  padding: 39px 40px 59px 40px;
}

@media (max-width: 767px) {
  .tt-project-detail-block {
    padding: 15px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 53 - TT-FILTER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
@media (max-width: 991px) {
  .isotope-filter {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 54 - TT-BROSHURE */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-broshure {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 20px 60px 20px 26px;
  background: #c2935a;
}

.tt-broshure:before {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid #fff;
  opacity: 0.3;
}

.tt-broshure .fa {
  position: absolute;
  top: 50%;
  right: 7px;
  font-size: 26px;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.tt-broshure:hover {
  background: #242424;
  color: #fff;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 55 - CUSTOM MARGINS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.marg-lg-b0 {
  height: 0px;
}

.marg-lg-b5 {
  height: 5px;
}

.marg-lg-b10 {
  height: 10px;
}

.marg-lg-b15 {
  height: 15px;
}

.marg-lg-b20 {
  height: 20px;
}

.marg-lg-b25 {
  height: 25px;
}

.marg-lg-b30 {
  height: 30px;
}

.marg-lg-b35 {
  height: 35px;
}

.marg-lg-b40 {
  height: 40px;
}

.marg-lg-b45 {
  height: 45px;
}

.marg-lg-b50 {
  height: 50px;
}

.marg-lg-b55 {
  height: 55px;
}

.marg-lg-b60 {
  height: 60px;
}

.marg-lg-b65 {
  height: 65px;
}

.marg-lg-b70 {
  height: 70px;
}

.marg-lg-b75 {
  height: 75px;
}

.marg-lg-b80 {
  height: 80px;
}

.marg-lg-b85 {
  height: 85px;
}

.marg-lg-b90 {
  height: 90px;
}

.marg-lg-b95 {
  height: 95px;
}

.marg-lg-b100 {
  height: 100px;
}

.marg-lg-b105 {
  height: 105px;
}

.marg-lg-b110 {
  height: 110px;
}

.marg-lg-b115 {
  height: 115px;
}

.marg-lg-b120 {
  height: 120px;
}

.marg-lg-b125 {
  height: 125px;
}

.marg-lg-b130 {
  height: 130px;
}

.marg-lg-b135 {
  height: 135px;
}

.marg-lg-b140 {
  height: 140px;
}

.marg-lg-b145 {
  height: 145px;
}

.marg-lg-b150 {
  height: 150px;
}

.marg-lg-b155 {
  height: 155px;
}

.marg-lg-b160 {
  height: 160px;
}

.marg-lg-b165 {
  height: 165px;
}

.marg-lg-b170 {
  height: 170px;
}

.marg-lg-b175 {
  height: 175px;
}

.marg-lg-b180 {
  height: 180px;
}

.marg-lg-b185 {
  height: 185px;
}

.marg-lg-b190 {
  height: 190px;
}

.marg-lg-b195 {
  height: 195px;
}

.marg-lg-b200 {
  height: 200px;
}

.marg-lg-b205 {
  height: 205px;
}

.marg-lg-b210 {
  height: 210px;
}

@media (max-width: 1199px) {
  .marg-md-b0 {
    height: 0px !important;
  }
  .marg-md-b5 {
    height: 5px !important;
  }
  .marg-md-b10 {
    height: 10px !important;
  }
  .marg-md-b15 {
    height: 15px !important;
  }
  .marg-md-b20 {
    height: 20px !important;
  }
  .marg-md-b25 {
    height: 25px !important;
  }
  .marg-md-b30 {
    height: 30px !important;
  }
  .marg-md-b35 {
    height: 35px !important;
  }
  .marg-md-b40 {
    height: 40px !important;
  }
  .marg-md-b45 {
    height: 45px !important;
  }
  .marg-md-b50 {
    height: 50px !important;
  }
  .marg-md-b55 {
    height: 55px !important;
  }
  .marg-md-b60 {
    height: 60px !important;
  }
  .marg-md-b65 {
    height: 65px !important;
  }
  .marg-md-b70 {
    height: 70px !important;
  }
  .marg-md-b75 {
    height: 75px !important;
  }
  .marg-md-b80 {
    height: 80px !important;
  }
  .marg-md-b85 {
    height: 85px !important;
  }
  .marg-md-b90 {
    height: 90px !important;
  }
  .marg-md-b95 {
    height: 95px !important;
  }
  .marg-md-b100 {
    height: 100px !important;
  }
  .marg-md-b105 {
    height: 105px !important;
  }
  .marg-md-b110 {
    height: 110px !important;
  }
  .marg-md-b115 {
    height: 115px !important;
  }
  .marg-md-b120 {
    height: 120px !important;
  }
  .marg-md-b125 {
    height: 125px !important;
  }
  .marg-md-b130 {
    height: 130px !important;
  }
  .marg-md-b135 {
    height: 135px !important;
  }
  .marg-md-b140 {
    height: 140px !important;
  }
  .marg-md-b145 {
    height: 145px !important;
  }
  .marg-md-b150 {
    height: 150px !important;
  }
  .marg-md-b155 {
    height: 155px !important;
  }
  .marg-md-b160 {
    height: 160px !important;
  }
  .marg-md-b165 {
    height: 165px !important;
  }
  .marg-md-b170 {
    height: 170px !important;
  }
  .marg-md-b175 {
    height: 175px !important;
  }
  .marg-md-b180 {
    height: 180px !important;
  }
  .marg-md-b185 {
    height: 185px !important;
  }
  .marg-md-b190 {
    height: 190px !important;
  }
  .marg-md-b195 {
    height: 195px !important;
  }
  .marg-md-b200 {
    height: 200px !important;
  }
  .marg-md-b205 {
    height: 205px !important;
  }
  .marg-md-b210 {
    height: 210px !important;
  }
}

@media (max-width: 991px) {
  .marg-sm-b0 {
    height: 0px !important;
  }
  .marg-sm-b5 {
    height: 5px !important;
  }
  .marg-sm-b10 {
    height: 10px !important;
  }
  .marg-sm-b15 {
    height: 15px !important;
  }
  .marg-sm-b20 {
    height: 20px !important;
  }
  .marg-sm-b25 {
    height: 25px !important;
  }
  .marg-sm-b30 {
    height: 30px !important;
  }
  .marg-sm-b35 {
    height: 35px !important;
  }
  .marg-sm-b40 {
    height: 40px !important;
  }
  .marg-sm-b45 {
    height: 45px !important;
  }
  .marg-sm-b50 {
    height: 50px !important;
  }
  .marg-sm-b55 {
    height: 55px !important;
  }
  .marg-sm-b60 {
    height: 60px !important;
  }
  .marg-sm-b65 {
    height: 65px !important;
  }
  .marg-sm-b70 {
    height: 70px !important;
  }
  .marg-sm-b75 {
    height: 75px !important;
  }
  .marg-sm-b80 {
    height: 80px !important;
  }
  .marg-sm-b85 {
    height: 85px !important;
  }
  .marg-sm-b90 {
    height: 90px !important;
  }
  .marg-sm-b95 {
    height: 95px !important;
  }
  .marg-sm-b100 {
    height: 100px !important;
  }
  .marg-sm-b105 {
    height: 105px !important;
  }
  .marg-sm-b110 {
    height: 110px !important;
  }
  .marg-sm-b115 {
    height: 115px !important;
  }
  .marg-sm-b120 {
    height: 120px !important;
  }
  .marg-sm-b125 {
    height: 125px !important;
  }
  .marg-sm-b130 {
    height: 130px !important;
  }
  .marg-sm-b135 {
    height: 135px !important;
  }
  .marg-sm-b140 {
    height: 140px !important;
  }
  .marg-sm-b145 {
    height: 145px !important;
  }
  .marg-sm-b150 {
    height: 150px !important;
  }
  .marg-sm-b155 {
    height: 155px !important;
  }
  .marg-sm-b160 {
    height: 160px !important;
  }
  .marg-sm-b165 {
    height: 165px !important;
  }
  .marg-sm-b170 {
    height: 170px !important;
  }
  .marg-sm-b175 {
    height: 175px !important;
  }
  .marg-sm-b180 {
    height: 180px !important;
  }
  .marg-sm-b185 {
    height: 185px !important;
  }
  .marg-sm-b190 {
    height: 190px !important;
  }
  .marg-sm-b195 {
    height: 195px !important;
  }
  .marg-sm-b200 {
    height: 200px !important;
  }
  .marg-sm-b205 {
    height: 205px !important;
  }
  .marg-sm-b210 {
    height: 210px !important;
  }
}

@media (max-width: 767px) {
  .marg-xs-b0 {
    height: 0px !important;
  }
  .marg-xs-b5 {
    height: 5px !important;
  }
  .marg-xs-b10 {
    height: 10px !important;
  }
  .marg-xs-b15 {
    height: 15px !important;
  }
  .marg-xs-b20 {
    height: 20px !important;
  }
  .marg-xs-b25 {
    height: 25px !important;
  }
  .marg-xs-b30 {
    height: 30px !important;
  }
  .marg-xs-b35 {
    height: 35px !important;
  }
  .marg-xs-b40 {
    height: 40px !important;
  }
  .marg-xs-b45 {
    height: 45px !important;
  }
  .marg-xs-b50 {
    height: 50px !important;
  }
  .marg-xs-b55 {
    height: 55px !important;
  }
  .marg-xs-b60 {
    height: 60px !important;
  }
  .marg-xs-b65 {
    height: 65px !important;
  }
  .marg-xs-b70 {
    height: 70px !important;
  }
  .marg-xs-b75 {
    height: 75px !important;
  }
  .marg-xs-b80 {
    height: 80px !important;
  }
  .marg-xs-b85 {
    height: 85px !important;
  }
  .marg-xs-b90 {
    height: 90px !important;
  }
  .marg-xs-b95 {
    height: 95px !important;
  }
  .marg-xs-b100 {
    height: 100px !important;
  }
  .marg-xs-b105 {
    height: 105px !important;
  }
  .marg-xs-b110 {
    height: 110px !important;
  }
  .marg-xs-b115 {
    height: 115px !important;
  }
  .marg-xs-b120 {
    height: 120px !important;
  }
  .marg-xs-b125 {
    height: 125px !important;
  }
  .marg-xs-b130 {
    height: 130px !important;
  }
  .marg-xs-b135 {
    height: 135px !important;
  }
  .marg-xs-b140 {
    height: 140px !important;
  }
  .marg-xs-b145 {
    height: 145px !important;
  }
  .marg-xs-b150 {
    height: 150px !important;
  }
  .marg-xs-b155 {
    height: 155px !important;
  }
  .marg-xs-b160 {
    height: 160px !important;
  }
  .marg-xs-b165 {
    height: 165px !important;
  }
  .marg-xs-b170 {
    height: 170px !important;
  }
  .marg-xs-b175 {
    height: 175px !important;
  }
  .marg-xs-b180 {
    height: 180px !important;
  }
  .marg-xs-b185 {
    height: 185px !important;
  }
  .marg-xs-b190 {
    height: 190px !important;
  }
  .marg-xs-b195 {
    height: 195px !important;
  }
  .marg-xs-b200 {
    height: 200px !important;
  }
  .marg-xs-b205 {
    height: 205px !important;
  }
  .marg-xs-b210 {
    height: 210px !important;
  }
}
