.rg-view{
	display: none;
}

.rg-thumbs {
	padding-top: 10px;
}

.rg-image-wrapper{
	position:relative;
	padding:20px 30px;
	background:transparent url(/assets/gallery/responsive/icons/black.png) repeat top left;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	min-height:20px;
}
.rg-image{
	position:relative;
	text-align:center;
	line-height:0px;
}
.rg-image img{
	max-height:100%;
	max-width:100%;
}
.rg-image-nav a{
	position:absolute;
	top:0px;
	left:0px;
	background:#000 url(/assets/gallery/responsive/icons/nav.png) no-repeat -20% 50%;
	width:28px;
	height:100%;
	text-indent:-9000px;
	cursor:pointer;
	opacity:0.3;
	outline:none;
	-moz-border-radius: 10px 0px 0px 10px;
	-webkit-border-radius: 10px 0px 0px 10px;
	border-radius: 10px 0px 0px 10px;
}
.rg-image-nav a.rg-image-nav-next{
	right:0px;
	left:auto;
	background-position:115% 50%;
	-moz-border-radius: 0px 10px 10px 0px;
	-webkit-border-radius: 0px 10px 10px 0px;
	border-radius: 0px 10px 10px 0px;
}
.rg-image-nav a:hover{
	opacity:0.8;
}
.rg-caption {
	text-align:center;
	margin-top:15px;
	position:relative;
}
.rg-caption p{
	font-size:11px;
	letter-spacing:2px;
	font-family: 'Trebuchet MS', 'Myriad Pro', Arial, sans-serif;
	line-height:16px;
	padding:0 15px;
	text-transform:uppercase;
}
.rg-view{
	height:30px;
}
.rg-view a{
	display:block;
	float:right;
	width:16px;
	height:16px;
	margin-right:3px;
	background:#464646 url(/assets/gallery/responsive/icons/views.png) no-repeat top left;
	border:3px solid #464646;
	opacity:0.8;
}
.rg-view a:hover{
	opacity:1.0;
}
.rg-view a.rg-view-full{
	background-position:0px 0px;
}
.rg-view a.rg-view-selected{
	background-color:#6f6f6f;
	border-color:#6f6f6f;
}
.rg-view a.rg-view-thumbs{
	background-position:0px -16px;
}
.rg-loading{
	width:46px;
	height:46px;
	position:absolute;
	top:50%;
	left:50%;
	background:#000 url(/assets/gallery/responsive/icons/ajax-loader.gif) no-repeat center center;
	margin:-23px 0px 0px -23px;
	z-index:100;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	opacity:0.7;
}
/*----------------------------
  Thumbnails
-----------------------------*/

#thumbs{
  width:480px;
  margin:60px auto 35px;
  text-align:center;
}

#thumbs a{
  width:120px;
  height:120px;
  display:inline-block;
  border:7px solid #303030;
  box-shadow:0 1px 3px rgba(0,0,0,0.5);
  border-radius:4px;
  margin: 6px 6px 40px;
  position:relative;
  text-decoration:none;

  background-position:center center;
  background-repeat: no-repeat;

  background-size:cover;
  -moz-background-size:cover;
  -webkit-background-size:cover;
}

#thumbs a:after{
  background-color: #303030;
    border-radius: 7px;
    bottom: -136px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    content: attr(title);
    display: inline-block;
    font-size: 10px;
    max-width: 90px;
    overflow: hidden;
    padding: 2px 10px;
    position: relative;
    text-align: center;
    white-space: nowrap;
}

/* The gallery overlay */

#galleryOverlay{
  width:100%;
  height:100%;
  position:fixed;
  top:0;
  left:0;
  opacity:0;
  z-index:100000;
  background-color:#222;
  background-color:rgba(0,0,0,0.8);
  overflow:hidden;
  display:none;

  -moz-transition:opacity 1s ease;
  -webkit-transition:opacity 1s ease;
  transition:opacity 1s ease;
}

/* This class will trigger the animation */

#galleryOverlay.visible{
  opacity:1;
}

#gallerySlider{
  height:100%;

  left:0;
  top:0;

  width:100%;
  white-space: nowrap;
  position:absolute;

  -moz-transition:left 0.4s ease;
  -webkit-transition:left 0.4s ease;
  transition:left 0.4s ease;
}

#gallerySlider .placeholder{
  background: url(/assets/gallery/touch_touch/preloader.gif) no-repeat center center;
  height: 100%;
  line-height: 1px;
  text-align: center;
  width:100%;
  display:inline-block;
}

/* The before element moves the
 * image halfway from the top */

#gallerySlider .placeholder:before{
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right:-1px;
}

#gallerySlider .placeholder img{
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
}

#gallerySlider.rightSpring{
  -moz-animation: rightSpring 0.3s;
  -webkit-animation: rightSpring 0.3s;
}

#gallerySlider.leftSpring{
  -moz-animation: leftSpring 0.3s;
  -webkit-animation: leftSpring 0.3s;
}

/* Firefox Keyframe Animations */

@-moz-keyframes rightSpring{
  0%{   margin-left:0px;}
  50%{  margin-left:-30px;}
  100%{ margin-left:0px;}
}

@-moz-keyframes leftSpring{
  0%{   margin-left:0px;}
  50%{  margin-left:30px;}
  100%{ margin-left:0px;}
}

/* Safari and Chrome Keyframe Animations */

@-webkit-keyframes rightSpring{
  0%{   margin-left:0px;}
  50%{  margin-left:-30px;}
  100%{ margin-left:0px;}
}

@-webkit-keyframes leftSpring{
  0%{   margin-left:0px;}
  50%{  margin-left:30px;}
  100%{ margin-left:0px;}
}

/* Arrows */

#prevArrow,#nextArrow{
  border:none;
  text-decoration:none;
  background:url(/assets/gallery/touch_touch/arrows.png) no-repeat;
  opacity:0.5;
  cursor:pointer;
  position:absolute;
  width:43px;
  height:58px;

  top:50%;
  margin-top:-29px;

  -moz-transition:opacity 0.2s ease;
  -webkit-transition:opacity 0.2s ease;
  transition:opacity 0.2s ease;
}

#prevArrow:hover, #nextArrow:hover{
  opacity:1;
}

#prevArrow{
  background-position:left top;
  left:40px;
}

#nextArrow{
  background-position:right top;
  right:40px;
}
.social-share-button .ssb-icon {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  display: inline-block;
  height: 18px;
  width: 18px;
}

.social-share-button .ssb-twitter {
  background-image: url(/assets/social-share-button/twitter-2502f7ad8f4afeffbff4e6eed03b335aaed126ad46f400fa6faf6f094c942c5c.svg);
}

.social-share-button .ssb-facebook {
  background-image: url(/assets/social-share-button/facebook-54e5efab1114d2fce5bd1e97dbc835d64716b2ece5ec66e94971dbf8e1b79a9f.svg);
}

.social-share-button .ssb-google_bookmark {
  background-image: url(/assets/social-share-button/google_bookmark-191f7cdd673364502bd1d82b86afa43662c18229fa55be98fe9e72fe6f4b3901.svg);
}

.social-share-button .ssb-weibo {
  background-image: url(/assets/social-share-button/weibo-1df44826a7c24ae3077aa91d9c122227bf637cdb5c18ad859712845f428e199c.svg);
}

.social-share-button .ssb-qq {
  background-image: url(/assets/social-share-button/qq-8f09f610060c8b5ebb5fb89241ed1052b6d26060593dd05bbf9fa8fc3727cf21.svg);
}

.social-share-button .ssb-delicious {
  background-image: url(/assets/social-share-button/delicious-81d1274c24d3a999420ea435592e7b1b93320849dee03f483c0ef93aadc3a95b.svg);
}

.social-share-button .ssb-linkedin {
  background-image: url(/assets/social-share-button/linkedin-23adab9c681a975a5acbaf8eda2ce14f0e8310e0b3ee69974d626e7ee6726874.svg);
}

.social-share-button .ssb-tumblr {
  background-image: url(/assets/social-share-button/tumblr-d45828bc49a1a8ad68beaf83fc9a5a97c36e5e406a9f10821041269b6ba84671.svg);
}

.social-share-button .ssb-pinterest {
  background-image: url(/assets/social-share-button/pinterest-dba73c0907073b639866ff8c43667554d275db235389be73a38feec63c15641e.svg);
}

.social-share-button .ssb-douban {
  background-image: url(/assets/social-share-button/douban-5d7fc85f4526429e7ffc3e2caae20461b95050d2cabb3f3ecdf812570da867f4.svg);
}

.social-share-button .ssb-wechat {
  background-image: url(/assets/social-share-button/wechat-8c51c67a84237282f5357cb1eb53608b40bdcc303cef32e90309501753150ab5.svg);
}

.social-share-button .ssb-vkontakte {
  background-image: url(/assets/social-share-button/vkontakte-947f8b841c8b1215b9d43b467e277f7b31f36121f65689b3215d220ea8729b99.svg);
}

.social-share-button .ssb-odnoklassniki {
  background-image: url(/assets/social-share-button/odnoklassniki-f9edd0fe40ddc40475581a3eaea547f6ab377c97cc1a51b8979aadab8a92e339.svg);
}

.social-share-button .ssb-xing {
  background-image: url(/assets/social-share-button/xing-30090ef8dfae9e7eb001f56a0ed43474cf77c4f3297796fc9ea7bb0bcf06ad13.svg);
}

.social-share-button .ssb-email {
  background-image: url(/assets/social-share-button/email-b97017b1c74824f8fa43c1b95b540698cccf5cfe132125ab8b7b58e6eafa61da.svg);
}

.social-share-button .ssb-reddit {
  background-image: url(/assets/social-share-button/reddit-c03bb6f6158a42fd64ac4ddc8fda3cf7465a54de62b328bb0f1b52c990fc9c52.svg);
}

.social-share-button .ssb-hacker_news {
  background-image: url(/assets/social-share-button/hacker_news-7f79acd6fb1a7615fec98e6029c64be2388d302309241e3ad2124474157ec981.svg);
}

.social-share-button .ssb-telegram {
  background-image: url(/assets/social-share-button/telegram-caa502f9ba1666889e8d1db4ec448fd3c7db468830175cc96b2bfd592a2bc28e.svg);
}

.social-share-button .ssb-whatsapp_app,
.social-share-button .ssb-whatsapp_web {
  background-image: url(/assets/social-share-button/whatsapp-92378ad2de16ced1664e9f5f6069dc1e145987f4dae3a3f91bce22bb651ee8f3.svg);
}

.ss-wechat-dialog {
  width: 300px;
  position: fixed;
  background: #fff;
  padding: 15px;
  border-radius: 3px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  z-index: 11001;
  font-size: 14px;
  line-height: 1.2em;
}

.ss-wechat-dialog .wechat-popup-header {
  font-weight: bold;
}

.ss-wechat-dialog .wechat-dialog-qr {
  text-align: center;
  margin: 25px 0;
}

.ss-wechat-dialog .wechat-popup-close {
  width: 16px;
  height: 16px;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #999;
  text-decoration: none;
  font-size: 16px;
}

.ss-wechat-dialog .wechat-popup-footer {
  text-align: left;
  line-height: 22px;
  color: #666;
}
/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-bacteria:before {
  content: "\e059";
}

.fa-bacterium:before {
  content: "\e05a";
}

.fa-bahai:before {
  content: "\f666";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-tissue:before {
  content: "\e05b";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caravan:before {
  content: "\f8ff";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-disease:before {
  content: "\f7fa";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-faucet:before {
  content: "\e005";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-medical:before {
  content: "\e05c";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-sparkles:before {
  content: "\e05d";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-wash:before {
  content: "\e05e";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-handshake-alt-slash:before {
  content: "\e05f";
}

.fa-handshake-slash:before {
  content: "\e060";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-cowboy:before {
  content: "\f8c0";
}

.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-head-side-cough:before {
  content: "\e061";
}

.fa-head-side-cough-slash:before {
  content: "\e062";
}

.fa-head-side-mask:before {
  content: "\e063";
}

.fa-head-side-virus:before {
  content: "\e064";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hospital-user:before {
  content: "\f80d";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-house-user:before {
  content: "\e065";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-innosoft:before {
  content: "\e080";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-house:before {
  content: "\e066";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lungs-virus:before {
  content: "\e067";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse:before {
  content: "\f8cc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-arrows:before {
  content: "\e068";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-plane-slash:before {
  content: "\e069";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pump-medical:before {
  content: "\e06a";
}

.fa-pump-soap:before {
  content: "\e06b";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-record-vinyl:before {
  content: "\f8d9";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-virus:before {
  content: "\e06c";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sink:before {
  content: "\e06d";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-soap:before {
  content: "\e06e";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-stopwatch-20:before {
  content: "\e06f";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-store-alt-slash:before {
  content: "\e070";
}

.fa-store-slash:before {
  content: "\e071";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-slash:before {
  content: "\e072";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-trailer:before {
  content: "\e041";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-unity:before {
  content: "\e049";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-users-slash:before {
  content: "\e073";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-vest:before {
  content: "\e085";
}

.fa-vest-patches:before {
  content: "\e086";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-virus:before {
  content: "\e074";
}

.fa-virus-slash:before {
  content: "\e075";
}

.fa-viruses:before {
  content: "\e076";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/assets/fa-brands-400-383304f0c12a34e8cd347f0ee5f917e544af03a3216c493449ea6451ac56e807.eot);
  src: url(/assets/fa-brands-400-383304f0c12a34e8cd347f0ee5f917e544af03a3216c493449ea6451ac56e807.eot?#iefix) format("embedded-opentype"), url(/assets/fa-brands-400-368efa1ccd89240afa3573cdf41f670c9f481624df11e52baf64d0c65eba2808.woff2) format("woff2"), url(/assets/fa-brands-400-ef710b9f0f1a3a54058a71e446c8858bf56814b9c1d8237c7df773cb1539a0d8.woff) format("woff"), url(/assets/fa-brands-400-8e293dbb2268acc7f04ad21481bd8b5bd7897fc06b04689027162f4e10696b87.ttf) format("truetype"), url(/assets/fa-brands-400-748607ce17807d4efaaa6a8b1beba2e58d3c06a05f7d68d5e4b88b5debca16f1.svg#fontawesome) format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/assets/fa-regular-400-30e8a3ecc71422a1e44554890f09ccea0c508a14ef40571aa5f94ddd943c2225.eot);
  src: url(/assets/fa-regular-400-30e8a3ecc71422a1e44554890f09ccea0c508a14ef40571aa5f94ddd943c2225.eot?#iefix) format("embedded-opentype"), url(/assets/fa-regular-400-0f22c99348454f1d9c45e2dde971e609fcc0efc5b9dd9327a3ccc08c10e08bf9.woff2) format("woff2"), url(/assets/fa-regular-400-9dc58c3d9e13d5baaac2976e5f97270e2750537043fb8728fb771096769410d4.woff) format("woff"), url(/assets/fa-regular-400-5544e5658e996cd7af58dc794abcccf111ce23d6537cc2c5cd3da5e5151520df.ttf) format("truetype"), url(/assets/fa-regular-400-5f46504664459d0dfcf0307e4fea735a4c16422236b0ef8255fc6dda1887b48c.svg#fontawesome) format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/assets/fa-solid-900-3715aac118ded487882b745da924ead1d4f8db0e7910b48a2a200170fa700dc3.eot);
  src: url(/assets/fa-solid-900-3715aac118ded487882b745da924ead1d4f8db0e7910b48a2a200170fa700dc3.eot?#iefix) format("embedded-opentype"), url(/assets/fa-solid-900-48369765305052ce07668e5a3422d27e141dfe7af953b3035777d149338dfff2.woff2) format("woff2"), url(/assets/fa-solid-900-60015d94505dcfaff3bb20aa603db1cb9cfd93c6b8543b3e4d06500b544cf260.woff) format("woff"), url(/assets/fa-solid-900-92564f6b3d152c74f4fbe0cdff92745fde967f27440d550a9e87f64d9ca268db.ttf) format("truetype"), url(/assets/fa-solid-900-cf3c9999ab14d4df1bc70525d587cd0c2e31e9c43c41939a9f0ec0559a783fd2.svg#fontawesome) format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.fa5-text {
  padding-left: 5px;
}

.fa5-text-r {
  padding-right: 5px;
}
@charset "UTF-8";
.service-page {
  padding-bottom: 50px;
}
.service-page .service-hero {
  margin: 20px 0;
}
.service-page .service-hero img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 400px;
}
.service-page h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1a1a1a;
}
.service-page .service-intro {
  background-color: #ffc200;
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .service-page .service-intro {
    flex-direction: column;
    align-items: flex-start;
  }
}
.service-page .service-intro .intro-text {
  flex: 1;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .service-page .service-intro .intro-text {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.service-page .service-intro .intro-text h3 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 0;
}
.service-page .service-intro .intro-text p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.service-page .service-intro .btn-dark {
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}
.service-page .service-intro .btn-dark:hover {
  background-color: #333;
}
.service-page h2, .service-page h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
}
.service-page .service-content {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}
.service-page .service-content p {
  margin-bottom: 10px;
}
.service-page .service-content ul {
  list-style-type: disc;
  padding-left: 20px;
}
.service-page .service-content ul li {
  margin-bottom: 8px;
}
.service-page .service-gallery {
  margin-top: 40px;
}
.service-page .service-gallery h3 {
  text-align: center;
  margin-bottom: 20px;
}
.service-page .service-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .service-page .service-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .service-page .service-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.service-page .service-gallery .gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.service-page .service-gallery .gallery-grid img:hover {
  transform: scale(1.03);
}
.service-page .other-services {
  margin-top: 50px;
}
.service-page .other-services h3 {
  text-align: center;
  margin-bottom: 30px;
}
.service-page .other-services .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .service-page .other-services .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .service-page .other-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .service-page .other-services .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-page .other-services .services-grid .service-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-page .other-services .services-grid .service-card h4 {
  font-weight: bold;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 10px;
}
.service-page .other-services .services-grid .service-card p {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
  flex: 1;
}
.service-page .other-services .services-grid .service-card .icon {
  align-self: flex-end;
  width: 30px;
  height: 30px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.service-page .other-services .services-grid .service-card .icon i {
  font-size: 12px;
}
.service-page .other-services .services-grid .service-card:hover {
  background-color: #ffc200;
  transform: translateY(-5px);
}
.service-page .other-services .services-grid .service-card:hover p {
  color: #333;
}
.service-page .other-services .services-grid .service-card:hover .icon {
  background: #000;
  color: #fff;
}

/* --- Services Index Page Styles --- */
.service-index-page {
  padding-bottom: 40px;
}
.service-index-page h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1a1a1a;
}
.service-index-page .services-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
}
@media (max-width: 991px) {
  .service-index-page .services-index-grid {
    grid-template-columns: 1fr;
  }
}
.service-index-page .services-index-grid .service-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.service-index-page .services-index-grid .service-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.service-index-page .services-index-grid .service-box__icon {
  width: 65px;
  height: 65px;
  background-color: #ffc200;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 25px;
}
.service-index-page .services-index-grid .service-box__icon i {
  font-size: 26px;
  color: #1a1a1a;
}
.service-index-page .services-index-grid .service-box__content {
  display: flex;
  flex-direction: column;
}
.service-index-page .services-index-grid .service-box__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #1a1a1a;
}
.service-index-page .services-index-grid .service-box__desc {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.service-index-sections {
  margin-top: 50px;
  background-color: #fcfcfc;
}

.service-hero {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.service-hero .service-hero__overlay {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 900px;
}
.service-hero .service-hero__overlay h1 {
  margin: 0;
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}
.service-intro .intro-text {
  flex: 1;
}
.service-intro .intro-text h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
.service-intro .intro-text p {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #666;
}
.service-intro .btn-dark {
  padding: 15px 30px !important;
  background: #000 !important;
  color: #fff !important;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s;
}
.service-intro .btn-dark:hover {
  background: #fecb00 !important;
  color: #000 !important;
}

.service-content {
  margin-bottom: 80px;
}
.service-content h2, .service-content h3, .service-content h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.service-content h3 {
  font-size: 1.5rem;
  margin: 40px 0 20px;
}
.service-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #444;
}
.service-content ul {
  list-style: none;
  padding: 0;
}
.service-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.service-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fecb00;
  font-weight: bold;
}

.service-gallery {
  margin-bottom: 100px;
}
.service-gallery h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.service-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.service-gallery .gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s;
  cursor: pointer;
}
.service-gallery .gallery-grid img:hover {
  transform: scale(1.02);
}

/* --- Home Page: Photo Service Cards --- */
.services-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .services-photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .services-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .services-photo-grid {
    grid-template-columns: 1fr;
  }
}

.service-photo-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  min-height: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.service-photo-card:hover .service-photo-card__overlay {
  background: rgba(0, 0, 0, 0.55);
}
.service-photo-card:hover .service-photo-card__link {
  opacity: 1;
  transform: translateY(0);
}
.service-photo-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.service-photo-card__img--placeholder {
  background-color: #333;
}
.service-photo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  transition: background 0.3s ease;
}
.service-photo-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 220px;
  padding: 20px;
}
.service-photo-card__title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px 0;
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.service-photo-card__link {
  color: #ffc200;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}


/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */

@-webkit-keyframes bounce{0%,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{0%,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;-webkit-transform-origin:center bottom;animation-name:bounce;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-name:headShake;-webkit-animation-timing-function:ease-in-out;animation-name:headShake;animation-timing-function:ease-in-out}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.swing{-webkit-animation-name:swing;-webkit-transform-origin:top center;animation-name:swing;transform-origin:top center}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{-webkit-animation-name:jello;-webkit-transform-origin:center;animation-name:jello;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.heartBeat{-webkit-animation-duration:1.3s;-webkit-animation-name:heartBeat;-webkit-animation-timing-function:ease-in-out;animation-duration:1.3s;animation-name:heartBeat;animation-timing-function:ease-in-out}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{-webkit-transform:scale3d(1.03,1.03,1.03);opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{-webkit-transform:scaleX(1);opacity:1;transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{-webkit-transform:scale3d(1.03,1.03,1.03);opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{-webkit-transform:scaleX(1);opacity:1;transform:scaleX(1)}}.bounceIn{-webkit-animation-duration:.75s;-webkit-animation-name:bounceIn;animation-duration:.75s;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(0,-3000px,0);opacity:0;transform:translate3d(0,-3000px,0)}60%{-webkit-transform:translate3d(0,25px,0);opacity:1;transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(0,-3000px,0);opacity:0;transform:translate3d(0,-3000px,0)}60%{-webkit-transform:translate3d(0,25px,0);opacity:1;transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(-3000px,0,0);opacity:0;transform:translate3d(-3000px,0,0)}60%{-webkit-transform:translate3d(25px,0,0);opacity:1;transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(-3000px,0,0);opacity:0;transform:translate3d(-3000px,0,0)}60%{-webkit-transform:translate3d(25px,0,0);opacity:1;transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(3000px,0,0);opacity:0;transform:translate3d(3000px,0,0)}60%{-webkit-transform:translate3d(-25px,0,0);opacity:1;transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(3000px,0,0);opacity:0;transform:translate3d(3000px,0,0)}60%{-webkit-transform:translate3d(-25px,0,0);opacity:1;transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(0,3000px,0);opacity:0;transform:translate3d(0,3000px,0)}60%{-webkit-transform:translate3d(0,-20px,0);opacity:1;transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(0,3000px,0);opacity:0;transform:translate3d(0,3000px,0)}60%{-webkit-transform:translate3d(0,-20px,0);opacity:1;transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{-webkit-transform:scale3d(1.1,1.1,1.1);opacity:1;transform:scale3d(1.1,1.1,1.1)}to{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{-webkit-transform:scale3d(1.1,1.1,1.1);opacity:1;transform:scale3d(1.1,1.1,1.1)}to{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}}.bounceOut{-webkit-animation-duration:.75s;-webkit-animation-name:bounceOut;animation-duration:.75s;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{-webkit-transform:translate3d(0,-20px,0);opacity:1;transform:translate3d(0,-20px,0)}to{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{-webkit-transform:translate3d(0,-20px,0);opacity:1;transform:translate3d(0,-20px,0)}to{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{-webkit-transform:translate3d(20px,0,0);opacity:1;transform:translate3d(20px,0,0)}to{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{-webkit-transform:translate3d(20px,0,0);opacity:1;transform:translate3d(20px,0,0)}to{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{-webkit-transform:translate3d(-20px,0,0);opacity:1;transform:translate3d(-20px,0,0)}to{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{-webkit-transform:translate3d(-20px,0,0);opacity:1;transform:translate3d(-20px,0,0)}to{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{-webkit-transform:translate3d(0,20px,0);opacity:1;transform:translate3d(0,20px,0)}to{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{-webkit-transform:translate3d(0,20px,0);opacity:1;transform:translate3d(0,20px,0)}to{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{-webkit-transform:translate3d(0,-100%,0);opacity:0;transform:translate3d(0,-100%,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInDown{0%{-webkit-transform:translate3d(0,-100%,0);opacity:0;transform:translate3d(0,-100%,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInDownBig{0%{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{-webkit-transform:translate3d(-100%,0,0);opacity:0;transform:translate3d(-100%,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInLeft{0%{-webkit-transform:translate3d(-100%,0,0);opacity:0;transform:translate3d(-100%,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{-webkit-transform:translate3d(100%,0,0);opacity:0;transform:translate3d(100%,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInRight{0%{-webkit-transform:translate3d(100%,0,0);opacity:0;transform:translate3d(100%,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInRightBig{0%{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{-webkit-transform:translate3d(0,100%,0);opacity:0;transform:translate3d(0,100%,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInUp{0%{-webkit-transform:translate3d(0,100%,0);opacity:0;transform:translate3d(0,100%,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInUpBig{0%{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{-webkit-transform:translate3d(0,100%,0);opacity:0;transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{-webkit-transform:translate3d(0,100%,0);opacity:0;transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0);opacity:0;transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0);opacity:0;transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0);opacity:0;transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0);opacity:0;transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{-webkit-transform:translate3d(0,-100%,0);opacity:0;transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{-webkit-transform:translate3d(0,-100%,0);opacity:0;transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-animation-timing-function:ease-out;-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)}40%{-webkit-animation-timing-function:ease-out;-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)}50%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)}80%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);animation-timing-function:ease-in;transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg)}to{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);animation-timing-function:ease-in;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg)}}@keyframes flip{0%{-webkit-animation-timing-function:ease-out;-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)}40%{-webkit-animation-timing-function:ease-out;-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)}50%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)}80%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);animation-timing-function:ease-in;transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg)}to{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);animation-timing-function:ease-in;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg)}}.animated.flip{-webkit-animation-name:flip;-webkit-backface-visibility:visible;animation-name:flip;backface-visibility:visible}@-webkit-keyframes flipInX{0%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateX(90deg)}40%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in;transform:perspective(400px) rotateX(-20deg)}60%{-webkit-transform:perspective(400px) rotateX(10deg);opacity:1;transform:perspective(400px) rotateX(10deg)}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateX(90deg)}40%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in;transform:perspective(400px) rotateX(-20deg)}60%{-webkit-transform:perspective(400px) rotateX(10deg);opacity:1;transform:perspective(400px) rotateX(10deg)}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-animation-name:flipInX;-webkit-backface-visibility:visible!important;animation-name:flipInX;backface-visibility:visible!important}@-webkit-keyframes flipInY{0%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateY(90deg)}40%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in;transform:perspective(400px) rotateY(-20deg)}60%{-webkit-transform:perspective(400px) rotateY(10deg);opacity:1;transform:perspective(400px) rotateY(10deg)}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateY(90deg)}40%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in;transform:perspective(400px) rotateY(-20deg)}60%{-webkit-transform:perspective(400px) rotateY(10deg);opacity:1;transform:perspective(400px) rotateY(10deg)}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{-webkit-animation-name:flipInY;-webkit-backface-visibility:visible!important;animation-name:flipInY;backface-visibility:visible!important}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);opacity:1;transform:perspective(400px) rotateX(-20deg)}to{-webkit-transform:perspective(400px) rotateX(90deg);opacity:0;transform:perspective(400px) rotateX(90deg)}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);opacity:1;transform:perspective(400px) rotateX(-20deg)}to{-webkit-transform:perspective(400px) rotateX(90deg);opacity:0;transform:perspective(400px) rotateX(90deg)}}.flipOutX{-webkit-animation-duration:.75s;-webkit-animation-name:flipOutX;-webkit-backface-visibility:visible!important;animation-duration:.75s;animation-name:flipOutX;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);opacity:1;transform:perspective(400px) rotateY(-15deg)}to{-webkit-transform:perspective(400px) rotateY(90deg);opacity:0;transform:perspective(400px) rotateY(90deg)}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);opacity:1;transform:perspective(400px) rotateY(-15deg)}to{-webkit-transform:perspective(400px) rotateY(90deg);opacity:0;transform:perspective(400px) rotateY(90deg)}}.flipOutY{-webkit-animation-duration:.75s;-webkit-animation-name:flipOutY;-webkit-backface-visibility:visible!important;animation-duration:.75s;animation-name:flipOutY;backface-visibility:visible!important}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);opacity:0;transform:translate3d(100%,0,0) skewX(-30deg)}60%{-webkit-transform:skewX(20deg);opacity:1;transform:skewX(20deg)}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);opacity:0;transform:translate3d(100%,0,0) skewX(-30deg)}60%{-webkit-transform:skewX(20deg);opacity:1;transform:skewX(20deg)}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-name:lightSpeedIn;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);opacity:0;transform:translate3d(100%,0,0) skewX(30deg)}}@keyframes lightSpeedOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);opacity:0;transform:translate3d(100%,0,0) skewX(30deg)}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-name:lightSpeedOut;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);-webkit-transform-origin:center;opacity:0;transform:rotate(-200deg);transform-origin:center}to{-webkit-transform:translateZ(0);-webkit-transform-origin:center;opacity:1;transform:translateZ(0);transform-origin:center}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);-webkit-transform-origin:center;opacity:0;transform:rotate(-200deg);transform-origin:center}to{-webkit-transform:translateZ(0);-webkit-transform-origin:center;opacity:1;transform:translateZ(0);transform-origin:center}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(-45deg);transform-origin:left bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:left bottom;opacity:1;transform:translateZ(0);transform-origin:left bottom}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(-45deg);transform-origin:left bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:left bottom;opacity:1;transform:translateZ(0);transform-origin:left bottom}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(45deg);transform-origin:right bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:right bottom;opacity:1;transform:translateZ(0);transform-origin:right bottom}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(45deg);transform-origin:right bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:right bottom;opacity:1;transform:translateZ(0);transform-origin:right bottom}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(45deg);transform-origin:left bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:left bottom;opacity:1;transform:translateZ(0);transform-origin:left bottom}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(45deg);transform-origin:left bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:left bottom;opacity:1;transform:translateZ(0);transform-origin:left bottom}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(-90deg);transform-origin:right bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:right bottom;opacity:1;transform:translateZ(0);transform-origin:right bottom}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(-90deg);transform-origin:right bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:right bottom;opacity:1;transform:translateZ(0);transform-origin:right bottom}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center;opacity:1;transform-origin:center}to{-webkit-transform:rotate(200deg);-webkit-transform-origin:center;opacity:0;transform:rotate(200deg);transform-origin:center}}@keyframes rotateOut{0%{-webkit-transform-origin:center;opacity:1;transform-origin:center}to{-webkit-transform:rotate(200deg);-webkit-transform-origin:center;opacity:0;transform:rotate(200deg);transform-origin:center}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;opacity:1;transform-origin:left bottom}to{-webkit-transform:rotate(45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(45deg);transform-origin:left bottom}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;opacity:1;transform-origin:left bottom}to{-webkit-transform:rotate(45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(45deg);transform-origin:left bottom}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;opacity:1;transform-origin:right bottom}to{-webkit-transform:rotate(-45deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(-45deg);transform-origin:right bottom}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;opacity:1;transform-origin:right bottom}to{-webkit-transform:rotate(-45deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(-45deg);transform-origin:right bottom}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;opacity:1;transform-origin:left bottom}to{-webkit-transform:rotate(-45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(-45deg);transform-origin:left bottom}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;opacity:1;transform-origin:left bottom}to{-webkit-transform:rotate(-45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(-45deg);transform-origin:left bottom}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;opacity:1;transform-origin:right bottom}to{-webkit-transform:rotate(90deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(90deg);transform-origin:right bottom}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;opacity:1;transform-origin:right bottom}to{-webkit-transform:rotate(90deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(90deg);transform-origin:right bottom}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;-webkit-transform-origin:top left;animation-timing-function:ease-in-out;transform-origin:top left}20%,60%{-webkit-animation-timing-function:ease-in-out;-webkit-transform:rotate(80deg);-webkit-transform-origin:top left;animation-timing-function:ease-in-out;transform:rotate(80deg);transform-origin:top left}40%,80%{-webkit-animation-timing-function:ease-in-out;-webkit-transform:rotate(60deg);-webkit-transform-origin:top left;animation-timing-function:ease-in-out;opacity:1;transform:rotate(60deg);transform-origin:top left}to{-webkit-transform:translate3d(0,700px,0);opacity:0;transform:translate3d(0,700px,0)}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;-webkit-transform-origin:top left;animation-timing-function:ease-in-out;transform-origin:top left}20%,60%{-webkit-animation-timing-function:ease-in-out;-webkit-transform:rotate(80deg);-webkit-transform-origin:top left;animation-timing-function:ease-in-out;transform:rotate(80deg);transform-origin:top left}40%,80%{-webkit-animation-timing-function:ease-in-out;-webkit-transform:rotate(60deg);-webkit-transform-origin:top left;animation-timing-function:ease-in-out;opacity:1;transform:rotate(60deg);transform-origin:top left}to{-webkit-transform:translate3d(0,700px,0);opacity:0;transform:translate3d(0,700px,0)}}.hinge{-webkit-animation-duration:2s;-webkit-animation-name:hinge;animation-duration:2s;animation-name:hinge}@-webkit-keyframes jackInTheBox{0%{-webkit-transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{-webkit-transform:scale(1);opacity:1;transform:scale(1)}}@keyframes jackInTheBox{0%{-webkit-transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{-webkit-transform:scale(1);opacity:1;transform:scale(1)}}.jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes rollIn{0%{-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) rotate(120deg);opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) rotate(120deg);opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}@keyframes zoomInDown{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}@keyframes zoomInLeft{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}@keyframes zoomInRight{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}@keyframes zoomInUp{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}to{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom}}@keyframes zoomOutDown{40%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}to{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{-webkit-transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}@keyframes zoomOutLeft{40%{-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{-webkit-transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{-webkit-transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}@keyframes zoomOutRight{40%{-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{-webkit-transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}to{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom}}@keyframes zoomOutUp{40%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}to{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:hidden}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:hidden}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:hidden}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:hidden}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:hidden}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:hidden}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:hidden}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:hidden}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}.animated{-webkit-animation-duration:1s;-webkit-animation-fill-mode:both;animation-duration:1s;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.delay-1s{-webkit-animation-delay:1s;animation-delay:1s}.animated.delay-2s{-webkit-animation-delay:2s;animation-delay:2s}.animated.delay-3s{-webkit-animation-delay:3s;animation-delay:3s}.animated.delay-4s{-webkit-animation-delay:4s;animation-delay:4s}.animated.delay-5s{-webkit-animation-delay:5s;animation-delay:5s}.animated.fast{-webkit-animation-duration:.8s;animation-duration:.8s}.animated.faster{-webkit-animation-duration:.5s;animation-duration:.5s}.animated.slow{-webkit-animation-duration:2s;animation-duration:2s}.animated.slower{-webkit-animation-duration:3s;animation-duration:3s}@media (prefers-reduced-motion),(print){.animated{-webkit-animation:unset!important;-webkit-transition:none!important;animation:unset!important;transition:none!important}}
.article ul {
  padding-left: 25px;
}
.article a {
  color: #337ab7;
}
.aim-blog-page {
  padding: 48px 0 80px;
}
.aim-blog-page__title {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--aim-dark);
  margin: 0 0 40px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .aim-blog-page__title {
    font-size: 28px;
    margin-bottom: 28px;
  }
}

.aim-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .aim-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .aim-blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.aim-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  text-decoration: none !important;
  color: var(--aim-dark) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.aim-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  text-decoration: none !important;
  color: var(--aim-dark) !important;
}
.aim-blog-card__image {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #f5f5f5;
}
.aim-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.aim-blog-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f8f8, #efefef);
}
.aim-blog-card:hover .aim-blog-card__image img {
  transform: scale(1.04);
}
.aim-blog-card__placeholder-icon {
  font-size: 48px;
  opacity: 0.3;
}
.aim-blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  gap: 8px;
}
.aim-blog-card__date {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #aaa;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.aim-blog-card__title {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--aim-dark);
  margin: 0 0 4px;
}
.aim-blog-card__excerpt {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #777;
  flex: 1;
  margin: 0;
}
.aim-blog-card__read {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--aim-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.aim-blog-card__arrow {
  transition: transform 0.2s;
}
.aim-blog-card:hover .aim-blog-card__arrow {
  transform: translateX(4px);
}

.aim-blog-related {
  padding: 48px 0;
  background: var(--aim-light-bg, #f8f8f8);
}
.aim-blog-related__title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--aim-dark);
  margin: 0 0 28px;
}
.aim-blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .aim-blog-related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 475px) {
  .aim-blog-related__grid {
    grid-template-columns: 1fr;
  }
}
.aim-blog-related__card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none !important;
  color: var(--aim-dark) !important;
  transition: box-shadow 0.2s;
}
.aim-blog-related__card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none !important;
}
.aim-blog-related__img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.aim-blog-related__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aim-blog-related__name {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--aim-dark);
}

.aim-blog-article {
  padding: 48px 0 80px;
}
.aim-blog-article__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 991px) {
  .aim-blog-article__layout {
    grid-template-columns: 1fr;
  }
}
.aim-blog-article__cover {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  max-height: 480px;
}
.aim-blog-article__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.aim-blog-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.aim-blog-article__date {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #aaa;
  font-weight: 500;
}
.aim-blog-article__title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--aim-dark);
  margin: 0 0 32px;
}
@media (max-width: 767px) {
  .aim-blog-article__title {
    font-size: 24px;
  }
}
.aim-blog-article__body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
}
.aim-blog-article__body h1, .aim-blog-article__body h2, .aim-blog-article__body h3, .aim-blog-article__body h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--aim-dark);
}
.aim-blog-article__body h2 {
  font-size: 24px;
}
.aim-blog-article__body h3 {
  font-size: 20px;
}
.aim-blog-article__body h4 {
  font-size: 17px;
}
.aim-blog-article__body p {
  margin-bottom: 18px;
}
.aim-blog-article__body img {
  max-width: 100%;
  border-radius: 12px;
  margin: 16px 0;
}
.aim-blog-article__body ul, .aim-blog-article__body ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.aim-blog-article__body ul li, .aim-blog-article__body ol li {
  margin-bottom: 6px;
}
.aim-blog-article__body a {
  color: #c09a00;
  text-decoration: underline;
}
.aim-blog-article__body blockquote {
  border-left: 4px solid var(--aim-yellow);
  padding: 12px 20px;
  margin: 24px 0;
  background: #fffdf0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #555;
}
@media (max-width: 767px) {
  .aim-blog-article__body {
    font-size: 14px;
  }
  .aim-blog-article__body p, .aim-blog-article__body ul, .aim-blog-article__body ol, .aim-blog-article__body li, .aim-blog-article__body blockquote {
    font-size: 14px;
  }
}
.aim-blog-article__share {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

.aim-blog-sidebar {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.aim-blog-sidebar__title {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--aim-dark);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--aim-yellow);
  display: inline-block;
}
.aim-blog-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aim-blog-sidebar__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none !important;
  color: var(--aim-dark) !important;
  transition: opacity 0.15s;
}
.aim-blog-sidebar__item:hover {
  opacity: 0.75;
  text-decoration: none !important;
}
.aim-blog-sidebar__thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.aim-blog-sidebar__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aim-blog-sidebar__info {
  flex: 1;
}
.aim-blog-sidebar__post-title {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--aim-dark);
  margin-bottom: 4px;
}
.aim-blog-sidebar__post-date {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #aaa;
}


span.multiselect-native-select {
    position: relative
}

span.multiselect-native-select select {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px -1px -1px -3px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    left: 50%;
    top: 30px
}

span.multiselect-native-select .btn-group{
    width: 100%;
}

span.multiselect-native-select .btn-group button{
    width: 100%;
    border-color: black;
    background-color: white;
}

.multiselect-container {
    position: absolute;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.multiselect-container .input-group {
    margin: 5px
}

.multiselect-container .multiselect-reset .input-group {
    width: 93%
}

.multiselect-container > li {
    padding: 0
}

.multiselect-container > li > a.multiselect-all label {
    font-weight: 700
}

.multiselect-container > li.multiselect-group label {
    margin: 0;
    padding: 3px 20px;
    height: 100%;
    font-weight: 700
}

.multiselect-container > li.multiselect-group-clickable label {
    cursor: pointer
}

.multiselect-container > li > a {
    padding: 0
}

.multiselect-container.dropdown-menu > li.active > a {
    background-color: #fd0 !important;
    color: #000 !important;
}

.multiselect-container > li > a > label {
    margin: 0;
    height: 100%;
    cursor: pointer;
    font-weight: 400;
    padding: 3px 20px 3px 10px
}

.multiselect-container > li > a > label.checkbox, .multiselect-container > li > a > label.radio {
    margin: 0
}

.multiselect-container > li > a > label > input[type=checkbox] {
    margin-bottom: 5px
}

.btn-group > .btn-group:nth-child(2) > .multiselect.btn {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.form-inline .multiselect-container label.checkbox, .form-inline .multiselect-container label.radio {
    padding: 3px 20px 3px 40px
}

.form-inline .multiselect-container li a label.checkbox input[type=checkbox], .form-inline .multiselect-container li a label.radio input[type=radio] {
    margin-left: -20px;
    margin-right: 0
}
.aim-cabinet-nav {
  background: var(--aim-dark, #1A1A1A);
  border-bottom: 3px solid var(--aim-yellow, #FFD600);
}
.aim-cabinet-nav .aim-cabinet-nav__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.aim-cabinet-nav .aim-cabinet-nav__list li a {
  display: block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.aim-cabinet-nav .aim-cabinet-nav__list li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.aim-cabinet-nav .aim-cabinet-nav__list li a.active {
  color: var(--aim-yellow, #FFD600);
  background: rgba(255, 214, 0, 0.1);
}

body.aim-cabinet .input-group {
  gap: 6px;
}
body.aim-cabinet .input-group > .btn-success,
body.aim-cabinet .input-group > .btn-primary,
body.aim-cabinet .input-group > .btn-danger,
body.aim-cabinet .input-group > .btn-outline-secondary {
  padding-top: 0.375rem !important;
  padding-bottom: 0.375rem !important;
  border-radius: 10px !important;
}
body.aim-cabinet .input-group > .form-control {
  border-radius: 10px !important;
}
body.aim-cabinet .btn-success,
body.aim-cabinet .btn-primary,
body.aim-cabinet .btn-danger {
  display: inline-block;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: var(--aim-dark, #1A1A1A) !important;
  background: var(--aim-yellow, #FFD600) !important;
  border: none !important;
  border-radius: 10px !important;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none !important;
  transition: background 0.2s;
}
body.aim-cabinet .btn-success:hover, body.aim-cabinet .btn-success:focus, body.aim-cabinet .btn-success:active,
body.aim-cabinet .btn-primary:hover,
body.aim-cabinet .btn-primary:focus,
body.aim-cabinet .btn-primary:active,
body.aim-cabinet .btn-danger:hover,
body.aim-cabinet .btn-danger:focus,
body.aim-cabinet .btn-danger:active {
  background: #e6c000 !important;
  color: var(--aim-dark, #1A1A1A) !important;
  box-shadow: none !important;
}
body.aim-cabinet .btn-outline-secondary,
body.aim-cabinet .btn-default {
  display: inline-block;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: var(--aim-dark, #1A1A1A) !important;
  background: #fff !important;
  border: 1.5px solid #d0d0d0 !important;
  border-radius: 10px !important;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none !important;
  transition: background 0.2s, border-color 0.2s;
}
body.aim-cabinet .btn-outline-secondary:hover, body.aim-cabinet .btn-outline-secondary:focus, body.aim-cabinet .btn-outline-secondary:active,
body.aim-cabinet .btn-default:hover,
body.aim-cabinet .btn-default:focus,
body.aim-cabinet .btn-default:active {
  background: #f0f0f0 !important;
  border-color: #aaa !important;
  color: var(--aim-dark, #1A1A1A) !important;
  box-shadow: none !important;
}

.container.py-4 h1 {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--aim-dark, #1A1A1A);
  margin-bottom: 1.25rem;
}
.container.py-4 .table-responsive {
  border-radius: var(--aim-radius, 12px);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  margin-top: 1.25rem;
}
.container.py-4 .table {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: transparent;
  --bs-table-hover-bg: transparent;
  --bs-table-border-color: #ebebeb;
  margin-bottom: 0;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: var(--aim-dark, #1A1A1A);
}
.container.py-4 .table thead tr th {
  background-color: var(--aim-dark, #1A1A1A) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  padding: 12px 16px;
  white-space: nowrap;
}
.container.py-4 .table tbody tr:nth-child(odd) > td,
.container.py-4 .table tbody tr:nth-child(odd) > th {
  background-color: #ffffff !important;
}
.container.py-4 .table tbody tr:nth-child(even) > td,
.container.py-4 .table tbody tr:nth-child(even) > th {
  background-color: var(--aim-gray, #F8F8F8) !important;
}
.container.py-4 .table tbody tr:hover > td,
.container.py-4 .table tbody tr:hover > th {
  background-color: rgba(255, 214, 0, 0.15) !important;
  transition: background-color 0.15s;
}
.container.py-4 .table td, .container.py-4 .table th {
  padding: 10px 16px;
  border-color: #ebebeb;
  vertical-align: middle;
  color: var(--aim-dark, #1A1A1A);
}
.container.py-4 .table td:last-child, .container.py-4 .table th:last-child {
  white-space: nowrap;
  width: 1%;
}
.container.py-4 .table td a, .container.py-4 .table th a {
  color: var(--aim-dark, #1A1A1A);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.container.py-4 .table td a:hover, .container.py-4 .table th a:hover {
  color: #000;
}
.container.py-4 .pagination {
  margin-top: 1.25rem;
}
/**
 * Bootstrap Override
 */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  background-color: #333;
  border-radius: 0;
}

.tooltip.top .tooltip-arrow {
  border-top-color: #333;
}

.tooltip.top-left .tooltip-arrow {
  border-top-color: #333;
}

.tooltip.top-right .tooltip-arrow {
  border-top-color: #333;
}

.tooltip.right .tooltip-arrow {
  border-right-color: #333;
}

.tooltip.left .tooltip-arrow {
  border-left-color: #333;
}

.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #333;
}

.tooltip.bottom-left .tooltip-arrow {
  border-bottom-color: #333;
}

.tooltip.bottom-right .tooltip-arrow {
  border-bottom-color: #333;
}

.dropdown-menu {
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.dropdown-ml .dropdown-menu {
  left: 10px;
}

.dropdown-right,
.dropdown-left {
  display: inline-block;
  position: relative;
}

.dropdown-right {
  padding-right: 10px;
}

.dropdown-left {
  padding-left: 10px;
  margin-left: -10px;
}

.dropdown-left + .dropdown-left {
  margin-left: 10px;
}

.dropdown-left .dropdown-inner {
  padding: 15px;
}

.dropdown-right .dropdown-menu {
  left: 100%;
  margin: 0;
  top: 0;
}

.dropdown-left .dropdown-menu {
  left: auto;
  right: 100%;
  margin: 0;
  margin-left: 15px;
  top: 0;
}

.dropdown-pointer .dropdown-menu {
  z-index: 12;
}

.dropdown-pointer .dropdown-menu:after {
  position: absolute;
  top: 12px;
  left: 100%;
  margin-left: -6px;
  content: "";
  display: block;
  pointer-events: none;
  visibility: visible;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  width: 14px;
  height: 14px;
  background: #fff;
  z-index: 2;
  border-left: 1px solid #C8C8C8;
  border-top: 1px solid #C8C8C8;
}

.dropdown-title {
  border-bottom: 1px solid #CCC;
  padding: 12px 15px;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  margin: 0;
}

.dropdown-footer {
  padding: 12px 15px;
}

.progress {
  height: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.progress-primary {
  border: none;
  background: #E6E6E6;
}

.progress-primary .progress-bar {
  background: #D60D45;
}

.img-thumbnail {
  border-radius: 0;
}

.alert {
  border-radius: 0;
  padding: 20px;
  margin: 0;
}

.alert .icon {
  float: left;
  padding-top: 6px;
}

.alert .icon i {
  font-size: 22px !important;
}

.alert .content {
  margin-left: 25px;
  margin-top: 3px;
}

.alert .content h4 {
  margin: 0 0 10px;
}

.alert .content ul {
  list-style: circle;
  margin: 0;
  margin-left: 20px;
}

.alert .content ul li {
  line-height: 1.1;
  font-size: 13px;
}

.alert .content ul li + li {
  margin-top: 7px;
}

.modal-content {
  border-radius: 0;
}

.modal-backdrop.fade.in {
  background: #333;
  opacity: 0.85;
  filter: alpha(opacity=80);
}

.panel, .panel-heading, .panel-group .panel {
  border-radius: 0;
}

.panel.accordion-item {
  margin: 0;
  border-radius: 0;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none0;
}

.panel.accordion-item .panel-body {
  border: 0;
  padding: 0;
}

.panel.accordion-item .panel-title a:after {
  font-family: "FontAwesome";
  content: "\f146";
  float: right;
}

.panel.accordion-item .panel-title a.collapsed:after {
  content: "\f0fe";
}

.another-toggle-wrapper {
  margin: 0;
}

.another-toggle {
  display: block;
  margin: 0 0 1px;
}

.another-toggle h4 {
  font-size: 16px;
  cursor: pointer;
  position: relative;
  padding: 0;
  padding-right: 20px;
  line-height: 20px;
  margin: 0;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.another-toggle h4:after {
  font-family: FontAwesome;
  content: "\f067";
  font-size: 10px;
  position: absolute;
  right: 0;
  top: 2px;
  color: #888;
}

.another-toggle h4.active {
  color: #99549C;
}

.another-toggle h4.active:after {
  content: "\f068";
}

.another-toggle .another-toggle-content {
  display: none;
  background: #FFF;
  margin: 0;
  padding: 0;
}

/**
 * Custom Checkbox and Radio By CSS
 */
.checkbox-block label,
.radio-block label {
  display: block;
}

.radio-inline,
.checkbox-inline {
  padding: 0;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-left: 5px;
}

input[type=radio] + label,
input[type=checkbox] + label {
  margin: 0;
  clear: none;
  padding: 4px 0 3px 24px;
  cursor: pointer;
  font-weight: 300;
  line-height: 18px;
}

.font-icon-radio input[type=radio] + label,
.font-icon-checkbox input[type=checkbox] + label {
  background: none;
  position: relative;
  padding-left: 20px;
}

.font-icon-radio input[type=radio] + label:before,
.font-icon-checkbox input[type=checkbox] + label:before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  color: #919191;
  font-weight: normal;
  transition: all 0.6s;
  line-height: 1 !important;
  text-shadow: none !important;
  box-shadow: none !important;
  padding-left: 2px;
  font-size: 13px;
}

.font-icon-radio input[type=radio]:checked + label:before,
.font-icon-checkbox input[type=checkbox]:checked + label:before {
  color: #fd0;
}

.font-icon-radio input[type=radio] + label:before {
  font-family: "Ionicons";
  content: "\f401";
  border: none !important;
  font-size: 14px;
}

.font-icon-radio input[type=radio]:checked + label:before {
  font-family: "FontAwesome";
  content: "\f058";
  border: none !important;
  font-size: 14px;
}

.font-icon-checkbox input[type=checkbox] + label:before {
  content: "";
  width: 11px;
  height: 11px;
  border: 1px solid #B5B5B5;
  border-radius: 2px;
  top: 8px;
}

.font-icon-checkbox input[type=checkbox]:checked + label:before {
  font-family: "FontAwesome";
  content: "\f14a";
  border: none;
  top: 7px;
  left: -1px;
}

.font-icon-radio:hover input[type=radio] + label:before,
.font-icon-radio input[type=radio]:hover + label:before,
.font-icon-checkbox:hover input[type=checkbox] + label:before,
.font-icon-checkbox input[type=checkbox]:hover + label:before {
  color: #fd0;
}

/**
 * Fancy Select
 */
select.form-control.multiple {
  padding: 0;
}

select.form-control.multiple option {
  padding: 6px 12px;
}

.fancy-select {
  position: relative;
  color: #fd0;
}

.fancy-select.disabled .form-control {
  cursor: inherit;
  opacity: 0.5;
  background: #ddd;
}

.fancy-select .form-control {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #999;
}

.fancy-select .form-control:after {
  position: absolute;
  display: block;
  content: "\f078";
  top: 50%;
  right: 0;
  margin: -6px 8px 0 0;
  font-family: FontAwesome;
  font-size: 10px;
  line-height: 12px;
  color: #aaa;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.fancy-select .form-control.open {
  border-color: #fd0;
}

.fancy-select .form-control.open:after {
  color: #fd0;
  content: "\f077";
}

.fancy-select ul.options {
  position: absolute;
  visibility: hidden;
  overflow: auto;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  margin: 0;
  padding: 0;
  border: 1px solid #ddd;
  list-style: none;
  z-index: 50;
  background: #FFF;
  opacity: 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.fancy-select ul.options.open {
  visibility: visible;
  opacity: 1;
  max-height: 360px;
}

.fancy-select ul.options.overflowing {
  top: auto;
  bottom: 100%;
}

.fancy-select ul.options.overflowing.open {
  top: auto;
}

.fancy-select ul.options li {
  padding: 5px 12px;
  cursor: pointer;
  white-space: nowrap;
  color: #666;
  line-height: 18px;
}

.fancy-select ul.options li.hover {
  color: #000;
  background: #eee;
}

.fancy-select ul.options li.selected {
  color: #fff;
  background: #ccc;
}

/*
 *  BootstrapValidator
 */
.gallery-slideshow {
  margin-bottom: 1px;
}

.gallery-slideshow .image {
  padding: 0;
}

.gallery-nav .image {
  padding: 0;
  border: 1px solid transparent;
  opacity: 1;
  transition: all 300ms ease;
  position: relative;
}

.gallery-nav .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.gallery-nav .slick-center .image {
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  -webkit-transform: none;
}

.gallery-nav .slick-center .image:after {
  background: rgba(0, 0, 0, 0);
}

.gallery-nav .image:hover {
  cursor: pointer;
}

.slick-slider-center-mode .slick-item {
  position: relative;
}

.slick-slider-center-mode .slick-item .image {
  position: relative;
  padding: 0;
}

.slick-slider-center-mode .slick-item .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.slick-slider-center-mode .slick-center.slick-item .image:after {
  background: rgba(0, 0, 0, 0);
}

.slick-slider-center-mode .slick-item .image:hover {
  cursor: pointer;
}

.slick-slider-center-mode.slick-slider-full .slick-item .image:after {
  display: none;
}

.slick-slider-center-mode.gap-2 .slick-item {
  padding: 0 1px;
}

.slick-slider-center-mode .slick-prev {
  left: 30px;
}

.slick-slider-center-mode .slick-next {
  right: 30px;
}

.slick-slider-center-mode .slick-prev:before,
.slick-slider-center-mode .slick-next:before {
  color: #FFF;
  opacity: 0.7;
}

.slick-slider-center-mode .slick-prev:hover:before,
.slick-slider-center-mode .slick-prev:focus:before,
.slick-slider-center-mode .slick-next:hover:before,
.slick-slider-center-mode .slick-next:focus:before {
  opacity: 1;
}

.slick-slider-center-mode.slick-slider-full .slick-prev {
  left: 15px;
}

.slick-slider-center-mode.slick-slider-full .slick-next {
  right: 15px;
}

.slick-slider-center-mode.slick-slider-full .image.image-bg {
  height: 660px;
  background-size: cover !important;
  background-position: center center;
}

.slick-slider-center-mode .slick-caption {
  position: absolute;
  top: 20px;
  left: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
}

.slick-slider-center-mode .slick-center .slick-caption {
  color: rgb(255, 255, 255);
}

.variable-width .image {
  padding: 0;
  border: 1px solid transparent;
  opacity: 0.5;
  transition: all 300ms ease;
}

.variable-width .slick-center .image {
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  -webkit-transform: none;
  opacity: 1;
  border-color: red;
}

.variable-width .image:hover {
  cursor: pointer;
}

.slick-animation .animation {
  display: inline-block;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.slick-animation .animation {
  display: inline-block;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.slick-animation .transitionDelay1 {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.slick-animation .transitionDelay2 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.slick-animation .transitionDelay3 {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.slick-animation .transitionDelay4 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.slick-animation .transitionDelay5 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.slick-animation .transitionDelay6 {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.slick-animation .transitionDelay7 {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.slick-animation .transitionDelay8 {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.slick-animation .transitionDelay9 {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.slick-animation .transitionDelay10 {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.slick-animation .transitionDelay12 {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.slick-animation .transitionDelay14 {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.slick-animation .transitionDuration2 {
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.slick-animation .transitionDuration4 {
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.slick-animation .transitionDuration6 {
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
}

.slick-animation .transitionDuration8 {
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.slick-animation .transitionDuration10 {
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

.slick-animation .transitionDuration12 {
  -webkit-transition-duration: 1.2s;
  transition-duration: 1.2s;
}

.slick-animation .transitionDuration14 {
  -webkit-transition-duration: 1.4s;
  transition-duration: 1.4s;
}

.slick-animation .transitionDuration16 {
  -webkit-transition-duration: 1.6s;
  transition-duration: 1.6s;
}

.slick-animation .transitionDuration18 {
  -webkit-transition-duration: 1.8s;
  transition-duration: 1.8s;
}

.slick-animation .transitionDuration20 {
  -webkit-transition-duration: 2s;
  transition-duration: 2s;
}

.slick-animation .transitionDuration22 {
  -webkit-transition-duration: 2.2s;
  transition-duration: 2.2s;
}

.slick-animation .transitionDuration24 {
  -webkit-transition-duration: 2.4s;
  transition-duration: 2.4s;
}

.slick-animation .transitionDuration26 {
  -webkit-transition-duration: 2.6s;
  transition-duration: 2.6s;
}

.slick-animation .fromTop {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.slick-animation .fromBottom {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}

.slick-animation .fromLeft {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}

.slick-animation .fromRight {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

.slick-animation .slick-center .animation {
  opacity: 1;
}

.slick-animation .slick-center .fromTop {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

.slick-animation .slick-center .fromBottom {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

.slick-animation .slick-center .fromLeft {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

.slick-animation .slick-center .fromRight {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

.slick-banner-slider-wrapper {
  overflow: hidden;
}

.slick-banner-slider-wrapper .section-title h2 {
  color: #FFF;
}

.slick-banner-slider-wrapper .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.slick-banner-slider-wrapper .image-bg {
  width: 100%;
  background-position: left top;
  background-size: cover;
  position: relative;
}

.slick-banner-slider-wrapper .image-bg:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
}

.slick-banner-slider-wrapper.relative .absolute {
  color: rgba(255, 255, 255, 0.85);
  width: 100%;
  z-index: 99;
  top: 50px;
}

.slick-banner-slider-wrapper.relative .absolute .section-title-2 h2 {
  color: #FFF;
}

.slick-inner-dot .slick-dots {
  bottom: 50px;
}

.slick-inner-dot .slick-dots li button:before {
  opacity: 0.45;
  background: #FFF;
}

.slick-inner-dot .slick-dots li:hover button:before {
  opacity: 0.65;
  background: #FFF;
}

.slick-inner-dot .slick-dots li.slick-active button:before {
  opacity: 0.95;
  background: #FFF;
}

@media only screen and (max-width: 991px) {
  .slick-banner-slider-wrapper.relative .absolute {
    top: 70px;
  }
}
@media (max-width: 767px) {
  .slick-banner-slider-wrapper.relative .absolute {
    top: 50px;
  }
}
@media (max-width: 479px) {
  .slick-banner-slider-wrapper.relative .absolute {
    top: 40px;
  }
}
/**
 * jQuery Validation Plugin - http://jqueryvalidation.org/files/demo/
 */
label.error {
  color: red;
  font-style: italic;
  line-height: 14px;
  margin: 10px 0 0;
  font-weight: 400;
}

div.error {
  display: none;
}

input {
  border: 1px solid black;
}

input.checkbox {
  border: none;
}

input:focus {
  border: 1px dotted black;
}

input.error {
  border: 1px dotted red;
}

form.cmxform .gray * {
  color: gray;
}

/**
 * Instagram
 */
.instagram-wrapper {
  width: 100%;
}

.instagram {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.instagram-placeholder {
  float: left;
  padding: 0;
  width: 33%;
}

.instagram-placeholder:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.instagram-image {
  display: block;
}

.instagram-full-wrapper {
  overflow: hidden;
  padding-top: 76px;
}

@media only screen and (min-width: 1500px) {
  .instagram-wrapper {
    width: 1170px;
    margin: 0 auto 80px;
  }
}
@media (max-width: 767px) {
  .instagram-placeholder {
    width: 50%;
  }
}
/*!
 * typeahead.js 0.11.1
 * https://github.com/twitter/typeahead.js
 * Copyright 2013-2015 Twitter, Inc. and other contributors; Licensed MIT
 */
.typeahead-container {
  position: relative;
}

.typeahead-button {
  position: relative;
  font-size: 0;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
}

.typeahead-field > span {
  display: table-cell;
  vertical-align: top;
}

.typeahead-button button {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.typeahead-container .typeahead-field input {
  background: #fff;
}

.typeahead-container.hint .typeahead-field input {
  background: #FFF;
}

.typeahead-container.hint .typeahead-field input:last-child,
.typeahead-hint {
  background: #fff;
}

.typeahead-hint {
  background: #fff;
}

.typeahead-field input.disabled,
.typeahead-field input[disabled],
.typeahead-container button.disabled,
.typeahead-container button[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  border-color: #ccc;
}

.typeahead-filter button,
.typeahead-button button {
  margin-left: -1px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.typeahead-query {
  position: relative;
  z-index: 2;
}

.typeahead-filter,
.typeahead-button {
  z-index: 1;
}

.typeahead-container.filter .typeahead-filter,
.typeahead-filter:hover,
.typeahead-filter:hover,
.typeahead-filter:active,
.typeahead-filter:focus,
.typeahead-button:hover,
.typeahead-button:active,
.typeahead-button:focus,
.typeahead-button:focus button:focus,
.typeahead-button:active button:active {
  z-index: 1001;
}

.typeahead-list,
.typeahead-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 13px;
  text-align: left;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

.typeahead-result.detached .typeahead-list {
  position: relative;
  z-index: 1041;
  top: auto;
  left: auto;
}

.typeahead-dropdown {
  right: 0;
  left: auto;
  z-index: 1001;
}

.typeahead-list > li:first-child {
  border-top: none;
}

.typeahead-list > li {
  position: relative;
}

.typeahead-list > li > a,
.typeahead-dropdown > li > a {
  display: block;
  padding: 3px 15px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  text-decoration: none;
}

.typeahead-dropdown > li > a {
  white-space: nowrap;
}

.typeahead-list > li > a:hover,
.typeahead-list > li > a:focus,
.typeahead-list > li.active > a,
.typeahead-dropdown > li > a:hover,
.typeahead-dropdown > li > a:focus,
.typeahead-dropdown > li.active > a {
  background-color: #ebebeb;
  color: #333;
}

.typeahead-list.empty > li > a:hover,
.typeahead-list.empty > li > a:focus,
.typeahead-list.empty > li.active > a {
  background-color: transparent;
}

.typeahead-list.empty > li > a {
  cursor: default;
}

.typeahead-list > li.typeahead-group > a,
.typeahead-list > li.typeahead-group > a:hover,
.typeahead-list > li.typeahead-group > a:focus,
.typeahead-list > li.typeahead-group.active > a {
  color: #333;
  background-color: #FFF;
  cursor: default;
  text-transform: uppercase;
  font-family: Roboto;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin: 10px 0 5px;
}

.typeahead-list > li.typeahead-group:first-child > a {
  margin-top: 5px;
}

.typeahead-container.result .typeahead-list,
.typeahead-container.filter .typeahead-dropdown,
.typeahead-container.hint .typeahead-hint,
.typeahead-container.backdrop + .typeahead-backdrop {
  display: block !important;
}

.typeahead-container .typeahead-list,
.typeahead-container .typeahead-dropdown,
.typeahead-container .typeahead-hint,
.typeahead-container + .typeahead-backdrop {
  display: none !important;
}

/*
 *  jQueryIntroLoader - v1.6.2
 *  "simple intro loader animations"
 *  http://factory.brainleaf.eu/jqueryIntroLoader
 *
 *  Made by BRAINLEAF Communication
 *  Released Under GNU/GPL License
 *  (c)2014-2015 by BRAINLEAF Communication
 *
 *
 *  BugReport/Assistence: https://github.com/Gix075/jqueryIntroLoader/issues
 */
.introLoader,
.introLoading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 9999;
}

.introLoading {
  background-color: #fff;
}

.absolute.introLoader {
  position: absolute;
}

body.introLoader_preventScroll {
  position: fixed;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

/* ============================================================================== */
/* Animations */
/* ============================================================================== */
/* *************************************************** */
/* CSSLoader Animation */
/* *************************************************** */
.introLoader.cssLoader .cssLoaderSpinner {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  border: 5px solid transparent;
  border-radius: 50%;
}

.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent;
  border-radius: 50%;
  animation: infinite-spinning 1s linear infinite;
}

/* CSSLoader Animation Spinner Sizes */
/* -------------------------------------------- */
.introLoader.cssLoader.medium .cssLoaderSpinner {
  border: 5px solid transparent;
}

.introLoader.cssLoader.medium .cssLoaderSpinner .cssLoaderSpinner-inner {
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border-width: 6px;
}

.introLoader.cssLoader.large .cssLoaderSpinner {
  border: 5px solid transparent;
}

.introLoader.cssLoader.large .cssLoaderSpinner .cssLoaderSpinner-inner {
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border-width: 8px;
}

/* CSSLoader Animation Keyframes */
/* -------------------------------------------- */
@keyframes infinite-spinning {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes infinite-spinning {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
/* CSSLoader Animation Colors */
/* -------------------------------------------- */
.theme-light.introLoader.cssLoader {
  background-color: #ffffff;
}

.theme-light.introLoader.cssLoader .cssLoaderSpinner {
  border-color: #efefef;
}

.theme-light.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  border-color: #555555 transparent transparent transparent;
}

.theme-dark.introLoader.cssLoader {
  background-color: #333333;
}

.theme-dark.introLoader.cssLoader .cssLoaderSpinner {
  border-color: #121212;
}

.theme-dark.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  border-color: #ffffff transparent transparent transparent;
}

.theme-ocean.introLoader.cssLoader {
  background-color: #164761;
}

.theme-ocean.introLoader.cssLoader .cssLoaderSpinner {
  border-color: #20b1ea;
}

.theme-ocean.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  border-color: #ffffff transparent transparent transparent;
}

.theme-forest.introLoader.cssLoader {
  background-color: #1f3608;
}

.theme-forest.introLoader.cssLoader .cssLoaderSpinner {
  border-color: #5e5824;
}

.theme-forest.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  border-color: #a59965 transparent transparent transparent;
}

.theme-fluoGreen.introLoader.cssLoader {
  background-color: #67de0f;
}

.theme-fluoGreen.introLoader.cssLoader .cssLoaderSpinner {
  border-color: #53ba06;
}

.theme-fluoGreen.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  border-color: #dcff1b transparent transparent transparent;
}

.theme-fluoMagenta.introLoader.cssLoader {
  background-color: #ff1bff;
}

.theme-fluoMagenta.introLoader.cssLoader .cssLoaderSpinner {
  border-color: #db07db;
}

.theme-fluoMagenta.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  border-color: #cccccc transparent transparent transparent;
}

.theme-fluoYellow.introLoader.cssLoader {
  background-color: #dcff1b;
}

.theme-fluoYellow.introLoader.cssLoader .cssLoaderSpinner {
  border-color: #d5f816;
}

.theme-fluoYellow.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  border-color: #67de0f transparent transparent transparent;
}

.theme-light.halfcircle.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  border-color: #555555 #555555 transparent transparent;
}

.theme-dark.halfcircle.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  border-color: #ffffff #ffffff transparent transparent;
}

.theme-ocean.halfcircle.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  border-color: #ffffff #ffffff transparent transparent;
}

.theme-forest.halfcircle.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  border-color: #a59965 #a59965 transparent transparent;
}

.theme-fluoGreen.halfcircle.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  border-color: #dcff1b #dcff1b transparent transparent;
}

.theme-fluoMagenta.halfcircle.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  border-color: #cccccc #cccccc transparent transparent;
}

.theme-fluoYellow.halfcircle.introLoader.cssLoader .cssLoaderSpinner .cssLoaderSpinner-inner {
  border-color: #67de0f #67de0f transparent transparent;
}

/* *************************************************** */
/* SimpleLoader Animation */
/* *************************************************** */
.absolute.introLoader.simpleLoader {
  position: absolute;
}

/* SimpleLoader Animation Colors */
/* -------------------------------------------- */
.theme-light.introLoader.simpleLoader {
  background-color: #ffffff;
}

.theme-dark.introLoader.simpleLoader {
  background-color: #333333;
}

.theme-ocean.introLoader.simpleLoader {
  background-color: #164761;
}

.theme-forest.introLoader.simpleLoader {
  background-color: #1f3608;
}

.theme-fluoGreen.introLoader.simpleLoader {
  background-color: #67de0f;
}

.theme-fluoMagenta.introLoader.simpleLoader {
  background-color: #ff1bff;
}

.theme-fluoYellow.introLoader.simpleLoader {
  background-color: #dcff1b;
}

/* *************************************************** */
/* GifLoader Animation */
/* *************************************************** */
.introLoader.gifLoader .gifLoaderInner {
  background-image: url(/images/spinners/circle-simple_light.gif);
  background-repeat: no-repeat;
  background-position: center center;
}

.introLoader.gifLoader .gifLoaderInnerCustom {
  background-repeat: no-repeat;
  background-position: center center;
}

.introLoader.gifLoader .gifLoaderInner,
.introLoader.gifLoader .gifLoaderInnerCustom {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.theme-light.gifLoader .gifLoaderInner {
  background-color: #ffffff;
}

.theme-dark.gifLoader .gifLoaderInner {
  background-image: url(/images/spinners/circle-simple_dark.gif);
  background-color: #333333;
}

.theme-ocean.gifLoader .gifLoaderInner {
  background-image: url(/images/spinners/circle-simple_ocean.gif);
  background-color: #164761;
}

.theme-forest.gifLoader .gifLoaderInner {
  background-image: url(/images/spinners/circle-simple_forest.gif);
  background-color: #1f3608;
}

.theme-fluoGreen.gifLoader .gifLoaderInner {
  background-image: url(/images/spinners/circle-simple_fluoGreen.gif);
  background-color: #67de0f;
}

.theme-fluoYellow.gifLoader .gifLoaderInner {
  background-image: url(/images/spinners/circle-simple_fluoYellow.gif);
  background-color: #dcff1b;
}

.theme-fluoMagenta.gifLoader .gifLoaderInner {
  background-image: url(/images/spinners/circle-simple_fluoMagenta.gif);
  background-color: #ff1bff;
}

.theme-light.bubble.gifLoader .gifLoaderInner {
  background-image: url(/images/spinners/circle-bub_light.gif);
}

.theme-dark.bubble.gifLoader .gifLoaderInner {
  background-image: url(/images/spinners/circle-bub_dark.gif);
}

.theme-ocean.bubble.gifLoader .gifLoaderInner {
  background-image: url(/images/spinners/circle-bub_ocean.gif);
}

.theme-forest.bubble.gifLoader .gifLoaderInner {
  background-image: url(/images/spinners/circle-bub_forest.gif);
}

.theme-fluoGreen.bubble.gifLoader .gifLoaderInner {
  background-image: url(/images/spinners/circle-bub_fluoGreen.gif);
}

.theme-fluoYellow.bubble.gifLoader .gifLoaderInner {
  background-image: url(/images/spinners/circle-bub_fluoYellow.gif);
}

.theme-fluoMagenta.bubble.gifLoader .gifLoaderInner {
  background-image: url(/images/spinners/circle-bub_fluoMagenta.gif);
}

/* *************************************************** */
/* CounterLoader Animation */
/* *************************************************** */
.introLoader.counterLoader .counterLoaderBox {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-weight: bold;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.small.introLoader.counterLoader .counterLoaderBox {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 0.8em;
}

.medium.introLoader.counterLoader .counterLoaderBox {
  width: 200px;
  height: 200px;
  line-height: 200px;
  font-size: 2em;
}

.large.introLoader.counterLoader .counterLoaderBox {
  width: 300px;
  height: 300px;
  line-height: 300px;
  font-size: 3em;
}

.circle.introLoader.counterLoader .counterLoaderBox {
  border-radius: 50%;
}

/* CounterLoader Animation Colors */
/* -------------------------------------------- */
.theme-light.introLoader.counterLoader {
  background-color: #ffffff;
}

.theme-light.introLoader.counterLoader .counterLoaderBox {
  background-color: #cccccc;
}

.theme-dark.introLoader.counterLoader {
  background-color: #333333;
}

.theme-dark.introLoader.counterLoader .counterLoaderBox {
  background-color: #ffffff;
}

.theme-ocean.introLoader.counterLoader {
  background-color: #164761;
}

.theme-ocean.introLoader.counterLoader .counterLoaderBox {
  background-color: #237199;
  color: #ffffff;
}

.theme-forest.introLoader.counterLoader {
  background-color: #1f3608;
}

.theme-forest.introLoader.counterLoader .counterLoaderBox {
  background-color: #5e5824;
  color: #1f3608;
}

.theme-fluoGreen.introLoader.counterLoader {
  background-color: #67de0f;
}

.theme-fluoGreen.introLoader.counterLoader .counterLoaderBox {
  background-color: #ffffff;
  color: #67de0f;
}

.theme-fluoMagenta.introLoader.counterLoader {
  background-color: #ff1bff;
}

.theme-fluoMagenta.introLoader.counterLoader .counterLoaderBox {
  background-color: #ffffff;
  color: #ff1bff;
}

.theme-fluoYellow.introLoader.counterLoader {
  background-color: #dcff1b;
}

.theme-fluoYellow.introLoader.counterLoader .counterLoaderBox {
  background-color: #ffffff;
  color: #dcff1b;
}

/* *************************************************** */
/* doubleLoader Animation */
/* *************************************************** */
.doubleLoader {
  background: transparent !important;
}

.doubleLoaderTop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50%;
  background-color: #333;
}

.doubleLoaderBottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 50%;
  background-color: #333;
}

.doubleLoaderProgBar {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  width: 100%;
  height: 20px;
  background-color: #fff;
  z-index: 9999999999999;
}

.doubleLoaderProgBar span {
  display: block;
  width: 0;
  height: 20px;
  background-color: #555;
}

/* DoubleLoader Animation Colors */
/* -------------------------------------------- */
.doubleLoader.theme-light .doubleLoaderTop,
.doubleLoader.theme-light .doubleLoaderBottom {
  background-color: #efefef;
}

.doubleLoader.theme-light .doubleLoaderProgBar {
  background-color: #cccccc;
}

.doubleLoader.theme-light .doubleLoaderProgBar span {
  background-color: #555555;
}

.doubleLoader.theme-light.zebra .doubleLoaderTop {
  background-color: #ffffff;
}

.doubleLoader.theme-light.zebra .doubleLoaderBottom {
  background-color: #efefef;
}

.doubleLoader.theme-dark .doubleLoaderTop,
.doubleLoader.theme-dark .doubleLoaderBottom {
  background-color: #333333;
}

.doubleLoader.theme-dark .doubleLoaderProgBar {
  background-color: #ffffff;
}

.doubleLoader.theme-dark .doubleLoaderProgBar span {
  background-color: #555555;
}

.doubleLoader.theme-dark.zebra .doubleLoaderTop {
  background-color: #333333;
}

.doubleLoader.theme-dark.zebra .doubleLoaderBottom {
  background-color: #121212;
}

.doubleLoader.theme-ocean .doubleLoaderTop,
.doubleLoader.theme-ocean .doubleLoaderBottom {
  background-color: #164761;
}

.doubleLoader.theme-ocean .doubleLoaderProgBar {
  background-color: #237199;
}

.doubleLoader.theme-ocean .doubleLoaderProgBar span {
  background-color: #ffffff;
}

.doubleLoader.theme-ocean.zebra .doubleLoaderTop {
  background-color: #164761;
}

.doubleLoader.theme-ocean.zebra .doubleLoaderBottom {
  background-color: #20b1ea;
}

.doubleLoader.theme-forest .doubleLoaderTop,
.doubleLoader.theme-forest .doubleLoaderBottom {
  background-color: #1f3608;
}

.doubleLoader.theme-forest .doubleLoaderProgBar {
  background-color: #5e5824;
}

.doubleLoader.theme-forest .doubleLoaderProgBar span {
  background-color: #a59965;
}

.doubleLoader.theme-forest.zebra .doubleLoaderTop {
  background-color: #1f3608;
}

.doubleLoader.theme-forest.zebra .doubleLoaderBottom {
  background-color: #332a0b;
}

.doubleLoader.theme-fluoGreen .doubleLoaderTop,
.doubleLoader.theme-fluoGreen .doubleLoaderBottom {
  background-color: #67de0f;
}

.doubleLoader.theme-fluoGreen .doubleLoaderProgBar {
  background-color: #ffffff;
}

.doubleLoader.theme-fluoGreen .doubleLoaderProgBar span {
  background-color: #dcff1b;
}

.doubleLoader.theme-fluoGreen.zebra .doubleLoaderTop {
  background-color: #67de0f;
}

.doubleLoader.theme-fluoGreen.zebra .doubleLoaderBottom {
  background-color: #53ba06;
}

.doubleLoader.theme-fluoMagenta .doubleLoaderTop,
.doubleLoader.theme-fluoMagenta .doubleLoaderBottom {
  background-color: #ff1bff;
}

.doubleLoader.theme-fluoMagenta .doubleLoaderProgBar {
  background-color: #ffffff;
}

.doubleLoader.theme-fluoMagenta .doubleLoaderProgBar span {
  background-color: #cccccc;
}

.doubleLoader.theme-fluoMagenta.zebra .doubleLoaderTop {
  background-color: #ff1bff;
}

.doubleLoader.theme-fluoMagenta.zebra .doubleLoaderBottom {
  background-color: #db07db;
}

.doubleLoader.theme-fluoYellow .doubleLoaderTop,
.doubleLoader.theme-fluoYellow .doubleLoaderBottom {
  background-color: #dcff1b;
}

.doubleLoader.theme-fluoYellow .doubleLoaderProgBar {
  background-color: #ffffff;
}

.doubleLoader.theme-fluoYellow .doubleLoaderProgBar span {
  background-color: #67de0f;
}

.doubleLoader.theme-fluoYellow.zebra .doubleLoaderTop {
  background-color: #dcff1b;
}

.doubleLoader.theme-fluoYellow.zebra .doubleLoaderBottom {
  background-color: #d5f816;
}

/* *************************************************** */
/* LettersLoader Animation */
/* *************************************************** */
.lettersLoader {
  background: #ffffff;
  color: #555555;
  font-size: 3em;
}

.lettersLoaderRow {
  display: none;
  position: absolute;
  width: 100%;
  top: 45%;
  text-align: center;
}

.lettersLoaderItem {
  display: inline-block;
  opacity: 0;
}

/* LettersLoader Animation Colors */
/* -------------------------------------------- */
.theme-light.lettersLoader {
  background: #ffffff;
  color: #555555;
}

.theme-dark.lettersLoader {
  background: #333333;
  color: #ffffff;
}

.theme-ocean.lettersLoader {
  background: #164761;
  color: #ffffff;
}

.theme-forest.lettersLoader {
  background: #1f3608;
  color: #a59965;
}

.theme-fluoGreen.lettersLoader {
  background: #67de0f;
  color: #ffffff;
}

.theme-fluoMagenta.lettersLoader {
  background: #ff1bff;
  color: #ffffff;
}

.theme-fluoGreen.lettersLoader {
  background: #ff1bff;
  color: #ffffff;
}

/* Customized */
/* -------------------------------------------- */
.theme-style-01.introLoader.counterLoader {
  background-color: #575757;
}

.theme-style-01.introLoader.counterLoader .counterLoaderBox {
  background-color: #575757;
  border-radius: 50%;
  border: 2px solid #FFF;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  width: 150px;
  height: 150px;
  line-height: 146px;
}

.theme-style-01.introLoader.counterLoader .counterLoaderBox:after {
  content: "Loading, please wait";
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  line-height: 1;
  text-align: center;
  display: block;
  font-size: 12px;
}

/*
 *  multiple sticky by bootstrap scrollspy
 */
#scrollspy-nav {
  padding: 0;
  margin: 0;
}

#scrollspy-nav li {
  float: left;
}

#scrollspy-nav a {
  -webkit-transition: 0.3s all ease-out;
  -moz-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  border-radius: 0;
}

#scrollspy-nav a:hover {
  color: #000;
}

#scrollspy-nav li.active a {
  color: #333;
}

.multiple-sticky {
  position: relative;
}

.multiple-sticky.fixed {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 1111;
}

.multiple-sticky .multiple-sticky-item {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
}

ul.multiple-sticky-nav {
  margin: 0;
  padding: 0 10px;
  background: #EDEDED;
  border-bottom: 1px solid #E5E5E5;
  border-top: 1px solid #E5E5E5;
}

ul.multiple-sticky-nav > li {
  display: inline-block;
  margin: 0;
  padding: 0;
}

ul.multiple-sticky-nav > li a {
  padding: 15px 10px;
  line-height: 1;
  display: block;
  position: relative;
  border: 1px solid transparent;
  border-top: 0;
  padding-top: 16px;
  margin-bottom: -1px;
  color: #5d5d5d;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

ul.multiple-sticky-nav > li a:hover {
  color: #D60D45;
}

ul.multiple-sticky-nav > li.active a {
  background: #F7F7F7;
  border-color: #E5E5E5;
  border-bottom-color: #F7F7F7;
  color: #D60D45;
}

.multiple-sticky.fixed {
  background: #EDEDED;
  border-bottom: 1px solid #E5E5E5;
  border-top: 1px solid #E5E5E5;
}

.multiple-sticky.fixed .multiple-sticky-container {
  width: 1170px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.multiple-sticky.fixed .multiple-sticky-item {
  width: 100%;
  border: 0;
}

.multiple-sticky.fixed ul.multiple-sticky-nav {
  border-bottom: 0;
  border-top: 0;
  padding: 0;
}

/* Customize */
.imgs-grid {
  width: 100%;
  max-width: 100%;
}

.imgs-grid-modal .modal-inner .modal-image img {
  display: inline;
}

@media only screen and (max-width: 991px) {
  .imgs-grid .imgs-grid-image .view-all .view-all-text {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .imgs-grid .imgs-grid-image .view-all .view-all-text {
    font-size: 10px;
  }
}
.aim-footer {
  background: #f8f8f8;
  padding-top: 48px;
  padding-bottom: 32px;
}

.aim-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .aim-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.aim-footer__logo {
  height: 56px;
  width: auto;
  display: block;
}

.aim-footer__cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.aim-footer__cta--mobile {
  margin-top: 8px;
  margin-bottom: 24px;
  gap: 12px;
}
.aim-footer__cta--mobile .aim-btn-outline,
.aim-footer__cta--mobile .aim-btn-yellow {
  flex: 1;
  text-align: center;
}

.aim-footer__divider {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 0 0 32px;
}

.aim-footer__main {
  margin-bottom: 8px;
}

.aim-footer__section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--aim-dark);
  margin-bottom: 16px;
}

.aim-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aim-footer__list li {
  margin-bottom: 8px;
}
.aim-footer__list a {
  font-size: 14px;
  color: #444;
  text-decoration: none;
  line-height: 1.4;
}
.aim-footer__list a:hover {
  color: var(--aim-dark);
}
.aim-footer__list--two-col {
  columns: 2;
  column-gap: 24px;
}
.aim-footer__list--two-col li {
  break-inside: avoid;
}

.aim-footer__about-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.5;
}

.aim-footer__phones {
  margin-bottom: 8px;
}
.aim-footer__phones a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--aim-dark);
  text-decoration: none;
  margin-bottom: 4px;
}
.aim-footer__phones a:hover {
  text-decoration: underline;
}

.aim-footer__address {
  margin-top: 8px;
}
.aim-footer__address a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}
.aim-footer__address a:hover {
  text-decoration: underline;
  color: var(--aim-dark);
}

.aim-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.aim-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E5E5E5;
  color: #444;
  transition: background 0.2s, color 0.2s;
}
.aim-footer__social-link:hover {
  background: #FFCA1A;
  color: #1A1A1A;
}

.aim-footer__copyright {
  font-size: 13px;
  color: #888;
  padding-top: 8px;
}
.aim-footer__copyright a {
  color: #888;
  text-decoration: none;
}
.aim-footer__copyright a:hover {
  text-decoration: underline;
}
:root {
  --aim-yellow: #FFD600;
  --aim-dark: #1A1A1A;
  --aim-white: #FFFFFF;
  --aim-gray: #F8F8F8;
  --aim-radius: 12px;
}

.aim-btn-outline {
  display: inline-block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--aim-dark);
  background: #fff;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
}
.aim-btn-outline:hover, .aim-btn-outline:focus {
  background: #f0f0f0;
  color: var(--aim-dark);
  text-decoration: none;
}

.aim-btn-yellow {
  display: inline-block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--aim-dark);
  background: var(--aim-yellow);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
}
.aim-btn-yellow:hover, .aim-btn-yellow:focus {
  background: #e6c000;
  color: var(--aim-dark);
  text-decoration: none;
}

.aim-header {
  background: #f8f8f8;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.aim-header__row1 {
  display: flex;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}

.aim-header__row2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 6px 0 10px;
}

.aim-header__logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.aim-header__nav {
  flex: 1;
}
.aim-header__nav > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.aim-header__nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--aim-dark);
  text-decoration: none;
  white-space: nowrap;
}
.aim-header__nav-link:hover, .aim-header__nav-link:focus {
  color: var(--aim-dark);
  text-decoration: none;
}

.aim-header__nav-arrow {
  font-size: 10px;
  opacity: 0.5;
}

.aim-header__nav-dropdown {
  position: relative;
}
.aim-header__nav-dropdown:hover .aim-header__dropdown {
  display: block;
}

.aim-header__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: var(--aim-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0 6px;
  margin: 0;
  min-width: 240px;
  white-space: nowrap;
  z-index: 200;
}
.aim-header__dropdown li a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  color: var(--aim-dark);
  text-decoration: none;
}
.aim-header__dropdown li a:hover {
  background: var(--aim-gray);
}

.aim-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.aim-header__utils {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

.aim-header__locale {
  font-weight: 700;
  font-size: 14px;
  color: var(--aim-dark) !important;
  text-decoration: none;
}
.aim-header__locale:hover {
  opacity: 0.7;
}

.aim-header__cart {
  color: var(--aim-dark) !important;
  text-decoration: none;
  font-size: 13px;
}
.aim-header__cart .fa-shopping-cart {
  font-size: 17px;
}

.aim-header__admin {
  font-size: 13px;
  font-weight: 600;
  color: var(--aim-dark) !important;
  text-decoration: none;
}

.aim-header__utils .dropdown-menu {
  max-height: none;
  overflow-y: visible;
}

.aim-header__burger {
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  line-height: 1;
}
.aim-header__burger i {
  font-size: 22px;
  color: var(--aim-dark);
}

.aim-header__phones {
  display: flex;
  align-items: center;
  gap: 8px;
}

.aim-header__phone {
  color: var(--aim-dark);
  text-decoration: none;
  font-size: 14px;
}
.aim-header__phone strong {
  font-weight: 700;
}
.aim-header__phone:hover {
  text-decoration: underline;
  color: var(--aim-dark);
}

.aim-header__phones a i,
.aim-header__phone-icon i {
  font-size: 20px;
}
.aim-header__phones a i.fa-viber,
.aim-header__phone-icon i.fa-viber {
  color: #7360F2;
}
.aim-header__phones a i.fa-telegram,
.aim-header__phone-icon i.fa-telegram {
  color: #2AABEE;
}
.aim-header__phones a i.fa-whatsapp,
.aim-header__phone-icon i.fa-whatsapp {
  color: #25D366;
}

.aim-header__phone-icon {
  text-decoration: none;
}

.aim-header__mobile-bar {
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.aim-header__mobile-bar .aim-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-30%);
}
.aim-header__mobile-bar .aim-header__logo-img {
  height: 48px;
}

.aim-header__mobile-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.aim-header__mobile-socials a {
  text-decoration: none;
  line-height: 1;
}
.aim-header__mobile-socials a i.fa-viber {
  font-size: 28px;
  color: #7360F2;
}
.aim-header__mobile-socials a i.fa-telegram {
  font-size: 28px;
  color: #2AABEE;
}
.aim-header__mobile-socials a i.fa-whatsapp {
  font-size: 28px;
  color: #25D366;
}

#mobileMenu {
  width: 100% !important;
  max-width: 100%;
  background: #f8f8f8;
}

.aim-mobile-header {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px !important;
  border-bottom: 1px solid #F0F0F0;
}

.aim-mobile-close {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--aim-dark);
  padding: 0;
  line-height: 1;
  width: 32px;
  flex-shrink: 0;
}

.aim-mobile-logo {
  height: 48px;
  width: auto;
  display: block;
}

.aim-mobile-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}
.aim-mobile-socials a {
  text-decoration: none;
  line-height: 1;
}
.aim-mobile-socials a i.fa-viber {
  font-size: 26px;
  color: #7360F2;
}
.aim-mobile-socials a i.fa-telegram {
  font-size: 26px;
  color: #2AABEE;
}
.aim-mobile-socials a i.fa-whatsapp {
  font-size: 26px;
  color: #25D366;
}

.aim-mobile-nav {
  list-style: none;
  padding: 16px 0;
  margin: 0;
}
.aim-mobile-nav > li {
  margin-bottom: 2px;
}
.aim-mobile-nav__section > span {
  display: block;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 17px;
  color: var(--aim-dark);
}
.aim-mobile-nav__sub {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aim-mobile-nav__sub li a {
  display: block;
  padding: 7px 20px 7px 32px;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  text-decoration: none;
}
.aim-mobile-nav__sub li a:hover {
  color: var(--aim-dark);
}
.aim-mobile-nav__link {
  display: block;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 17px;
  color: var(--aim-dark);
  text-decoration: none;
}
.aim-mobile-nav__link:hover {
  color: var(--aim-dark);
}

.aim-mobile-phones {
  padding: 16px 20px;
  border-top: 1px solid #F0F0F0;
  text-align: center;
}
.aim-mobile-phones a {
  display: block;
  color: var(--aim-dark);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 8px;
}
.aim-mobile-phones a strong {
  font-weight: 700;
}
.aim-mobile-phones a:last-child {
  margin-bottom: 0;
}
.aim-mobile-phones a:hover {
  text-decoration: underline;
}

.aim-mobile-actions {
  padding: 16px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aim-mobile-actions .aim-btn-outline,
.aim-mobile-actions .aim-btn-yellow {
  display: block;
  text-align: center;
  width: 100%;
}
.aim-hero {
  background: #f8f8f8;
  overflow: hidden;
}

.aim-hero__inner {
  display: grid;
  grid-template-columns: 340px 1fr 230px;
  align-items: start;
}
@media (max-width: 1199px) {
  .aim-hero__inner {
    grid-template-columns: 260px 1fr 200px;
  }
}
@media (max-width: 991px) {
  .aim-hero__inner {
    display: block;
  }
}

.aim-hero__left {
  display: none;
}
@media (min-width: 992px) {
  .aim-hero__left {
    display: block;
    padding-top: 80px;
    padding-left: 0;
  }
  .aim-hero__left img {
    width: 100%;
    border-radius: 12px;
    display: block;
  }
}

.aim-hero__right {
  display: none;
}
@media (min-width: 992px) {
  .aim-hero__right {
    display: block;
    overflow: hidden;
    max-height: 600px;
  }
  .aim-hero__right img {
    width: 100%;
    border-radius: 16px 0 0 16px;
    display: block;
  }
}

.aim-hero__center {
  text-align: center;
  padding: 48px 40px 0;
}
@media (max-width: 991px) {
  .aim-hero__center {
    padding: 40px 16px 40px;
  }
}

.aim-hero__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
  color: var(--aim-dark);
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .aim-hero__title {
    font-size: 28px;
    text-align: left;
  }
}

.aim-hero__subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .aim-hero__subtitle {
    font-size: 14px;
    text-align: left;
  }
}

.aim-hero__search {
  background: var(--aim-yellow);
  border-radius: 20px;
  padding: 28px 32px;
  text-align: left;
}
@media (max-width: 767px) {
  .aim-hero__search {
    padding: 24px 20px;
  }
}

.aim-hero__search-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: var(--aim-dark);
  margin-bottom: 20px;
}

.aim-hero__search-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .aim-hero__search-row {
    flex-direction: column;
    gap: 12px;
  }
}

.aim-hero__search-field {
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .aim-hero__search-field {
    width: 100%;
  }
}
.aim-hero__search-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--aim-dark);
  margin-bottom: 6px;
}

.aim-hero__select {
  width: 100%;
  padding: 10px 32px 10px 14px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  color: var(--aim-dark);
  appearance: none;
  cursor: pointer;
  outline: none;
}

.aim-hero__search-btn {
  background: var(--aim-dark);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.aim-hero__search-btn:hover {
  background: #333;
  color: #fff;
}
@media (max-width: 767px) {
  .aim-hero__search-btn {
    width: 100%;
    padding: 12px;
    border-radius: 24px;
  }
}

.aim-hero__img-bottom {
  margin-top: 24px;
  padding-bottom: 40px;
}
.aim-hero__img-bottom img {
  border-radius: 16px;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .aim-hero__img-bottom {
    display: none;
  }
}
/*------------------------------------------------------------------
* Table of Content
* 1. Reset
* 2. Default Typography
* 3. Margin Sets
* 4. Padding Sets
* 5. Border
* 6. Global
* 7. Form
* 8. List
* 9. Layout
* 10. Timing - Transition
* 11. Gap for Raw
* 12. Typography
* 13. Background
* 14. Button
* 15. Section Title
* 16. Social Media
* 17. GridLex
* 18. Customized Flex Grid from FOundation
-------------------------------------------------------------------*/
@import 'https://fonts.googleapis.com/css?family=Merriweather:300i,400i|PT+Sans:400,400i,700,700i|Roboto:300,300i,400,400i,500,500i,700,700i&subset=latin-ext&display=swap';
/**
 * Reset
 */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
  list-style-position: inside;
}

ul ul, ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}

ol ol, ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table thead {
  background-color: #fd0;
}

* {
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased !important;
  font-smoothing: antialiased !important;
  background-color: #FFF;
  height: 100% !important;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

img {
  -ms-interpolation-mode: bicubic;
}

object,
embed {
  max-width: 100%;
}

/**
 * Default Typography
 */
a,
a:visited,
a:focus,
a:active,
a:hover {
  text-decoration: none;
  outline: none;
}

a {
  font-weight: 500;
  color: #000000;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  cursor: poitner;
  text-decoration: none;
}

a:hover {
  color: #C70C41;
  text-decoration: none;
}

strong {
  font-weight: 700 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
pre,
table,
blockquote,
input,
select,
textarea {
  margin-bottom: 24px;
  margin-top: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.h1 span,
.h2 span,
.h3 span,
.h4 span,
.h5 span,
.h6 span,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  font-family: "Inter", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-decoration: none !important;
  padding: 0;
  color: #222222;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.h1 span,
.h2 span,
.h3 span,
.h4 span,
.h5 span,
.h6 span,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
.h1 a:hover,
.h2 a:hover,
.h3 a:hover,
.h4 a:hover,
.h5 a:hover,
.h6 a:hover {
  font-weight: 400;
  margin: 25px 0 15px;
}

h1,
h1 span,
h1 a,
.h1,
.h1 span,
.h1 a {
  font-size: 42px;
}

h2,
h2 span,
h2 a,
.h2,
.h2 span,
.h2 a {
  font-size: 34px;
}

h3,
h3 span,
h3 a,
.h3,
.h3 span,
.h3 a {
  font-size: 26px;
}

h4,
h4 span,
h4 a,
.h4,
.h4 span,
.h4 a {
  font-size: 20px;
  margin: 23px 0 13px;
}

h5,
h5 span,
h5 a,
.h5,
.h5 span,
.h5 a {
  font-size: 16px;
  margin: 23px 0 12px;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

h6,
h6 span,
h6 a,
.h6,
.h6 span,
.h6 a {
  font-size: 13px;
  margin: 20px 0 10px;
}

p {
  margin-bottom: 18px;
}

p.lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

p:last-child {
  margin-bottom: 0;
}

@media all and (max-width: 767px) {
  p.lead {
    font-size: 13px;
    line-height: 24px;
  }
  p {
    font-size: 12px;
  }
}
blockquote {
  overflow: hidden;
  font-family: "Merriweather", "Georgia", Times New Roman, Times, serif;
  font-size: 20px;
  line-height: 40px;
  font-style: italic;
  background: #EDEDED;
  padding: 32px;
  color: #777;
  font-weight: 300;
  border-radius: 0;
  border-left: 5px solid #E0E0E0;
  margin: 30px 0;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0 0 24px 0;
  width: 100%;
}

/**
 * Margin Sets
 */
.mr-1 {
  margin-right: 1px !important;
}

.mr-3 {
  margin-right: 3px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.ml-1 {
  margin-left: 1px !important;
}

.ml-3 {
  margin-left: 3px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.mt-1 {
  margin-top: 1px !important;
}

.mt-3 {
  margin-top: 3px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mb-1 {
  margin-bottom: 1px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mv-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.mv-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.mv-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.mv-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mv-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.mv-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.mv-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.mv-70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}

.mh-5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.mh-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.mh-15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.mh-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.mh-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.mh-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.mh-50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

.mh-70 {
  margin-left: 70px !important;
  margin-right: 70px !important;
}

.margin-5 {
  margin: 5px !important;
}

.margin-10 {
  margin: 10px !important;
}

.margin-15 {
  margin: 15px !important;
}

.margin-20 {
  margin: 20px !important;
}

.margin-25 {
  margin: 25px !important;
}

.no-magin,
ul.no-margin,
.margin-0 {
  margin: 0 !important;
}

.no-mt,
.mt-0 {
  margin-top: 0 !important;
}

.no-mb,
.mb-0 {
  margin-bottom: 0 !important;
}

.no-ml,
.ml-0 {
  margin-left: 0 !important;
}

.no-mr,
.mr-0 {
  margin-right: 0 !important;
}

@media only screen and (max-width: 991px) {
  .mb-5-sm {
    margin-bottom: 5px !important;
  }
  .mb-10-sm {
    margin-bottom: 10px !important;
  }
  .mb-15-sm {
    margin-bottom: 15px !important;
  }
  .mb-20-sm {
    margin-bottom: 20px !important;
  }
  .mb-25-sm {
    margin-bottom: 25px !important;
  }
  .mb-30-sm {
    margin-bottom: 30px !important;
  }
  .mb-40-sm {
    margin-bottom: 40px !important;
  }
  .mb-50-sm {
    margin-bottom: 50px !important;
  }
  .mt-5-sm {
    margin-top: 5px !important;
  }
  .mt-10-sm {
    margin-top: 10px !important;
  }
  .mt-15-sm {
    margin-top: 15px !important;
  }
  .mt-20-sm {
    margin-top: 20px !important;
  }
  .mt-25-sm {
    margin-top: 25px !important;
  }
  .mt-30-sm {
    margin-top: 30px !important;
  }
  .mt-40-sm {
    margin-top: 40px !important;
  }
  .mt-50-sm {
    margin-top: 50px !important;
  }
}
@media only screen and (max-width: 767px) {
  .ml-0-xs {
    margin-left: 0px !important;
  }
  .mt-10-xs {
    margin-top: 10px !important;
  }
  .mt-15-xs {
    margin-top: 15px !important;
  }
  .mt-20-xs {
    margin-top: 20px !important;
  }
  .mt-25-xs {
    margin-top: 25px !important;
  }
  .mt-30-xs {
    margin-top: 30px !important;
  }
  .mt-40-xs {
    margin-top: 40px !important;
  }
  .mt-50-xs {
    margin-top: 50px !important;
  }
  .mb-10-xs {
    margin-bottom: 10px !important;
  }
  .mb-15-xs {
    margin-bottom: 15px !important;
  }
  .mb-20-xs {
    margin-bottom: 20px !important;
  }
  .mb-25-xs {
    margin-bottom: 25px !important;
  }
  .mb-30-xs {
    margin-bottom: 30px !important;
  }
  .mb-40-xs {
    margin-bottom: 40px !important;
  }
  .mb-50-xs {
    margin-bottom: 50px !important;
  }
}
@media (max-width: 479px) {
  .mt-10-xss {
    margin-top: 10px !important;
  }
  .mt-15-xss {
    margin-top: 15px !important;
  }
  .mt-20-xss {
    margin-top: 20px !important;
  }
  .mt-25-xss {
    margin-top: 25px !important;
  }
  .mt-30-xss {
    margin-top: 30px !important;
  }
  .mt-40-xss {
    margin-top: 40px !important;
  }
  .mt-50-xss {
    margin-top: 50px !important;
  }
  .mb-10-xss {
    margin-bottom: 10px !important;
  }
  .mb-15-xss {
    margin-bottom: 15px !important;
  }
  .mb-20-xss {
    margin-bottom: 20px !important;
  }
  .mb-25-xss {
    margin-bottom: 25px !important;
  }
  .mb-30-xss {
    margin-bottom: 30px !important;
  }
  .mb-40-xss {
    margin-bottom: 40px !important;
  }
  .mb-50-xss {
    margin-bottom: 50px !important;
  }
}
/**
 * Padding Sets
 */
.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-0,
.no-pr {
  padding-right: 0 !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-0,
.no-pl {
  padding-left: 0 !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-0,
.no-pt {
  padding-top: 0px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-0,
.no-pb {
  padding-bottom: 0 !important;
}

.pv-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.pv-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.pv-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.pv-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.pv-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.pv-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.pv-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.pv-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.pv-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.no-pv,
.pv-0 {
  padding-pv: 0 !important;
  padding-bottom: 0 !important;
}

.ph-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.ph-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.ph-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.ph-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.ph-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.ph-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.ph-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.ph-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.ph-70 {
  padding-left: 70px !important;
  padding-right: 70px !important;
}

.no-ph,
.ph-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.padding-5 {
  padding: 5px !important;
}

.padding-10 {
  padding: 10px !important;
}

.padding-15 {
  padding: 15px !important;
}

.padding-20 {
  padding: 20px !important;
}

.padding-30 {
  padding: 30px !important;
}

.no-padding,
.padding-0 {
  padding: 0 !important;
}

/**
 * Border
 */
.border {
  border: 1px solid #E5E5E5;
}

.bb,
.border-bottom {
  border-bottom: 1px solid #E5E5E5;
}

.bb-dotted {
  border-bottom: 1px dotted #E5E5E5;
}

.bt,
.border-top {
  border-top: 1px solid #E5E5E5;
}

.br,
.border-right {
  border-right: 1px solid #E5E5E5;
}

.bl,
.border-left {
  border-left: 1px solid #E5E5E5;
}

/**
 * Global
 */
.absolute {
  position: absolute;
  top: 0;
  left: 0;
}

.block {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.clear {
  clear: both;
  width: 100%;
  overflow: hidden;
}

.sm-clear {
  display: none;
}

.map-wrapper img {
  max-width: none;
}

.hoover-pointer:hover,
.hover-pointer:hover {
  cursor: pointer;
}

.hoover-help:hover,
.hover-help:hover {
  cursor: help;
}

.overflow-x-hidden,
.hidden-x {
  overflow-x: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* browsers */
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#7c000000', endColorstr='#7c000000');
  /* IE */
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.map-wrapper img,
.widget-map img {
  max-width: none !important;
}

.border-shadow {
  -webkit-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 991px) {
  .clear-sm {
    clear: both;
    width: 100%;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .clear-xs {
    clear: both;
    width: 100%;
    overflow: hidden;
  }
  .pull-none-xs {
    float: none !important;
    width: 100%;
  }
}
@media (max-width: 479px) {
  .xss-hidden,
  .hidden-xss {
    display: none;
  }
  .overflow-hidden-xss {
    overflow: hidden;
  }
}
/**
 * Form
 */
label {
  font-weight: 400;
}

.form-control {
  border-radius: 0;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.3803921569);
  color: black;
}

.form-control:focus {
  border: 1px solid black;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-icon,
.form-icon-right {
  position: relative;
}

.form-icon .form-control {
  padding-left: 28px;
}

.form-icon i {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #999;
}

.form-icon-right .form-control {
  padding-right: 28px;
}

.form-icon-right i {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #999;
}

.form-lg label {
  font-size: 18px;
}

.form-lg .form-control {
  height: 42px;
}

.form-lg i {
  font-size: 18px;
  bottom: 12px;
}

.form-control[readonly] {
  background: #FFF;
}

/**
 * List
 */
ul.list-with-icon li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  line-height: 20px;
}

ul.list-with-icon li i {
  position: absolute;
  top: 4px;
  left: 0;
}

ul.list-with-icon.font-lg li {
  font-size: 15px;
  padding-left: 23px;
  line-height: 23px;
}

ul.list-with-icon.font-lg li i {
  font-size: 13px;
}

ul.list-bullet-circle li {
  list-style-type: circle;
}

ul.list-bullet-circle-2 li {
  list-style-type: inherit;
}

ul.border-bottom {
  border-bottom: 0;
}

ul.border-bottom li {
  border-bottom: 1px solid #CCC;
  padding-bottom: 10px;
}

ul.border-bottom.dotted li {
  border-bottom: 1px dotted #CCC;
}

ul.border-bottom li:last-child {
  border-bottom: 0;
}

ul.list-col-2 li {
  width: 50%;
  float: left;
  padding-right: 15px;
}

ul.list-col-3 li {
  width: 33.3333%;
  float: left;
  padding-right: 15px;
}

/**
 * Layout
 */
.container-wrapper {
  position: relative;
  background: transparent;
  padding-top: 0;
}

.with-top-header .wrapper,
.with-top-header .container-wrapper {
  padding-top: 107px;
}

.transparent-header .wrapper,
.transparent-header .container-wrapper {
  padding-top: 0;
}

section,
.section {
  padding: 90px 0;
}

.not-home .main-wrapper {
  background: #F7F7F7;
}

.content-wrapper {
  position: relative;
}

.container-outer {
  position: relative;
  overflow: hidden;
}

.right-tone {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -70%;
  width: 100%;
  background: #EDEDED;
  margin-right: -22px;
}

.container {
  position: relative;
}

.with-sidebar {
  height: 100%;
}

.with-sidebar:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25%;
  width: 1px;
  background: #E5E5E5;
}

.sidebar-line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25%;
  width: 1px;
  background: #E5E5E5;
}

.full-width-wrapper {
  overflow-x: hidden;
}

.content-wrapper {
  padding: 30px 0;
}

.sidebar-wrapper {
  padding: 30px 0;
}

.width-50 {
  width: 50%;
}

.width-25 {
  width: 25%;
}

.width-20 {
  width: 20%;
}

.width-10 {
  width: 10%;
}

.row-same-height,
.div-same-height {
  display: table;
  table-layout: fixed;
}

.col-middle,
.content-middle {
  vertical-align: middle;
}

.two-column-css {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

.col-5-wrapper:before,
.col-5-wrapper:after {
  display: table;
  content: " ";
}

.col-5-wrapper:after {
  clear: both;
}

.col-5-wrapper.gap-20 {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -20px;
}

.col-5-item {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
  float: left;
  width: 20%;
}

@media (max-width: 1280px) {
  .right-tone {
    margin-right: -8px;
  }
  .with-top-header.not-home-page .container-wrapper {
    padding-top: 20px;
  }
}
@media (max-width: 991px) {
  .container {
    width: 100%;
  }
  .with-top-header.not-home-page .container-wrapper {
    padding-top: 20px;
  }
  .wrapper,
  .container-wrapper {
    padding-top: 0;
  }
  .col-5-item {
    width: 33.3333333%;
  }
}
@media (max-width: 768px) {
  .xs-overflow {
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .col-sm-height,
  .content-sm-height {
    display: table-cell;
    float: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .col-5-item {
    width: 50%;
  }
}
@media (max-width: 479px) {
  .col-5-wrapper.gap-20 {
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: -10px;
  }
  .col-5-item {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
  }
}
.two-tone-layout {
  overflow: hidden;
}

.two-tone-wrapper {
  width: 100%;
  margin: auto;
}

.two-tone-wrapper > div {
  margin: 0;
}

.two-tone-table {
  display: table;
}

.two-tone-table .two-tone-col {
  display: table-cell;
}

.two-tone-content {
  width: 72%;
}

.two-tone-content > .inner {
  padding: 35px 30px;
  padding-left: 0;
}

.two-tone-sidebar {
  width: 28%;
  background: #EDEDED;
  position: relative;
  border-left: 1px solid #E5E5E5;
}

.two-tone-sidebar:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1000px;
  width: 1000px;
  background: #EDEDED;
}

.two-tone-sidebar > .inner {
  padding: 35px 30px;
  padding-right: 0;
}

.table-div {
  display: table;
}

.table-cell-div {
  display: table-cell;
}

.equal-content-sidebar .container {
  padding: 0;
  padding-right: 360px;
  padding-left: 15px;
  overflow: hidden;
}

.equal-content-sidebar .content-wrapper {
  float: left;
  width: 100%;
  background-color: #fff;
}

.equal-content-sidebar .sidebar-wrapper {
  float: right;
  margin-right: -345px;
  width: 310px;
  background-color: #fff;
}

.equal-content-sidebar .content-wrapper,
.equal-content-sidebar .sidebar-wrapper {
  padding-bottom: 99999px;
  margin-bottom: -99999px;
}

.equal-content-sidebar.left-sidebar .container {
  padding-right: 15px;
  padding-left: 360px;
}

.left-sidebar .content-wrapper {
  float: right;
}

.left-sidebar .sidebar-wrapper {
  float: left;
  margin-left: -345px;
}

.two-tone-layout {
  overflow: hidden;
}

.two-tone-layout .container {
  overflow: visible;
  padding-right: 335px;
}

.two-tone-layout .content-wrapper,
.two-tone-layout .sidebar-wrapper {
  position: relative;
}

.two-tone-layout .content-wrapper {
  background: #F7F7F7;
  padding-right: 30px;
}

.two-tone-layout .content-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 999px;
  left: -999px;
  background: #F7F7F7;
}

.two-tone-layout .sidebar-wrapper {
  background: #EDEDED;
  margin-right: -320px;
  width: 320px;
  padding-left: 30px;
  border-left: 1px solid #E5E5E5;
}

.two-tone-layout .sidebar-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 999px;
  right: -999px;
  background: #EDEDED;
}

.two-tone-layout.left-sidebar .container {
  padding-right: 15px;
  padding-left: 335px;
}

.two-tone-layout.left-sidebar .content-wrapper {
  float: right;
  padding-right: 0;
  padding-left: 30px;
}

.two-tone-layout.left-sidebar .content-wrapper:after {
  left: auto;
  right: -999px;
}

.two-tone-layout.left-sidebar .sidebar-wrapper {
  padding-left: 0;
  padding-right: 30px;
  margin-left: -320px;
  border-right: 1px solid #E5E5E5;
  border-left: 0;
}

.two-tone-layout.left-sidebar .sidebar-wrapper:after {
  right: auto;
  left: -999px;
}

.two-tone-layout.size-2 .container {
  overflow: visible;
  padding-right: 265px;
}

.two-tone-layout.size-2 .content-wrapper {
  background: #F7F7F7;
  padding-right: 30px;
}

.two-tone-layout.size-2 .content-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 999px;
  left: -999px;
  background: #F7F7F7;
}

.two-tone-layout.size-2 .sidebar-wrapper {
  background: #EDEDED;
  margin-right: -250px;
  width: 250px;
  padding-left: 30px;
  border-left: 1px solid #E5E5E5;
}

.two-tone-layout.left-sidebar.size-2 .container {
  padding-right: 15px;
  padding-left: 265px;
}

.two-tone-layout.left-sidebar.size-2 .content-wrapper {
  float: right;
  padding-right: 0;
  padding-left: 30px;
}

.two-tone-layout.left-sidebar.size-2 .content-wrapper:after {
  left: auto;
  right: -999px;
}

.two-tone-layout.left-sidebar.size-2 .sidebar-wrapper {
  padding-left: 0;
  padding-right: 30px;
  margin-left: -250px;
  border-right: 1px solid #E5E5E5;
  border-left: 0;
}

.two-tone-layout.left-sidebar.size-2 .sidebar-wrapper:after {
  right: auto;
  left: -999px;
}

@media only screen and (max-width: 1199px) {
  .equal-content-sidebar .container {
    padding-right: 330px;
    padding-left: 15px;
  }
  .equal-content-sidebar .sidebar-wrapper {
    margin-right: -315px;
    width: 280px;
  }
  .equal-content-sidebar.left-sidebar .container {
    padding-left: 330px;
  }
  .left-sidebar .sidebar-wrapper {
    margin-left: -315px;
  }
  .two-tone-layout .container {
    overflow: visible;
    padding-right: 320px;
  }
  .two-tone-layout .sidebar-wrapper {
    margin-right: -305px;
    width: 305px;
    padding-left: 30px;
  }
  .two-tone-layout.left-sidebar .container {
    padding-left: 320px;
  }
  .two-tone-layout.left-sidebar .sidebar-wrapper {
    margin-left: -305px;
  }
}
@media only screen and (max-width: 991px) {
  .equal-content-sidebar .container {
    padding: 0 15px;
  }
  .equal-content-sidebar .content-wrapper {
    float: none;
  }
  .equal-content-sidebar .sidebar-wrapper {
    float: none;
    margin-right: 0;
    width: 100%;
  }
  .equal-content-sidebar .content-wrapper,
  .equal-content-sidebar .sidebar-wrapper {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .equal-content-sidebar .content-wrapper {
    margin-bottom: 30px;
  }
  .equal-content-sidebar.left-sidebar .container {
    padding-left: 15px;
  }
  .left-sidebar .content-wrapper {
    float: none;
    margin-bottom: 0;
  }
  .left-sidebar .sidebar-wrapper {
    float: none;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .two-tone-layout .content-wrapper {
    padding: 0;
  }
  .two-tone-layout .sidebar-wrapper {
    margin-right: 0;
    width: 100%;
    padding: 0 5px;
    padding-top: 0;
    padding-bottom: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
    border: 1px solid #E5E5E5;
  }
  .two-tone-layout .content-wrapper:after,
  .two-tone-layout .sidebar-wrapper:after {
    display: none;
  }
  .two-tone-layout.left-sidebar .container {
    padding-left: 15px;
  }
  .two-tone-layout.left-sidebar .content-wrapper {
    padding: 0 20px;
  }
  .two-tone-layout.left-sidebar .sidebar-wrapper {
    margin-left: 0;
    width: 100%;
    padding: 0 5px;
    border-left: 0;
  }
  .two-tone-layout.size-2 .container {
    padding: 0;
  }
  .two-tone-layout.size-2 .content-wrapper {
    background: #F7F7F7;
    padding-right: 30px;
  }
  .two-tone-layout.size-2 .content-wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 999px;
    left: -999px;
    background: #F7F7F7;
  }
  .two-tone-layout.size-2 .sidebar-wrapper {
    margin-right: 0;
    width: 100%;
    padding: 0 5px;
    padding-top: 0;
    padding-bottom: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
    border: 1px solid #E5E5E5;
  }
  .two-tone-layout.left-sidebar.size-2 .container {
    padding-left: 15px;
  }
  .two-tone-layout.left-sidebar.size-2 .content-wrapper {
    padding: 0;
  }
  .two-tone-layout.left-sidebar.size-2 .content-wrapper:after,
  .two-tone-layout.left-sidebar.size-2 .sidebar-wrapper:after {
    display: none;
  }
  .two-tone-layout.left-sidebar.size-2 .sidebar-wrapper {
    margin-left: 0;
    width: 100%;
    padding: 0 5px;
    border: 1px solid #E5E5E5;
  }
}
@media only screen and (max-width: 767px) {
  .two-tone-layout .content-wrapper,
  .two-tone-layout.left-sidebar .content-wrapper {
    padding: 0;
  }
}
/**
 * Layout - Equal Content Sidebar
*/
.equal-content-sidebar-by-js {
  overflow-x: hidden;
}

.equal-content-sidebar-by-js .content-wrapper {
  float: left;
  width: 75%;
  vertical-align: top;
  padding-left: 30px;
  position: relative;
}

.equal-content-sidebar-by-js .content-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -999px;
  width: 999px;
}

.equal-content-sidebar-by-js .sidebar-wrapper {
  float: left;
  width: 25%;
  vertical-align: top;
  padding-right: 30px;
  position: relative;
  border-right: 1px solid #E5E5E5;
}

.equal-content-sidebar-by-js .sidebar-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -999px;
  width: 999px;
}

.equal-content-sidebar-by-js.ratio-70-30 .content-wrapper {
  width: 70%;
}

.equal-content-sidebar-by-js.ratio-70-30 .sidebar-wrapper {
  width: 30%;
}

.equal-content-sidebar-by-js.ratio-65-35 .content-wrapper {
  width: 65.5%;
}

.equal-content-sidebar-by-js.ratio-65-65 .sidebar-wrapper {
  width: 34.5%;
}

.equal-content-sidebar-by-gridLex {
  overflow-x: hidden;
}

.equal-content-sidebar-by-gridLex .content-wrapper {
  background: #F7F7F7;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  width: 100%;
}

.equal-content-sidebar-by-gridLex .content-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -999px;
  width: 999px;
}

.equal-content-sidebar-by-gridLex .sidebar-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  width: 100%;
}

.equal-content-sidebar-by-gridLex .sidebar-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -999px;
  width: 999px;
}

.equal-content-sidebar-by-js.right-sidebar .content-wrapper, .equal-content-sidebar-by-gridLex.right-sidebar .content-wrapper {
  padding-left: 0;
  padding-right: 30px;
}

.equal-content-sidebar-by-js.right-sidebar .content-wrapper:before, .equal-content-sidebar-by-gridLex.right-sidebar .content-wrapper:before {
  right: auto;
  left: -999px;
}

.equal-content-sidebar-by-js.right-sidebar .sidebar-wrapper, .equal-content-sidebar-by-gridLex.right-sidebar .sidebar-wrapper {
  padding-right: 10px;
  padding-left: 10px;
  float: right;
  border-right: 0;
  border-left: 1px solid #E5E5E5;
}

.equal-content-sidebar-by-js.right-sidebar .sidebar-wrapper:before, .equal-content-sidebar-by-gridLex.right-sidebar .sidebar-wrapper:before {
  left: auto;
  right: -999px;
}

@media only screen and (max-width: 1199px) {
  .equal-content-sidebar-by-js .content-wrapper {
    width: 70%;
  }
  .equal-content-sidebar-by-js .sidebar-wrapper {
    width: 30%;
  }
}
@media only screen and (max-width: 991px) {
  .equal-content-sidebar-by-js .content-wrapper {
    width: 65%;
  }
  .equal-content-sidebar-by-js .sidebar-wrapper {
    width: 35%;
  }
}
@media only screen and (max-width: 767px) {
  .equal-content-sidebar-by-js .content-wrapper {
    width: 100%;
    padding-left: 0;
  }
  .equal-content-sidebar-by-js .sidebar-wrapper {
    width: 100%;
    padding-right: 0;
    border: 0 !important;
  }
  .equal-content-sidebar-by-gridLex .content-wrapper {
    padding-left: 0;
  }
  .equal-content-sidebar-by-gridLex .sidebar-wrapper {
    padding-right: 0;
  }
  .equal-content-sidebar-by-js .content-wrapper:after, .equal-content-sidebar-by-gridLex .content-wrapper:after {
    content: "";
    background: #F7F7F7;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -999px;
    width: 999px;
  }
  .equal-content-sidebar-by-js .sidebar-wrapper:after, .equal-content-sidebar-by-gridLex .sidebar-wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -999px;
    width: 999px;
  }
  .equal-content-sidebar-by-js.right-sidebar .content-wrapper, .equal-content-sidebar-by-gridLex.right-sidebar .content-wrapper {
    padding-right: 0;
  }
  .equal-content-sidebar-by-js.right-sidebar .sidebar-wrapper, .equal-content-sidebar-by-gridLex.right-sidebar .sidebar-wrapper {
    padding-left: 0;
    float: right;
  }
  .equal-content-sidebar-by-js.right-sidebar .content-wrapper:after, .equal-content-sidebar-by-gridLex.right-sidebar .content-wrapper:after {
    left: auto;
    right: -999px;
  }
  .equal-content-sidebar-by-js.right-sidebar .sidebar-wrapper:after, .equal-content-sidebar-by-gridLex.right-sidebar .sidebar-wrapper:after {
    right: auto;
    left: -999px;
  }
}
/**
 * Timing - Transition
 */
.delay_0-5 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay_1 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay_1-5 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay_2 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay_2-5 {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.delay_3 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.delay_3-5 {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

.delay_4 {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.delay_4-5 {
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
}

.delay_5 {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

/**
 * Gap for Raw
 */
.row.gap-50 {
  margin-right: -25px;
  margin-left: -25px;
}

.gap-50 .col-sm-1,
.gap-50 .col-sm-2,
.gap-50 .col-sm-3,
.gap-50 .col-sm-4,
.gap-50 .col-sm-5,
.gap-50 .col-sm-6,
.gap-50 .col-sm-7,
.gap-50 .col-sm-8,
.gap-50 .col-sm-9,
.gap-50 .col-sm-10,
.gap-50 .col-sm-11,
.gap-50 .col-sm-12,
.gap-50 .col-md-1,
.gap-50 .col-md-2,
.gap-50 .col-md-3,
.gap-50 .col-md-4,
.gap-50 .col-md-5,
.gap-50 .col-md-6,
.gap-50 .col-md-7,
.gap-50 .col-md-8,
.gap-50 .col-md-9,
.gap-50 .col-md-10,
.gap-50 .col-md-11,
.gap-50 .col-md-12 {
  padding-right: 25px;
  padding-left: 25px;
}

.row.gap-40 {
  margin-right: -20px;
  margin-left: -20px;
}

.gap-40 .col-sm-1,
.gap-40 .col-sm-2,
.gap-40 .col-sm-3,
.gap-40 .col-sm-4,
.gap-40 .col-sm-5,
.gap-40 .col-sm-6,
.gap-40 .col-sm-7,
.gap-40 .col-sm-8,
.gap-40 .col-sm-9,
.gap-40 .col-sm-10,
.gap-40 .col-sm-11,
.gap-40 .col-sm-12,
.gap-40 .col-md-1,
.gap-40 .col-md-2,
.gap-40 .col-md-3,
.gap-40 .col-md-4,
.gap-40 .col-md-5,
.gap-40 .col-md-6,
.gap-40 .col-md-7,
.gap-40 .col-md-8,
.gap-40 .col-md-9,
.gap-40 .col-md-10,
.gap-40 .col-md-11,
.gap-40 .col-md-12 {
  padding-right: 20px;
  padding-left: 20px;
}

.row.gap-25 {
  margin-right: -13px;
  margin-left: -12px;
}

.gap-25 .col-sm-1,
.gap-25 .col-sm-2,
.gap-25 .col-sm-3,
.gap-25 .col-sm-4,
.gap-25 .col-sm-5,
.gap-25 .col-sm-6,
.gap-25 .col-sm-7,
.gap-25 .col-sm-8,
.gap-25 .col-sm-9,
.gap-25 .col-sm-10,
.gap-25 .col-sm-11,
.gap-25 .col-sm-12,
.gap-25 .col-md-1,
.gap-25 .col-md-2,
.gap-25 .col-md-3,
.gap-25 .col-md-4,
.gap-25 .col-md-5,
.gap-25 .col-md-6,
.gap-25 .col-md-7,
.gap-25 .col-md-8,
.gap-25 .col-md-9,
.gap-25 .col-md-10,
.gap-25 .col-md-11,
.gap-25 .col-md-12 {
  padding-right: 13px;
  padding-left: 12px;
}

.row.gap-20 {
  margin-right: -10px !important;
  margin-left: -10px !important;
}

.gap-20 .col-sm-1,
.gap-20 .col-sm-2,
.gap-20 .col-sm-3,
.gap-20 .col-sm-4,
.gap-20 .col-sm-5,
.gap-20 .col-sm-6,
.gap-20 .col-sm-7,
.gap-20 .col-sm-8,
.gap-20 .col-sm-9,
.gap-20 .col-sm-10,
.gap-20 .col-sm-11,
.gap-20 .col-sm-12,
.gap-20 .col-md-1,
.gap-20 .col-md-2,
.gap-20 .col-md-3,
.gap-20 .col-md-4,
.gap-20 .col-md-5,
.gap-20 .col-md-6,
.gap-20 .col-md-7,
.gap-20 .col-md-8,
.gap-20 .col-md-9,
.gap-20 .col-md-10,
.gap-20 .col-md-11,
.gap-20 .col-md-12 {
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.row.gap-15 {
  margin-right: -8px !important;
  margin-left: -7px !important;
}

.gap-15 .col-sm-1,
.gap-15 .col-sm-2,
.gap-15 .col-sm-3,
.gap-15 .col-sm-4,
.gap-15 .col-sm-5,
.gap-15 .col-sm-6,
.gap-15 .col-sm-7,
.gap-15 .col-sm-8,
.gap-15 .col-sm-9,
.gap-15 .col-sm-10,
.gap-15 .col-sm-11,
.gap-15 .col-sm-12,
.gap-15 .col-md-1,
.gap-15 .col-md-2,
.gap-15 .col-md-3,
.gap-15 .col-md-4,
.gap-15 .col-md-5,
.gap-15 .col-md-6,
.gap-15 .col-md-7,
.gap-15 .col-md-8,
.gap-15 .col-md-9,
.gap-15 .col-md-10,
.gap-15 .col-md-11,
.gap-15 .col-md-12 {
  padding-right: 8px !important;
  padding-left: 7px !important;
}

.row.gap-10 {
  margin-right: -5px !important;
  margin-left: -5px !important;
}

.gap-10 .col-sm-1,
.gap-10 .col-sm-2,
.gap-10 .col-sm-3,
.gap-10 .col-sm-4,
.gap-10 .col-sm-5,
.gap-10 .col-sm-6,
.gap-10 .col-sm-7,
.gap-10 .col-sm-8,
.gap-10 .col-sm-9,
.gap-10 .col-sm-10,
.gap-10 .col-sm-11,
.gap-10 .col-sm-12,
.gap-10 .col-md-1,
.gap-10 .col-md-2,
.gap-10 .col-md-3,
.gap-10 .col-md-4,
.gap-10 .col-md-5,
.gap-10 .col-md-6,
.gap-10 .col-md-7,
.gap-10 .col-md-8,
.gap-10 .col-md-9,
.gap-10 .col-md-10,
.gap-10 .col-md-11,
.gap-10 .col-md-12 {
  padding-right: 5px !important;
  padding-left: 5px !important;
}

.row.gap-5 {
  margin-right: -3px !important;
  margin-left: -2px !important;
}

.gap-5 .col-sm-1,
.gap-5 .col-sm-2,
.gap-5 .col-sm-3,
.gap-5 .col-sm-4,
.gap-5 .col-sm-5,
.gap-5 .col-sm-6,
.gap-5 .col-sm-7,
.gap-5 .col-sm-8,
.gap-5 .col-sm-9,
.gap-5 .col-sm-10,
.gap-5 .col-sm-11,
.gap-5 .col-sm-12,
.gap-5 .col-md-1,
.gap-5 .col-md-2,
.gap-5 .col-md-3,
.gap-5 .col-md-4,
.gap-5 .col-md-5,
.gap-5 .col-md-6,
.gap-5 .col-md-7,
.gap-5 .col-md-8,
.gap-5 .col-md-9,
.gap-5 .col-md-10,
.gap-5 .col-md-11,
.gap-5 .col-md-12 {
  padding-right: 3px !important;
  padding-left: 2px !important;
}

.row.gap-2 {
  margin-right: -1px !important;
  margin-left: -1px !important;
}

.gap-2 .col-sm-1,
.gap-2 .col-sm-2,
.gap-2 .col-sm-3,
.gap-2 .col-sm-4,
.gap-2 .col-sm-5,
.gap-2 .col-sm-6,
.gap-2 .col-sm-7,
.gap-2 .col-sm-8,
.gap-2 .col-sm-9,
.gap-2 .col-sm-10,
.gap-2 .col-sm-11,
.gap-2 .col-sm-12,
.gap-2 .col-md-1,
.gap-2 .col-md-2,
.gap-2 .col-md-3,
.gap-2 .col-md-4,
.gap-2 .col-md-5,
.gap-2 .col-md-6,
.gap-2 .col-md-7,
.gap-2 .col-md-8,
.gap-2 .col-md-9,
.gap-2 .col-md-10,
.gap-2 .col-md-11,
.gap-2 .col-md-12 {
  padding-right: 1px !important;
  padding-left: 1px !important;
}

.row.gap-1 {
  margin-right: -1px;
  margin-left: 0px;
}

.gap-1 .col-sm-1,
.gap-1 .col-sm-2,
.gap-1 .col-sm-3,
.gap-1 .col-sm-4,
.gap-1 .col-sm-5,
.gap-1 .col-sm-6,
.gap-1 .col-sm-7,
.gap-1 .col-sm-8,
.gap-1 .col-sm-9,
.gap-1 .col-sm-10,
.gap-1 .col-sm-11,
.gap-1 .col-sm-12,
.gap-1 .col-md-1,
.gap-1 .col-md-2,
.gap-1 .col-md-3,
.gap-1 .col-md-4,
.gap-1 .col-md-5,
.gap-1 .col-md-6,
.gap-1 .col-md-7,
.gap-1 .col-md-8,
.gap-1 .col-md-9,
.gap-1 .col-md-10,
.gap-1 .col-md-11,
.gap-1 .col-md-12 {
  padding-right: 1px;
  padding-left: 0;
}

.row.gap-0,
.row.no-gap {
  margin-right: 0;
  margin-left: 0;
}

.gap-0 .col-sm-1,
.gap-0 .col-sm-2,
.gap-0 .col-sm-3,
.gap-0 .col-sm-4,
.gap-0 .col-sm-5,
.gap-0 .col-sm-6,
.gap-0 .col-sm-7,
.gap-0 .col-sm-8,
.gap-0 .col-sm-9,
.gap-0 .col-sm-10,
.gap-0 .col-sm-11,
.gap-0 .col-sm-12,
.no-gap .col-sm-1,
.no-gap .col-sm-2,
.no-gap .col-sm-3,
.no-gap .col-sm-4,
.no-gap .col-sm-5,
.no-gap .col-sm-6,
.no-gap .col-sm-7,
.no-gap .col-sm-8,
.no-gap .col-sm-9,
.no-gap .col-sm-10,
.no-gap .col-sm-11,
.no-gap .col-sm-12,
.gap-0 .col-md-1,
.gap-0 .col-md-2,
.gap-0 .col-md-3,
.gap-0 .col-md-4,
.gap-0 .col-md-5,
.gap-0 .col-md-6,
.gap-0 .col-md-7,
.gap-0 .col-md-8,
.gap-0 .col-md-9,
.gap-0 .col-md-10,
.gap-0 .col-md-11,
.gap-0 .col-md-12,
.no-gap .col-md-1,
.no-gap .col-md-2,
.no-gap .col-md-3,
.no-gap .col-md-4,
.no-gap .col-md-5,
.no-gap .col-md-6,
.no-gap .col-md-7,
.no-gap .col-md-8,
.no-gap .col-md-9,
.no-gap .col-md-10,
.no-gap .col-md-11,
.no-gap .col-md-12 {
  padding-right: 0;
  padding-left: 0;
}

@media only screen and (max-width: 1199px) {
  .col-mdd-12 {
    width: 100%;
  }
  .col-mdd-7 {
    width: 58.33333333%;
  }
  .col-mdd-6 {
    width: 50%;
  }
  .col-mdd-5 {
    width: 41.66666667%;
  }
  .col-mdd-4 {
    width: 33.33333333%;
  }
  .col-mdd-3 {
    width: 25%;
  }
}
@media only screen and (max-width: 991px) {
  .row.sm-gap-20,
  .row.gap-20-sm {
    margin-right: -10px;
    margin-left: -10px;
  }
  .sm-gap-20 .col-sm-1,
  .sm-gap-20 .col-sm-2,
  .sm-gap-20 .col-sm-3,
  .sm-gap-20 .col-sm-4,
  .sm-gap-20 .col-sm-5,
  .sm-gap-20 .col-sm-6,
  .sm-gap-20 .col-sm-7,
  .sm-gap-20 .col-sm-8,
  .sm-gap-20 .col-sm-9,
  .sm-gap-20 .col-sm-10,
  .sm-gap-20 .col-sm-11,
  .sm-gap-20 .col-sm-12,
  .gap-20-sm .col-sm-1,
  .gap-20-sm .col-sm-2,
  .gap-20-sm .col-sm-3,
  .gap-20-sm .col-sm-4,
  .gap-20-sm .col-sm-5,
  .gap-20-sm .col-sm-6,
  .gap-20-sm .col-sm-7,
  .gap-20-sm .col-sm-8,
  .gap-20-sm .col-sm-9,
  .gap-20-sm .col-sm-10,
  .gap-20-sm .col-sm-11,
  .gap-20-sm .col-sm-12 {
    padding-right: 10px;
    padding-left: 10px;
  }
  .row.sm-gap-25,
  .row.gap-25-sm {
    margin-right: -10px;
    margin-left: -10px;
  }
  .sm-gap-25 .col-sm-1,
  .sm-gap-25 .col-sm-2,
  .sm-gap-25 .col-sm-3,
  .sm-gap-25 .col-sm-4,
  .sm-gap-25 .col-sm-5,
  .sm-gap-25 .col-sm-6,
  .sm-gap-25 .col-sm-7,
  .sm-gap-25 .col-sm-8,
  .sm-gap-25 .col-sm-9,
  .sm-gap-25 .col-sm-10,
  .sm-gap-25 .col-sm-11,
  .sm-gap-25 .col-sm-12,
  .gap-25-sm .col-sm-1,
  .gap-25-sm .col-sm-2,
  .gap-25-sm .col-sm-3,
  .gap-25-sm .col-sm-4,
  .gap-25-sm .col-sm-5,
  .gap-25-sm .col-sm-6,
  .gap-25-sm .col-sm-7,
  .gap-25-sm .col-sm-8,
  .gap-25-sm .col-sm-9,
  .gap-25-sm .col-sm-10,
  .gap-25-sm .col-sm-11,
  .gap-25-sm .col-sm-12 {
    padding-right: 13px;
    padding-left: 12px;
  }
  .row.sm-gap-30,
  .row.gap-30-sm {
    margin-right: -15px;
    margin-left: -15px;
  }
  .sm-gap-30 .col-sm-1,
  .sm-gap-30 .col-sm-2,
  .sm-gap-30 .col-sm-3,
  .sm-gap-30 .col-sm-4,
  .sm-gap-30 .col-sm-5,
  .sm-gap-30 .col-sm-6,
  .sm-gap-30 .col-sm-7,
  .sm-gap-30 .col-sm-8,
  .sm-gap-30 .col-sm-9,
  .sm-gap-30 .col-sm-10,
  .sm-gap-30 .col-sm-11,
  .sm-gap-30 .col-sm-12,
  .gap-30-sm .col-sm-1,
  .gap-30-sm .col-sm-2,
  .gap-30-sm .col-sm-3,
  .gap-30-sm .col-sm-4,
  .gap-30-sm .col-sm-5,
  .gap-30-sm .col-sm-6,
  .gap-30-sm .col-sm-7,
  .gap-30-sm .col-sm-8,
  .gap-30-sm .col-sm-9,
  .gap-30-sm .col-sm-10,
  .gap-30-sm .col-sm-11,
  .gap-30-sm .col-sm-12 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .row.xs-gap-20 {
    margin-right: -10px;
    margin-left: -10px;
  }
  .xs-gap-20 .col-md-1,
  .xs-gap-20 .col-md-2,
  .xs-gap-20 .col-md-3,
  .xs-gap-20 .col-md-4,
  .xs-gap-20 .col-md-5,
  .xs-gap-20 .col-md-6,
  .xs-gap-20 .col-md-7,
  .xs-gap-20 .col-md-8,
  .xs-gap-20 .col-md-9,
  .xs-gap-20 .col-md-10,
  .xs-gap-20 .col-md-11,
  .xs-gap-20 .col-md-12 {
    padding-right: 10px;
    padding-left: 10px;
  }
  .row.xs-gap-15 {
    margin-right: -8px;
    margin-left: -7px;
  }
  .xs-gap-15 .col-md-1,
  .xs-gap-15 .col-md-2,
  .xs-gap-15 .col-md-3,
  .xs-gap-15 .col-md-4,
  .xs-gap-15 .col-md-5,
  .xs-gap-15 .col-md-6,
  .xs-gap-15 .col-md-7,
  .xs-gap-15 .col-md-8,
  .xs-gap-15 .col-md-9,
  .xs-gap-15 .col-md-10,
  .xs-gap-15 .col-md-11,
  .xs-gap-15 .col-md-12 {
    padding-right: 8px;
    padding-left: 7px;
  }
  .row.gap-10 {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gap-10 .col-md-1,
  .gap-10 .col-md-2,
  .gap-10 .col-md-3,
  .gap-10 .col-md-4,
  .gap-10 .col-md-5,
  .gap-10 .col-md-6,
  .gap-10 .col-md-7,
  .gap-10 .col-md-8,
  .gap-10 .col-md-9,
  .gap-10 .col-md-10,
  .gap-10 .col-md-11,
  .gap-10 .col-md-12 {
    padding-right: 5px;
    padding-left: 5px;
  }
  .row.gap-5 {
    margin-right: -3px;
    margin-left: -2px;
  }
  .gap-5 .col-md-1,
  .gap-5 .col-md-2,
  .gap-5 .col-md-3,
  .gap-5 .col-md-4,
  .gap-5 .col-md-5,
  .gap-5 .col-md-6,
  .gap-5 .col-md-7,
  .gap-5 .col-md-8,
  .gap-5 .col-md-9,
  .gap-5 .col-md-10,
  .gap-5 .col-md-11,
  .gap-5 .col-md-12 {
    padding-right: 3px;
    padding-left: 2px;
  }
}
@media (max-width: 479px) {
  .col-xss-12 {
    width: 100%;
  }
  .col-xss-7 {
    width: 58.33333333%;
  }
  .col-xss-6 {
    width: 50%;
  }
  .col-xss-5 {
    width: 41.66666667%;
  }
  .col-xss-4 {
    width: 33.33333333%;
  }
  .col-xss-3 {
    width: 25%;
  }
}
/**
 * Typography
 */
.font10 {
  font-size: 10px !important;
}

.font12 {
  font-size: 12px !important;
}

.font13 {
  font-size: 13px !important;
}

.font14 {
  font-size: 14px !important;
}

.font16 {
  font-size: 16px !important;
}

.font18 {
  font-size: 18px !important;
}

.font20 {
  font-size: 20px !important;
}

.font22 {
  font-size: 22px !important;
}

.font24 {
  font-size: 24px !important;
}

.font26 {
  font-size: 26px !important;
}

.font100 {
  font-weight: 100 !important;
}

.font200 {
  font-weight: 200 !important;
}

.font300 {
  font-weight: 300 !important;
}

.font400 {
  font-weight: 400 !important;
}

.font500 {
  font-weight: 500 !important;
}

.font600 {
  font-weight: 600 !important;
}

.font700 {
  font-weight: 700 !important;
}

.line12 {
  line-height: 12px !important;
}

.line14 {
  line-height: 14px !important;
}

.line16 {
  line-height: 16px !important;
}

.line18 {
  line-height: 18px !important;
}

.line20 {
  line-height: 20px !important;
}

.line22 {
  line-height: 22px !important;
}

.spacing-1 {
  letter-spacing: 1px;
}

.spacing-2 {
  letter-spacing: 2px;
}

.font-raleway {
  font-family: "Raleway", serif !important;
}

.font-open-sans {
  font-family: "Open Sans", sans-serif !important;
}

.font-oswald {
  font-family: "Oswald", sans-serif !important;
}

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

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

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

.text-primary {
  color: #fd0 !important;
}

.text-info {
  color: #3A679A !important;
}

.text-success {
  color: #358D44 !important;
}

.text-warning {
  color: #F0A60F !important;
}

.text-danger {
  color: #D60D45 !important;
}

.text-color-02 {
  color: #87495B !important;
}

.text-color-03 {
  color: #0B4D81 !important;
}

.text-white {
  color: #FFF !important;
}

.text-light {
  color: #B5B5B5 !important;
}

.text-grey {
  color: #B5B5B5 !important;
}

.text-muted {
  color: #A8A8A8 !important;
}

.text-black {
  color: black !important;
}

.link-info {
  color: #2E8ED7 !important;
}

.link-info:hover {
  color: #287CBD !important;
}

.link-success {
  color: #358D44 !important;
}

.link-success:hover {
  color: #5CC72A !important;
}

.link-warning {
  color: #F0A60F !important;
}

.link-warning:hover {
  color: #E6B332 !important;
}

.link-danger {
  color: #D60D45 !important;
}

.link-danger:hover {
  color: #E6324D !important;
}

.text-darker {
  color: #333 !important;
}

.upper,
.uppercase {
  text-transform: uppercase !important;
}

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

.cap {
  text-transform: capitalize !important;
}

a.link-alt {
  color: #AB9F9D;
}

a.link-alt:hover {
  color: #F04F38;
}

.font-italic {
  font-style: italic !important;
}

.underline {
  text-decoration: underline;
}

@media only screen and (max-width: 991px) {
  .text-center-sm {
    text-align: center !important;
  }
}
/**
 * Background
 */
.bg-primary {
  background: #fd0 !important;
  color: #000 !important;
}

.bg-info {
  background: #006C95 !important;
  color: #FFF !important;
}

.bg-success {
  background: #358D44 !important;
  color: #FFF !important;
}

.bg-warning {
  background: #5a2480 !important;
  color: #FFF !important;
}

.bg-danger {
  background: #DC0D3B !important;
  color: #FFF !important;
}

.bg-color-02 {
  background: #F0B435 !important;
  color: #FFF !important;
}

.bg-color-03 {
  background: #729C2C !important;
  color: #FFF !important;
}

.bg-light {
  background: #F7F7F7 !important;
}

.bg-light-2 {
  background: #F0F0F2 !important;
  color: #333333;
}

.bg-light-3 {
  background: #F2F2F2 !important;
  color: #333333;
}

.bg-dark {
  background: #444 !important;
  color: #FFF;
}

.bg-dark-2 {
  background: #292E34 !important;
  color: #FFF;
}

.bg-dark-03 {
  background: #575757 !important;
  color: #FFF !important;
}

.bg-white {
  background: #FFF !important;
}

.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6,
.bg-info h1,
.bg-info h2,
.bg-info h3,
.bg-info h4,
.bg-info h5,
.bg-info h6,
.bg-success h1,
.bg-success h2,
.bg-success h3,
.bg-success h4,
.bg-success h5,
.bg-success h6,
.bg-danger h1,
.bg-danger h2,
.bg-danger h3,
.bg-danger h4,
.bg-danger h5,
.bg-danger h6,
.bg-color-02 h1,
.bg-color-02 h2,
.bg-color-02 h3,
.bg-color-02 h4,
.bg-color-02 h5,
.bg-color-02 h6,
.bg-bg-color-03 h1,
.bg-bg-color-03 h2,
.bg-bg-color-03 h3,
.bg-bg-color-03 h4,
.bg-bg-color-03 h5,
.bg-bg-color-03 h6 {
  color: #000 !important;
}

.bg-warning h1,
.bg-warning h2,
.bg-warning h3,
.bg-warning h4,
.bg-warning h5,
.bg-warning h6 {
  color: #fff !important;
}

.bg-primary a,
.bg-info a,
.bg-success a,
.bg-danger a {
  color: #FFF;
}

.bg-primary a:hover,
.bg-info a:hover,
.bg-success a:hover,
.bg-danger a:hover {
  text-decoration: underline;
}

.gr-primary {
  background: -webkit-linear-gradient(top, #A75EFF 10%, #8624FF 90%);
  /* Chrome 10+, Saf5.1+ */
  background: -moz-linear-gradient(top, #A75EFF 10%, #8624FF 90%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #A75EFF 10%, #8624FF 90%);
  /* IE10 */
  background: -o-linear-gradient(top, #A75EFF 10%, #8624FF 90%);
  /* Opera 11.10+ */
  background: linear-gradient(top, #A75EFF 10%, #8624FF 90%);
  /* W3C */
}

.gr-01 {
  background: -webkit-linear-gradient(90deg, #fe8c00 10%, #f83600 90%);
  /* Chrome 10+, Saf5.1+ */
  background: -moz-linear-gradient(90deg, #fe8c00 10%, #f83600 90%);
  /* FF3.6+ */
  background: -ms-linear-gradient(90deg, #fe8c00 10%, #f83600 90%);
  /* IE10 */
  background: -o-linear-gradient(90deg, #fe8c00 10%, #f83600 90%);
  /* Opera 11.10+ */
  background: linear-gradient(90deg, #fe8c00 10%, #f83600 90%);
  /* W3C */
}

.gr-02 {
  background: -webkit-linear-gradient(top, rgba(108, 91, 123, 0.6) 0%, rgba(53, 92, 125, 0.6) 100%);
  background: -o-linear-gradient(top, rgba(108, 91, 123, 0.6) 0%, rgba(53, 92, 125, 0.6) 100%);
  background: linear-gradient(to bottom, rgba(108, 91, 123, 0.6) 0%, rgba(53, 92, 125, 0.6) 100%);
}

.gr-03 {
  background: #ff5db1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ff5db1 0%, #ef017c 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff5db1), color-stop(100%, #ef017c));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ff5db1 0%, #ef017c 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ff5db1 0%, #ef017c 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ff5db1 0%, #ef017c 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ff5db1 0%, #ef017c 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5db1', endColorstr='#ef017c', GradientType=0);
  /* IE6-9 */
}

.gr-04 {
  background: #f2825b;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f2825b 0%, #e55b2b 50%, #f07146 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2825b), color-stop(50%, #e55b2b), color-stop(100%, #f07146));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f2825b 0%, #e55b2b 50%, #f07146 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f2825b 0%, #e55b2b 50%, #f07146 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f2825b 0%, #e55b2b 50%, #f07146 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f2825b 0%, #e55b2b 50%, #f07146 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2825b', endColorstr='#f07146', GradientType=0);
  /* IE6-9 */
}

.gr-05 {
  background: #d0e4f7;
  /* Old browsers */
  background: -moz-linear-gradient(top, #d0e4f7 0%, #73b1e7 24%, #0a77d5 50%, #539fe1 79%, #87bcea 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d0e4f7), color-stop(24%, #73b1e7), color-stop(50%, #0a77d5), color-stop(79%, #539fe1), color-stop(100%, #87bcea));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #d0e4f7 0%, #73b1e7 24%, #0a77d5 50%, #539fe1 79%, #87bcea 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #d0e4f7 0%, #73b1e7 24%, #0a77d5 50%, #539fe1 79%, #87bcea 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #d0e4f7 0%, #73b1e7 24%, #0a77d5 50%, #539fe1 79%, #87bcea 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #d0e4f7 0%, #73b1e7 24%, #0a77d5 50%, #539fe1 79%, #87bcea 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d0e4f7', endColorstr='#87bcea', GradientType=0);
  /* IE6-9 */
}

.gr-06 {
  background: -moz-linear-gradient(top, rgb(30, 87, 153) 0%, rgba(125, 185, 232, 0) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(30, 87, 153)), color-stop(100%, rgba(125, 185, 232, 0)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgb(30, 87, 153) 0%, rgba(125, 185, 232, 0) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgb(30, 87, 153) 0%, rgba(125, 185, 232, 0) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgb(30, 87, 153) 0%, rgba(125, 185, 232, 0) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgb(30, 87, 153) 0%, rgba(125, 185, 232, 0) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#007db9e8', GradientType=0);
  /* IE6-9 */
}

.gr-black {
  background: -moz-linear-gradient(top, rgba(51, 51, 51, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(51, 51, 51, 0.8)), color-stop(100%, rgba(0, 0, 0, 0)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(51, 51, 51, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(51, 51, 51, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(51, 51, 51, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(51, 51, 51, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333', endColorstr='#000', GradientType=0);
  /* IE6-9 */
}

.gr-black-02 {
  background: -moz-linear-gradient(bottom, rgba(51, 51, 51, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0%, rgba(51, 51, 51, 0.8)), color-stop(100%, rgba(0, 0, 0, 0)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(bottom, rgba(51, 51, 51, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(bottom, rgba(51, 51, 51, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(bottom, rgba(51, 51, 51, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  /* IE10+ */
  background: linear-gradient(to top, rgba(51, 51, 51, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333', endColorstr='#000', GradientType=0);
  /* IE6-9 */
}

.gr-white {
  background: -moz-linear-gradient(top, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgb(255, 255, 255)), color-stop(100%, rgba(255, 255, 255, 0)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFF', endColorstr='#000', GradientType=0);
  /* IE6-9 */
}

.gr-white-02 {
  background: -moz-linear-gradient(bottom, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgb(255, 255, 255)), color-stop(100%, rgba(255, 255, 255, 0)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(bottom, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(bottom, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(bottom, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  /* IE10+ */
  background: linear-gradient(to top, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFF', endColorstr='#000', GradientType=0);
  /* IE6-9 */
}

.bg-img,
.image-bg {
  background-size: cover !important;
  background-repeat: no;
  background-position: center center;
}

/**
 * Button
 */
.btn {
  border-radius: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 2px;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline: none;
}

.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}

.btn:active,
.btn.active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.btn-search {
  padding-top: 9px;
  padding-bottom: 8px;
}

.btn-sm {
  padding: 7px 20px;
  line-height: 1;
}

.btn-pure {
  padding: 0;
  font-size: inherit;
  padding: 0;
  background: none;
  line-height: 1;
}

.btn-default {
  color: #555;
  background-color: #E0E0E0;
  border-color: #E0E0E0;
}

.btn-default:hover {
  background-color: #D6D6D6;
  border-color: #D6D6D6;
}

.btn-primary {
  background: #D60D45;
  border-color: #D60D45;
  color: #fff;
}

.btn-primary:hover {
  background: black;
  border-color: #f22961;
  color: #f22961;
}

.btn-kp {
  background: #333;
  border-color: #555;
  color: #fff !important;
  border-radius: 3px;
}

.btn-kp:hover {
  background: #FFFFFF !important;
  border-color: #000000;
  color: black !important;
}

.btn-info {
  background: #2E8ED7;
  border-color: #2E8ED7;
  color: #FFF;
}

.btn-info:hover {
  background: #4477B2;
  border-color: #4477B2;
}

.btn-success {
  background: #358D44;
  border-color: #358D44;
  color: #FFF;
}

.btn-success:hover {
  background: #52B545;
  border-color: #52B545;
}

.btn-warning {
  background: #fd0;
  border-color: #fd0;
  color: black;
}

.btn-warning:hover {
  background: white;
  border-color: black;
  color: black !important;
}

.btn-danger {
  background: #D60D45;
  border-color: #D60D45;
  color: #FFF;
}

.btn-danger:hover {
  background: #C70C41;
  border-color: #C70C41;
}

.btn-color-02 {
  background: #87495B;
  border-color: #87495B;
}

.btn-color-02:hover {
  background: #A1576C;
  border-color: #A1576C;
}

.btn-color-03 {
  background: #0B4D81;
  border-color: #0B4D81;
}

.btn-color-03:hover {
  background: #0E5E9C;
  border-color: #0E5E9C;
}

.btn-facebook {
  background: #425F9C;
  color: #FFF;
  font-weight: 400;
}

.btn-facebook:hover {
  background: #4766A8;
  color: #FFF;
}

.btn-primary:hover, .btn-info:hover, .btn-success:hover,
.btn-danger:hover, .btn-warning:hover {
  color: rgba(255, 255, 255, 0.85);
}

.btn-primary.btn-inverse,
.btn-info.btn-inverse,
.btn-success.btn-inverse,
.btn-warning.btn-inverse,
.btn-danger.btn-inverse {
  background: transparent;
  border-width: 1px;
}

.btn-primary.btn-inverse {
  color: #fd0;
  border-color: #fd0 !important;
}

.btn-primary.btn-inverse:hover {
  color: #FFF !important;
  background: #fd0;
  border-color: #fd0;
}

.btn-info.btn-inverse {
  color: #2E8ED7 !important;
}

.btn-info.btn-inverse:hover {
  color: #FFF !important;
  background: #2E8ED7;
  border-color: #2E8ED7;
}

.btn-success.btn-inverse {
  color: #358D4F !important;
}

.btn-success.btn-inverse:hover {
  color: #FFF !important;
  background: #358D5E;
  border-color: #358D5E;
}

.btn-warning.btn-inverse {
  color: #F0A60F !important;
}

.btn-warning.btn-inverse:hover {
  color: #FFF !important;
  background: #F0A60F;
  border-color: #F0A60F;
}

.btn-danger.btn-inverse {
  color: #D60D45 !important;
}

.btn-danger.btn-inverse:hover {
  color: #FFF !important;
  background: #D60D45;
  border-color: #D60D45;
}

.btn-more-less,
.btn-info-more-less {
  background: none;
  padding: 0;
  font-size: 12px;
  text-transform: uppercase;
  color: #7F4681;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.btn-more-less:hover,
.btn-more-less:focus,
.btn-more-less:active,
.btn-info-more-less:hover,
.btn-info-more-less:focus,
.btn-info-more-less:active {
  color: #99549C;
}

.btn-more-less {
  background: none;
  padding: 0;
  font-size: 12px;
  text-transform: uppercase;
  color: #F65C33;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.btn-more-less:hover,
.btn-more-less:focus,
.btn-more-less:active {
  color: #F65C33;
}

.btn-icon {
  position: relative;
  padding-right: 36px;
}

.btn-icon .icon {
  position: absolute;
  top: -1px;
  bottom: -1px;
  right: 0;
  width: 36px;
  text-align: center;
  display: block;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  padding-top: 10px;
}

.btn-lg {
  padding-top: 15px;
  padding-bottom: 12px;
}

.btn-lg.btn-icon {
  padding-right: 66px;
}

.btn-lg.btn-icon .icon {
  width: 46px;
  padding-top: 13px;
  font-size: 12px;
}

/**
 * Label
 */
.label {
  border-radius: 0;
  letter-spacing: 0.7px;
}

.label-primary {
  background-color: #fd0;
}

.label-danger {
  background-color: #D60D45;
}

/**
 * Section Title
 */
.section-title {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}

.section-title h2 {
  font-size: 42px;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 25px;
}

.section-title h3 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  margin: 0 0 18px;
  text-transform: uppercase;
  position: relative;
}

.section-title h3:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  margin-top: -1px;
}

.section-title .h3 span {
  padding-right: 7px;
  z-index: 1;
  position: relative;
  font-weight: 500;
  font-size: 18px;
}

.sidebar-wrapper .section-title {
  margin-bottom: 15px;
}

.sidebar-wrapper .section-title h3 {
  text-align: left;
}

.section-title h4, .section-title h4 a {
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.content-wrapper .section-title .h3 span {
  background: #F7F7F7;
}

.section-title p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin: 25px 0 0;
  color: #828282;
  font-family: "Merriweather", serif;
  font-style: italic;
}

.section-title h1, .section-title .h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Merriweather", serif;
  font-style: italic;
}

.section-title .h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Merriweather", serif;
  font-style: italic;
}

.section-title p.p-top {
  margin: 0 0 -10px;
}

.section-title-2 {
  text-align: center;
}

.section-title-2 h2 {
  font-size: 26px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 25px;
  text-transform: uppercase;
}

.section-title-2.alt {
  margin: 0 0 30px;
}

.section-title-2.alt h2 {
  font-size: 26px;
  line-height: 26px;
  margin: 0 0 10px;
}

.section-title-2.alt p.font-italic {
  font-size: 16px;
}

.section-title-3 {
  margin-bottom: 25px;
  font-family: "Roboto";
}

.section-title-3 h1 {
  font-size: 21px;
  line-height: 25px;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0 0 35px;
  text-transform: uppercase;
  position: relative;
}

.section-title-3 h2 {
  font-size: 24px;
  line-height: 25px;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0 0 35px;
  text-transform: uppercase;
  position: relative;
}

.section-title-3 h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0 0 30px;
  text-transform: uppercase;
  position: relative;
}

.section-title-3 p {
  margin-top: 15px;
  margin-bottom: -10px;
}

.section-title-3 h1:after,
.section-title-3 h2:after,
.section-title-3 h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 60px;
  height: 2px;
  background: #fd0;
}

.section-title-3 h3:after {
  bottom: -10px;
}

h4.section-title-4 {
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  margin-bottom: 30px;
}

h4.section-title-4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 50px;
  height: 2px;
  background: #fd0;
}

@media only screen and (max-width: 991px) {
  .section-title h2 {
    font-size: 35px;
  }
  .section-title p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title h2 {
    font-size: 28px;
  }
  .section-title p {
    font-size: 14px;
  }
  .section-header-3 h2 {
    font-size: 20px;
  }
  .section-header-3 p {
    font-size: 16px;
  }
  .section-title-05 h2 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 35px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
  }
}
@media (max-width: 479px) {
  .section-title h2 {
    font-size: 26px;
  }
}
/**
 * Social Media
 */
.social-media {
  margin-bottom: 20px;
}

.social-media a {
  font-size: 15px;
  line-height: 15px;
  color: #636363;
  text-decoration: none;
  margin-right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.social-media a:last-child {
  margin-right: 0;
}

.social-media a.adobe-reader:hover {
  color: #a42222 !important;
}

.social-media a.amazon:hover {
  color: #fe9608 !important;
}

.social-media a.android:hover {
  color: #a4c639 !important;
}

.social-media a.apple:hover {
  color: #d6d7cf !important;
}

.social-media a.badoo:hover {
  color: #f17834 !important;
}

.social-media a.behance:hover {
  color: #1e69e1 !important;
}

.social-media a.blogger:hover {
  color: #f26c37 !important;
}

.social-media a.blueetooth:hover {
  color: #0a3d91 !important;
}

.social-media a.chrome:hover {
  color: #ecc31d !important;
}

.social-media a.css:hover {
  color: #14a0dd !important;
}

.social-media a.deezer:hover {
  color: #ff0090 !important;
}

.social-media a.delicious:hover {
  color: #4088da !important;
}

.social-media a.deviantart:hover {
  color: #b6ca2a !important;
}

.social-media a.digg:hover {
  color: #006094 !important;
}

.social-media a.dribble:hover {
  color: #f26798 !important;
}

.social-media a.dropbox:hover {
  color: #007de4 !important;
}

.social-media a.drupal:hover {
  color: #3677ad !important;
}

.social-media a.email:hover {
  color: #000000 !important;
}

.social-media a.facebook:hover {
  color: #3b5998 !important;
}

.social-media a.firefox:hover {
  color: #3194cb !important;
}

.social-media a.flickr:hover {
  color: #0062dd !important;
}

.social-media a.google:hover {
  color: #c63427 !important;
}

.social-media a.html:hover {
  color: #f06129 !important;
}

.social-media a.instagram:hover {
  color: #a07459 !important;
}

.social-media a.internet-explorer:hover {
  color: #20bcee !important;
}

.social-media a.itunes:hover {
  color: #169bf0 !important;
}

.social-media a.java:hover {
  color: #e66e00 !important;
}

.social-media a.joomla:hover {
  color: #5aa526 !important;
}

.social-media a.last-fm:hover {
  color: #f73600 !important;
}

.social-media a.linkedin:hover {
  color: #0077b5 !important;
}

.social-media a.linux:hover {
  color: #000000 !important;
}

.social-media a.myspace:hover {
  color: #003399 !important;
}

.social-media a.opera:hover {
  color: #c10d0c !important;
}

.social-media a.outlook:hover {
  color: #0073c6 !important;
}

.social-media a.paypal:hover {
  color: #193866 !important;
}

.social-media a.picasa:hover {
  color: #8b689f !important;
}

.social-media a.pinterest:hover {
  color: #f71819 !important;
}

.social-media a.reddit:hover {
  color: #ff4500 !important;
}

.social-media a.rss:hover {
  color: #fb7629 !important;
}

.social-media a.safari:hover {
  color: #00a9ec !important;
}

.social-media a.share:hover {
  color: #010101 !important;
}

.social-media a.skype:hover {
  color: #00abeb !important;
}

.social-media a.soundcloud:hover {
  color: #ff3b00 !important;
}

.social-media a.spotify:hover {
  color: #9ac600 !important;
}

.social-media a.steam:hover {
  color: #020202 !important;
}

.social-media a.tumblr:hover {
  color: #34465d !important;
}

.social-media a.twitter:hover {
  color: #5ea9dd !important;
}

.social-media a.utorent:hover {
  color: #269036 !important;
}

.social-media a.vimeo:hover {
  color: #1ca7cc !important;
}

.social-media a.vine:hover {
  color: #02c594 !important;
}

.social-media a.vk:hover {
  color: #4c75a3 !important;
}

.social-media a.weibo:hover {
  color: #d52b2b !important;
}

.social-media a.weixin:hover {
  color: #f03c48 !important;
}

.social-media a.whatsapp:hover {
  color: #11ae09 !important;
}

.social-media a.wikipedia:hover {
  color: #363636 !important;
}

.social-media a.windows:hover {
  color: #00abf3 !important;
}

.social-media a.word:hover {
  color: #2a5699 !important;
}

.social-media a.wordpress:hover {
  color: #464646 !important;
}

.social-media a.xing:hover {
  color: #005d5e !important;
}

.social-media a.yahoo:hover {
  color: #44029a !important;
}

.social-media a.youtube:hover {
  color: #e22d24 !important;
}

/**
 * GridLex
 * http://gridlex.devlint.fr/index.html
 */
[class*=GridLex-grid] {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 0 -0.5rem;
}

.GridLex-col,
[class*=GridLex-col-] {
  box-sizing: border-box;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 0.5rem 1rem;
}

.GridLex-col.gap-10,
[class*=GridLex-col-].gap-10 {
  padding-left: 5px;
  padding-right: 5px;
}

.GridLex-col.gap-20,
[class*=GridLex-col-].gap-20 {
  padding-left: 10px;
  padding-right: 10px;
}

.GridLex-col {
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
}

.GridLex-grid.GridLex-col,
.GridLex-grid[class*=GridLex-col-] {
  margin: 0;
  padding: 0;
}

[class*=GridLex-grid-][class*=-noGutter] {
  margin: 0;
}

[class*=GridLex-grid-][class*=-noGutter] > [class*=GridLex-col] {
  padding: 0;
}

[class*=GridLex-grid-][class*=-center] {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

[class*=GridLex-grid-][class*=-right] {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-left: auto;
}

[class*=GridLex-grid-][class*=-top] {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

[class*=GridLex-grid-][class*=-middle] {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

[class*=GridLex-grid-][class*=-bottom] {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

[class*=GridLex-grid-][class*=-reverse] {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

[class*=GridLex-grid-][class*=-column] {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

[class*=GridLex-grid-][class*=-column-reverse] {
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

[class*=GridLex-grid-][class*=-spaceBetween] {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

[class*=GridLex-grid-][class*=-spaceAround] {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

[class*=GridLex-grid-][class*=-equalHeight] > [class*=GridLex-col] {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

[class*=GridLex-col-][class*=-top] {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

[class*=GridLex-col-][class*=-middle] {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

[class*=GridLex-col-][class*=-bottom] {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

[class*=GridLex-col-][class*=-first] {
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

[class*=GridLex-col-][class*=-last] {
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

[class*=GridLex-grid-1] > [class*=GridLex-col] {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

[class*=GridLex-grid-2] > [class*=GridLex-col] {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

[class*=GridLex-grid-3] > [class*=GridLex-col] {
  -webkit-flex-basis: 33.33333333%;
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

[class*=GridLex-grid-4] > [class*=GridLex-col] {
  -webkit-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

[class*=GridLex-grid-5] > [class*=GridLex-col] {
  -webkit-flex-basis: 20%;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  max-width: 20%;
}

[class*=GridLex-grid-6] > [class*=GridLex-col] {
  -webkit-flex-basis: 16.66666667%;
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

[class*=GridLex-grid-7] > [class*=GridLex-col] {
  -webkit-flex-basis: 14.28571429%;
  -ms-flex-preferred-size: 14.28571429%;
  flex-basis: 14.28571429%;
  max-width: 14.28571429%;
}

[class*=GridLex-grid-8] > [class*=GridLex-col] {
  -webkit-flex-basis: 12.5%;
  -ms-flex-preferred-size: 12.5%;
  flex-basis: 12.5%;
  max-width: 12.5%;
}

[class*=GridLex-grid-9] > [class*=GridLex-col] {
  -webkit-flex-basis: 11.11111111%;
  -ms-flex-preferred-size: 11.11111111%;
  flex-basis: 11.11111111%;
  max-width: 11.11111111%;
}

[class*=GridLex-grid-10] > [class*=GridLex-col] {
  -webkit-flex-basis: 10%;
  -ms-flex-preferred-size: 10%;
  flex-basis: 10%;
  max-width: 10%;
}

[class*=GridLex-grid-11] > [class*=GridLex-col] {
  -webkit-flex-basis: 9.09090909%;
  -ms-flex-preferred-size: 9.09090909%;
  flex-basis: 9.09090909%;
  max-width: 9.09090909%;
}

[class*=GridLex-grid-12] > [class*=GridLex-col] {
  -webkit-flex-basis: 8.33333333%;
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

@media screen and (max-width: 80em) {
  [class*=_lg-1] > [class*=GridLex-col] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*=_lg-2] > [class*=GridLex-col] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*=_lg-3] > [class*=GridLex-col] {
    -webkit-flex-basis: 33.33333333%;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*=_lg-4] > [class*=GridLex-col] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*=_lg-5] > [class*=GridLex-col] {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  [class*=_lg-6] > [class*=GridLex-col] {
    -webkit-flex-basis: 16.66666667%;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*=_lg-7] > [class*=GridLex-col] {
    -webkit-flex-basis: 14.28571429%;
    -ms-flex-preferred-size: 14.28571429%;
    flex-basis: 14.28571429%;
    max-width: 14.28571429%;
  }
  [class*=_lg-8] > [class*=GridLex-col] {
    -webkit-flex-basis: 12.5%;
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*=_lg-9] > [class*=GridLex-col] {
    -webkit-flex-basis: 11.11111111%;
    -ms-flex-preferred-size: 11.11111111%;
    flex-basis: 11.11111111%;
    max-width: 11.11111111%;
  }
  [class*=_lg-10] > [class*=GridLex-col] {
    -webkit-flex-basis: 10%;
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
  }
  [class*=_lg-11] > [class*=GridLex-col] {
    -webkit-flex-basis: 9.09090909%;
    -ms-flex-preferred-size: 9.09090909%;
    flex-basis: 9.09090909%;
    max-width: 9.09090909%;
  }
  [class*=_lg-12] > [class*=GridLex-col] {
    -webkit-flex-basis: 8.33333333%;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
}
@media screen and (max-width: 64em) {
  [class*=_md-1] > [class*=GridLex-col] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*=_md-2] > [class*=GridLex-col] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*=_md-3] > [class*=GridLex-col] {
    -webkit-flex-basis: 33.33333333%;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*=_md-4] > [class*=GridLex-col] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*=_md-5] > [class*=GridLex-col] {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  [class*=_md-6] > [class*=GridLex-col] {
    -webkit-flex-basis: 16.66666667%;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*=_md-7] > [class*=GridLex-col] {
    -webkit-flex-basis: 14.28571429%;
    -ms-flex-preferred-size: 14.28571429%;
    flex-basis: 14.28571429%;
    max-width: 14.28571429%;
  }
  [class*=_md-8] > [class*=GridLex-col] {
    -webkit-flex-basis: 12.5%;
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*=_md-9] > [class*=GridLex-col] {
    -webkit-flex-basis: 11.11111111%;
    -ms-flex-preferred-size: 11.11111111%;
    flex-basis: 11.11111111%;
    max-width: 11.11111111%;
  }
  [class*=_md-10] > [class*=GridLex-col] {
    -webkit-flex-basis: 10%;
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
  }
  [class*=_md-11] > [class*=GridLex-col] {
    -webkit-flex-basis: 9.09090909%;
    -ms-flex-preferred-size: 9.09090909%;
    flex-basis: 9.09090909%;
    max-width: 9.09090909%;
  }
  [class*=_md-12] > [class*=GridLex-col] {
    -webkit-flex-basis: 8.33333333%;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
}
@media screen and (max-width: 48em) {
  [class*=_sm-1] > [class*=col] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*=_sm-2] > [class*=col] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*=_sm-3] > [class*=col] {
    -webkit-flex-basis: 33.33333333%;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*=_sm-4] > [class*=col] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*=_sm-5] > [class*=col] {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  [class*=_sm-6] > [class*=col] {
    -webkit-flex-basis: 16.66666667%;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*=_sm-7] > [class*=col] {
    -webkit-flex-basis: 14.28571429%;
    -ms-flex-preferred-size: 14.28571429%;
    flex-basis: 14.28571429%;
    max-width: 14.28571429%;
  }
  [class*=_sm-8] > [class*=col] {
    -webkit-flex-basis: 12.5%;
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*=_sm-9] > [class*=col] {
    -webkit-flex-basis: 11.11111111%;
    -ms-flex-preferred-size: 11.11111111%;
    flex-basis: 11.11111111%;
    max-width: 11.11111111%;
  }
  [class*=_sm-10] > [class*=col] {
    -webkit-flex-basis: 10%;
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
  }
  [class*=_sm-11] > [class*=col] {
    -webkit-flex-basis: 9.09090909%;
    -ms-flex-preferred-size: 9.09090909%;
    flex-basis: 9.09090909%;
    max-width: 9.09090909%;
  }
  [class*=_sm-12] > [class*=col] {
    -webkit-flex-basis: 8.33333333%;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
}
@media screen and (max-width: 35.5em) {
  [class*=_xs-1] > [class*=GridLex-col] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*=_xs-2] > [class*=GridLex-col] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*=_xs-3] > [class*=GridLex-col] {
    -webkit-flex-basis: 33.33333333%;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*=_xs-4] > [class*=GridLex-col] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*=_xs-5] > [class*=GridLex-col] {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  [class*=_xs-6] > [class*=GridLex-col] {
    -webkit-flex-basis: 16.66666667%;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*=_xs-7] > [class*=GridLex-col] {
    -webkit-flex-basis: 14.28571429%;
    -ms-flex-preferred-size: 14.28571429%;
    flex-basis: 14.28571429%;
    max-width: 14.28571429%;
  }
  [class*=_xs-8] > [class*=GridLex-col] {
    -webkit-flex-basis: 12.5%;
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*=_xs-9] > [class*=GridLex-col] {
    -webkit-flex-basis: 11.11111111%;
    -ms-flex-preferred-size: 11.11111111%;
    flex-basis: 11.11111111%;
    max-width: 11.11111111%;
  }
  [class*=_xs-10] > [class*=GridLex-col] {
    -webkit-flex-basis: 10%;
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
  }
  [class*=_xs-11] > [class*=GridLex-col] {
    -webkit-flex-basis: 9.09090909%;
    -ms-flex-preferred-size: 9.09090909%;
    flex-basis: 9.09090909%;
    max-width: 9.09090909%;
  }
  [class*=_xs-12] > [class*=GridLex-col] {
    -webkit-flex-basis: 8.33333333%;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
}
[class*=GridLex-grid] > [class*=GridLex-col-1] {
  -webkit-flex-basis: 8.33333333%;
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

[class*=GridLex-grid] > [class*=GridLex-col-2] {
  -webkit-flex-basis: 16.66666667%;
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

[class*=GridLex-grid] > [class*=GridLex-col-3] {
  -webkit-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

[class*=GridLex-grid] > [class*=GridLex-col-4] {
  -webkit-flex-basis: 33.33333333%;
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

[class*=GridLex-grid] > [class*=GridLex-col-5] {
  -webkit-flex-basis: 41.66666667%;
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

[class*=GridLex-grid] > [class*=GridLex-col-6] {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

[class*=GridLex-grid] > [class*=GridLex-col-7] {
  -webkit-flex-basis: 58.33333333%;
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

[class*=GridLex-grid] > [class*=GridLex-col-8] {
  -webkit-flex-basis: 66.66666667%;
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

[class*=GridLex-grid] > [class*=GridLex-col-9] {
  -webkit-flex-basis: 75%;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

[class*=GridLex-grid] > [class*=GridLex-col-10] {
  -webkit-flex-basis: 83.33333333%;
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

[class*=GridLex-grid] > [class*=GridLex-col-11] {
  -webkit-flex-basis: 91.66666667%;
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

[class*=GridLex-grid] > [class*=GridLex-col-12] {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

[class*=GridLex-grid] > [push-left*=off-0] {
  margin-left: 0;
}

[class*=GridLex-grid] > [push-left*=off-1] {
  margin-left: 8.33333333%;
}

[class*=GridLex-grid] > [push-left*=off-2] {
  margin-left: 16.66666667%;
}

[class*=GridLex-grid] > [push-left*=off-3] {
  margin-left: 25%;
}

[class*=GridLex-grid] > [push-left*=off-4] {
  margin-left: 33.33333333%;
}

[class*=GridLex-grid] > [push-left*=off-5] {
  margin-left: 41.66666667%;
}

[class*=GridLex-grid] > [push-left*=off-6] {
  margin-left: 50%;
}

[class*=GridLex-grid] > [push-left*=off-7] {
  margin-left: 58.33333333%;
}

[class*=GridLex-grid] > [push-left*=off-8] {
  margin-left: 66.66666667%;
}

[class*=GridLex-grid] > [push-left*=off-9] {
  margin-left: 75%;
}

[class*=GridLex-grid] > [push-left*=off-10] {
  margin-left: 83.33333333%;
}

[class*=GridLex-grid] > [push-left*=off-11] {
  margin-left: 91.66666667%;
}

[class*=GridLex-grid] > [push-right*=off-0] {
  margin-right: 0;
}

[class*=GridLex-grid] > [push-right*=off-1] {
  margin-right: 8.33333333%;
}

[class*=GridLex-grid] > [push-right*=off-2] {
  margin-right: 16.66666667%;
}

[class*=GridLex-grid] > [push-right*=off-3] {
  margin-right: 25%;
}

[class*=GridLex-grid] > [push-right*=off-4] {
  margin-right: 33.33333333%;
}

[class*=GridLex-grid] > [push-right*=off-5] {
  margin-right: 41.66666667%;
}

[class*=GridLex-grid] > [push-right*=off-6] {
  margin-right: 50%;
}

[class*=GridLex-grid] > [push-right*=off-7] {
  margin-right: 58.33333333%;
}

[class*=GridLex-grid] > [push-right*=off-8] {
  margin-right: 66.66666667%;
}

[class*=GridLex-grid] > [push-right*=off-9] {
  margin-right: 75%;
}

[class*=GridLex-grid] > [push-right*=off-10] {
  margin-right: 83.33333333%;
}

[class*=GridLex-grid] > [push-right*=off-11] {
  margin-right: 91.66666667%;
}

@media screen and (max-width: 80em) {
  [class*=GridLex-grid] > [class*=_lg-1] {
    -webkit-flex-basis: 8.33333333%;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  [class*=GridLex-grid] > [class*=_lg-2] {
    -webkit-flex-basis: 16.66666667%;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*=GridLex-grid] > [class*=_lg-3] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*=GridLex-grid] > [class*=_lg-4] {
    -webkit-flex-basis: 33.33333333%;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*=GridLex-grid] > [class*=_lg-5] {
    -webkit-flex-basis: 41.66666667%;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  [class*=GridLex-grid] > [class*=_lg-6] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*=GridLex-grid] > [class*=_lg-7] {
    -webkit-flex-basis: 58.33333333%;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  [class*=GridLex-grid] > [class*=_lg-8] {
    -webkit-flex-basis: 66.66666667%;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  [class*=GridLex-grid] > [class*=_lg-9] {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  [class*=GridLex-grid] > [class*=_lg-10] {
    -webkit-flex-basis: 83.33333333%;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  [class*=GridLex-grid] > [class*=_lg-11] {
    -webkit-flex-basis: 91.66666667%;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  [class*=GridLex-grid] > [class*=_lg-12] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*=GridLex-grid] > [push-left*=_lg-0] {
    margin-left: 0;
  }
  [class*=GridLex-grid] > [push-left*=_lg-1] {
    margin-left: 8.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_lg-2] {
    margin-left: 16.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_lg-3] {
    margin-left: 25%;
  }
  [class*=GridLex-grid] > [push-left*=_lg-4] {
    margin-left: 33.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_lg-5] {
    margin-left: 41.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_lg-6] {
    margin-left: 50%;
  }
  [class*=GridLex-grid] > [push-left*=_lg-7] {
    margin-left: 58.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_lg-8] {
    margin-left: 66.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_lg-9] {
    margin-left: 75%;
  }
  [class*=GridLex-grid] > [push-left*=_lg-10] {
    margin-left: 83.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_lg-11] {
    margin-left: 91.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_lg-0] {
    margin-right: 0;
  }
  [class*=GridLex-grid] > [push-right*=_lg-1] {
    margin-right: 8.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_lg-2] {
    margin-right: 16.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_lg-3] {
    margin-right: 25%;
  }
  [class*=GridLex-grid] > [push-right*=_lg-4] {
    margin-right: 33.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_lg-5] {
    margin-right: 41.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_lg-6] {
    margin-right: 50%;
  }
  [class*=GridLex-grid] > [push-right*=_lg-7] {
    margin-right: 58.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_lg-8] {
    margin-right: 66.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_lg-9] {
    margin-right: 75%;
  }
  [class*=GridLex-grid] > [push-right*=_lg-10] {
    margin-right: 83.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_lg-11] {
    margin-right: 91.66666667%;
  }
}
@media screen and (max-width: 64em) {
  [class*=GridLex-grid] > [class*=_md-1] {
    -webkit-flex-basis: 8.33333333%;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  [class*=GridLex-grid] > [class*=_md-2] {
    -webkit-flex-basis: 16.66666667%;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*=GridLex-grid] > [class*=_md-3] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*=GridLex-grid] > [class*=_md-4] {
    -webkit-flex-basis: 33.33333333%;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*=GridLex-grid] > [class*=_md-5] {
    -webkit-flex-basis: 41.66666667%;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  [class*=GridLex-grid] > [class*=_md-6] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*=GridLex-grid] > [class*=_md-7] {
    -webkit-flex-basis: 58.33333333%;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  [class*=GridLex-grid] > [class*=_md-8] {
    -webkit-flex-basis: 66.66666667%;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  [class*=GridLex-grid] > [class*=_md-9] {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  [class*=GridLex-grid] > [class*=_md-10] {
    -webkit-flex-basis: 83.33333333%;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  [class*=GridLex-grid] > [class*=_md-11] {
    -webkit-flex-basis: 91.66666667%;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  [class*=GridLex-grid] > [class*=_md-12] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*=GridLex-grid] > [push-left*=_md-0] {
    margin-left: 0;
  }
  [class*=GridLex-grid] > [push-left*=_md-1] {
    margin-left: 8.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_md-2] {
    margin-left: 16.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_md-3] {
    margin-left: 25%;
  }
  [class*=GridLex-grid] > [push-left*=_md-4] {
    margin-left: 33.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_md-5] {
    margin-left: 41.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_md-6] {
    margin-left: 50%;
  }
  [class*=GridLex-grid] > [push-left*=_md-7] {
    margin-left: 58.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_md-8] {
    margin-left: 66.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_md-9] {
    margin-left: 75%;
  }
  [class*=GridLex-grid] > [push-left*=_md-10] {
    margin-left: 83.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_md-11] {
    margin-left: 91.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_md-0] {
    margin-right: 0;
  }
  [class*=GridLex-grid] > [push-right*=_md-1] {
    margin-right: 8.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_md-2] {
    margin-right: 16.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_md-3] {
    margin-right: 25%;
  }
  [class*=GridLex-grid] > [push-right*=_md-4] {
    margin-right: 33.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_md-5] {
    margin-right: 41.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_md-6] {
    margin-right: 50%;
  }
  [class*=GridLex-grid] > [push-right*=_md-7] {
    margin-right: 58.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_md-8] {
    margin-right: 66.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_md-9] {
    margin-right: 75%;
  }
  [class*=GridLex-grid] > [push-right*=_md-10] {
    margin-right: 83.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_md-11] {
    margin-right: 91.66666667%;
  }
}
@media only screen and (max-width: 1199px) {
  [class*=GridLex-grid] > [class*=_mdd-1] {
    -webkit-flex-basis: 8.33333333%;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  [class*=GridLex-grid] > [class*=_mdd-2] {
    -webkit-flex-basis: 16.66666667%;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*=GridLex-grid] > [class*=_mdd-3] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*=GridLex-grid] > [class*=_mdd-4] {
    -webkit-flex-basis: 33.33333333%;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*=GridLex-grid] > [class*=_mdd-5] {
    -webkit-flex-basis: 41.66666667%;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  [class*=GridLex-grid] > [class*=_mdd-6] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*=GridLex-grid] > [class*=_mdd-7] {
    -webkit-flex-basis: 58.33333333%;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  [class*=GridLex-grid] > [class*=_mdd-8] {
    -webkit-flex-basis: 66.66666667%;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  [class*=GridLex-grid] > [class*=_mdd-9] {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  [class*=GridLex-grid] > [class*=_mdd-10] {
    -webkit-flex-basis: 83.33333333%;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  [class*=GridLex-grid] > [class*=_mdd-11] {
    -webkit-flex-basis: 91.66666667%;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  [class*=GridLex-grid] > [class*=_mdd-12] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*=GridLex-grid] > [push-left*=_mdd-0] {
    margin-left: 0;
  }
  [class*=GridLex-grid] > [push-left*=_mdd-1] {
    margin-left: 8.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_mdd-2] {
    margin-left: 16.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_mdd-3] {
    margin-left: 25%;
  }
  [class*=GridLex-grid] > [push-left*=_mdd-4] {
    margin-left: 33.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_mdd-5] {
    margin-left: 41.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_mdd-6] {
    margin-left: 50%;
  }
  [class*=GridLex-grid] > [push-left*=_mdd-7] {
    margin-left: 58.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_mdd-8] {
    margin-left: 66.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_mdd-9] {
    margin-left: 75%;
  }
  [class*=GridLex-grid] > [push-left*=_mdd-10] {
    margin-left: 83.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_mdd-11] {
    margin-left: 91.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_mdd-0] {
    margin-right: 0;
  }
  [class*=GridLex-grid] > [push-right*=_mdd-1] {
    margin-right: 8.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_mdd-2] {
    margin-right: 16.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_mdd-3] {
    margin-right: 25%;
  }
  [class*=GridLex-grid] > [push-right*=_mdd-4] {
    margin-right: 33.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_mdd-5] {
    margin-right: 41.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_mdd-6] {
    margin-right: 50%;
  }
  [class*=GridLex-grid] > [push-right*=_mdd-7] {
    margin-right: 58.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_mdd-8] {
    margin-right: 66.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_mdd-9] {
    margin-right: 75%;
  }
  [class*=GridLex-grid] > [push-right*=_mdd-10] {
    margin-right: 83.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_mdd-11] {
    margin-right: 91.66666667%;
  }
}
@media only screen and (max-width: 991px) {
  [class*=GridLex-grid] > [class*=_sm-1] {
    -webkit-flex-basis: 8.33333333%;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  [class*=GridLex-grid] > [class*=_sm-2] {
    -webkit-flex-basis: 16.66666667%;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*=GridLex-grid] > [class*=_sm-3] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*=GridLex-grid] > [class*=_sm-4] {
    -webkit-flex-basis: 33.33333333%;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*=GridLex-grid] > [class*=_sm-5] {
    -webkit-flex-basis: 41.66666667%;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  [class*=GridLex-grid] > [class*=_sm-6] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*=GridLex-grid] > [class*=_sm-7] {
    -webkit-flex-basis: 58.33333333%;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  [class*=GridLex-grid] > [class*=_sm-8] {
    -webkit-flex-basis: 66.66666667%;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  [class*=GridLex-grid] > [class*=_sm-9] {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  [class*=GridLex-grid] > [class*=_sm-10] {
    -webkit-flex-basis: 83.33333333%;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  [class*=GridLex-grid] > [class*=_sm-11] {
    -webkit-flex-basis: 91.66666667%;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  [class*=GridLex-grid] > [class*=_sm-12] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*=GridLex-grid] > [push-left*=_sm-0] {
    margin-left: 0;
  }
  [class*=GridLex-grid] > [push-left*=_sm-1] {
    margin-left: 8.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_sm-2] {
    margin-left: 16.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_sm-3] {
    margin-left: 25%;
  }
  [class*=GridLex-grid] > [push-left*=_sm-4] {
    margin-left: 33.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_sm-5] {
    margin-left: 41.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_sm-6] {
    margin-left: 50%;
  }
  [class*=GridLex-grid] > [push-left*=_sm-7] {
    margin-left: 58.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_sm-8] {
    margin-left: 66.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_sm-9] {
    margin-left: 75%;
  }
  [class*=GridLex-grid] > [push-left*=_sm-10] {
    margin-left: 83.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_sm-11] {
    margin-left: 91.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_sm-0] {
    margin-right: 0;
  }
  [class*=GridLex-grid] > [push-right*=_sm-1] {
    margin-right: 8.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_sm-2] {
    margin-right: 16.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_sm-3] {
    margin-right: 25%;
  }
  [class*=GridLex-grid] > [push-right*=_sm-4] {
    margin-right: 33.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_sm-5] {
    margin-right: 41.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_sm-6] {
    margin-right: 50%;
  }
  [class*=GridLex-grid] > [push-right*=_sm-7] {
    margin-right: 58.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_sm-8] {
    margin-right: 66.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_sm-9] {
    margin-right: 75%;
  }
  [class*=GridLex-grid] > [push-right*=_sm-10] {
    margin-right: 83.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_sm-11] {
    margin-right: 91.66666667%;
  }
}
@media only screen and (max-width: 767px) {
  [class*=GridLex-grid] > [class*=_xs-1] {
    -webkit-flex-basis: 8.33333333%;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  [class*=GridLex-grid] > [class*=_xs-2] {
    -webkit-flex-basis: 16.66666667%;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*=GridLex-grid] > [class*=_xs-3] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*=GridLex-grid] > [class*=_xs-4] {
    -webkit-flex-basis: 33.33333333%;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*=GridLex-grid] > [class*=_xs-5] {
    -webkit-flex-basis: 41.66666667%;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  [class*=GridLex-grid] > [class*=_xs-6] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*=GridLex-grid] > [class*=_xs-7] {
    -webkit-flex-basis: 58.33333333%;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  [class*=GridLex-grid] > [class*=_xs-8] {
    -webkit-flex-basis: 66.66666667%;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  [class*=GridLex-grid] > [class*=_xs-9] {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  [class*=GridLex-grid] > [class*=_xs-10] {
    -webkit-flex-basis: 83.33333333%;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  [class*=GridLex-grid] > [class*=_xs-11] {
    -webkit-flex-basis: 91.66666667%;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  [class*=GridLex-grid] > [class*=_xs-12] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*=GridLex-grid] > [push-left*=_xs-0] {
    margin-left: 0;
  }
  [class*=GridLex-grid] > [push-left*=_xs-1] {
    margin-left: 8.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_xs-2] {
    margin-left: 16.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_xs-3] {
    margin-left: 25%;
  }
  [class*=GridLex-grid] > [push-left*=_xs-4] {
    margin-left: 33.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_xs-5] {
    margin-left: 41.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_xs-6] {
    margin-left: 50%;
  }
  [class*=GridLex-grid] > [push-left*=_xs-7] {
    margin-left: 58.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_xs-8] {
    margin-left: 66.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_xs-9] {
    margin-left: 75%;
  }
  [class*=GridLex-grid] > [push-left*=_xs-10] {
    margin-left: 83.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_xs-11] {
    margin-left: 91.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_xs-0] {
    margin-right: 0;
  }
  [class*=GridLex-grid] > [push-right*=_xs-1] {
    margin-right: 8.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_xs-2] {
    margin-right: 16.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_xs-3] {
    margin-right: 25%;
  }
  [class*=GridLex-grid] > [push-right*=_xs-4] {
    margin-right: 33.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_xs-5] {
    margin-right: 41.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_xs-6] {
    margin-right: 50%;
  }
  [class*=GridLex-grid] > [push-right*=_xs-7] {
    margin-right: 58.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_xs-8] {
    margin-right: 66.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_xs-9] {
    margin-right: 75%;
  }
  [class*=GridLex-grid] > [push-right*=_xs-10] {
    margin-right: 83.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_xs-11] {
    margin-right: 91.66666667%;
  }
}
@media (max-width: 479px) {
  [class*=GridLex-grid] > [class*=_xss-1] {
    -webkit-flex-basis: 8.33333333%;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  [class*=GridLex-grid] > [class*=_xss-2] {
    -webkit-flex-basis: 16.66666667%;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  [class*=GridLex-grid] > [class*=_xss-3] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*=GridLex-grid] > [class*=_xss-4] {
    -webkit-flex-basis: 33.33333333%;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  [class*=GridLex-grid] > [class*=_xss-5] {
    -webkit-flex-basis: 41.66666667%;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  [class*=GridLex-grid] > [class*=_xss-6] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*=GridLex-grid] > [class*=_xss-7] {
    -webkit-flex-basis: 58.33333333%;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  [class*=GridLex-grid] > [class*=_xss-8] {
    -webkit-flex-basis: 66.66666667%;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  [class*=GridLex-grid] > [class*=_xss-9] {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  [class*=GridLex-grid] > [class*=_xss-10] {
    -webkit-flex-basis: 83.33333333%;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  [class*=GridLex-grid] > [class*=_xss-11] {
    -webkit-flex-basis: 91.66666667%;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  [class*=GridLex-grid] > [class*=_xss-12] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*=GridLex-grid] > [push-left*=_xss-0] {
    margin-left: 0;
  }
  [class*=GridLex-grid] > [push-left*=_xss-1] {
    margin-left: 8.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_xss-2] {
    margin-left: 16.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_xss-3] {
    margin-left: 25%;
  }
  [class*=GridLex-grid] > [push-left*=_xss-4] {
    margin-left: 33.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_xss-5] {
    margin-left: 41.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_xss-6] {
    margin-left: 50%;
  }
  [class*=GridLex-grid] > [push-left*=_xss-7] {
    margin-left: 58.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_xss-8] {
    margin-left: 66.66666667%;
  }
  [class*=GridLex-grid] > [push-left*=_xss-9] {
    margin-left: 75%;
  }
  [class*=GridLex-grid] > [push-left*=_xss-10] {
    margin-left: 83.33333333%;
  }
  [class*=GridLex-grid] > [push-left*=_xss-11] {
    margin-left: 91.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_xss-0] {
    margin-right: 0;
  }
  [class*=GridLex-grid] > [push-right*=_xss-1] {
    margin-right: 8.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_xss-2] {
    margin-right: 16.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_xss-3] {
    margin-right: 25%;
  }
  [class*=GridLex-grid] > [push-right*=_xss-4] {
    margin-right: 33.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_xss-5] {
    margin-right: 41.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_xss-6] {
    margin-right: 50%;
  }
  [class*=GridLex-grid] > [push-right*=_xss-7] {
    margin-right: 58.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_xss-8] {
    margin-right: 66.66666667%;
  }
  [class*=GridLex-grid] > [push-right*=_xss-9] {
    margin-right: 75%;
  }
  [class*=GridLex-grid] > [push-right*=_xss-10] {
    margin-right: 83.33333333%;
  }
  [class*=GridLex-grid] > [push-right*=_xss-11] {
    margin-right: 91.66666667%;
  }
}
/** Customized */
.GridLex-gap-1-wrappper, .GridLex-gap-1-wrapper {
  margin-left: -1px;
}

.GridLex-gap-1-wrappper > div > div > div, .GridLex-gap-1-wrapper > div > div > div {
  margin-left: 1px;
  width: 100%;
}

.GridLex-gap-10-wrappper, .GridLex-gap-10-wrapper {
  margin-left: -5px;
  margin-right: -5px;
}

.GridLex-gap-10-wrappper > div > div > div, .GridLex-gap-10-wrapper > div > div > div {
  margin-left: 5px;
  margin-right: 5px;
  width: 100%;
}

.GridLex-gap-15-wrappper, .GridLex-gap-15-wrapper {
  margin-left: -7px;
  margin-right: -8px;
}

.GridLex-gap-15-wrappper > div > div > div, .GridLex-gap-15-wrapper > div > div > div {
  margin-left: 7px;
  margin-right: 8px;
  width: 100%;
}

.GridLex-gap-20-wrappper, .GridLex-gap-20-wrapper {
  margin-left: -10px;
  margin-right: -10px;
}

.GridLex-gap-20-wrappper > div > div > div, .GridLex-gap-20-wrapper > div > div > div {
  margin-left: 10px;
  margin-right: 10px;
  width: 100%;
}

.GridLex-gap-30-wrappper, .GridLex-gap-30-wrapper {
  margin-left: -15px;
  margin-right: -15px;
}

.GridLex-gap-30-wrappper > div > div > div, .GridLex-gap-30-wrapper > div > div > div {
  margin-left: 15px;
  margin-right: 15px;
  width: 100%;
}

/**
 * Customized Flex Grid from FOundation
 * http://foundation.zurb.com/forum/posts/36234-flex-grid-in-css
 */
.flex-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin-left: auto;
  margin-right: auto;
}

.flex-row .flex-row,
.flex-column-row .flex-row {
  margin-left: 0;
  margin-right: 0;
}

.flex-column,
.flex-columns {
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  padding-left: 0;
  padding-right: 0;
}

.flex-small-1 {
  -webkit-flex: 0 0 8.33333%;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.flex-small-2 {
  -webkit-flex: 0 0 16.66667%;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.flex-small-3 {
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.flex-small-4 {
  -webkit-flex: 0 0 33.33333%;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.flex-small-5 {
  -webkit-flex: 0 0 41.66667%;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.flex-small-6 {
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.flex-small-7 {
  -webkit-flex: 0 0 58.33333%;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.flex-small-8 {
  -webkit-flex: 0 0 66.66667%;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.flex-small-9 {
  -webkit-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.flex-small-10 {
  -webkit-flex: 0 0 83.33333%;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.flex-small-11 {
  -webkit-flex: 0 0 91.66667%;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.flex-small-12 {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media screen and (min-width: 32em) {
  .flex-medium-1 {
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .flex-medium-2 {
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .flex-medium-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .flex-medium-4 {
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .flex-medium-5 {
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .flex-medium-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .flex-medium-7 {
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .flex-medium-8 {
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .flex-medium-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .flex-medium-10 {
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .flex-medium-11 {
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .flex-medium-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 64em) {
  .flex-large-1 {
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .flex-large-2 {
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .flex-large-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .flex-large-4 {
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .flex-large-5 {
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .flex-large-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .flex-large-7 {
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .flex-large-8 {
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .flex-large-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .flex-large-10 {
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .flex-large-11 {
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .flex-large-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 32em) {
  .flex-medium-expand {
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
  }
}
@media screen and (min-width: 64em) {
  .flex-large-expand {
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
  }
}
.flex-shrink {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.flex-row.flex-medium-unstack .flex-column {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

@media screen and (min-width: 32em) {
  .flex-row.flex-medium-unstack .flex-column {
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
  }
}
.flex-row.flex-large-unstack .flex-column {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

@media screen and (min-width: 64em) {
  .flex-row.flex-large-unstack .flex-column {
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
  }
}
.flex-small-order-1 {
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.flex-small-order-2 {
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.flex-small-order-3 {
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
}

.flex-small-order-4 {
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
}

.flex-small-order-5 {
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.flex-small-order-6 {
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}

@media screen and (min-width: 32em) {
  .flex-medium-order-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .flex-medium-order-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .flex-medium-order-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .flex-medium-order-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .flex-medium-order-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .flex-medium-order-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
}
@media screen and (min-width: 64em) {
  .flex-large-order-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .flex-large-order-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .flex-large-order-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .flex-large-order-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .flex-large-order-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .flex-large-order-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
}
.flex-row.flex-align-right {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-row.flex-align-center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-row.flex-align-justify {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-row.flex-align-spaced {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-row.flex-align-top {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-column.flex-align-top,
.flex-columns.flex-align-top {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.flex-row.flex-align-bottom {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-column.flex-align-bottom,
.flex-columns.flex-align-bottom {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.flex-row.flex-align-middle {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-column.flex-align-middle,
.flex-columns.flex-align-middle {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.flex-row.flex-align-stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-column.flex-align-stretch,
.flex-columns.flex-align-stretch {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.flex-md-1 {
  -webkit-flex: 0 0 8.33333%;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.flex-md-2 {
  -webkit-flex: 0 0 16.66667%;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.flex-md-3 {
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.flex-md-4 {
  -webkit-flex: 0 0 33.33333%;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.flex-md-5 {
  -webkit-flex: 0 0 41.66667%;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.flex-md-6 {
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.flex-md-7 {
  -webkit-flex: 0 0 58.33333%;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.flex-md-8 {
  -webkit-flex: 0 0 66.66667%;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.flex-md-9 {
  -webkit-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.flex-md-10 {
  -webkit-flex: 0 0 83.33333%;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.flex-md-11 {
  -webkit-flex: 0 0 91.66667%;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.flex-md-12 {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.flex-gap-1 {
  margin-left: -1px;
  margin-right: 0;
}

.flex-gap-1 > .flex-columns,
.flex-gap-1 > .flex-column {
  padding-left: 1px;
  padding-right: 0;
}

.flex-gap-2 {
  margin-left: -1px;
  margin-right: -1px;
}

.flex-gap-2 > .flex-columns,
.flex-gap-2 > .flex-column {
  padding-left: 1px;
  padding-right: 1px;
}

.flex-gap-5 {
  margin-left: -3px;
  margin-right: -2px;
}

.flex-gap-5 > .flex-columns,
.flex-gap-5 > .flex-column {
  padding-left: 3px;
  padding-right: 2px;
}

.flex-gap-10 {
  margin-left: -5px;
  margin-right: -5px;
}

.flex-gap-10 > .flex-columns,
.flex-gap-10 > .flex-column {
  padding-left: 5px;
  padding-right: 5px;
}

.flex-gap-15 {
  margin-left: -8px;
  margin-right: -7px;
}

.flex-gap-15 > .flex-columns,
.flex-gap-15 > .flex-column {
  padding-left: 8px;
  padding-right: 7px;
}

.flex-gap-20 {
  margin-left: -10px;
  margin-right: -10px;
}

.flex-gap-20 > .flex-columns,
.flex-gap-20 > .flex-column {
  padding-left: 10px;
  padding-right: 10px;
}

.flex-gap-25 {
  margin-left: -13px;
  margin-right: -12px;
}

.flex-gap-25 > .flex-columns,
.flex-gap-25 > .flex-column {
  padding-left: 13px;
  padding-right: 12px;
}

.flex-gap-30 {
  margin-left: -15px;
  margin-right: -15px;
}

.flex-gap-30 > .flex-columns,
.flex-gap-30 > .flex-column {
  padding-left: 15px;
  padding-right: 15px;
}

.flex-gap-40 {
  margin-left: -20px;
  margin-right: -20px;
}

.flex-gap-40 > .flex-columns,
.flex-gap-40 > .flex-column {
  padding-left: 20px;
  padding-right: 20px;
}

.flex-gap-50 {
  margin-left: -25px;
  margin-right: -25px;
}

.flex-gap-50 > .flex-columns,
.flex-gap-50 > .flex-column {
  padding-left: 25px;
  padding-right: 25px;
}

[class*=flex-gap-] .flex-gap-1 {
  margin-left: -1px;
  margin-right: 0;
}

[class*=flex-gap-] .flex-gap-2 {
  margin-left: -1px;
  margin-right: -1px;
}

[class*=flex-gap-] .flex-gap-5 {
  margin-left: -3px;
  margin-right: -2px;
}

[class*=flex-gap-] .flex-gap-10 {
  margin-left: -5px;
  margin-right: -5px;
}

[class*=flex-gap-] .flex-gap-15 {
  margin-left: -8px;
  margin-right: -7px;
}

[class*=flex-gap-] .flex-gap-20 {
  margin-left: -10px;
  margin-right: -10px;
}

[class*=flex-gap-] .flex-gap-25 {
  margin-left: -13px;
  margin-right: -12px;
}

[class*=flex-gap-] .flex-gap-30 {
  margin-left: -15px;
  margin-right: -15px;
}

[class*=flex-gap-] .flex-gap-40 {
  margin-left: -20px;
  margin-right: -20px;
}

[class*=flex-gap-] .flex-gap-50 {
  margin-left: -25px;
  margin-right: -25px;
}

@media only screen and (min-width: 1200px) {
  .flex-lg-1 {
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .flex-lg-2 {
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .flex-lg-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .flex-lg-4 {
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .flex-lg-5 {
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .flex-lg-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .flex-lg-7 {
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .flex-lg-8 {
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .flex-lg-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .flex-lg-10 {
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .flex-lg-11 {
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .flex-lg-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .flex-mdd-1 {
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .flex-mdd-2 {
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .flex-mdd-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .flex-mdd-4 {
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .flex-mdd-5 {
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .flex-mdd-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .flex-mdd-7 {
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .flex-mdd-8 {
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .flex-mdd-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .flex-mdd-10 {
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .flex-mdd-11 {
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .flex-mdd-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .flex-sm-1 {
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .flex-sm-2 {
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .flex-sm-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .flex-sm-4 {
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .flex-sm-5 {
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .flex-sm-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .flex-sm-7 {
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .flex-sm-8 {
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .flex-sm-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .flex-sm-10 {
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .flex-sm-11 {
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .flex-sm-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .flex-xs-1 {
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .flex-xs-2 {
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .flex-xs-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .flex-xs-4 {
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .flex-xs-5 {
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .flex-xs-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .flex-xs-7 {
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .flex-xs-8 {
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .flex-xs-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .flex-xs-10 {
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .flex-xs-11 {
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .flex-xs-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 479px) {
  .flex-xss-1 {
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .flex-xss-2 {
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .flex-xss-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .flex-xss-4 {
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .flex-xss-5 {
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .flex-xss-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .flex-xss-7 {
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .flex-xss-8 {
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .flex-xss-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .flex-xss-10 {
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .flex-xss-11 {
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .flex-xss-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
body {
  background-color: #F8F8F8;
}

.aim-bg {
  background-color: #F8F8F8;
}

.breadcrumb-wrapper {
  padding-top: 20px;
  padding-bottom: 0;
  background: #F8F8F8;
}

.breadcrumb-wrapper .breadcrumb {
  font-size: 13px;
  font-weight: 400;
}

.breadcrumb-wrapper .breadcrumb a {
  color: #999;
  font-weight: 400;
  text-decoration: none;
}

.breadcrumb-wrapper .breadcrumb > li:first-child a {
  font-weight: 700;
  color: var(--aim-dark);
}

.breadcrumb-wrapper .breadcrumb > li + li::before {
  content: "/ ";
  color: #999;
  padding: 0 4px;
}

.aim-services {
  background: #F8F8F8;
}

.aim-services__title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--aim-dark);
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .aim-services__title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

.aim-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 767px) {
  .aim-services__grid {
    grid-template-columns: 1fr;
  }
}

.aim-services__card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  transition: transform 0.2s ease;
}
.aim-services__card:hover {
  transform: scale(1.02);
}
@media (max-width: 575px) {
  .aim-services__card {
    padding: 20px;
    gap: 16px;
  }
}

.aim-services__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--aim-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.aim-services__icon .fa {
  font-size: 32px;
  color: var(--aim-dark);
}
@media (max-width: 575px) {
  .aim-services__icon {
    width: 64px;
    height: 64px;
  }
  .aim-services__icon .fa {
    font-size: 26px;
  }
}

.aim-services__info {
  flex: 1;
}

.aim-services__card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--aim-dark);
  margin: 0 0 6px;
  line-height: 1.3;
}

.aim-services__card-desc {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.aim-about {
  padding: 56px 0;
  background: #f8f8f8;
}
@media (max-width: 767px) {
  .aim-about {
    padding: 32px 0;
  }
}

.aim-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 767px) {
  .aim-about__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.aim-about__card {
  background: #f1f1f1;
  border-radius: 16px;
  padding: 32px;
}

.aim-about__card-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--aim-dark);
  margin-bottom: 16px;
}

.aim-about__card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;
}

.aim-about__card-emphasis {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--aim-dark);
  margin: 0;
}

.aim-about__effectiveness {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
}

.aim-about__eff-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--aim-dark);
  margin-bottom: 20px;
}

.aim-about__eff-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aim-about__eff-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--aim-dark);
}
.aim-about__eff-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--aim-yellow);
  border-radius: 50%;
}
.aim-about__eff-list li strong {
  display: inline;
}

.aim-prices__section {
  background: #f8f8f8;
  padding: 48px 0;
}
@media (max-width: 767px) {
  .aim-prices__section {
    padding: 32px 0;
  }
}

.aim-prices__card {
  background: var(--aim-yellow);
  border-radius: 20px;
  padding: 40px;
  margin: 0 auto;
  max-width: 920px;
}
@media (max-width: 767px) {
  .aim-prices__card {
    padding: 28px 20px;
    margin: 32px 0;
  }
}

.aim-prices__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  color: var(--aim-dark);
  margin-bottom: 28px;
}

.aim-prices__row {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .aim-prices__row {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  .aim-prices__row {
    gap: 12px;
  }
}

.aim-prices__field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .aim-prices__field {
    width: 100%;
  }
}

.aim-prices__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--aim-dark);
  margin: 0 0 6px 0 !important;
  height: 20px;
  line-height: 20px;
}

.aim-prices__select {
  width: 100%;
  height: 48px !important;
  max-height: 48px !important;
  min-height: 48px !important;
  padding: 0 36px 0 16px !important;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: none !important;
  border-radius: 10px;
  font-size: 14px;
  color: var(--aim-dark);
  appearance: none;
  cursor: pointer;
  outline: none !important;
  display: block !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  box-shadow: none !important;
  line-height: 48px !important;
}

.aim-prices__value {
  width: 100%;
  min-height: 48px;
  padding: 10px 16px !important;
  background: #fff;
  border-radius: 10px;
  font-size: 14px;
  color: var(--aim-dark);
  display: flex !important;
  align-items: center;
  box-sizing: border-box !important;
  margin: 0 !important;
  box-shadow: none !important;
  border: none !important;
  line-height: 1.3;
}

.aim-prices__footer {
  text-align: center;
  margin-top: 24px;
}

.aim-prices__btn {
  display: inline-block;
  background: var(--aim-dark);
  color: #fff;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.aim-prices__btn:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}

.aim-steps {
  padding: 56px 0;
  background: #f8f8f8;
}

.aim-steps__header {
  text-align: center;
  margin-bottom: 40px;
}

.aim-steps__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--aim-dark);
  margin-bottom: 6px;
}

.aim-steps__subtitle {
  font-size: 15px;
  color: #666;
  margin: 0;
}

.aim-steps__track {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.aim-steps__track::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 18px;
  right: calc(20% - 18px);
  height: 40px;
  background: linear-gradient(to right, #fffadc, var(--aim-yellow));
  border-radius: 40px;
  z-index: 0;
}

.aim-steps__item {
  flex: 1;
  position: relative;
  z-index: 1;
}

.aim-steps__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--aim-dark);
  margin-bottom: 16px;
}

.aim-steps__label {
  font-size: 12px;
  color: #999;
  margin-bottom: 6px;
}

.aim-steps__desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0;
  color: var(--aim-dark);
  padding-right: 12px;
}

@media (max-width: 767px) {
  .aim-steps__track {
    flex-direction: column;
    gap: 0;
  }
  .aim-steps__track::before {
    top: 18px;
    bottom: 18px;
    left: -2px;
    right: auto;
    width: 40px;
    height: auto;
    background: linear-gradient(to bottom, #fffadc, var(--aim-yellow));
    border-radius: 40px;
  }
  .aim-steps__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 28px;
  }
  .aim-steps__num {
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .aim-steps__label {
    white-space: nowrap;
  }
  .aim-steps__desc {
    padding-right: 0;
  }
}
.aim-types {
  padding: 56px 0;
  background: #f8f8f8;
  overflow: hidden;
}
@media (max-width: 575px) {
  .aim-types {
    overflow: visible;
  }
}

.aim-types__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: var(--aim-dark);
  margin-bottom: 32px;
}

.aim-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  justify-content: center;
}
@media (max-width: 991px) {
  .aim-types__grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .aim-types__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 4px 16px 12px 16px;
    margin: 0 -16px;
    width: calc(100% + 32px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .aim-types__grid::-webkit-scrollbar {
    display: none;
  }
}

.aim-types__card {
  width: 100%;
  max-width: 380px;
  justify-self: center;
  height: 240px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-decoration: none;
  color: #070707;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.aim-types__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
  color: #070707;
  text-decoration: none;
}
.aim-types__card:hover .aim-types__arrow {
  color: #070707;
}
.aim-types__card.hidden-card {
  display: none;
}
@media (max-width: 575px) {
  .aim-types__card {
    min-width: 285px;
    max-width: 285px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
  .aim-types__card.hidden-card {
    display: none !important;
  }
}

.aim-types__card-top {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.aim-types__icon {
  width: 112px;
  height: 112px;
  background: #FFCA1A;
  border-radius: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  flex-shrink: 0;
}
.aim-types__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: none;
}

.aim-types__arrow {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 20px;
  top: 20px;
  font-size: 20px;
  color: #8C8C8C;
  line-height: 24px;
  text-align: center;
  transition: color 0.2s;
}

.aim-types__card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.aim-types__card-name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #070707;
  margin: 0;
}

.aim-types__card-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #070707;
  margin: 0;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aim-types__footer {
  text-align: center;
  margin-top: 40px;
}

.aim-btn-black {
  background: #070707;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 40px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.aim-btn-black:hover {
  background: #222;
  transform: translateY(-2px);
}
.aim-btn-black:active {
  transform: translateY(0);
}

.aim-advantage {
  padding: 56px 0;
  background: #f8f8f8;
}

.aim-advantage__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 24px;
}
@media (max-width: 991px) {
  .aim-advantage__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
}
@media (max-width: 767px) {
  .aim-advantage__grid {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
}

.aim-advantage__card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.aim-advantage__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--aim-dark);
  margin-bottom: 12px;
}

.aim-advantage__text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.aim-clients {
  padding: 48px 0;
  background: #f8f8f8;
  overflow: hidden;
}

.aim-clients__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
  color: var(--aim-dark);
  margin-bottom: 32px;
}

.aim-clients__scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.aim-clients__scroll-wrapper::before, .aim-clients__scroll-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.aim-clients__scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f8f8f8 20%, transparent);
}
.aim-clients__scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f8f8f8 20%, transparent);
}

.aim-clients__list {
  display: inline-flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
  backface-visibility: hidden;
}
.aim-clients__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 70px;
  min-width: 220px;
}
.aim-clients__list img {
  max-height: 44px;
  max-width: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.aim-clients__list img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.15);
}
.aim-clients__list.aim-clients__list--scrolling {
  animation: aim-infinite-scroll 80s linear infinite;
}
.aim-clients__list.aim-clients__list--scrolling:hover {
  animation-play-state: paused;
}

@keyframes aim-infinite-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (max-width: 767px) {
  .aim-clients__list {
    gap: 40px;
  }
  .aim-clients__list img {
    max-height: 36px;
    max-width: 120px;
  }
  .aim-clients__list.aim-clients__list--scrolling {
    animation-duration: 25s;
  }
}
.aim-warranty {
  padding: 56px 0;
  background: var(--aim-yellow);
}

.aim-warranty__card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.aim-warranty__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--aim-dark);
  margin-bottom: 20px;
}

.aim-warranty__text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--aim-dark);
  margin: 0;
}

.aim-cta {
  padding: 56px 0;
  background: #f8f8f8;
}
@media (max-width: 767px) {
  .aim-cta {
    padding: 40px 0;
  }
}

.aim-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 20px;
  align-items: stretch;
}
@media (max-width: 991px) {
  .aim-cta__grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.aim-cta__left, .aim-cta__right {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.aim-cta__photo, .aim-cta__form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.aim-cta__photo-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.aim-cta__warranty {
  background: var(--aim-yellow);
  border-radius: 20px;
  padding: 24px 32px;
  margin-bottom: 12px;
  position: relative;
  isolation: isolate;
}
@media (min-width: 992px) {
  .aim-cta__warranty::after {
    content: "";
    position: absolute;
    top: 60px;
    right: -12px;
    width: 26px;
    height: 26px;
    background: var(--aim-yellow);
    transform: rotate(45deg);
    border-radius: 4px;
    z-index: -1;
  }
}

.aim-cta__warranty-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--aim-dark);
  margin-bottom: 16px;
}

.aim-cta__warranty-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--aim-dark);
  margin: 0;
}
.aim-cta__warranty-text strong {
  font-weight: 700;
}

.aim-cta__photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.aim-cta__photo-img {
  width: 100%;
  height: 100% !important;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  min-height: 380px;
}

.aim-cta__contacts {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 24px 32px;
  margin-bottom: 12px;
  position: relative;
  isolation: isolate;
}
@media (min-width: 992px) {
  .aim-cta__contacts::before {
    content: "";
    position: absolute;
    top: 60px;
    left: -12px;
    width: 26px;
    height: 26px;
    background: #f4f4f4;
    transform: rotate(45deg);
    border-radius: 4px;
    z-index: -1;
  }
}

.aim-cta__form {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 24px 32px;
}

.aim-cta__section-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--aim-dark);
  margin-bottom: 12px;
}

.aim-cta__hours {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}
.aim-cta__hours strong {
  color: var(--aim-dark);
}

.aim-cta__employees {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 575px) {
  .aim-cta__employees {
    grid-template-columns: 1fr;
  }
}

.aim-cta__employee {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aim-cta__emp-photo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.aim-cta__emp-info p {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.4;
}

.aim-cta__emp-name {
  font-weight: 800;
  font-size: 17px !important;
  color: var(--aim-dark);
  margin-bottom: 6px !important;
}

.aim-cta__emp-role {
  color: #666;
  font-size: 14px !important;
  margin-bottom: 12px !important;
}

.aim-cta__emp-contact {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.6;
}
.aim-cta__emp-contact:hover {
  color: var(--aim-yellow);
  text-decoration: none;
}

.aim-cta__emp-phone {
  margin-top: 6px;
}

.aim-form {
  margin-top: 24px;
}
.aim-form .aim-form__row-2 {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.aim-form .aim-form__row-2 .aim-form__field {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .aim-form .aim-form__row-2 {
    flex-direction: column;
  }
}
.aim-form .aim-form__field {
  margin-bottom: 16px;
}

.aim-form__input {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  color: var(--aim-dark);
  outline: none;
  background: #fff;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.2s;
}
.aim-form__input:focus {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}
.aim-form__input::placeholder {
  color: #999;
}

.aim-form__phone-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.2s;
}
.aim-form__phone-wrap:focus-within {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.aim-form__phone-prefix {
  padding: 14px 8px 14px 16px;
  font-size: 15px;
  color: var(--aim-dark);
  font-weight: 600;
  white-space: nowrap;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.aim-form__phone-prefix .fa-caret-down {
  color: #ccc;
  font-size: 14px;
  margin-left: 2px;
}

.aim-form__phone-input {
  flex: 1;
  border: none;
  background: #fff;
  outline: none;
  padding: 14px 20px 14px 0;
  font-size: 15px;
  color: var(--aim-dark);
  min-width: 0;
}
.aim-form__phone-input::placeholder {
  color: #999;
}

.aim-form__textarea {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  color: var(--aim-dark);
  outline: none;
  background: #fff;
  resize: vertical;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.2s;
  min-height: 120px;
}
.aim-form__textarea:focus {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}
.aim-form__textarea::placeholder {
  color: #999;
}

.aim-form__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.aim-form__submit,
.aim-form__submit:not(:disabled) {
  background: #111 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 18px 36px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: none !important;
}
.aim-form__submit:hover, .aim-form__submit:focus, .aim-form__submit:active,
.aim-form__submit:not(:disabled):hover,
.aim-form__submit:not(:disabled):focus,
.aim-form__submit:not(:disabled):active {
  background: #FFC200 !important;
  color: #111 !important;
  transform: translateY(-2px);
}

.aim-gallery {
  padding: 0 0 72px;
  background: #F8F8F8;
}

.aim-gallery__title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.6;
  color: var(--aim-dark);
  margin: 0 0 24px;
}
@media (max-width: 767px) {
  .aim-gallery__title {
    font-size: 26px;
    margin-bottom: 16px;
  }
}

.aim-gallery__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.aim-gallery__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.aim-gallery__filter-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--aim-dark);
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--aim-dark);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.aim-gallery__filter-btn:hover {
  background: #e8e8e8;
}
.aim-gallery__filter-btn.active {
  background: rgb(208, 208, 208);
  color: var(--aim-dark);
  border-color: rgb(208, 208, 208);
}

.aim-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 991px) {
  .aim-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .aim-gallery__grid {
    grid-template-columns: 1fr;
  }
}

.aim-gallery__item {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.aim-gallery__item.is-hidden {
  display: none !important;
}

.aim-gallery__link {
  display: block;
}

.aim-gallery__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.aim-gallery__img:hover {
  transform: scale(1.04);
}

.aim-gallery__footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.aim-gallery__load-btn {
  padding: 14px 48px;
  border-radius: 24px;
  border: none;
  background: var(--aim-dark);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.aim-gallery__load-btn:hover {
  opacity: 0.85;
}

.aim-about-page {
  background: #F8F8F8;
}

.aim-about-page__title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.6;
  color: var(--aim-dark);
  margin: 0 0 32px;
}
@media (max-width: 767px) {
  .aim-about-page__title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

.aim-about-page__grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 56px;
}
@media (max-width: 767px) {
  .aim-about-page__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 32px;
  }
}

.aim-about-page__photo {
  border-radius: 20px;
  overflow: hidden;
  background: #e0e0e0;
  min-height: 280px;
}

.aim-about-page__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aim-about-page__highlight {
  border: 2px solid var(--aim-yellow);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.aim-about-page__highlight p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--aim-dark);
  margin: 0;
}

.aim-about-page__text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.aim-why {
  background: #F8F8F8;
  padding: 56px 0;
}
@media (max-width: 767px) {
  .aim-why {
    padding: 32px 0;
  }
}

.aim-why__title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--aim-dark);
  text-align: center;
  margin: 0 0 40px;
}
@media (max-width: 767px) {
  .aim-why__title {
    font-size: 20px;
    font-weight: 800;
    text-align: left;
    margin-bottom: 24px;
  }
}

.aim-why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .aim-why__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .aim-why__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.aim-why__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aim-why__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--aim-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aim-why__icon .fa {
  font-size: 22px;
  color: var(--aim-dark);
}

.aim-why__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--aim-dark);
  margin: 0;
}

.aim-type-page {
  background: #F8F8F8;
  padding-bottom: 56px;
}

.aim-type-page__title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--aim-dark);
  margin: 0 0 32px;
}
@media (max-width: 767px) {
  .aim-type-page__title {
    font-size: 26px;
  }
}

.aim-type-body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--aim-dark);
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border-left: none !important;
}
.aim-type-body h1, .aim-type-body h2, .aim-type-body h3 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.aim-type-body h2 {
  font-size: 24px;
}
.aim-type-body h3 {
  font-size: 20px;
}
.aim-type-body p {
  margin-bottom: 20px;
}
.aim-type-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}
.aim-type-body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}
.aim-type-body ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aim-yellow);
}
.aim-type-body a {
  color: var(--aim-yellow);
  text-decoration: underline;
  font-weight: 600;
}
.aim-type-body a:hover {
  color: var(--aim-dark);
}
@media (max-width: 767px) {
  .aim-type-body {
    padding: 32px 24px;
    font-size: 14px;
  }
  .aim-type-body p, .aim-type-body ul, .aim-type-body ol, .aim-type-body li {
    font-size: 14px;
  }
}

.aim-region-filter {
  margin-bottom: 40px;
}

.aim-region-filter__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 40px;
}
@media (max-width: 767px) {
  .aim-region-filter__card {
    padding: 24px 20px;
  }
}

.aim-region-filter__title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--aim-dark);
  text-align: center;
  margin: 0 0 28px;
}

.aim-region-filter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 24px;
}
@media (max-width: 991px) {
  .aim-region-filter__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .aim-region-filter__grid {
    grid-template-columns: 1fr;
  }
}

.aim-region-filter__col {
  display: flex;
  flex-direction: column;
}

.aim-region-filter__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
}

.aim-region-filter__letter {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--aim-yellow);
  min-width: 16px;
  flex-shrink: 0;
}

.aim-region-filter__link {
  font-size: 14px;
  color: var(--aim-dark);
  text-decoration: none;
  line-height: 1.5;
}
.aim-region-filter__link:hover {
  color: #000;
  text-decoration: underline;
}

.aim-search-filter {
  margin-bottom: 40px;
}

.aim-search-filter__card {
  background: var(--aim-yellow);
  border-radius: 20px;
  padding: 32px 40px;
}
@media (max-width: 767px) {
  .aim-search-filter__card {
    padding: 24px 20px;
  }
}

.aim-search-filter__title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--aim-dark);
  text-align: center;
  margin: 0 0 24px;
}

.aim-search-filter__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .aim-search-filter__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .aim-search-filter__row {
    grid-template-columns: 1fr;
  }
}

.aim-search-filter__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aim-search-filter__label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--aim-dark);
}

.aim-search-filter__select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--aim-dark);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1A1A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  height: 48px;
}
.aim-search-filter__select:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.3);
}

.aim-search-filter__address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.aim-search-filter__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--aim-dark);
  height: 48px;
}
.aim-search-filter__input::placeholder {
  color: #aaa;
}
.aim-search-filter__input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.aim-search-filter__footer {
  display: flex;
  justify-content: center;
}

.aim-search-filter__btn {
  padding: 12px 48px;
  border: none;
  border-radius: 20px;
  background: var(--aim-dark);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.aim-search-filter__btn:hover {
  opacity: 0.85;
}

.aim-city-list {
  margin-bottom: 24px;
}

.aim-city-list__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--aim-dark);
  margin: 0 0 12px;
}

.aim-city-list__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aim-city-list__link {
  font-size: 14px;
  color: var(--aim-dark);
  text-decoration: none;
  padding: 4px 0;
}
.aim-city-list__link:hover {
  text-decoration: underline;
}
.aim-city-list__link::after {
  content: ",";
  margin-right: 4px;
}
.aim-city-list__link:last-child::after {
  content: "";
}

.aim-table-wrap {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}

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

.aim-table__head-row {
  background: #E2E2E2;
  border-bottom: 2px solid #E2E2E2;
}

.aim-table__th {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--aim-dark);
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}

.aim-table__row {
  border-bottom: 1px solid #F0F0F0;
  transition: background 0.15s;
  cursor: pointer;
}
.aim-table__row:last-child {
  border-bottom: none;
}
.aim-table__row:nth-child(even) {
  background: #F8F8F8;
}
.aim-table__row:hover {
  background: var(--aim-yellow);
}
.aim-table__row:hover .aim-table__order-btn {
  background: var(--aim-dark);
  color: #fff;
  border-color: var(--aim-dark);
}
.aim-table__row:hover .aim-table__icon-link,
.aim-table__row:hover .fa {
  color: var(--aim-dark);
}

.aim-table__td {
  font-size: 13px;
  color: var(--aim-dark);
  padding: 14px 16px;
  vertical-align: middle;
}

.aim-table__td--address {
  max-width: 280px;
}

.aim-table__link {
  color: var(--aim-dark);
  text-decoration: none;
}
.aim-table__link:hover {
  text-decoration: underline;
}

.aim-table__code-link {
  color: var(--aim-dark);
  font-weight: 600;
  text-decoration: none;
}

.aim-table__format {
  font-size: 12px;
  color: #777;
}

.aim-table__icon-link {
  color: var(--aim-dark);
  font-size: 18px;
  text-decoration: none;
}

.fa.aim-table__icon--muted {
  color: #ccc;
  font-size: 18px;
}

.aim-table__order-btn {
  display: inline-block;
  padding: 7px 18px;
  border: 1.5px solid var(--aim-dark);
  border-radius: 20px;
  background: transparent;
  color: var(--aim-dark);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.aim-table__order-btn:hover {
  background: var(--aim-dark);
  color: #fff;
}

#imagemodal .modal-dialog {
  --bs-modal-width: 720px;
}
#imagemodal .modal-content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
#imagemodal .modal-header {
  background: #fff;
  border-bottom: 1px solid #E5E5E5;
  padding: 16px 24px;
}
#imagemodal .modal-header .modal-title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--aim-dark);
}
#imagemodal .modal-header .btn-close {
  opacity: 0.6;
  margin: 4px 4px 4px 0;
  padding: 10px;
}
#imagemodal .modal-header .btn-close:hover {
  opacity: 1;
}
#imagemodal .modal-body {
  padding: 16px;
  background: #F8F8F8;
}
#imagemodal .modal-body img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}
#imagemodal .modal-footer {
  background: #fff;
  border-top: 1px solid #E5E5E5;
  padding: 12px 24px;
}
#imagemodal .modal-footer .btn {
  font-family: "Inter", sans-serif;
  letter-spacing: 1px;
  text-transform: none;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
}

.modal-dialog {
  --bs-modal-width: 700px;
}

body.modal-open {
  overflow: hidden !important;
}

.modal {
  z-index: 10000 !important;
}

.modal-backdrop {
  z-index: 9999 !important;
}

.aim-callback-dialog {
  max-width: 700px;
}
.aim-callback-dialog.aim-callback-dialog--wide {
  max-width: 720px;
}

.modal-content.aim-callback-modal {
  background: #E2E2E2;
}

.aim-callback-modal {
  border-radius: 20px;
  border: none;
  padding: 36px 36px 32px;
  position: relative;
}
.aim-callback-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--aim-dark);
  cursor: pointer;
  padding: 0;
  opacity: 0.6;
}
.aim-callback-modal__close:hover {
  opacity: 1;
}
.aim-callback-modal__body {
  padding: 0;
}
.aim-callback-modal__title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--aim-dark);
  line-height: 1.4;
  margin: 0 0 24px;
  padding-right: 24px;
}
.aim-callback-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.aim-callback-modal__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .aim-callback-modal__fields {
    grid-template-columns: 1fr;
  }
}
.aim-callback-modal__field .form-group {
  margin-bottom: 0;
}
.aim-callback-modal__field .form-control {
  border: 1px solid #E2E2E2;
  border-radius: 50px;
  padding: 12px 20px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--aim-dark);
  background: #fff;
  height: auto;
  box-shadow: none;
}
.aim-callback-modal__field .form-control:focus {
  outline: none;
  border-color: #aaa;
  box-shadow: none;
}
.aim-callback-modal__field .form-control::placeholder {
  color: #aaa;
}
.aim-callback-modal__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #888;
  margin: -16px 0 20px;
}
.aim-callback-modal__fields--4 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 575px) {
  .aim-callback-modal__fields--4 {
    grid-template-columns: 1fr;
  }
}
.aim-callback-modal__field--full {
  margin-bottom: 16px;
}
.aim-callback-modal__field--full .form-group {
  margin-bottom: 0;
}
.aim-callback-modal__field--full .form-control {
  border: 1px solid #E2E2E2;
  border-radius: 12px;
  padding: 12px 20px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--aim-dark);
  background: #fff;
  height: auto;
  box-shadow: none;
  width: 100%;
  resize: vertical;
}
.aim-callback-modal__field--full .form-control:focus {
  outline: none;
  border-color: #aaa;
  box-shadow: none;
}
.aim-callback-modal__field--full .form-control::placeholder {
  color: #aaa;
}
.aim-callback-modal__actions {
  display: flex;
  justify-content: flex-end;
}
.aim-callback-modal__submit {
  background: var(--aim-dark) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px;
  padding: 13px 32px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}
.aim-callback-modal__submit:hover {
  opacity: 0.85;
}

.aim-ad-page {
  padding: 24px 0 40px;
}
.aim-ad-page__title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--aim-dark);
  margin-bottom: 20px;
  line-height: 1.4;
}
.aim-ad-page__admin {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}
.aim-ad-page__edit-link {
  margin-left: 8px;
  color: var(--aim-dark);
  text-decoration: underline;
}
.aim-ad-page__card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
}
.aim-ad-page__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .aim-ad-page__images {
    grid-template-columns: 1fr;
  }
}
.aim-ad-page__image-block {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E2E2;
}
.aim-ad-page__image-label {
  background: var(--aim-yellow);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--aim-dark);
  padding: 8px 14px;
  text-align: center;
}
.aim-ad-page__img {
  width: 100%;
  height: auto;
  display: block;
}
.aim-ad-page__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border: 1px solid #E2E2E2;
  border-radius: 12px;
  overflow: hidden;
}
.aim-ad-page__list-item {
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  border-bottom: 1px solid #F0F0F0;
}
.aim-ad-page__list-item:last-child {
  border-bottom: none;
}
.aim-ad-page__list-item:nth-child(even) {
  background: #F8F8F8;
}
.aim-ad-page__label {
  font-weight: 600;
  color: #888;
  min-width: 130px;
  flex-shrink: 0;
}
.aim-ad-page__link {
  color: var(--aim-dark);
  text-decoration: none;
}
.aim-ad-page__link:hover {
  text-decoration: underline;
}
.aim-ad-page__order-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  border-radius: 20px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
}
.aim-ad-page__order {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
}
.aim-ad-page__order-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--aim-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}
.aim-ad-page__order-text .aim-contact-info__link {
  color: var(--aim-dark);
  text-decoration: underline;
}
.aim-ad-page__price-note {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-bottom: 24px;
}

#feedback .form-group,
#feedback .input {
  margin-bottom: 12px;
}
#feedback .form-group input,
#feedback .form-group textarea,
#feedback .input input,
#feedback .input textarea {
  width: 100%;
  border: 1px solid #E2E2E2;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--aim-dark);
  background: #F8F8F8;
  outline: none;
  transition: border-color 0.15s;
}
#feedback .form-group input:focus,
#feedback .form-group textarea:focus,
#feedback .input input:focus,
#feedback .input textarea:focus {
  border-color: var(--aim-yellow);
  background: #fff;
}
#feedback .form-group textarea,
#feedback .input textarea {
  resize: vertical;
  min-height: 100px;
}
#feedback .form-actions {
  margin-top: 16px;
}
#feedback .form-actions .btn-warning {
  background: var(--aim-yellow);
  color: var(--aim-dark);
  border: none;
  border-radius: 20px;
  padding: 12px 32px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
#feedback .form-actions .btn-warning:hover {
  background: rgb(214.2, 179.76, 0);
}

.aim-cards-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.aim-mobile-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  transition: background 0.15s;
}
.aim-mobile-card:hover {
  background: #f9f9f9;
}
.aim-mobile-card .aim-mobile-card__row {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--aim-dark);
  margin: 0 0 6px;
}
.aim-mobile-card .aim-mobile-card__row:last-of-type {
  margin-bottom: 12px;
}
.aim-mobile-card .aim-mobile-card__row strong {
  font-weight: 700;
}
.aim-mobile-card .aim-mobile-card__link {
  color: var(--aim-dark);
  text-decoration: none;
}
.aim-mobile-card .aim-mobile-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #F0F0F0;
}
.aim-mobile-card .aim-mobile-card__icons {
  display: flex;
  gap: 12px;
  font-size: 20px;
}
.aim-mobile-card .aim-mobile-card__icons .fa {
  color: var(--aim-dark);
}
.aim-mobile-card .aim-mobile-card__icons .aim-table__icon--muted {
  color: #CCCCCC;
}

.aim-pagination {
  display: flex;
  justify-content: center;
  margin: 24px 0 40px;
}
.aim-pagination .pagination {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.aim-pagination .pagination li a, .aim-pagination .pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid #D0D0D0;
  background: #fff;
  color: var(--aim-dark);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}
.aim-pagination .pagination li a:hover, .aim-pagination .pagination li span:hover {
  background: #f0f0f0;
}
.aim-pagination .pagination li.active span, .aim-pagination .pagination li.current span {
  background: #FFCA1A;
  border-color: #FFCA1A;
  color: #1A1A1A;
  font-weight: 700;
}
.aim-pagination .pagination li.active span:hover, .aim-pagination .pagination li.current span:hover {
  background: #FFCA1A;
}
.aim-pagination .pagination li.disabled span {
  color: #ccc;
  border-color: #eee;
  cursor: default;
}

.aim-pager {
  display: flex;
  justify-content: center;
  margin: 24px 0 40px;
}

.aim-pager__list {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.aim-pager__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid #D0D0D0;
  background: #fff;
  color: var(--aim-dark);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}
.aim-pager__btn:hover {
  background: #f0f0f0;
  color: var(--aim-dark);
  text-decoration: none;
}
.aim-pager__btn--active {
  background: #FFCA1A;
  border-color: #FFCA1A;
  color: #1A1A1A;
  font-weight: 700;
  cursor: default;
}
.aim-pager__btn--active:hover {
  background: #FFCA1A;
}
.aim-pager__btn--gap {
  border-color: #D0D0D0;
  cursor: default;
  color: #999;
}
.aim-pager__btn--gap:hover {
  background: #fff;
}

.aim-type-body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--aim-dark);
  margin-bottom: 40px;
}
.aim-type-body h1, .aim-type-body h2, .aim-type-body h3, .aim-type-body h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--aim-dark);
  margin: 28px 0 12px;
  line-height: 1.4;
}
.aim-type-body h1 {
  font-size: 24px;
}
.aim-type-body h2 {
  font-size: 20px;
}
.aim-type-body h3 {
  font-size: 17px;
}
.aim-type-body p {
  margin: 0 0 12px;
}
.aim-type-body ul, .aim-type-body ol {
  padding-left: 20px;
  margin: 8px 0 16px;
}
.aim-type-body ul li, .aim-type-body ol li {
  margin-bottom: 6px;
}
.aim-type-body a {
  color: #777;
  text-decoration: underline;
}
.aim-type-body a:hover {
  color: #555;
}
.aim-type-body strong, .aim-type-body b {
  font-weight: 700;
}
@media (max-width: 767px) {
  .aim-type-body {
    font-size: 14px;
  }
  .aim-type-body p, .aim-type-body ul, .aim-type-body ol, .aim-type-body li {
    font-size: 14px;
  }
}

.aim-feedback-card {
  background: #F1F1F1;
  border-radius: 20px;
  padding: 32px 28px;
  margin-bottom: 24px;
}
.aim-feedback-card .contacts-page__form-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.aim-cta-success {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--aim-dark);
  background: var(--aim-yellow);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 12px;
}

.aim-thankyou {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--aim-dark);
  margin: 0;
  padding: 8px 0;
}

.aim-contact-info {
  padding: 24px 0;
}

.aim-contact-info__text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.aim-contact-info__link {
  color: #777;
  text-decoration: underline;
}
.aim-contact-info__link:hover {
  color: #333;
}

.service-index-page {
  padding: 40px 0 100px 0 !important;
  background-color: #f7f8f9 !important;
}
.service-index-page h1 {
  font-family: "Inter", sans-serif !important;
  font-weight: 800 !important;
  font-size: 48px !important;
  color: #070707 !important;
  text-align: left !important;
  margin: 10px 0 40px 0 !important;
  padding: 0 !important;
}

.services-index-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 30px !important;
  justify-content: center !important;
}
@media (max-width: 991px) {
  .services-index-grid {
    grid-template-columns: 1fr !important;
  }
}

.service-box.horizontal {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  padding: 30px !important;
  gap: 30px !important;
  height: auto !important;
  width: 100% !important;
  min-height: 180px !important;
  background: #FFFFFF !important;
  border-radius: 40px !important;
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}
.service-box.horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}
.service-box.horizontal .service-box__icon {
  width: 120px !important;
  height: 120px !important;
  background: #FFCA1A !important;
  border-radius: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
.service-box.horizontal .service-box__icon i {
  font-size: 48px !important;
  color: #000 !important;
}
.service-box.horizontal .service-box__content {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  text-align: left !important;
}
.service-box.horizontal .service-box__content .service-box__title {
  font-family: "Inter", sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #070707 !important;
  margin: 0 !important;
}
.service-box.horizontal .service-box__content .service-box__desc {
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  color: #070707 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

.aim-city-page {
  padding: 24px 0 60px;
  background: #F8F8F8;
}
.aim-city-page .aim-city__title {
  margin-top: 10px;
}
.aim-city-page .aim-city__filter {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
@media (max-width: 767px) {
  .aim-city-page .aim-city__filter {
    padding: 16px;
    border-radius: 16px;
  }
}
.aim-city-page .aim-city__results {
  margin-bottom: 48px;
}
.aim-city-page .aim-city__body {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
@media (max-width: 767px) {
  .aim-city-page .aim-city__body {
    padding: 24px;
    border-radius: 16px;
  }
}

.aim-city-page {
  padding: 24px 0 60px;
  background: #F8F8F8;
}
.aim-city-page .aim-city__title {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--aim-dark);
  margin-bottom: 24px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .aim-city-page .aim-city__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.aim-city-page .aim-city__filter {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
@media (max-width: 767px) {
  .aim-city-page .aim-city__filter {
    padding: 16px;
    border-radius: 16px;
  }
}
.aim-city-page .aim-city__results {
  margin-bottom: 48px;
}
.aim-city-page .aim-city__body {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
@media (max-width: 767px) {
  .aim-city-page .aim-city__body {
    padding: 24px;
    border-radius: 16px;
  }
}

.aim-blog-page {
  padding: 48px 0 80px;
}
.aim-blog-page__title {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--aim-dark);
  margin: 0 0 40px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .aim-blog-page__title {
    font-size: 28px;
    margin-bottom: 28px;
  }
}

.aim-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .aim-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .aim-blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.aim-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  text-decoration: none !important;
  color: var(--aim-dark) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.aim-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  text-decoration: none !important;
  color: var(--aim-dark) !important;
}
.aim-blog-card__image {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #f0f0f0;
}
.aim-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.aim-blog-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}
.aim-blog-card:hover .aim-blog-card__image img {
  transform: scale(1.04);
}
.aim-blog-card__placeholder-icon {
  font-size: 48px;
  opacity: 0.25;
}
.aim-blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  gap: 8px;
}
.aim-blog-card__date {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #bbb;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.aim-blog-card__title {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--aim-dark);
  margin: 0 0 4px;
}
.aim-blog-card__excerpt {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #888;
  flex: 1;
  margin: 0;
}
.aim-blog-card__read {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--aim-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.aim-blog-card__arrow {
  transition: transform 0.2s;
}
.aim-blog-card:hover .aim-blog-card__arrow {
  transform: translateX(4px);
}

.aim-blog-related {
  padding: 56px 0 64px;
  background: #f8f8f6;
}
.aim-blog-related__title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--aim-dark);
  margin: 0 0 28px;
}
.aim-blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .aim-blog-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 475px) {
  .aim-blog-related__grid {
    grid-template-columns: 1fr;
  }
}
.aim-blog-related__card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none !important;
  color: var(--aim-dark) !important;
  transition: box-shadow 0.2s;
}
.aim-blog-related__card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.aim-blog-related__img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.aim-blog-related__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aim-blog-related__name {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--aim-dark);
}

.aim-blog-article {
  padding: 48px 0 80px;
}
.aim-blog-article__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 991px) {
  .aim-blog-article__layout {
    grid-template-columns: 1fr;
  }
}
.aim-blog-article__cover {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  max-height: 480px;
}
.aim-blog-article__cover img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.aim-blog-article__meta {
  margin-bottom: 12px;
}
.aim-blog-article__date {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #bbb;
  font-weight: 500;
}
.aim-blog-article__title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--aim-dark);
  margin: 0 0 32px;
}
@media (max-width: 767px) {
  .aim-blog-article__title {
    font-size: 24px;
  }
}
.aim-blog-article__body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.aim-blog-article__body h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--aim-dark);
}
.aim-blog-article__body h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--aim-dark);
}
.aim-blog-article__body h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--aim-dark);
}
.aim-blog-article__body p {
  margin-bottom: 18px;
}
.aim-blog-article__body img {
  max-width: 100%;
  border-radius: 12px;
  margin: 16px 0;
}
.aim-blog-article__body ul, .aim-blog-article__body ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.aim-blog-article__body ul li, .aim-blog-article__body ol li {
  margin-bottom: 6px;
}
.aim-blog-article__body a {
  color: #c09a00;
  text-decoration: underline;
}
.aim-blog-article__body blockquote {
  border-left: 4px solid var(--aim-yellow);
  padding: 12px 20px;
  margin: 24px 0;
  background: #fffdf0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #666;
}
.aim-blog-article__share {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

.aim-blog-sidebar {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.aim-blog-sidebar__title {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--aim-dark);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--aim-yellow);
  display: inline-block;
  width: 100%;
}
.aim-blog-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aim-blog-sidebar__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none !important;
  color: var(--aim-dark) !important;
  transition: opacity 0.15s;
}
.aim-blog-sidebar__item:hover {
  opacity: 0.7;
}
.aim-blog-sidebar__thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.aim-blog-sidebar__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aim-blog-sidebar__post-title {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--aim-dark);
  margin-bottom: 3px;
}
.aim-blog-sidebar__post-date {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #bbb;
}

.sitemap-page {
  background: #F8F8F8;
  padding-top: 8px;
  padding-bottom: 40px;
}

.sitemap-page__title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--aim-dark);
  margin: 0 0 20px !important;
}
@media (max-width: 767px) {
  .sitemap-page__title {
    font-size: 26px;
    margin-bottom: 16px !important;
  }
}

.sitemap-page__section {
  padding: 0 !important;
  margin: 0 0 12px !important;
}
.sitemap-page__section:last-child {
  margin-bottom: 0 !important;
}

.sitemap-page__section-title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--aim-dark);
  margin: 0 0 8px !important;
  padding-bottom: 6px;
  border-bottom: 2px solid #FFCA1A;
}
@media (max-width: 767px) {
  .sitemap-page__section-title {
    font-size: 18px;
  }
}

.sitemap-page__list {
  list-style: disc;
  list-style-position: inside;
  padding: 0;
  margin: 0 !important;
}

.sitemap-page__sublist {
  list-style: circle;
  list-style-position: inside;
  margin: 0 0 0 20px !important;
  padding: 0;
}

.sitemap-page__sublist .sitemap-page__sublist {
  list-style: square;
  margin-left: 20px;
}

.sitemap-page__list-item {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
.sitemap-page__list-item a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}
.sitemap-page__list-item a:hover {
  color: #EE9004;
}
@charset "UTF-8";
/* Сторінка окремого білборда (ads/show) */
body.redesign-active .ad-show-wrapper {
  background: var(--aim-white);
  padding: 40px 0 80px;
}

body.redesign-active .ad-header {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--aim-gray-e2);
  padding-bottom: 20px;
}

body.redesign-active .ad-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--aim-black-light);
  line-height: 1.3;
}

body.redesign-active .ad-meta-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

body.redesign-active .ad-meta-tag {
  background: var(--aim-gray-f8);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--aim-gray-8c);
}

body.redesign-active .ad-images-container {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  body.redesign-active .ad-images-container {
    flex-direction: column;
  }
}
body.redesign-active .ad-image-box {
  flex: 1;
  background: var(--aim-gray-f8);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}

body.redesign-active .ad-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

body.redesign-active .ad-image-label {
  background: var(--aim-yellow);
  color: var(--aim-black-light);
  font-weight: 700;
  padding: 10px;
  font-size: 14px;
  text-transform: uppercase;
}

body.redesign-active .ad-details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  font-size: 16px;
}

body.redesign-active .ad-details-list li {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--aim-gray-e2);
}

body.redesign-active .ad-details-list li span:first-child {
  font-weight: 600;
  color: var(--aim-gray-8c);
  width: 180px;
  flex-shrink: 0;
}

body.redesign-active .ad-details-list li span:last-child {
  font-weight: 700;
  color: var(--aim-black-light);
}

body.redesign-active .ad-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}
@charset "UTF-8";
/* 
  Редизайн підвалу (Footer)
*/
body.redesign-active .redesign-footer {
  background-color: var(--aim-black-light);
  /* Темний фон як і в багатьох сучасних дизайнах */
  color: var(--aim-white);
  padding: 60px 0 30px;
  font-family: var(--font-main);
}

body.redesign-active .redesign-footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

body.redesign-active .redesign-footer .footer-column {
  flex: 1;
  min-width: 220px;
}

body.redesign-active .redesign-footer .footer-title {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--aim-yellow);
}

body.redesign-active .redesign-footer ul.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.redesign-active .redesign-footer ul.footer-links li {
  margin-bottom: 12px;
}

body.redesign-active .redesign-footer ul.footer-links a {
  color: var(--aim-gray-d9);
  font-size: 15px;
  transition: color 0.3s;
}

body.redesign-active .redesign-footer ul.footer-links a:hover {
  color: var(--aim-white);
}

body.redesign-active .redesign-footer .footer-about {
  max-width: 300px;
}

body.redesign-active .redesign-footer .footer-logo {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 800;
  color: var(--aim-white);
  margin-bottom: 16px;
  display: inline-block;
}

body.redesign-active .redesign-footer .footer-contacts {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: var(--aim-gray-d9);
}

body.redesign-active .redesign-footer .footer-contacts li {
  margin-bottom: 8px;
  font-size: 15px;
}

body.redesign-active .redesign-footer .footer-contacts a {
  color: var(--aim-white);
  font-weight: 600;
}

body.redesign-active .redesign-footer .footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--aim-gray-8c);
}

body.redesign-active .redesign-footer .footer-bottom a {
  color: inherit;
}

@media (max-width: 768px) {
  body.redesign-active .redesign-footer .footer-inner {
    flex-direction: column;
  }
  body.redesign-active .redesign-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}
@charset "UTF-8";
/* 
  Редизайн шапки (Header)
*/
body.redesign-active .redesign-header {
  background-color: var(--aim-white);
  border-bottom: 1px solid var(--aim-gray-e2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

body.redesign-active .redesign-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.redesign-active .redesign-header .logo img {
  height: 48px;
  width: auto;
}

body.redesign-active .main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

body.redesign-active .main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--aim-black-light);
  text-transform: uppercase;
  transition: color 0.3s;
}

body.redesign-active .main-nav a:hover {
  color: var(--aim-yellow-dark);
}

body.redesign-active .header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

body.redesign-active .btn-primary-yellow {
  background-color: var(--aim-yellow);
  color: var(--aim-black-light);
  font-family: var(--font-accent);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  transition: background 0.3s;
}

body.redesign-active .btn-primary-yellow:hover {
  background-color: var(--aim-yellow-dark);
}

body.redesign-active .btn-outline {
  border: 1px solid var(--aim-black-light);
  color: var(--aim-black-light);
  font-family: var(--font-accent);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
}

body.redesign-active .btn-outline:hover {
  background-color: var(--aim-black-light);
  color: var(--aim-white);
}

body.redesign-active .lang-switch a {
  font-weight: 800;
  font-size: 16px;
  color: var(--aim-black-light);
}

body.redesign-active .cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

body.redesign-active .cart-icon i {
  font-size: 24px;
  color: var(--aim-purple);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.mobile-menu-toggle .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--aim-black-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-only {
  display: none;
}

@media (max-width: 992px) {
  body.redesign-active .mobile-menu-toggle {
    display: flex;
  }
  body.redesign-active .header-actions .btn-primary-yellow,
  body.redesign-active .header-actions .btn-outline {
    display: none;
  }
  body.redesign-active .main-nav {
    position: fixed;
    top: 78px;
    /* Відступ під шапку */
    right: -100%;
    width: 300px;
    height: calc(100vh - 78px);
    background-color: var(--aim-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    padding: 30px 20px;
    overflow-y: auto;
    z-index: 1000;
  }
  body.redesign-active .main-nav.active {
    right: 0;
  }
  body.redesign-active .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }
  body.redesign-active .main-nav a {
    font-size: 18px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  body.redesign-active .mobile-only {
    display: inline-block;
  }
  body.redesign-active .mobile-actions-nav {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--aim-gray-e2);
  }
}
@charset "UTF-8";
/* Редизайн головної сторінки */
body.redesign-active .home-hero-redesign {
  background-color: var(--aim-white);
  color: var(--aim-black-light);
  padding: 80px 0 120px;
  /* space for overlapping search box at bottom */
  position: relative;
  z-index: 10;
}

body.redesign-active .hero-top-text {
  text-align: center;
  margin-bottom: 40px;
}

body.redesign-active .hero-top-text h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  font-family: var(--font-accent);
}

body.redesign-active .hero-top-text p {
  font-size: 20px;
  color: var(--aim-gray-66);
  margin: 0;
}

body.redesign-active .hero-images-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  height: 300px;
}

body.redesign-active .hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.redesign-active .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.redesign-active .hero-img-left,
body.redesign-active .hero-img-right {
  width: 250px;
  height: 350px;
  margin-top: -30px;
}

body.redesign-active .hero-img-center {
  width: 440px;
  height: 300px;
  margin-top: 40px;
}

/* Search Box under Hero */
body.redesign-active .hero-search-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  width: 90%;
  max-width: 900px;
  z-index: 20;
}

body.redesign-active .redesign-search-box {
  background-color: var(--aim-yellow);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

body.redesign-active .search-title {
  text-align: center;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: var(--font-accent);
}

body.redesign-active .search-form-row {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

body.redesign-active .search-input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

body.redesign-active .search-input-group label {
  font-size: 14px;
  color: var(--aim-white);
  margin-bottom: 8px;
  font-weight: 600;
}

body.redesign-active .select-wrapper {
  position: relative;
  background: var(--aim-white);
  border-radius: 8px;
}

body.redesign-active .select-wrapper::after {
  content: "▼";
  font-size: 12px;
  color: var(--aim-gray-66);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

body.redesign-active .redesign-select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1px solid var(--aim-gray-e2);
  /* hide default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 8px;
  font-size: 16px;
  color: var(--aim-black);
  cursor: pointer;
}

body.redesign-active .search-btn-group {
  flex: 0 0 150px;
}

body.redesign-active .btn-search-black {
  width: 100%;
  background-color: var(--aim-black);
  color: var(--aim-white);
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

body.redesign-active .btn-search-black:hover {
  background-color: var(--aim-gray-33);
}

@media (max-width: 992px) {
  body.redesign-active .home-hero-redesign {
    padding: 40px 0 100px;
  }
  body.redesign-active .hero-images-container {
    justify-content: center;
    height: auto;
  }
  body.redesign-active .hero-img-left,
  body.redesign-active .hero-img-right {
    display: none;
    /* Hide side images on small screens */
  }
  body.redesign-active .hero-img-center {
    width: 100%;
    max-width: 440px;
    margin-top: 0;
  }
  body.redesign-active .search-form-row {
    flex-direction: column;
    align-items: stretch;
  }
  body.redesign-active .search-btn-group {
    flex: auto;
    margin-top: 10px;
  }
  body.redesign-active .hero-search-container {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: -30px;
    padding: 0 15px;
  }
  body.redesign-active .hero-top-text h1 {
    font-size: 32px;
  }
}
body.redesign-active .home-section {
  padding: 80px 0;
}

body.redesign-active .home-section.bg-gray {
  background-color: var(--aim-gray-f8);
}

body.redesign-active .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 48px;
  color: var(--aim-black-light);
  font-family: var(--font-accent);
}

/* Billboards List */
body.redesign-active .billboards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

body.redesign-active .billboard-card {
  background: var(--aim-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

body.redesign-active .billboard-card:hover {
  transform: translateY(-5px);
}

body.redesign-active .billboard-card-img {
  height: 200px;
  background-color: var(--aim-gray-e2);
  /* background-image буде задано інлайн або через зображення */
  background-size: cover;
  background-position: center;
}

body.redesign-active .billboard-card-content {
  padding: 20px;
}

body.redesign-active .billboard-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

body.redesign-active .billboard-card-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--aim-yellow-dark);
}

@media (max-width: 768px) {
  body.redesign-active .home-hero h1 {
    font-size: 32px;
  }
  body.redesign-active .home-section {
    padding: 40px 0;
  }
}
@charset "UTF-8";
/* 
  Редизайн внутрішніх сторінок (Послуги, Контакти)
*/
body.redesign-active .page-header {
  background-color: var(--aim-gray-f8);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--aim-gray-e2);
  margin-bottom: 40px;
  text-align: center;
}

body.redesign-active .page-header h1 {
  font-size: 40px;
  font-weight: 800;
  margin: 0;
  color: var(--aim-black-light);
}

body.redesign-active .page-content {
  padding-bottom: 80px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--aim-gray-8c);
}

body.redesign-active .page-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--aim-black-light);
  margin: 40px 0 20px;
}

body.redesign-active .page-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--aim-black-light);
  margin: 30px 0 15px;
}

body.redesign-active .page-content ul,
body.redesign-active .page-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

body.redesign-active .page-content li {
  margin-bottom: 10px;
}

body.redesign-active .page-content a {
  color: var(--aim-yellow-dark);
  font-weight: 600;
}

body.redesign-active .contact-card {
  background: var(--aim-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

body.redesign-active .contact-card img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid var(--aim-gray-f8);
}

body.redesign-active .contact-card-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--aim-black-light);
}

body.redesign-active .contact-card-info .role {
  font-size: 14px;
  color: var(--aim-gray-8c);
  margin-bottom: 15px;
}

body.redesign-active .contact-card-info p {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.redesign-active .contact-card-info i {
  color: var(--aim-yellow);
}

body.redesign-active .contact-form-wrapper {
  background: var(--aim-gray-f8);
  padding: 40px;
  border-radius: 16px;
}

@media (max-width: 768px) {
  body.redesign-active .page-header {
    padding: 40px 0 30px;
  }
  body.redesign-active .page-header h1 {
    font-size: 32px;
  }
}
@charset "UTF-8";
/* 
   Редизайн сайту AIM Group (Figma Tokens)
   Шрифти: Inter, Intel Clear Pro
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");
:root {
  /* Кольори (Figma Export) */
  --aim-white: #ffffff;
  --aim-white-40: rgba(255, 255, 255, 0.4);
  --aim-black: #000000;
  --aim-black-light: #070707;
  --aim-yellow: #FFCA1A; /* rgba(255, 202, 26, 1) */
  --aim-yellow-dark: #EE9004; /* rgba(238, 144, 4, 1) */
  --aim-green: #3BAB4C; /* rgba(59, 171, 76, 1) */
  --aim-green-whatsapp: #25D366; /* rgba(37, 211, 102, 1) */
  --aim-purple: #7360F2; /* rgba(115, 96, 242, 1) */
  /* Відтінки сірого */
  --aim-gray-f8: #F8F8F8; /* rgba(248, 248, 248, 1) */
  --aim-gray-f3: #F3F3F3; /* rgba(243, 243, 243, 1) */
  --aim-gray-f1: #F1F1F1; /* rgba(241, 241, 241, 1) */
  --aim-gray-e2: #E2E2E2; /* rgba(226, 226, 226, 1) */
  --aim-gray-d9: #D9D9D9; /* rgba(217, 217, 217, 1) */
  --aim-gray-d0: #D0D0D0; /* rgba(208, 208, 208, 1) */
  --aim-gray-8c: #8C8C8C; /* rgba(140, 140, 140, 1) */
  /* Типографіка */
  --font-main: 'Inter', sans-serif;
  --font-accent: 'Intel Clear Pro', 'Inter', sans-serif; /* Fallback to Inter if not available locally */
}

/* Базові глобальні стилі для редизайну (тимчасово ізольовані під специфічні класи) */
body.redesign-active {
  font-family: var(--font-main);
  color: var(--aim-black-light);
  background-color: var(--aim-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.redesign-active h1,
body.redesign-active h2,
body.redesign-active h3,
body.redesign-active h4,
body.redesign-active h5,
body.redesign-active h6 {
  font-family: var(--font-accent);
  color: var(--aim-black-light);
  margin-top: 0;
}

body.redesign-active a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* 
  Глобальні класи контейнерів 
  Десктоп - 1400px (дані з Figma)
  Мобільна - 368px
*/
body.redesign-active .aim-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1440px) {
  body.redesign-active .aim-container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  body.redesign-active .aim-container {
    padding: 0 16px;
    max-width: 100%;
  }
}
#slicknav-mobile {
    display:none;
}

@media screen and (max-width: 767px) {
    /* #menu is the original menu */
    .js #menu {
        display:none;
    }

    #slicknav-mobile {
        display:block;
    }
}

.slicknav_btn {
  position: absolute;
  display: block;
  vertical-align: middle;
  float: right;
  padding: 0.438em 0.625em 0.438em 0.625em;
  line-height: 1.125em;
  cursor: pointer;
}
  .slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
    margin-top: 0.188em; }

.slicknav_menu {
  *zoom: 1; }
  .slicknav_menu .slicknav_menutxt {
    display: block;
    line-height: 1.188em;
    float: left; }
  .slicknav_menu .slicknav_icon {
    float: left;
    width: 1.125em;
    height: 0.875em;
    margin: 0.188em 0 0 0.438em; }
    .slicknav_menu .slicknav_icon:before {
      background: transparent;
      width: 1.125em;
      height: 0.875em;
      display: block;
      content: "";
      position: absolute; }
  .slicknav_menu .slicknav_no-text {
    margin: 0; }
  .slicknav_menu .slicknav_icon-bar {
    display: block;
    width: 1.125em;
    height: 0.125em;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }
  .slicknav_menu:before {
    content: " ";
    display: table; }
  .slicknav_menu:after {
    content: " ";
    display: table;
    clear: both; }

.slicknav_nav {
  clear: both; }
  .slicknav_nav ul {
    display: block; }
  .slicknav_nav li {
    display: block; }
  .slicknav_nav .slicknav_arrow {
    font-size: 0.8em;
    margin: 0 0 0 0.4em; }
  .slicknav_nav .slicknav_item {
    cursor: pointer; }
    .slicknav_nav .slicknav_item a {
      display: inline; }
  .slicknav_nav .slicknav_row {
    display: block; }
  .slicknav_nav a {
    display: block; }
  .slicknav_nav .slicknav_parent-link a {
    display: inline; }

.slicknav_brand {
  float: left; }

.slicknav_menu {
  font-size: 16px;
  box-sizing: border-box;
  background: #fd0;
  padding: 5px; }
  .slicknav_menu * {
    box-sizing: border-box; }
  .slicknav_menu .slicknav_menutxt {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 1px 3px #000; }
  .slicknav_menu .slicknav_icon-bar {
    background-color: #fff; }

.slicknav_btn {
  margin: 5px 5px 6px;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #222;
  float: left;
}

.slicknav_nav {
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 0.875em;
  list-style: none;
  overflow: hidden;
}
  .slicknav_nav ul {
    list-style: none;
    overflow: hidden;
    padding: 0;
    margin: 0 0 0 20px;
  }
  .slicknav_nav .slicknav_row {
    padding: 5px 10px;
    margin: 2px 5px;
  }
    .slicknav_nav .slicknav_row:hover {
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      border-radius: 6px;
      background: #cccccc;
      color: #000;
    }
  .slicknav_nav a {
    padding: 5px 10px;
    margin: 2px 5px;
    text-decoration: none;
    color: #000;
  }
    .slicknav_nav a:hover {
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      border-radius: 6px;
      background: #ccc;
      color: #222;
    }
  .slicknav_nav .slicknav_txtnode {
    margin-left: 15px; }
  .slicknav_nav .slicknav_item a {
    padding: 0;
    margin: 0; }
  .slicknav_nav .slicknav_parent-link a {
    padding: 0;
    margin: 0; }

.slicknav_brand {
  color: #000;
  font-size: 18px;
  line-height: 30px;
  padding: 7px 12px;
  height: 44px;
}
/*Form Wizard*/
.bs-wizard {
  border-bottom: solid 1px #e0e0e0;
  padding: 0 0 10px 0;
}

.bs-wizard > .bs-wizard-step {
  padding: 0;
  position: relative;
}

.bs-wizard > .bs-wizard-step .bs-wizard-stepnum {
  color: #595959;
  font-size: 16px;
  margin-bottom: 5px;
}

.bs-wizard > .bs-wizard-step .bs-wizard-info {
  color: #000;
  font-size: 14px;
  padding: 0 20px;
}

.bs-wizard > .bs-wizard-step > .bs-wizard-dot {
  position: absolute;
  width: 30px;
  height: 30px;
  display: block;
  background: #fbe8aa;
  top: 45px;
  left: 50%;
  margin-top: -15px;
  margin-left: -15px;
  border-radius: 50%;
}

.bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {
  content: " ";
  width: 14px;
  height: 14px;
  background: #fbbd19;
  border-radius: 50px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.bs-wizard > .bs-wizard-step > .progress {
  position: relative;
  border-radius: 0px;
  height: 8px;
  box-shadow: none;
  margin: 20px 0;
}

.bs-wizard > .bs-wizard-step > .progress > .progress-bar {
  width: 0px;
  box-shadow: none;
  background: #fd0;
}

.bs-wizard > .bs-wizard-step.complete > .progress > .progress-bar {
  width: 100%;
}

.bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {
  width: 50%;
}

.bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {
  width: 0%;
}

.bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {
  width: 100%;
}

.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {
  background-color: #f5f5f5;
}

.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {
  opacity: 0;
}

.bs-wizard > .bs-wizard-step:first-child > .progress {
  left: 50%;
  width: 50%;
}

.bs-wizard > .bs-wizard-step:last-child > .progress {
  width: 50%;
}

.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot {
  pointer-events: none;
}
body, input, textarea, select, button {
  font-family: "Inter", sans-serif;
}

/**
 * Header
 */
.navbar-default {
  background: #FFF;
}

.navbar {
  border-bottom: 1px solid white;
  background-color: #fd0;
}

.navbar.navbar-default {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

.navbar-brand {
  float: left;
  font-size: 24px;
  line-height: 32px;
  position: relative;
  padding-top: 13px;
  padding-bottom: 42px;
  color: #fd0;
  letter-spacing: 2px;
  padding-right: 30px;
  font-weight: 500;
  font-family: "Roboto";
}

a.navbar-brand {
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  transition: color 0.5s ease;
  -webkit-transition: color 0.5s ease;
  -moz-transition: color 0.5s ease;
}

.navbar-default .navbar-nav > li > a {
  color: black;
}

.navbar-default .navbar-brand {
  color: #FFF;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.navbar-default .navbar-brand:hover {
  color: #D60D45;
}

.colored-navbar-brand .navbar-default .navbar-brand {
  padding-right: 30px;
  position: relative;
  color: black;
}

.colored-navbar-brand .navbar-default .navbar-brand:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -600px;
  width: 600px;
}

.navbar-default:after {
  background: #fd0;
  height: 1px;
}

.colored-navbar-brand .navbar-default .navbar-brand:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -300%;
  right: 0;
  height: 1px;
}

.navbar-nav > li > a {
  line-height: 26px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  font-family: Roboto, serif;
  letter-spacing: 1px;
  padding: 3px 6px 0px 10px;
}

.nav-phones {
  font-family: Roboto;
  padding-left: 20px;
  color: #777;
}

/* Main Menu Dropdown */
.navbar-nav li {
  position: relative;
}

.navbar-nav li ul {
  z-index: 9999;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 43px;
  left: 0;
  width: 300px;
  display: none;
  background-color: #FFF;
  border: 1px solid #EEE;
  border-top: 2px solid #fd0;
  -webkit-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
}

.navbar-nav li ul li a {
  border-bottom: 1px solid #F2F2F2;
  display: block;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 400;
  color: #636363;
}

.navbar-nav li > ul > li:last-child > a,
.navbar-nav li > ul > li > ul > li:last-child > a {
  border-bottom: 0;
}

.navbar-nav li ul li:hover a {
  padding-left: 20px;
  padding-right: 10px;
  text-decoration: none;
}

.navbar-nav li ul li ul {
  position: absolute;
  left: 188px;
  top: -2px;
}

.navbar-nav li ul li:hover ul li a {
  padding-left: 15px;
  padding-right: 15px;
}

.navbar-nav li ul li ul li:hover a {
  padding-left: 20px;
  padding-right: 10px;
}

.navbar-nav li ul li ul li ul li:hover a {
  padding-left: 20px;
  padding-right: 10px;
}

/* Mega Menu */
.navbar-nav > li.mega-menu {
  position: inherit !important;
  left: 0;
}

.navbar-nav > li.mega-menu ul {
  left: 0%;
  width: 100%;
  top: 56px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav > li.mega-menu ul li a {
  padding: 8px 0;
}

.navbar-nav > li.mega-menu ul li a:hover {
  padding-left: 5px;
}

.navbar-nav > li.mega-menu:hover > a,
.navbar-nav > li.mega-menu > a:hover,
.navbar-nav > li.dropdown:hover > a,
.navbar-nav > li.dropdown > a:hover,
.navbar-nav > li.dropdown.active > a,
.navbar-nav > li.dropdown.active > a:hover,
.navbar-nav > li:hover > a,
.navbar-nav > li.active > a {
  color: #D60D45 !important;
  text-decoration: underline;
  background: transparent !important;
}

.navbar-nav > li.mega-menu ul li .container {
  padding: 5px 30px 10px;
}

.navbar-nav > li.mega-menu ul li .row > div a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.navbar-arrow > ul > li .arrow-indicator {
  margin-left: 7px;
  color: #CCC;
}

.navbar-arrow ul ul > li .arrow-indicator {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -8px;
  font-size: 16px;
  color: #CCC;
}

.megamenu-container .arrow-indicator {
  display: none !important;
}

.navbar-nav li ul li a {
  border-bottom: 1px solid #F2F2F2;
  display: block;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 400;
  color: #636363;
}

@media only screen and (max-width: 991px) {
  .navbar {
    margin: 0;
    padding: 0;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }
  .navbar-brand {
    line-height: 30px;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }
  .navbar-arrow > ul > li .arrow-indicator,
  .navbar-arrow ul ul > li .arrow-indicator {
    display: none !important;
  }
  a.navbar-brand {
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
  }
  .navbar-nav li ul li a {
    padding: 8px 10px;
  }
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 23px !important;
  }
  .navbar-brand,
  .colored-navbar-brand .navbar-default .navbar-brand {
    padding-right: 15px !important;
    font-size: 20px !important;
  }
  .colored-navbar-brand .navbar-header {
    float: left;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    margin: 0;
  }
}
@media (max-width: 479px) {
  .navbar-brand,
  .colored-navbar-brand .navbar-default .navbar-brand {
    padding: 5px;
    padding-left: 15px;
    font-size: 16px;
    line-height: 30px;
    display: block;
    width: 100% !important;
  }
  .navbar-header,
  .colored-navbar-brand .navbar-header {
    float: none !important;
    width: 100% !important;
  }
  .colored-navbar-brand .navbar-default .navbar-brand:after {
    display: block;
    top: 0;
    bottom: 0;
    left: auto;
    right: -30px;
    width: 30px;
    height: auto;
  }
}
/**
 * Sticky Header
 */
.navbar-sticky {
  background-color: #FFF;
  border-color: #e6e6e6;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.12);
}

.navbar-sticky.navbar-default {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-sticky .navbar-brand {
  padding-top: 10px;
  padding-bottom: 0;
}

.navbar-sticky .navbar-brand:hover,
.navbar-sticky .navbar-brand:focus {
  color: #4D82B8;
  background-color: transparent;
}

.navbar-sticky .navbar-text {
  color: #565656;
}

.navbar-sticky .navbar-nav > li > a {
  line-height: 50px;
  color: #565656;
}

.navbar-sticky .navbar-nav > li > a:hover,
.navbar-sticky .navbar-nav > li > a:focus {
  color: #4D82B8;
  background-color: transparent;
}

.navbar-sticky .navbar-nav > .active > a,
.navbar-sticky .navbar-nav > .active > a:hover,
.navbar-sticky .navbar-nav > .active > a:focus {
  color: #4D82B8;
  background-color: transparent;
}

.navbar-sticky .navbar-nav > .disabled > a,
.navbar-sticky .navbar-nav > .disabled > a:hover,
.navbar-sticky .navbar-nav > .disabled > a:focus {
  color: #444444;
  background-color: transparent;
}

.navbar-sticky .navbar-nav > li.navbar-separator span:after {
  background: #4D82B9;
}

.navbar-sticky .navbar-toggle {
  border-color: transparent;
}

.navbar-sticky .navbar-toggle:hover,
.navbar-sticky .navbar-toggle:focus {
  background-color: transparent;
}

.navbar-sticky .navbar-toggle .icon-bar {
  background-color: #565656;
}

.navbar-sticky .navbar-collapse,
.navbar-sticky .navbar-form {
  border-color: #ededed;
}

.transparent-header .navbar-sticky .navbar-nav > li > a .border {
  border-color: #CCC;
}

.transparent-header .navbar-sticky .navbar-nav > li > a .border:hover {
  border-color: #4D82B9;
}

.navbar-sticky .navbar-mini > ul {
  line-height: 47px;
}

.navbar-sticky .navbar-nav > li > ul {
  top: 50px;
}

.navbar-sticky .navbar-nav > li.mega-menu ul {
  top: 50px;
}

.navbar-sticky #top-header {
  opacity: 0;
}

.colored-navbar-brand .navbar-sticky .navbar-brand {
  background: #fd0;
  color: #FFF;
}

.colored-navbar-brand .navbar-sticky .navbar-brand:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -500px;
  width: 500px;
  background: #fd0;
}

@media only screen and (max-width: 991px) {
  .navbar-fixed-top {
    position: relative !important;
    clear: both;
  }
  .navbar-sticky .navbar-nav > li > a {
    display: none;
  }
}
@media (max-width: 767px) {
  .navbar-sticky .navbar-brand {
    padding: 15px 15px;
  }
}
@media (max-width: 479px) {
  .navbar-sticky .navbar-brand {
    padding: 5px;
  }
}
/**
 * Navbar Mini
 */
.navbar {
  min-height: 35px;
}

.navbar-mini {
  padding-top: 5px;
}

.navbar-mini > ul {
  line-height: 30px;
  margin: 0;
  margin-top: -1px;
  padding: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.navbar-mini > ul > li {
  float: left;
  margin-left: 15px;
}

.navbar-mini > ul > li:last-child {
  border-right: none;
}

.navbar-mini > ul > li > a {
  color: black;
  font-size: 10px;
}

.navbar-mini > ul > li > a:hover {
  color: #D60D45;
  text-decoration: none;
}

.navbar-mini > ul > li > a.btn {
  font-size: 10px;
}

.navbar-mini .dropdown-menu {
  min-width: 80px;
}

.navbar-mini .dropdown-menu > li > a {
  padding: 5px 12px;
  font-size: 12px;
}

.navbar-mini .dropdown-menu > li:first-child > a {
  padding-top: 5px;
}

.navbar-mini .dropdown-menu > li:last-child > a {
  padding-bottom: 5px;
}

.navbar-mini .dropdown-menu > li > a:hover,
.navbar-mini .dropdown-menu > li:hover > a,
.navbar-mini .dropdown-menu > li > a:focus {
  color: #BA0600 !important;
  background: none !important;
}

.navbar-mini .dropdown-menu {
  padding: 10px !important;
}

.navbar-mini > ul > li:last-child {
  border-right: none;
}

.navbar-mini .dropdown-menu {
  min-width: 80px;
}

.navbar-mini .dropdown-menu > li > a {
  padding: 5px 12px;
  font-size: 11px;
}

.navbar-mini .dropdown-menu > li:first-child > a {
  padding-top: 8px;
}

.navbar-mini .dropdown-menu > li:last-child > a {
  padding-bottom: 8px;
}

.navbar-mini .dropdown-menu > li > a:hover,
.navbar-mini .dropdown-menu > li:hover > a,
.navbar-mini .dropdown-menu > li > a:focus {
  color: #D60D45 !important;
  background: none !important;
}

.navbar-mini .dropdown-menu {
  padding: 10px !important;
}

@media only screen and (max-width: 991px) {
  .navbar-mini {
    margin-top: -1px;
  }
  .navbar-mini > ul {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }
}
@media (max-width: 479px) {
  .navbar-mini > ul {
    line-height: 1;
    padding: 0 0 10px;
    text-align: center;
    margin: 0;
  }
  .navbar-mini > ul li a,
  .navbar-mini > ul li a.btn.btn-primary.btn-inverse {
    padding: 0;
    border: none;
  }
  .navbar-mini > ul > li {
    float: none;
    margin: 0 5px;
    display: inline-block;
  }
  .navbar-sticky .navbar-mini > ul {
    line-height: 1;
  }
}
.slick-hero-slider .image-bg {
  background-position: center center;
  background-size: cover;
  position: relative;
}

.slick-hero-slider .image-bg::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(top, rgba(108, 91, 123, 0.6) 0%, rgba(53, 92, 125, 0.6) 100%);
  background-image: -o-linear-gradient(top, rgba(108, 91, 123, 0.6) 0%, rgba(53, 92, 125, 0.6) 100%);
  background-image: linear-gradient(to bottom, rgba(108, 91, 123, 0.6) 0%, rgba(53, 92, 125, 0.6) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cc6c5b7b', endColorstr='#cc355c7d', GradientType=0);
  content: "";
}

.slick-hero-slider-caption {
  text-align: center;
  padding-top: 150px;
  padding-bottom: 150px;
  color: rgba(255, 255, 255, 0.8);
}

.slick-hero-slider-caption h2 {
  margin-top: 0;
  font-size: 50px;
  line-height: 1.2;
  color: #FFF;
  text-transform: uppercase;
  margin: 0 0 20px;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 300;
}

.slick-hero-slider-caption p {
  color: #FFF;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  text-align: center;
  margin-bottom: 20px;
}

.slick-hero-slider-caption a span {
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #FFF;
  display: inline-block;
  padding: 7px 25px;
  display: inline-block;
  margin-top: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.slick-hero-slider-caption a span.bg-primary {
  border: #fd0;
  padding: 8px 25px;
}

.slick-hero-slider-caption a:hover span {
  background: #004680 !important;
  border-color: #004680 !important;
  text-decoration: none;
}

.slick-hero-slider.slick-inner-dot .slick-dots {
  bottom: 0;
}

.alt-dot-position.slick-hero-slider.slick-inner-dot .slick-dots {
  bottom: 205px;
}

.alt-dot-position.slick-hero-slider.slick-inner-dot .slick-hero-slider-caption {
  padding-top: 130px;
  padding-bottom: 275px;
}

@media only screen and (max-width: 1199px) {
  .hero {
    background-size: auto;
  }
}
@media only screen and (max-width: 991px) {
  .hero h1 {
    font-size: 50px;
    line-height: 1.4;
  }
  .hero p {
    font-size: 22px;
    line-height: 1.4;
  }
  .alt-dot-position.slick-hero-slider.slick-inner-dot .slick-hero-slider-caption {
    padding-bottom: 325px;
  }
  .alt-dot-position.slick-hero-slider.slick-inner-dot .slick-dots {
    bottom: 255px;
  }
}
@media only screen and (max-width: 767px) {
  .hero {
    padding: 40px 0;
  }
  .hero-texting {
    padding: 15px;
  }
  .hero h1, .slick-hero-slider-caption h2 {
    font-size: 35px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
  }
  .hero p, .slick-hero-slider-caption p {
    font-size: 20px;
    line-height: 1.2;
    text-align: left;
  }
  .slick-hero-slider-caption {
    padding: 50px 30px 70px;
  }
  .slick-hero-slider-caption h2, .slick-hero-slider-caption p {
    text-align: center;
  }
  .slick-hero-slider .slick-prev {
    left: 10px;
  }
  .slick-hero-slider .slick-next {
    right: 10px;
  }
  .alt-dot-position.slick-hero-slider.slick-inner-dot .slick-hero-slider-caption {
    padding: 50px 30px 70px;
  }
  .alt-dot-position.slick-hero-slider.slick-inner-dot .slick-dots {
    bottom: 0;
  }
}
@media (max-width: 479px) {
  .hero h1, .slick-hero-slider-caption h2 {
    font-size: 30px;
    line-height: 1.2;
  }
  .hero p, .slick-hero-slider-caption p {
    font-size: 16px;
    line-height: 1.2;
  }
}
/**
 * Thank you
 */
.thank-you {
  position: relative;
  padding: 80px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.thank-you::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(top, rgba(108, 91, 123, 0.6) 0%, rgba(53, 92, 125, 0.6) 100%);
  background-image: -o-linear-gradient(top, rgba(108, 91, 123, 0.6) 0%, rgba(53, 92, 125, 0.6) 100%);
  background-image: linear-gradient(to bottom, rgba(108, 91, 123, 0.6) 0%, rgba(53, 92, 125, 0.6) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cc6c5b7b', endColorstr='#cc355c7d', GradientType=0);
  content: "";
}

.thank-you.stellar-parallax-bg {
  background-position: bottom center;
}

.thank-you .inner {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
}

.thank-you h1 {
  margin-top: 0;
  font-size: 38px;
  color: #FFF;
  font-weight: 600;
  line-height: 48px;
  text-transform: uppercase;
  margin: 0 0 10px;
  text-align: center;
}

.thank-you p {
  color: #FFF;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  text-align: center;
  margin: 25px 0 30px;
}

.thank-you .btn {
  padding-left: 45px;
  padding-right: 85px;
}

.thank-you .btn .icon {
  font-size: 24px;
  padding-top: 10px;
}

/**
 * Main Search
 */
.main-search-wrapper {
  width: 100%;
  z-index: 9;
}

.main-search-wrapper .inner {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  margin: 0 auto;
  margin-top: 30px;
  width: 73.5%;
}

.main-search-wrapper .form-control {
  border-color: #FFF;
}

.main-search-wrapper label {
  text-transform: uppercase;
  color: #FFF;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  margin: 0 0 8px;
  text-align: left !important;
}

.main-search-wrapper .fancy-select .form-control.open {
  border-color: #FFF;
}

.main-search-wrapper-2 {
  padding-top: 20px;
  padding-bottom: 5px;
}

.main-search-wrapper-2 .inner {
  position: relative;
  padding-right: 180px;
}

.main-search-wrapper-2 .form-control {
  border-color: black;
}

.main-search-wrapper-2 .btn-absolute {
  position: absolute;
  bottom: 23px;
  right: 0;
  width: 150px;
}

.main-search-wrapper-2 .btn-absolute .btn {
  height: 34px;
  padding-top: 7px;
}

.main-search-wrapper-2.absolute-in-hero-slider {
  margin-top: -125px;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  position: relative;
  padding-top: 30px;
  padding-bottom: 15px;
}

.main-search-wrapper-2.absolute-in-hero-slider label {
  color: #FFF;
}

@media only screen and (max-width: 1199px) {
  .main-search-wrapper .inner {
    width: 80%;
  }
  .main-search-wrapper-2 .inner {
    padding-right: 130px;
  }
  .main-search-wrapper-2 .btn-absolute {
    width: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .main-search-wrapper .inner {
    width: 93%;
  }
  .main-search-wrapper-2 .inner {
    padding-right: 0;
  }
  .main-search-wrapper-2.absolute-in-hero-slider {
    padding-top: 20px;
    padding-bottom: 5px;
    margin-top: -185px;
  }
}
@media only screen and (max-width: 767px) {
  .main-search-wrapper .inner {
    margin-top: 0;
  }
  .main-search-wrapper-2 .inner {
    padding-bottom: 70px;
  }
  .main-search-wrapper-2 .btn-absolute {
    width: 150px;
    right: auto;
    left: 50%;
    margin-left: -75px;
  }
  .main-search-wrapper-2.absolute-in-hero-slider {
    margin-top: 0;
    background: rgba(0, 0, 0, 0.6);
  }
}
@media (max-width: 479px) {
  .main-search-wrapper .inner {
    padding: 20px;
  }
  .main-search-wrapper .form-lg label {
    font-size: 15px;
  }
  .main-search-wrapper label {
    font-size: 13px;
  }
  .main-search-wrapper .form-control {
    margin: 0 0 0;
  }
}
/**
 * Top Destination
 */
.top-destination-item {
  background: #FFF;
  border: 1px solid #E6E6E6;
  -webkit-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid #DEDEDE;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  margin: 0 0 20px;
  padding-top: 1px;
}

.top-destination-item:hover {
  -webkit-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid #D60D45;
}

.top-destination-item a {
  color: #777;
  display: block;
}

.top-destination-item .image {
  overflow: hidden;
  margin: 4px 5px 0;
}

.top-destination-item .image img {
  transition: all 0.3s ease-in-out;
}

.top-destination-item:hover .image img {
  transform: scale(1.15) rotate(5deg);
  -ms-transform: scale(1.15) rotate(5deg);
  -ms-transform: scale(1.15) rotate(5deg);
}

.top-destination-item .content {
  padding: 17px 5px 12px;
}

.top-destination-item h4 {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 2px;
  font-weight: 500;
}

.top-destination-item .price {
  text-align: right;
  padding-top: 1px;
}

.top-destination-item .price p {
  margin: 0;
  line-height: 14px;
}

.top-destination-item .price p:not(.icon) {
  margin-bottom: 6px;
}

.destination-list-wrapper {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -5px;
  margin-bottom: -10px;
}

ul.destination-list li {
  float: left;
  width: 20%;
  padding-top: 5px;
  padding-left: 15px;
  padding-right: 15px;
}

ul.destination-list li a {
  display: block;
  line-height: 1.2;
  color: #5d5d5d;
  margin: 0 0 10px;
}

ul.destination-list li a:hover {
  color: #C70C41;
  padding-left: 5px;
}

ul.destination-list li.more-link {
  padding-top: 1px;
}

ul.destination-list li.more-link a {
  font-size: 12px;
  background: #fd0;
  color: #FFF;
  line-height: 1;
  display: inline-block;
  padding: 3px 7px;
  margin-top: -3px;
}

ul.destination-list li.more-link a:hover {
  background: #004680;
  padding: 3px 10px;
}

.navbar-nav ul.destination-list {
  display: block !important;
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  border: 0 !important;
  box-shadow: none;
  margin: 20px 0 5px !important;
  padding: 0 !important;
}

.navbar-nav ul.destination-list li a {
  display: block !important;
  line-height: 1.2 !important;
  padding: 0 0 10px !important;
  margin: 0 0 8px !important;
}

.navbar-nav ul.destination-list li a:hover {
  padding-left: 5px !important;
}

.navbar-nav ul.destination-list li.more-link {
  padding-top: 2px !important;
}

.navbar-nav ul.destination-list li.more-link a {
  padding: 3px 7px !important;
  display: inline-block !important;
}

.navbar-nav ul.destination-list li.more-link a:hover {
  padding: 3px 10px !important;
}

/**
 * Breadcrumb
 */
.breadcrumb-wrapper {
  /*background: #EDEDED;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  */
  padding-top: 10px;
  padding-bottom: 10px;
}

.breadcrumb-wrapper h1.page-title {
  margin: 0;
  font-size: 26px;
  line-height: 28px;
}

.breadcrumb-wrapper .hot-line {
  text-align: right;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.breadcrumb-wrapper .breadcrumb {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 12px;
  background: none;
}

.breadcrumb-wrapper .breadcrumb a {
  color: #555;
  font-weight: bold;
}

.breadcrumb-wrapper .breadcrumb .active {
  color: #AAA;
}

.btn-change-search {
  background: transparent;
  margin: 0;
  border: 1px solid #CCC;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.change-search-wrapper > div {
  padding-top: 15px;
}

.change-search-wrapper > div .sub-inner {
  padding: 10px;
  background: #DDDDDD;
}

.change-search-wrapper .form-group {
  margin: 0;
}

.change-search-wrapper .form-control {
  margin: 0;
}

/**
 * Payment Page
 */
.success-box {
  position: relative;
  margin: 0 0 30px;
}

.success-box .icon {
  width: 120px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #358D44;
  background: #358D44;
  text-align: center;
}

.success-box .icon span {
  font-size: 56px;
  color: #FFF;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -28px;
}

.success-box .content {
  border: 1px solid #358D44;
  background: #FFF;
  margin-left: 121px;
  line-height: 20px;
  padding: 30px;
  color: #555;
}

.success-box .content h4 {
  line-height: 1.3;
  margin: 0 0 10px;
}

.metro-box-wrapper {
  margin: 0 0 30px;
  background: #FFF;
}

.metro-box-wrapper.equal-height {
  height: 100%;
}

.metro-box-wrapper > .heading {
  background: #E6E6E6;
  padding: 24px 20px 18px;
  line-height: 18px;
  border-bottom: 1px solid #DEDEDE;
}

.metro-box-wrapper > .heading h3 {
  text-transform: uppercase;
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
}

.metro-box-wrapper > .heading p {
  margin-top: 5px;
  margin-left: 45px;
}

.metro-box-wrapper > .heading a {
  margin-top: 5px;
}

.metro-box-wrapper > .heading a:hover {
  text-decoration: underline;
}

.metro-box-wrapper .control-label h4 {
  margin-top: 0;
  line-height: 1;
}

.metro-box-wrapper > .content {
  background: #FFF;
  padding: 40px 25px 25px;
}

.metro-box-wrapper .granted-by {
  width: 287px;
  display: block;
}

.metro-box-wrapper .another-toggle {
  margin-top: -5px;
}

.metro-box-wrapper .another-toggle h4 {
  font-family: PT Sans;
}

.metro-box-wrapper .control-label {
  line-height: 20px;
}

.metro-box-wrapper > .heading.with-number .number {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fd0;
  color: #FFF;
  text-align: center;
  line-height: 34px;
  font-size: 18px;
  font-weight: 300;
  float: left;
  margin-right: 10px;
  margin-top: -3px;
}

ul.payment-tab-nav {
  background: #00B279;
  margin: 0;
  margin-bottom: 5px;
}

ul.payment-tab-nav li {
  float: left;
  width: 25%;
}

ul.payment-tab-nav li a {
  color: #FFF;
  border: 1px solid #00B279;
  border-bottom: 0;
  display: block;
  padding: 8px 20px;
  text-align: center;
  position: relative;
  text-transform: uppercase;
}

ul.payment-tab-nav li a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  width: 1px;
  background: #FFF;
}

ul.payment-tab-nav li:last-child a:after {
  width: 0;
}

ul.payment-tab-nav li.active a:after {
  right: 1px;
  background: #00B279;
}

ul.payment-tab-nav li.active a {
  background: #FFF;
  color: #555;
}

ul.payment-tab-nav li:hover a {
  background: #009969;
  color: #FFF;
}

.payment-congrate {
  border: 1px solid #E80E4C;
  background: #E80E4C;
  color: #FFF;
  margin: 0 0 30px;
  text-align: center;
  font-size: 14px;
}

.payment-congrate > .inner {
  border: 3px double #FFF;
  padding: 50px 100px 30px;
}

.payment-congrate .lead {
  font-size: 24px;
  margin: 0 0 10px;
}

.payment-congrate .payment-term {
  font-size: 13px;
}

.payment-congrate a {
  color: #FFF;
  text-decoration: underline;
}

.payment-congrate a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.payment-congrate .btn {
  margin: 10px 0 20px;
  background: #FFF;
  color: #E80E4C;
  font-size: 18px;
  font-weight: 600;
  padding-left: 25px;
  padding-right: 25px;
  border: 3px double #E80E4C;
}

.payment-congrate .btn:hover {
  opacity: 0.8;
}

.coupon.another-toggle h4 {
  font-weight: 600;
  margin: 0 0 5px;
  font-size: 16px;
}

.coupon.another-toggle h4:after {
  content: "\f103";
  font-size: 12px;
  top: -1px;
  position: relative;
  margin-left: 10px;
}

.coupon.another-toggle h4.active {
  color: #555;
}

.coupon.another-toggle h4.active:after {
  content: "\f102";
  color: #555;
}

.coupon.another-toggle .another-toggle-content {
  padding-top: 10px;
}

.coupon.another-toggle .another-toggle-inner {
  background: #EDEDED;
  padding: 15px 20px 20px;
}

.payment-select {
  margin-left: -15px;
}

.payment-select label {
  color: #333;
  font-size: 16px;
}

.payment-option-wrapper {
  margin-left: -10px;
}

.payment-option-wrapper .radio-block {
  margin-left: 10px;
  line-height: 40px;
}

.payment-option-wrapper .radio-block span {
  display: block;
  float: left;
  font-weight: 700;
  font-size: 16px;
  color: #555;
}

.payment-option-wrapper .radio-block img {
  display: block;
  float: left;
  margin-top: -7px;
  margin-left: 5px;
}

.payment-option-form {
  background: #EDEDED;
  padding: 30px 20px;
  margin: 20px 0 0;
}

.payment-option-form label {
  line-height: 16px;
}

small.of-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #F65C33;
}

.confirm-summary {
  background: #FFF;
  margin-top: 50px;
  border-bottom: 2px solid #C7C7C7;
  padding: 20px;
}

.confirm-summary .image {
  width: 285px;
  float: left;
}

.confirm-summary .heading {
  margin-left: 300px;
}

.confirm-summary .heading h4 {
  text-transform: uppercase;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 18px;
  margin: 0 0 7px;
  font-weight: 500;
}

.confirm-summary .heading p {
  line-height: 18px;
  margin: 0 0 7px;
}

.confirm-summary .content {
  margin-left: 300px;
}

.confirm-summary .content .tripadvisor-module {
  margin: 10px 0 15px;
}

.confirm-summary .content .tripadvisor-module > div {
  float: left;
}

.confirm-date {
  background: #E8EAEB;
  position: relative;
  padding: 20px;
}

.confirm-date .icon {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 80px;
  font-size: 48px;
  text-align: center;
  display: block;
}

.confirm-date .content {
  margin: 0;
  margin-left: 80px;
}

.confirm-date ul {
  margin: 1px 0 0;
}

.confirm-date ul li {
  position: relative;
  padding-left: 100px;
}

.confirm-date ul li .absolute {
  font-weight: 600;
}

ul.confirm-list {
  margin: 0;
  padding: 0;
}

ul.confirm-list li {
  position: relative;
  padding-left: 180px;
  line-height: 18px;
  margin: 0;
  margin-bottom: 15px;
}

ul.confirm-list.inverse li {
  position: relative;
  padding-right: 180px;
  padding-left: 0;
}

ul.confirm-list.inverse li .absolute {
  left: auto;
  right: 0;
  top: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #333;
}

ul.confirm-list.inverse li.subtotal {
  text-align: right;
  margin: 0 0 5px;
}

ul.confirm-list.inverse li.bt {
  padding-top: 30px;
  margin-top: 20px;
}

ul.confirm-list.inverse li.bt .absolute {
  top: 30px;
}

ul.confirm-list.inverse li.total {
  text-align: right;
  font-size: 24px;
  color: #555;
}

ul.confirm-list.inverse li.total .absolute {
  font-weight: 600;
  font-size: 13px;
}

ul.confirm-list.inverse li.total .absolute span {
  font-size: 24px;
  font-weight: 700;
}

ul.confirm-list li:last-child {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .metro-box-wrapper > .content {
    padding: 10px 25px;
  }
  .confirm-summary {
    padding: 15px;
  }
  .confirm-summary .image {
    width: 100%;
    float: none;
  }
  .confirm-summary .heading {
    margin-left: 0;
    margin-top: 15px;
  }
  .confirm-summary > .content {
    margin-left: 0;
  }
  ul.confirm-list {
    margin: 0;
    margin-left: -10px;
  }
  ul.confirm-list li {
    padding-left: 0;
  }
  ul.confirm-list li .absolute {
    position: relative;
  }
  ul.confirm-list.inverse li {
    padding-right: 0;
  }
  ul.confirm-list.inverse li .absolute {
    display: block;
    float: right;
  }
  ul.confirm-list.inverse li.subtotal {
    text-align: left;
  }
  ul.confirm-list.inverse li.subtotal .absolute {
    text-align: right;
    float: right;
  }
  ul.confirm-list.inverse li.subtotal.bt .absolute {
    margin-top: -15px;
  }
  ul.confirm-list.inverse li.total {
    text-align: left;
    padding-bottom: 40px;
  }
  ul.confirm-list.inverse li.total .absolute {
    margin-top: -10px;
  }
  .payment-congrate > .inner {
    padding: 30px;
  }
}
@media (max-width: 479px) {
  .payment-congrate {
    padding: 30px 20px 30px;
  }
  .payment-option-wrapper,
  .coupon.another-toggle,
  .payment-select {
    margin-left: -10px;
    margin-right: -10px;
  }
  .payment-option-wrapper .radio-block img {
    display: block;
    float: none;
    margin-top: 5px;
    margin-left: 0;
  }
  .payment-select {
    margin-left: -15px;
  }
  .payment-congrate p {
    line-height: 16px;
  }
  .payment-congrate p.lead {
    line-height: 26px;
  }
  .success-box {
    text-align: center;
  }
  .success-box .icon {
    width: 100%;
    height: 80px;
    position: relative;
  }
  .success-box .content {
    margin-left: 0;
  }
  .confirm-date .icon {
    display: none;
  }
  .confirm-date .content {
    margin-left: 0;
  }
}
/**
 * Detail Page
 */
.detail-tab-wrapper {
  margin: 0 0 30px;
}

.detail-header {
  margin-bottom: 20px;
}

.detail-header h2 {
  font-size: 26px;
  line-height: 32px;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}

.detail-header h2 .star-rate {
  display: inline-block;
}

a.tripadvisor-module {
  text-decoration: none;
  line-height: 16px;
  margin-top: 15px;
  display: block;
  float: right;
}

.tripadvisor-rate {
  line-height: 16px;
}

.tripadvisor-rate i {
  color: #B2B2B2;
  font-size: 13px;
}

.tripadvisor-rate i.rated {
  color: #fd0;
}

.review-item-wrapper {
  border: 1px solid #EBEBEB;
}

.review-item {
  padding: 25px 5px;
  position: relative;
  border-bottom: 1px solid #EBEBEB;
}

.review-item:last-child {
  margin: 0;
  border-bottom: 0;
}

.review-item .content-left {
  width: 150px;
  text-align: right;
  float: left;
  color: #A1A1A1;
}

.review-item .content-left img {
  width: 60px;
  float: right;
  border-radius: 50%;
  margin: 5px 0 10px;
}

.review-item .content-left h4 {
  line-height: 1.3;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.review-item .content {
  margin-left: 180px;
  margin-right: 160px;
  line-height: 24px;
  border-left: 1px solid #EBEBEB;
  padding-left: 30px;
}

.review-item .content h5 {
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
  font-size: 16px;
}

.review-item .content-right {
  position: absolute;
  top: 25px;
  right: 25px;
  bottom: 25px;
  width: 130px;
  border: 3px double #fd0;
}

.review-item .content-right .outer {
  height: 100%;
  text-align: center;
}

.review-item .content-right .inner {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.review-item .content-right .inner p {
  margin-top: 7px;
  line-height: 26px;
}

.review-item .content-right .inner p span {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

ul.ad-featured-list > li {
  position: relative;
  padding-left: 70px;
  line-height: 22px;
  margin-bottom: 5px;
}

ul.ad-featured-list li .absolute {
  top: 0;
  left: 0;
  font-weight: 600;
}

ul.list-col-2 li {
  width: 50%;
  float: left;
  padding-right: 15px;
  line-height: 18px;
}

ul.list-col-3 li {
  width: 33.3333%;
  float: left;
  padding-right: 15px;
  line-height: 18px;
}

ul.list-with-icon li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  line-height: 20px;
}

ul.list-with-icon li i {
  position: absolute;
  top: 4px;
  left: 0;
}

ul.list-with-icon.font-lg li {
  font-size: 15px;
  padding-left: 23px;
  line-height: 23px;
}

ul.list-with-icon.font-lg li i {
  font-size: 13px;
}

ul.list-bullet-circle li {
  list-style-type: circle;
}

ul.list-bullet-circle-2 li {
  list-style-type: inherit;
}

ul.border-bottom {
  border-bottom: 0;
}

ul.border-bottom li {
  border-bottom: 1px solid #CCC;
  padding-bottom: 10px;
}

ul.border-bottom.dotted li {
  border-bottom: 1px dotted #CCC;
}

ul.border-bottom li:last-child {
  border-bottom: 0;
}

.detail-right-sidebar .form-control:focus {
  border-color: #F65C33;
}

.detail-right-sidebar .price {
  text-align: center;
  padding: 20px 20px 15px;
  background: #303030;
  color: rgba(255, 255, 255, 0.7);
}

.detail-right-sidebar .price span.number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #FFF;
}

.detail-right-sidebar .or-text {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
  margin: 30px 0 5px;
  background: #303030;
  color: rgba(255, 255, 255, 0.7);
}

.detail-right-sidebar .or-text > span {
  text-align: center;
  display: block;
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
}

.detail-right-sidebar .or-text > span > span {
  background: #303030;
  padding: 0 10px;
}

.detail-right-sidebar label {
  font-weight: 400;
  margin: 0 0 5px;
}

.detail-search-form {
  padding: 10px 15px 20px;
  background: #fd0;
  color: black;
}

.detail-subtotal-price {
  background: #FFF;
  margin-top: 20px;
}

.detail-subtotal-price h4 {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  background: #F7F7F7;
  color: #555;
  margin: 0;
  padding: 18px 20px 15px;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

.detail-subtotal-price h4 a {
  float: right;
  font-size: 12px;
  font-weight: 300;
  text-transform: capitalize !important;
  margin: 0;
}

.detail-subtotal-price h4 a:hover {
  color: #D60D45;
}

.price-subtotal span {
  font-size: 18px;
  font-weight: 500;
}

.detail-subtotal-price > .content {
  padding: 20px;
}

.room-type-item {
  position: relative;
  margin: 0 0 20px;
  min-height: 122px;
  border-bottom: 1px solid #DEDEDE;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}

.room-type-item .image {
  width: 150px;
  float: left;
}

.room-type-item .content {
  margin-left: 165px;
  margin-right: 215px;
  margin-bottom: 33px;
}

.room-type-item .content h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 5px 0 10px;
  line-height: 16px;
  text-transform: uppercase;
}

.room-type-item .content p {
  margin: 0 0 3px;
  line-height: 16px;
}

.room-type-item .content-right {
  position: absolute;
  top: 0;
  bottom: 20px;
  right: 0;
  width: 200px;
  text-align: right;
  line-height: 18px;
}

.room-type-item .content-right .number {
  display: block;
  color: #fd0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.room-type-item .content-right .btn {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 15px;
  padding-top: 7px;
  padding-right: 13px;
}

.room-type-item p.absolute {
  left: 165px;
  top: auto;
  bottom: 20px;
}

.review-score-wrapper {
  background: #F7F7F7;
  padding: 40px 20px 30px;
  margin: 0 0 20px;
}

.review-score-heading {
  text-align: center;
}

.review-score-heading h4 {
  font-size: 20px;
  margin: 0 0 10px;
}

.review-score-heading .score {
  margin-bottom: 10px;
  line-height: 20px;
}

.review-score-heading .score .this {
  font-size: 26px;
  font-weight: 700;
}

.review-score-heading .recommend-this {
  border-top: 1px solid #DEDEDE;
  margin: 0 40px;
  padding-top: 10px;
}

.detail-review-wrapper .tripadvisor-module {
  display: inline;
}

ul.review-score-list li {
  position: relative;
  margin-bottom: 2px;
}

ul.review-score-list.with-progress li .progress {
  margin: 5px 0 14px;
  margin-left: 30px;
  margin-right: 60px;
}

ul.review-score-list.with-progress li:last-child .progress {
  margin-bottom: 0;
}

ul.review-score-list.with-progress li .absolute {
  top: -6px;
}

ul.review-score-list.with-progress li .absolute.people-count {
  left: auto;
  right: 10px;
}

.map-wrapper img {
  max-width: none;
}

#map-and-friends {
  height: 500px;
  width: 100%;
  margin: 0;
  padding: 0;
}

ul.map-neighbour-label {
  float: right;
  margin: 0;
  padding: 0;
  margin-top: 10px;
}

ul.map-neighbour-label li {
  position: relative;
  float: left;
  padding-left: 15px;
  margin-left: 30px;
  line-height: 1;
}

ul.map-neighbour-label li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background: #fd0;
}

ul.map-neighbour-label li.color-01:before {
  background: #469C3B;
}

ul.map-neighbour-label li.color-02:before {
  background: #507299;
}

ul.map-neighbour-label li.color-03:before {
  background: #FF8E01;
}

#map-and-friends input[type=button] {
  padding: 8px;
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
  text-align: center;
  white-space: nowrap;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  display: block;
  width: 100%;
  margin: 0 0 1px;
  float: left;
  text-transform: uppercase;
  font-weight: 600;
}

.map-detail-info-window {
  padding-top: 20px;
  padding-left: 10px;
  padding-bottom: 10px;
}

.map-detail-info-window .image {
  width: 60px;
  float: left;
}

.map-detail-info-window .image img {
  width: 100%;
}

.map-detail-info-window .content {
  margin-left: 75px;
}

.map-detail-info-window .content h3 {
  font-size: 14px;
  line-height: 16px;
  margin: 0 0 5px;
  font-weight: 700;
}

.map-detail-info-window .content p {
  line-height: 1.1;
  margin: 0 0 3px;
}

.map-detail-info-window .content a {
  background: #fd0;
  color: #FFF;
  padding: 2px 10px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

.map-detail-info-window .content a:hover {
  opacity: 0.7;
}

#map-and-friends input[type=checkbox] {
  opacity: 1;
  display: block;
  float: left;
  width: 18px;
  margin-top: 3px;
}

#map-and-friends label {
  font-size: 12px !important;
  display: block;
  font-weight: 400;
  line-height: 14px;
  clear: both;
  margin: 3px 0;
}

#map-and-friends label:hover {
  cursor: pointer;
}

@media only screen and (max-width: 1199px) {
  .room-type-item {
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .room-type-item {
    min-height: 60px;
    padding: 10px 0;
    padding-bottom: 20px;
  }
  .room-type-item .image {
    width: 115px;
  }
  .room-type-item .content {
    margin-right: 170px;
    margin-left: 125px;
    margin-bottom: 0;
    line-height: 14px;
  }
  .room-type-item .content p {
    line-height: 14px;
    margin: 0 0 5px;
  }
  .room-type-item .content h3 {
    font-size: 15px;
    line-height: 17px;
  }
  .room-type-item .content-right {
    width: 160px;
    font-size: 12px;
    line-height: 14px;
  }
  .room-type-item .content-right .btn {
    margin-top: 7px;
    padding-top: 3px;
    padding-bottom: 3px;
  }
  .room-type-wrapper p.absolute {
    position: relative;
    left: 0;
    margin-top: 15px;
  }
  .room-type-item p.absolute {
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .review-item {
    padding: 0;
  }
  .review-item .content-left {
    width: 100%;
    text-align: left;
    float: none;
    margin: 0 0 10px;
  }
  .review-item .content-left img {
    float: left;
  }
  .review-item .content-left h4 {
    line-height: 1.3;
    margin: 0;
  }
  .review-item .content {
    margin-left: 0;
    margin-right: 0;
  }
  .review-item .content-right {
    position: relative;
    top: 45px;
    left: 0;
    right: 15px;
    bottom: 15px;
    width: 100%;
    margin: 0 0 15px;
    padding: 20px;
    clear: both;
  }
  .review-item .content-right .inner {
    position: relative;
    left: 15px;
    top: auto;
    transform: none;
  }
}
@media (max-width: 479px) {
  .room-type-item .image {
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }
  .room-type-item .content {
    margin-right: 170px;
    margin-left: 0;
  }
  .room-type-item .content-right {
    top: 220px;
  }
  ul.ad-featured-list > li {
    padding-left: 0;
  }
  ul.ad-featured-list li .absolute {
    position: relative;
    display: block;
  }
  ul.list-col-2 li,
  ul.list-col-3 li {
    width: 100%;
  }
  .detail-header .tripadvisor-module.text-right {
    text-align: left !important;
    float: none;
  }
  .detail-header .tripadvisor-module > div {
    display: inline-block;
  }
  .review-item {
    padding-bottom: 10px;
  }
  .review-item .content-left {
    margin-left: 10px;
    margin-top: 5px;
    position: relative;
    padding-top: 8px;
    padding-left: 50px;
  }
  .review-item .content-left .image {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
  }
  .review-item .content {
    padding-left: 10px;
    border-left: 0;
  }
  .review-item .content-right {
    top: 10px;
    left: 4%;
    right: 4%;
    bottom: 10px;
    width: 92%;
    margin: 0 0 15px;
    padding: 20px 15px 10px;
  }
  .review-item .content-right .inner {
    left: 0;
  }
}
/**
 * Room Page
 */
.booking-step {
  margin-top: 35px;
  margin-bottom: 10px;
}

.step-item {
  color: #636363;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
}

.step-item .line {
  width: 100%;
  height: 1px;
  background: #D1D1D1;
}

.step-item .step-item {
  margin-top: -26px;
  margin-bottom: 5px;
}

.step-item .number {
  width: 40px;
  height: 40px;
  background: #EDEDED;
  margin: 5px auto 0;
  padding: 5px;
  border-radius: 50%;
}

.step-item .number .inner {
  background: #D1D1D1;
  height: 100%;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  border-radius: 50%;
}

.step-item.active a:hover {
  cursor: pointer;
  opacity: 0.4;
  text-decoration: none;
}

.step-item.active .line {
  background: #D60D45;
}

.step-item.active .number .inner {
  background: #D60D45;
}

.room-page-right-sidebar h4 {
  text-transform: uppercase;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 2px 0 8px;
  font-weight: 500;
}

.room-page-right-sidebar p {
  line-height: 18px;
  margin: 0 0 7px;
}

.room-page-right-sidebar h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin: 0 0 15px;
  padding-bottom: 5px;
  text-transform: uppercase;
  border-bottom: 1px solid #C4C4C4;
}

.room-page-right-sidebar h5 a {
  font-size: 12px;
  float: right;
  text-transform: capitalize;
  margin-top: 2px;
  opacity: 0.8;
}

.room-page-right-sidebar h5 a:hover {
  opacity: 1;
}

.room-page-right-sidebar .meta-option {
  line-height: 16px;
}

.room-page-right-sidebar .meta-option .star-rate {
  float: left;
  margin-right: 7px;
}

.room-page-right-sidebar .meta-option p {
  line-height: 14px;
}

.room-page-right-sidebar .image {
  margin: 20px 0 20px;
}

.room-page-right-sidebar .content {
  font-size: 13px;
}

.room-page-right-sidebar .content p {
  margin-top: 15px;
}

.room-page-right-sidebar .content ul {
  margin: 10px 0 0;
}

.room-page-right-sidebar .content ul li {
  position: relative;
  text-align: right;
  font-size: 14px;
  padding-left: 70px;
  line-height: 15px;
  margin: 0 0 12px;
}

.room-page-right-sidebar .content ul li .absolute {
  font-weight: 600;
}

.room-page-right-sidebar .content ul.inverse li {
  padding-left: 0;
  padding-right: 70px;
  text-align: left;
}

.room-page-right-sidebar .content ul.inverse li .absolute {
  left: auto;
  right: 0;
}

.room-page-right-sidebar .content.total-price h5 {
  font-size: 18px;
  border-bottom: 3px double #C4C4C4;
  padding-bottom: 10px;
}

.room-page-right-sidebar .content.total-price h5 span {
  float: right;
  font-weight: 500;
  margin-top: 0px;
  font-size: 18px;
  display: block;
  margin-top: -2px;
}

.room-page-right-sidebar.alt {
  background: #fd0;
  color: rgba(255, 255, 255, 0.8);
  padding: 20px;
}

.room-page-right-sidebar.alt h4 {
  color: #FFF;
  text-transform: uppercase;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 7px;
  font-weight: 500;
}

.room-page-right-sidebar.alt p {
  line-height: 18px;
  margin: 0 0 7px;
}

.room-page-right-sidebar.alt h5 {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.room-page-right-sidebar.alt h5 a {
  font-size: 12px;
  float: right;
  color: #FFF;
  text-transform: capitalize;
  margin-top: 5px;
  opacity: 0.8;
}

.room-page-right-sidebar.alt h5 a:hover {
  opacity: 1;
}

.room-page-right-sidebar.alt .meta-option {
  line-height: 16px;
}

.room-page-right-sidebar.alt .meta-option .star-rate {
  float: left;
  margin-right: 7px;
}

.room-page-right-sidebar.alt .meta-option p {
  line-height: 14px;
}

.room-page-right-sidebar.alt .image {
  border: 1px solid #F7F7F7;
  margin: 20px 0 30px;
}

.room-page-right-sidebar.alt .content {
  font-size: 13px;
}

.room-page-right-sidebar.alt .content p {
  margin-top: 15px;
}

.room-page-right-sidebar.alt .content ul {
  margin: 10px 0 0;
}

.room-page-right-sidebar.alt .content ul li {
  position: relative;
  text-align: right;
  font-size: 13px;
  padding-left: 70px;
  line-height: 15px;
  margin: 0 0 10px;
}

.room-page-right-sidebar.alt .content ul li .absolute {
  color: #FFF;
}

.room-page-right-sidebar.alt .content ul.inverse li {
  padding-left: 0;
  padding-right: 70px;
  text-align: left;
}

.room-page-right-sidebar.alt .content ul.inverse li .absolute {
  left: auto;
  right: 0;
}

.room-page-right-sidebar.alt .content.total-price h5 {
  font-size: 18px;
  border-bottom: 3px double rgba(255, 255, 255, 0.7);
  padding-bottom: 10px;
}

.room-page-right-sidebar.alt .content.total-price h5 span {
  color: #FFF;
  margin-top: 2px;
}

@media only screen and (max-width: 767px) {
  .step-item .step-item {
    margin-bottom: 25px;
  }
}
/**
 * Result Page
 */
.result-status {
  position: relative;
  margin-bottom: 25px;
  border-bottom: 2px solid #E6E6E6;
  padding-top: 10px;
  padding-bottom: 10px;
}

.result-status p {
  margin: 0;
  font-size: 16px;
}

.result-status a.show-on-map {
  display: block;
  position: absolute;
  top: 0;
  bottom: -2px;
  right: 0;
  width: 93px;
  line-height: 1;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  background-position: 50% 50%;
  border-left: 5px solid #F7F7F7;
}

.result-status a.show-on-map img {
  width: 30px;
  margin: 0 auto;
  margin-top: -15px;
}

.result-status a.show-on-map .absolute {
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px;
}

.result-status .back-to-list {
  position: absolute;
  top: 0;
  bottom: -2px;
  right: 0;
  width: 80px;
  line-height: 18px;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  border-left: 5px solid #F7F7F7;
  background: #D60D45;
  color: #FFF;
  padding-top: 5px;
}

.result-status .back-to-list span {
  display: block;
  text-transform: uppercase;
}

.result-status .back-to-list a {
  color: #FFF;
  font-size: 14px;
}

.result-status .back-to-list a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.result-status .back-to-list a + a {
  margin-left: 5px;
}

.sort-wrapper {
  background: #EDEDED;
  color: #5d5d5d;
  margin: 0 0 5px;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 28px;
}

.sort-wrapper > ul {
  margin: 0;
}

.sort-wrapper > ul > li {
  display: block;
  float: left;
}

.sort-wrapper > ul > li > a {
  color: #5d5d5d;
  border-right: solid 1px #E5E5E5;
  display: block;
  padding: 10px 15px;
}

.sort-wrapper > ul > li.text {
  border-right: solid 1px #E5E5E5;
  padding: 10px 15px;
  text-transform: uppercase;
}

.sort-wrapper > ul > li.list-grid {
  float: right;
}

.sort-wrapper > ul > li.list-grid a {
  float: right;
  border-right: 0;
  border-left: solid 1px #E5E5E5;
  color: #5d5d5d;
}

.sort-wrapper > ul > li.active > a,
.sort-wrapper > ul > li > a:hover {
  color: #D60D45;
}

.sort-wrapper .dropdown-menu {
  min-width: 80px;
  margin: 0;
}

.result-search-form-wrapper {
  background: #303030;
  color: rgba(255, 255, 255, 0.7);
}

.result-search-form-wrapper h3 {
  color: #FFF;
  font-size: 20px;
  line-height: 1;
  margin: 5px 0 0;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 14px 20px;
}

.result-search-form-wrapper > .inner {
  padding: 20px 15px;
}

.result-search-form-wrapper .form-control {
  border-color: #FFF;
}

.result-search-form-wrapper .form-control:focus {
  border-color: #F65C33;
}

.result-search-form-wrapper label {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  margin: 0 0 5px;
}

.result-search-form-wrapper .tooltip-inner {
  max-width: 240px;
}

.result-filter-wrapper {
  background: #FFF;
  margin-top: 30px;
}

.result-filter-wrapper h3 {
  margin: 20px;
  margin-left: 40px;
  position: relative;
  text-transform: uppercase;
  padding-left: 27px;
  border-bottom: 1px solid #D60D45;
  padding-bottom: 2px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
}

.result-filter-wrapper h3 .icon {
  width: 36px;
  height: 36px;
  border: 1px solid #D60D45;
  position: absolute;
  display: block;
  top: -28px;
  left: -20px;
  text-align: center;
  line-height: 34px;
  border-radius: 50%;
  color: #D60D45;
  font-size: 16px;
}

.filter-toggle {
  margin: 0;
  background: #FFF;
  padding: 0;
}

.filter-toggle h4 {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  background: #F7F7F7;
  color: #333;
  margin: 0;
  padding: 18px 20px 15px;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

.filter-toggle h4.active {
  color: #333;
}

.filter-toggle h4:after {
  font-size: 8px;
  top: 12px;
  right: 20px;
  border: 1px solid #999;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  padding-left: 2px;
  color: #999;
}

.filter-toggle .another-toggle-inner {
  padding: 15px 20px;
}

.filter-toggle .range-slider-wrapper {
  margin-bottom: -10px;
}

.result-paging-wrapper {
  border-top: 2px solid #E6E6E6;
  margin-top: 20px;
  padding-top: 10px;
}

.result-paging-wrapper ul.paging {
  float: right;
}

ul.paging li {
  float: left;
  margin-left: 2px;
}

ul.paging li a {
  color: #636363;
  padding: 2px 10px;
}

ul.paging li.active a,
ul.paging li a:hover {
  background: #D60D45;
  color: #FFF;
}

ul.paging li.disable a {
  cursor: not-allowed;
  background: transparent;
  color: #636363;
}

.text-center ul.paging {
  float: none;
  text-align: center;
}

.text-center ul.paging li {
  float: none;
  margin-left: 2px;
  display: inline-block;
}

#bali-map {
  height: 800px;
}

@media only screen and (max-width: 991px) {
  .result-status {
    padding-right: 90px;
    line-height: 16px;
  }
  .result-search-form-wrapper {
    margin-top: -5px;
  }
}
@media (max-width: 767px) {
  .sort-wrapper > ul > li > a,
  .sort-wrapper > ul > li.text {
    padding: 5px 10px;
  }
  .result-paging-wrapper {
    text-align: center;
  }
  .result-paging-wrapper ul.paging {
    float: none !important;
    padding: 0;
    margin: 10px 0 0;
  }
  .result-paging-wrapper ul.paging li {
    float: none;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 479px) {
  .pagination > li > a,
  .pagination > li > span {
    padding: 8px 12px;
  }
  .sort-wrapper > ul > li > a,
  .sort-wrapper > ul > li.text {
    border-right: 0;
    padding: 5px 5px;
  }
  .sort-wrapper > ul > li > a,
  .sort-wrapper > ul > li.text {
    padding: 5px 5px;
  }
  .sort-wrapper > ul > li.list-grid a {
    border-right: 0;
    border-left: none;
  }
  .sort-wrapper > ul > li.list-grid a {
    padding-bottom: 0;
    padding-top: 0;
  }
}
/**
 * Tab
 */
.tab-style-01-wrapper ul.tab-nav {
  background: #EDEDED;
  margin: 0;
  border-bottom: 1px solid #D60D45;
}

.tab-style-01-wrapper ul.tab-nav li {
  float: left;
}

.tab-style-01-wrapper ul.tab-nav li a {
  color: #333;
  padding: 10px 20px;
  padding-top: 13px;
  display: block;
  text-transform: uppercase;
  position: relative;
  font-weight: 400;
  border-top: 2px solid #EDEDED;
}

.tab-style-01-wrapper ul.tab-nav li a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: transparent;
}

.tab-style-01-wrapper ul.tab-nav li a:hover {
  background: #DBDBDB;
  border-top: 2px solid #DBDBDB;
  text-decoration: none;
}

.tab-style-01-wrapper ul.tab-nav li.active a {
  color: #D60D45;
  background: #FFF;
  border-top: 2px solid #D60D45;
}

.tab-style-01-wrapper ul.tab-nav li.active a:after {
  background: #FFF;
}

.tab-style-01-wrapper .tab-content {
  background: #FFF;
}

.tab-style-01-wrapper .tab-content-inner {
  padding: 20px;
  padding-top: 25px;
}

.tab-style-01-wrapper .tab-content-inner h5:first-child {
  margin-top: 0;
}

.vertical-tab-style-01-wrapper ul.tab-nav li a {
  font-family: Roboto;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #F2F2F2;
  border: 1px solid #F2F2F2;
  border-right: 0;
  display: block;
  margin: 0 0 1px;
  padding: 8px 15px 7px;
  font-size: 13px;
}

.vertical-tab-style-01-wrapper ul.tab-nav li.active a, .vertical-tab-style-01-wrapper ul.tab-nav li a:hover {
  background: none;
}

.navbar-nav .vertical-tab-style-01-wrapper ul.tab-nav {
  position: relative;
  top: 0;
  left: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  display: block !important;
  margin: 10px 0 0;
}

.navbar-nav .vertical-tab-style-01-wrapper ul.tab-nav li a {
  padding: 8px 15px 7px !important;
  border-bottom: 1px solid #F2F2F2 !important;
  font-family: Roboto !important;
  color: #222222 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.navbar-nav .vertical-tab-style-01-wrapper ul.tab-nav li a:hover {
  padding-left: 8px;
}

.vertical-tab-style-02-wrapper ul.tab-nav li a {
  font-family: Roboto;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #F2F2F2;
  border: 1px solid #E5E5E5;
  display: block;
  margin: 0 1px 1px 0;
  padding: 12px 15px 10px;
  font-size: 13px;
  position: relative;
  display: block;
}

.vertical-tab-style-02-wrapper ul.tab-nav li.active a, .vertical-tab-style-02-wrapper ul.tab-nav li a:hover {
  background: none;
}

.navbar-nav .vertical-tab-style-02-wrapper ul.tab-nav {
  position: relative;
  top: 0;
  left: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  display: block !important;
  margin: 10px 0 0;
}

.navbar-nav .vertical-tab-style-02-wrapper ul.tab-nav li a {
  padding: 8px 15px 7px !important;
  border-bottom: 1px solid #E5E5E5 !important;
  font-family: Roboto !important;
  color: #222 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.navbar-nav .vertical-tab-style-02-wrapper ul.tab-nav li a:hover {
  padding-left: 8px;
}

.vertical-tab-style-02-wrapper ul.tab-nav li a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: transparent;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.vertical-tab-style-02-wrapper ul.tab-nav li.active a:before, .vertical-tab-style-02-wrapper ul.tab-nav li a:hover:before {
  background: #D60D45;
}

.vertical-tab-style-02-wrapper ul.tab-nav li a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -3px;
  width: 3px;
  background: transparent;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  z-index: 2;
}

.vertical-tab-style-02-wrapper ul.tab-nav li.active a:after {
  background: #FFF;
}

.vertical-tab-style-02-wrapper .tab-content-inner {
  background: #FFF;
  padding: 30px;
  padding-left: 40px;
  border-top: 1px solid #E5E5E5;
  border-left: 1px solid #E5E5E5;
}

.vertical-tab-style-02-wrapper .tab-content-inner h3:first-child {
  margin-top: 0;
}

.vertical-tab-style-02-wrapper ul.tab-nav li.active a {
  background: #FFF;
}

.vertical-tab-style-02-wrapper .tab-content-inner ul.list-with-icon li {
  margin-bottom: 10px;
}

.vertical-tab-style-02-wrapper .tab-content-inner ul.list-with-icon li:last-child {
  margin-bottom: 0;
}

.vertical-tab-style-02-wrapper .tab-content-inner ul.list-with-icon li i {
  top: 3px;
}

@media only screen and (max-width: 991px) {
  .vertical-tab-style-02-wrapper .tab-content-inner {
    padding: 0;
    border: 0;
  }
}
/**
 * Travel Quotes
 */
.travel-quotes {
  height: 500px;
  overflow: hidden;
}

.travel-quotes .top-content {
  width: 100%;
  height: 50%;
}

.travel-quotes .bottom-content {
  width: 100%;
  height: 50%;
}

.travel-quotes .saying-content {
  background: #FFF;
  height: 100%;
}

.travel-quotes > div > .row {
  height: 100%;
}

.travel-quotes .inner {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0 50px;
}

.travel-quotes .bottom-content .inner {
  text-align: right;
}

.travel-quotes .saying {
  font-size: 18px;
  line-height: 28px;
  font-style: italic;
}

.stripe-grid-item {
  height: 300px;
}

.stripe-grid-item .image-bg {
  height: 100%;
  width: 50%;
}

.stripe-grid-item .content {
  padding: 25px;
  position: relative;
}

.stripe-grid-item .content h4 {
  font-weight: 500;
}

.stripe-grid-item .content:after {
  content: "";
  position: absolute;
  top: 30px;
  left: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 20px 15px 0;
  border-color: transparent #FFF transparent transparent;
}

.stripe-grid-item .content.bg-primary:after {
  border-color: transparent #7F4681 transparent transparent;
}

.stripe-grid-item .content.bg-color-02:after {
  border-color: transparent #87495B transparent transparent;
}

.row > div:nth-child(3) .stripe-grid-item .content:after,
.row > div:nth-child(4) .stripe-grid-item .content:after {
  left: auto;
  right: -15px;
  border-width: 15px 0 20px 15px;
  border-color: transparent transparent transparent #FFF;
}

.row > div:nth-child(3) .stripe-grid-item .content.bg-primary:after,
.row > div:nth-child(4) .stripe-grid-item .content.bg-primary:after {
  border-color: transparent transparent transparent #7F4681;
}

.row > div:nth-child(3) .stripe-grid-item .content.bg-color-02:after,
.row > div:nth-child(4) .stripe-grid-item .content.bg-color-02:after {
  border-color: transparent transparent transparent #87495B;
}

.row > div:nth-child(3) .image-bg,
.row > div:nth-child(4) .image-bg {
  margin-left: 50%;
}

.row > div:nth-child(3) .content,
.row > div:nth-child(4) .content {
  left: 0;
}

/**
 * Testimonial
 */
.slick-testimonial-wrapper .slick-prev:before,
.slick-testimonial-wrapper .slick-next:before {
  color: #333;
}

.slick-testimonial-wrapper .testimonial-man {
  margin: 25px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.testimonial-long {
  text-align: center;
  position: relative;
  padding-top: 10px;
}

.testimonial-long:before {
  font-family: "Pe-icon-7-stroke";
  content: "\e668";
  font-size: 52px;
  margin: 0 0 10px;
}

.testimonial-long .saying {
  font-size: 18px;
  line-height: 28px;
  font-style: italic;
  position: relative;
  margin: 10px 0 20px;
  font-weight: 300;
  font-family: "Merriweather", serif;
}

.testimonial-long h4 {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1;
}

.slick-testimonial-nav {
  margin: 20px 250px;
}

.slick-testimonial-wrapper .testimonial-man {
  margin: 15px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 5px;
}

.slick-testimonial-wrapper .testimonial-man .image {
  border: 1px solid #D9D9D9;
  border-radius: 50%;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -10px;
  margin-bottom: -10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 3px;
}

.slick-testimonial-wrapper .testimonial-man .image:after {
  display: none;
}

.slick-testimonial-wrapper .testimonial-man img {
  border-radius: 50%;
}

.slick-testimonial-wrapper .testimonial-man .image:hover {
  cursor: pointer;
}

.slick-testimonial-wrapper .slick-center .testimonial-man {
  margin: 10px;
}

.slick-testimonial-wrapper .slick-center .image {
  border: 1px solid #D60D45;
}

.slick-testimonial-wrapper .slick-center .image:hover {
  cursor: default;
}

.slick-gallery-slideshow.slick-testimonial-wrapper .slick-prev {
  left: -40px;
}

.slick-gallery-slideshow.slick-testimonial-wrapper .slick-next {
  right: -40px;
}

@media only screen and (max-width: 1199px) {
  .slick-testimonial-nav {
    margin: 30px 200px 20px;
  }
}
@media (max-width: 767px) {
  .slick-testimonial-nav {
    margin: 30px 100px 20px;
  }
}
@media (max-width: 479px) {
  .slick-testimonial-nav {
    margin: 30px 40px 20px;
  }
}
/**
 * Hot Deal
 */
.slick-hot-deal-item {
  padding: 230px 130px 130px;
  position: relative;
  z-index: 99;
  display: table;
}

.slick-hot-deal-item h4 {
  margin-top: 0;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
}

.slick-hot-deal-item .table-cell {
  display: table-cell;
}

.slick-hot-deal-item > div {
  width: 50%;
}

.slick-hot-deal-item .content {
  background: #FFF;
  position: relative;
  padding: 40px;
}

.slick-hot-deal-item .content p {
  margin-bottom: 25px;
}

.slick-hot-deal-item .image-bg-wrapper {
  position: relative;
}

.slick-hot-deal-item .image-bg-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
}

.slick-hot-deal-wrapper .slick-prev,
.slick-hot-deal-wrapper .slick-next {
  top: 60%;
}

@media only screen and (max-width: 1199px) {
  .slick-hot-deal-item {
    padding: 230px 60px 130px;
  }
}
@media (max-width: 767px) {
  .slick-hot-deal-item {
    padding: 230px 40px 75px;
  }
  .slick-hot-deal-item > div {
    width: 100%;
  }
  .slick-hot-deal-item .image-bg-wrapper {
    display: none;
  }
}
@media (max-width: 479px) {
  .slick-slider-center-mode.slick-hot-deal-wrapper .slick-prev {
    left: 5px;
  }
  .slick-slider-center-mode.slick-hot-deal-wrapper .slick-next {
    right: 5px;
  }
  .slick-hot-deal-item {
    padding: 230px 20px 75px;
  }
  .slick-hot-deal-item .content {
    padding: 20px 20px;
  }
}
/**
 * Faq
 */
.faq-category {
  background: #FFF;
  margin-top: 10px;
}

.faq-category h4 {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  background: #F7F7F7;
  color: #555;
  margin: 0;
  padding: 18px 20px 15px;
  border-bottom: 1px solid #E5E5E5;
}

.faq-category span {
  font-size: 18px;
  font-weight: 500;
}

.faq-category > .content {
  padding: 15px 20px;
}

.faq-category ul {
  margin: 0;
}

.faq-category ul li a {
  display: block;
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 7px;
  margin-bottom: 7px;
  color: #636363;
}

.faq-category ul li.active a {
  color: #D60D45;
}

.faq-category ul li:last-child a {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.faq-category ul li a:hover {
  padding-left: 5px;
  text-decoration: none;
}

.faq-accordion-wrapper .panel {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.faq-accordion-wrapper .accordion-heading {
  padding: 15px 0;
  border-bottom: 1px solid #E5E5E5;
}

.faq-accordion-wrapper .accordion-heading .panel-title {
  margin: 0;
  color: #636363;
  padding: 1px 0;
  font-size: 16px;
}

.faq-accordion-wrapper .accordion-heading .panel-title a {
  font-weight: 400;
  font-size: 16px;
}

.faq-accordion-wrapper .accordion-heading .panel-title a:hover {
  color: #D60D45;
}

.faq-accordion-wrapper .accordion-inner {
  padding: 20px 30px;
  margin: 0;
  border-bottom: 1px solid #E5E5E5;
}

.faq-accordion-wrapper .panel.accordion-item .panel-title a:after {
  content: "\f068";
  float: left;
  background: #D60D45;
  color: #FFF;
  font-size: 10px;
  padding: 5px 6px;
  line-height: 10px;
  margin-right: 10px;
  margin-top: 2px;
}

.faq-accordion-wrapper .panel.accordion-item .panel-title a.collapsed:after {
  content: "\f067";
}

.faq-accordion-wrapper.style-2 .accordion-heading {
  background: #E8E8E8;
  padding: 15px 20px 15px;
  border-bottom: 2px solid #D6D6D6;
  margin: 0 0 2px;
}

.faq-accordion-wrapper.style-2 .accordion-heading .panel-title {
  margin: 2px 0 0;
}

.faq-accordion-wrapper.style-2 .accordion-inner {
  background: #FFF;
  padding: 20px 30px;
  margin: 0 0 10px;
  border-bottom: 1px solid #D6D6D6;
}

.faq-accordion-wrapper.style-2 .panel.accordion-item .panel-title a:after {
  float: right;
  margin-right: 0;
}

.faq-accordion-wrapper.faq-accordion-sm-wrapper .panel-title a {
  font-size: 14px;
  font-weight: 400;
  color: #636363;
  padding-left: 35px;
  position: relative;
  display: block;
  line-height: 1.2;
  margin: 0;
}

.faq-accordion-wrapper.faq-accordion-sm-wrapper .panel-title a:after {
  margin: 0;
  position: absolute;
  top: 2px;
  left: 0;
  float: none;
}

.faq-accordion-wrapper.faq-accordion-sm-wrapper .accordion-inner {
  padding: 20px 0;
}

@media only screen and (max-width: 991px) {
  .faq-category {
    margin: 5px 0;
  }
}
/**
 * Sidebar
 */
#show-on-map {
  height: 250px;
}

.map-click-box {
  position: relative;
  background: #F3F3F3;
  margin: 0 0 20px;
}

a.map-click {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: #87495B;
  color: #FFF;
  padding: 10px 15px;
  display: block;
  padding-right: 40px;
  font-weight: 500;
  line-height: 1;
}

a.map-click:hover {
  background: #A1576C;
}

a.map-click i {
  font-size: 52px;
  position: absolute;
  bottom: 0;
  right: 10px;
  text-shadow: 3px 1px 3px rgb(150, 150, 150);
}

.sidebar.mt {
  margin-top: 50px;
}

.sidebar .widget {
  margin: 0 0 30px;
}

.quick-search {
  position: relative;
  margin: 0 0 40px;
}

.quick-search .form-control {
  height: 40px;
}

.quick-search .btn {
  position: absolute;
  top: 1px;
  right: 1px;
  color: #FFF;
  background: #fd0;
  height: 38px;
}

.quick-search .btn:hover {
  background: #51658C;
}

.quick-search .form-control {
  padding-right: 50px;
}

ul.sidebar-cat li {
  border-bottom: 1px dotted #DBDBDB;
  line-height: 14px;
  position: relative;
}

ul.sidebar-cat li:last-child {
  border-bottom: 0;
}

ul.sidebar-cat li a {
  padding: 10px 0;
  display: block;
  color: #636363;
}

ul.sidebar-cat li:first-child a {
  padding-top: 0;
}

ul.sidebar-cat li a:hover {
  padding-left: 5px;
}

ul.sidebar-cat li .absolute {
  left: auto;
  right: 0;
  top: 11px;
  font-size: 12px;
}

ul.sidebar-cat li:first-child .absolute {
  top: 0px;
}

ul.archive li {
  position: relative;
  margin-bottom: 10px;
}

ul.archive li a {
  color: #636363;
}

ul.archive li a:hover {
  text-decoration: underline;
}

ul.archive li .absolute {
  left: auto;
  right: 0;
  top: 0px;
  font-size: 12px;
}

.tag-cloud a {
  border: 3px double #DBDBDB;
  line-height: 1;
  font-size: 12px;
  padding: 5px;
  margin-left: 3px;
  margin-bottom: 5px;
  display: block;
  float: left;
  color: #777;
}

.tag-cloud a:hover {
  background: #D60D45;
  color: #FFF;
  border-color: #EDEDED;
}

.tag-cloud-wrapper {
  border-top: 2px solid #E6E6E6;
  position: relative;
  margin: 20px 0 0;
  padding: 10px 0 0;
}

.tag-cloud-wrapper .tag-cloud-heading {
  float: left;
  margin-top: 7px;
  text-transform: uppercase;
}

.tag-cloud-wrapper .tag-cloud {
  margin-left: 50px;
  margin-top: 5px;
}

ul.sidebar-menu-list li a {
  font-family: Roboto;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #F2F2F2;
  border: 1px solid #E5E5E5;
  display: block;
  margin: 0 1px 1px 0;
  padding: 10px 15px 8px;
  font-size: 13px;
  position: relative;
  display: block;
}

ul.sidebar-menu-list li a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: transparent;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

ul.sidebar-menu-list li.active a:before, ul.sidebar-menu-list li a:hover:before {
  background: #D60D45;
}

ul.sidebar-menu-list li a:after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  right: -33px;
  width: 33px;
  background: transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

ul.sidebar-menu-list li.active a, ul.sidebar-menu-list li a:hover {
  background: #F7F7F7;
}

ul.sidebar-menu-list li.active a:after {
  background: #F7F7F7;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

@media only screen and (max-width: 767px) {
  ul.sidebar-menu-list li a:after {
    display: none;
  }
}
/**
 * Featured
 */
.featured-item-text {
  margin: 15px 0;
}

.featured-item-text h4 {
  border-bottom: 1px solid #B270B5;
  padding-bottom: 10px;
  margin: 0 0 15px;
  letter-spacing: 2px;
}

.featured-item {
  line-height: 20px;
  margin-bottom: 20px;
}

.featured-item .icon {
  font-size: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #D60D45;
  color: #FFF;
  line-height: 46px;
  text-align: center;
}

.featured-item h3 {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 1px;
  font-weight: 500;
  margin: 20px 0 15px;
}

.featured-item-2 {
  line-height: 20px;
  margin-bottom: 15px;
}

.featured-item-2 .icon {
  color: #D60D45;
  float: left;
  font-size: 30px;
  margin-top: -4px;
  margin-right: 15px;
}

.featured-item-2 p {
  margin-left: 15px;
  margin-top: 4px;
}

.featured-item-2 .content {
  margin-left: 45px;
  margin-bottom: 25px;
}

.featured-item-2 .content h5 {
  margin: 0 0 10px;
  font-size: 15px;
  text-transform: uppercase;
}

.featured-item-2 .content p {
  margin: 0;
  line-height: 18px;
}

.featured-item-03 {
  line-height: 1.5;
  margin-bottom: 20px;
}

.featured-item-03 .icon {
  font-size: 40px;
  width: 46px;
  color: #D60D45;
  line-height: 40px;
  float: left;
  padding-top: 5px;
}

.featured-item-03 .content {
  margin-left: 65px;
}

.featured-item-03 h5 {
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 1px;
  font-weight: 500;
  margin: 0 0 15px;
}

.sell-or-buy {
  padding: 20px 30px;
  text-align: center;
}

.sell-or-buy .h3 {
  font-size: 26px;
  margin: 28px 0 25px;
  line-height: 1;
}

.sell-or-buy .icon {
  line-height: 60px;
  text-align: center;
  font-size: 60px;
  margin: 0;
}

.sell-or-buy .content a {
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: black;
  display: inline-block;
  padding: 7px 0px;
  display: inline-block;
  margin-top: 10px;
  background: #fd0;
}

.sell-or-buy .content a:hover {
  text-decoration: none;
  background: black;
  color: #fd0;
}

.sell-or-buy .image a {
  background: none;
  border: none;
}

.sell-or-buy .image a:hover {
  background: none;
}

.sell-or-buy img {
  transition: all 0.2s;
  max-width: 98%;
  min-height: 98%;
}

.sell-or-buy img:hover {
  transform: scale(1.03);
  transition: all 0.2s ease 0s;
}

.featured-box {
  text-align: center;
  border: 1px solid #E5E5E5;
  padding: 30px;
  background: #EDEDED;
  margin: 30px 0 10px;
}

.featured-box .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  margin: 0 auto 30px;
  margin-top: -60px;
  border-radius: 50%;
}

.featured-box h4 {
  margin: 0 0 15px;
}

.featured-box p {
  margin: 0 0 15px;
}

.featured-box a {
  font-size: 12px;
  font-weight: 600;
}

.featured-box a {
  color: #636363;
}

.featured-box a:hover {
  color: #D60D45;
  text-decoration: none;
}

.featured-bg {
  position: relative;
  padding: 120px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.featured-bg::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  content: "";
}

.featured-bg.stellar-parallax-bg {
  background-position: bottom center;
}

.featured-bg h3 {
  margin-top: 0;
  font-size: 34px;
  color: #FFF;
  font-weight: 600;
  line-height: 34px;
  text-transform: uppercase;
  margin: 0 0 10px;
  text-align: center;
}

.featured-bg p {
  color: #FFF;
  font-size: 26px;
  line-height: 30px;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  text-align: center;
}

.featured-timeline {
  position: relative;
}

.featured-timeline:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #E8E8E8;
}

.featured-timeline ul {
  margin: 0;
  padding: 0;
}

.featured-timeline ul li {
  width: 50%;
  float: left;
  padding: 30px 0;
  padding-left: 110px;
  padding-right: 30px;
  position: relative;
  border-bottom: 1px solid #E8E8E8;
}

.featured-timeline ul li:last-child,
.featured-timeline ul li:nth-last-child(2) {
  border-bottom: 0;
}

.featured-timeline ul li h4 {
  margin: 0 0 10px;
  text-transform: uppercase;
}

.featured-timeline ul li .icon {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 24px;
  width: 50px;
  height: 50px;
  line-height: 48px;
  border: 2px solid #D60D45;
  border-radius: 50%;
  text-align: center;
  color: #D60D45;
}

.featured-timeline ul li:nth-child(odd) {
  text-align: right;
  padding-left: 30px;
  padding-right: 110px;
}

.featured-timeline ul li:nth-child(odd) .icon {
  left: auto;
  right: 30px;
}

@media only screen and (max-width: 1199px) {
  .sell-or-buy {
    padding: 80px 80px;
    padding-right: 120px;
  }
  .sell-or-buy.text-right {
    padding-left: 120px;
  }
}
@media only screen and (max-width: 991px) {
  .sell-or-buy {
    padding: 40px;
    padding-right: 40px;
  }
  .sell-or-buy.text-right {
    padding: 40px;
    padding-left: 40px;
  }
}
/**
 * Team
 */
.team-item {
  text-align: center;
}

.team-item h4 {
  margin: 25px 0 10px;
  line-height: 1.1;
}

.team-item p {
  margin: 0 0 8px;
  line-height: 1.1;
}

.team-item ul.social {
  margin: 0;
}

.team-item ul.social li {
  display: inline-block;
  margin: 0 5px;
}

/**
 * Blog
 */
.blog-item-full {
  margin: 0 0 80px;
}

.blog-item-full .image {
  margin: 0 0 30px;
}

.blog-item-full .meta {
  margin: 0 0 10px;
  font-size: 13px;
  color: #919191;
  line-height: 18px;
}

.blog-item-full .meta a {
  color: #555;
  font-weight: 500;
  text-transform: uppercase;
}

.blog-item-full .meta a:hover {
  text-decoration: underline;
}

.blog-item-full .meta i {
  margin-right: 5px;
}

.blog-item-full .content h3.blog-title {
  position: relative;
  margin: 0;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-item-full .content h1.blog-title {
  position: relative;
  margin: 0;
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 26px;
}

/* .blog-item-full .content h3.blog-title:after { content:""; position: absolute; bottom: -15px; left: 0; width: 40px; height: 2px; background: #fd0; } */
.blog-item-full .btn-read-more {
  border-bottom: 2px solid #D60D45;
  padding: 0 0 3px;
  text-transform: uppercase;
  font-size: 12px;
}

.blog-item-full .btn-read-more:hover {
  text-decoration: none;
  padding: 0 5px 3px;
}

.blog-wrapper.blog-single .blog-item-full .content {
  margin-left: 0 !important;
}

.blog-wrapper.blog-single .blog-item-full {
  margin-bottom: 20px;
}

.recent-post-wrapper .row > div {
  margin: 0 0 20px;
}

.recent-post {
  position: relative;
  border: 1px solid #E6E6E6;
  -webkit-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid #DEDEDE;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  min-height: 150px;
  width: 100%;
  height: 100%;
}

.recent-post:hover {
  -webkit-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid #D60D45;
}

.recent-post .image {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  background-size: cover;
  background-position: center center;
  width: 230px;
}

.recent-post .content {
  margin-left: 240px;
  line-height: 1.5;
  padding: 20px 15px;
}

.recent-post .content .meta {
  font-size: 13px;
  color: #919191;
}

.recent-post .content .meta a {
  color: #555;
}

.recent-post .content .meta a:hover {
  text-decoration: underline;
}

.recent-post .content .meta i {
  margin-right: 5px;
}

.recent-post .content h4 {
  line-height: 1.4;
  margin: 20px 0 15px;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}

.recent-post .content p {
  line-height: 1.5;
  margin: 0 0 15px;
}

.recent-post .content a {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.recent-post .content a.btn-read-more {
  transition: all 0.15s ease;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
}

.recent-post .content a.btn-read-more:hover {
  padding-left: 3px;
  padding-right: 3px;
  text-decoration: none;
}

.blog-entry ul {
  list-style-type: inherit;
  margin-left: 35px;
  margin-bottom: 20px;
}

.blog-entry ol {
  list-style-type: decimal;
  margin-left: 35px;
  margin-bottom: 20px;
}

.blog-entry a {
  text-decoration: underline;
}

.blog-entry ul li,
.blog-entry ol li {
  margin-bottom: 7px;
}

.blog-entry ul li:last-child,
.blog-entry ol li:last-child {
  margin-bottom: 0;
}

.blog-entry h1,
.blog-entry h2,
.blog-entry h3,
.blog-entry h4,
.blog-entry h5,
.blog-entry h6 {
  margin: 30px 0 18px;
}

ul.recent-post-sm li {
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

ul.recent-post-sm li .h3 {
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 5px;
  font-weight: 500;
}

ul.recent-post-sm li .image {
  width: 80px;
  float: left;
}

ul.recent-post-sm li .image img {
  display: block;
}

ul.recent-post-sm li .content {
  margin-left: 90px;
}

ul.recent-post-sm li .recent-post-sm-meta {
  margin: 0;
  color: #555;
  font-size: 13px;
  font-style: italic;
}

ul.recent-post-sm li a:hover h3 {
  color: #fd0;
}

#comment-wrapper {
  position: relative;
}

ul.comment-item {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

ul.comment-item li {
  position: relative;
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

ul.comment-item li li {
  margin-left: 40px;
}

ul.comment-item li li:last-child,
ul.comment-item li li li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

ul.comment-item li > ul {
  margin-top: 20px;
  padding-top: 20px;
}

.comment-item .comment-avatar {
  position: absolute;
  top: 0px;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.comment-item .comment-avatar img {
  width: 100%;
  width: 100%;
  border-radius: 50%;
}

ul.comment-item li .comment-header {
  margin-left: 60px;
}

ul.comment-item li .comment-header a {
  color: #333;
}

ul.comment-item li .comment-header .comment-reply {
  color: #FFF;
}

.comment-item .comment-time {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: #989B8E;
  margin-bottom: 10px;
}

.comment-item a.comment-reply {
  float: right;
  font-size: 10px;
  font-weight: 300;
  line-height: 12px;
  padding: 3px 12px 2px;
  text-transform: uppercase;
  background: #D60D45;
  color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.comment-item a.comment-reply:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

/* in color file */
.comment-form .form-control:-ms-input-placeholder {
  color: #FFF;
}

.comment-content {
  margin-top: 20px;
}

.comment-content ul {
  list-style: none !important;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
}

.comment-content ol {
  list-style: decimal !important;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
}

.comment-content ul li,
.comment-content ol li {
  margin-bottom: 7px;
  padding: 0;
}

.comment-content ul li {
  position: relative;
}

.comment-content ul li:before {
  content: "- ";
}

.comment-content ul li:last-child,
.comment-content ol li:last-child {
  margin-bottom: 0;
}

.comment-content h1,
.comment-content h2,
.comment-content h3,
.comment-content h4,
.comment-content h5,
.comment-content h6 {
  margin: 30px 0 18px;
}

.comment-form label {
  font-weight: 400;
  margin: 0 0 7px;
}

@media only screen and (max-width: 1199px) {
  .recent-post .image {
    width: 200px;
  }
  .recent-post .content {
    margin-left: 210px;
  }
}
@media only screen and (max-width: 991px) {
  .recent-post {
    padding: 5px;
  }
  .recent-post .image {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center center;
  }
  .recent-post .content {
    margin-left: 0;
    line-height: 1.5;
    padding: 20px 10px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-item-full .content {
    margin-left: 0;
  }
}
/**
 * Newsletter
 */
.home-news-letter {
  background: #575757;
  color: #FFF;
  padding: 10px;
  margin-top: 50px;
}

.home-news-letter > .inner {
  border: 3px double rgba(255, 255, 255, 0.8);
  padding: 50px;
}

.home-news-letter h3 {
  color: #FFF;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  margin-right: 50px;
  float: left;
  position: relative;
}

.home-news-letter h3:after {
  content: "";
  position: absolute;
  top: -5px;
  right: -30px;
  width: 3px;
  border-right: 3px double rgba(255, 255, 255, 0.8);
  height: 30px;
}

.home-news-letter .text-holder {
  margin-top: 5px;
}

.home-news-letter .form-control {
  height: 35px;
  border: none;
}

.newsletter-wrapper {
  padding-top: 45px;
  padding-bottom: 25px;
}

.newsletter-wrapper .text-holder {
  margin-bottom: 25px;
}

.newsletter-wrapper .text-holder h3 {
  text-transform: uppercase;
  color: #FFF;
  line-height: 1;
  margin: 0 0 10px;
}

.newsletter-wrapper .text-holder p {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.newsletter-wrapper .footer-newsletter {
  margin-top: -15px;
}

.newsletter-wrapper .form-control {
  height: 40px;
  border: none;
  margin: 0;
}

.newsletter-wrapper .btn {
  height: 40px;
}

@media only screen and (max-width: 991px) {
  .home-news-letter .text-holder {
    margin-top: 0;
    margin-bottom: 15px;
  }
  .newsletter-wrapper .footer-newsletter {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .home-news-letter > .inner {
    padding: 20px;
  }
  .home-news-letter h3 {
    float: none;
  }
  .home-news-letter h3:after {
    display: none;
  }
}
/**
 * Contact
 */
.full-contact-map-wrapper {
  border-top: 1px solid #E5E5E5;
  border-bottom: 2px solid #E5E5E5;
  margin-top: -1px;
  position: relative;
}

.map-wrapper img {
  max-width: none !important;
}

.full-contact-map {
  height: 400px;
}

.absolute-contact-info {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 0;
}

.absolute-contact-info .content {
  background: #FFF;
  padding: 30px;
  border: 1px solid #E8E8E8;
  border-bottom: 0;
}

.absolute-contact-info .content .item {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
}

.absolute-contact-info .content .item.more-pl {
  padding-left: 35px;
}

.absolute-contact-info .content .item i {
  position: absolute;
  top: 0;
  left: 2px;
  font-size: 22px;
  padding-left: 2px;
}

.contact-form input.form-control {
  height: 36px;
  padding-left: 15px;
  margin: 0;
}

.contact-form textarea.form-control {
  padding-bottom: 31px;
}

.contact-form .form-control {
  padding-left: 15px;
}

.travel-quote-banner {
  background-size: cover;
  background-position: center center;
  padding: 50px 0;
}

.travel-quote-banner .content {
  width: 40%;
  margin: 50px auto;
  color: #FFF;
  text-align: right;
}

.travel-quote-banner .saying {
  font-size: 30px;
  text-transform: uppercase;
  line-height: 32px;
}

.travel-quote-banner .sayer {
  font-size: 16px;
}

.travel-quote-banner .sayer span {
  position: relative;
  padding-left: 12px;
}

.travel-quote-banner .sayer span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 2px;
  height: 16px;
  background: #FFF;
}

.travel-quote-banner .content a {
  color: #FFF;
  border: 2px solid #FFF;
  padding: 10px 15px;
  text-transform: uppercase;
  line-height: 1;
}

.travel-quote-banner .content a:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media only screen and (max-width: 767px) {
  .travel-quote-banner .content {
    width: 80%;
    margin: 30px auto;
  }
  .travel-quote-banner .saying {
    font-size: 24px;
    line-height: 1.4;
  }
  .travel-quote-banner .sayer {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  .full-contact-map-wrapper {
    border-bottom: 0;
  }
  .absolute-contact-info {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .absolute-contact-info .content {
    border: 1px solid #E8E8E8;
    margin-top: 20px;
    margin-bottom: -30px;
    padding: 20px;
  }
  .absolute-contact-info .content .item {
    font-size: 13px;
    padding-left: 30px !important;
  }
  .absolute-contact-info .content .xs-pull-left {
    float: left !important;
  }
  .absolute-contact-info .content .item i {
    font-size: 13px;
    top: 5px;
  }
}
.my_listings_edit_options a {
  color: #fff;
  display: inline-block;
  font-size: 11px;
  margin: 0 0 0 5px;
  margin-left: 0px;
  padding: 5px 7px;
  letter-spacing: 0;
  font-weight: 400;
}

.guide_delete {
  background-color: #dd3333;
}

/**
 * Error Page
 */
.error-404-wrapper {
  text-align: center;
}

.error-404-wrapper .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.error-404-wrapper h2 {
  font-weight: 500;
  font-size: 84px;
  line-height: 1;
  margin: 0 0 15px;
}

.error-404-wrapper h3 {
  font-size: 28px;
  line-height: 1;
  margin: 0 0 15px;
}

.error-menu {
  text-align: left;
  margin: 0 0 5px;
}

.error-menu i {
  font-size: 10px;
  display: block;
  float: left;
  margin-top: 5px;
  margin-right: 5px;
}

/**
 * Login/Signup
 */
.modal.modal-border-transparent .modal-content {
  border: 5px solid rgba(255, 255, 255, 0.4);
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
}

.modal.modal-login .modal-content {
  width: 380px;
  margin: 0 auto;
  position: relativel;
  padding: 0 0 5px;
}

.modal.modal-login .modal-content h3 {
  margin: 0 0 15px;
}

.modal.modal-login .modal-body {
  padding: 20px;
  padding-top: 0;
}

.modal.modal-login .modal-content .form-control {
  height: 36px;
  padding-top: 6px;
}

.modal.modal-login .modal-footer {
  border-top: 1px solid #E5E5E5;
  padding: 20px 20px 30px;
  margin-top: 5px;
}

.modal .modal-content .btn-close {
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 1052;
  font-size: 12px;
}

.modal-seperator {
  border-bottom: 1px solid #E5E5E5;
  text-align: center;
  margin: 25px 0 40px;
  margin-left: -20px;
  margin-right: -20px;
  position: relative;
}

.modal-seperator span {
  width: 40px;
  height: 40px;
  border: 1px solid #E5E5E5;
  border-radius: 50%;
  margin: 0 auto;
  line-height: 38px;
  display: block;
  margin-bottom: -20px;
  background: #FFF;
  font-weight: 700;
  font-family: "thaisans", sans-serif;
}

ul.login-modal-tab-nav {
  background: #EAEAEA;
  padding: 0;
  margin: 0;
}

ul.login-modal-tab-nav li {
  float: left;
  width: 50%;
  text-align: center;
}

ul.login-modal-tab-nav li a {
  display: block;
  padding: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #565656;
}

ul.login-modal-tab-nav li.active a {
  background: #FFF;
}

ul.login-modal-tab-nav li a:hover {
  color: #489FF0;
}

.btn.btn-facebook {
  background: #3b5998;
  color: #FFF;
}

.btn.btn-facebook:hover {
  opacity: 0.8;
}

.login-modal-tab-wrapper .form-control {
  background: #FFF;
  height: 40px;
}

@media (max-width: 479px) {
  .modal.modal-login .modal-content {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 800px;
    margin: 30px auto;
  }
}
.modal-dialog {
  margin: auto;
}

/**
 * Message for dashboard inbox
 */
ul.hotel-message-list {
  margin: 0;
}

ul.hotel-message-list > li {
  position: relative;
  min-height: 180px;
  margin: 0 0 20px;
  background: #FFF;
  border: 1px solid #E6E6E6;
  -webkit-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid #DEDEDE;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  padding: 5px;
}

ul.hotel-message-list > li:last-child {
  margin: 0;
}

ul.hotel-message-list > li .image {
  width: 250px;
  float: left;
}

ul.hotel-message-list > li .content {
  margin-left: 250px;
  position: relative;
  padding: 10px 15px 0;
  padding-right: 5px;
  line-height: 1.2;
}

ul.hotel-message-list > li .action-label {
  position: absolute;
  top: 0;
  right: 0;
}

ul.hotel-message-list > li .action-label.label {
  font-weight: 600;
  letter-spacing: 1.5px;
}

ul.hotel-message-list > li .content h4 {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 16px;
  margin: 0 0 2px;
  font-weight: 500;
  margin-right: 130px;
}

ul.hotel-message-list > li .content .location {
  margin-right: 130px;
}

ul.hotel-message-list > li .man {
  margin: 0 0 25px;
}

ul.hotel-message-list > li .man .avatar {
  width: 50px;
  float: left;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.35);
  padding: 3px;
  background: #FFF;
  border: 1px solid #E5E5E5;
}

ul.hotel-message-list > li .man h5 {
  line-height: 1;
  border-bottom: 1px solid #E5E5E5;
  margin: 0 0 7px;
  margin-left: 50px;
  padding: 1px 0 7px;
  padding-left: 10px;
}

ul.hotel-message-list > li .man p {
  line-height: 1.2;
  margin-left: 50px;
  padding-left: 10px;
}

ul.hotel-message-list > li .date {
  margin-top: 6px;
}

ul.hotel-message-list > li .action-btn {
  text-align: right;
}

.btn-hotel-message.collapsed:before {
  content: "view";
}

.btn-hotel-message:before {
  content: "close";
}

.message-item:not(:last-child) {
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: 1px solid #E5E5E5;
}

.message-item .message-author {
  line-height: 1.2;
  font-size: 13px;
  color: #A8A8A8;
}

.message-item .message-author .avatar {
  width: 50px;
  margin: 5px 0 0;
}

.message-item .message-author h5 {
  line-height: 1;
  margin: 10px 0 5px;
}

.message-entry ul {
  list-style-type: inherit;
  margin-left: 35px;
  margin-bottom: 20px;
}

.message-entry ol {
  list-style-type: decimal;
  margin-left: 35px;
  margin-bottom: 20px;
}

.message-entry ul li,
.blog-entry ol li {
  margin-bottom: 7px;
}

.message-entry ul li:last-child,
.blog-entry ol li:last-child {
  margin-bottom: 0;
}

.hotel-message-read {
  border-top: 1px solid #E5E5E5;
  background: #F5F5F5;
  margin: 5px 0 -5px;
  margin-left: -5px;
  margin-right: -5px;
  padding: 20px;
}

@media only screen and (max-width: 1199px) {
  ul.hotel-message-list li .image {
    width: 180px;
    margin-top: 5px;
    margin-left: 5px;
  }
  ul.hotel-message-list li .content {
    margin-left: 185px;
  }
}
@media only screen and (max-width: 991px) {
  ul.hotel-message-list li .image {
    float: none;
    margin-bottom: 5px;
  }
  ul.hotel-message-list li .content {
    margin-left: 0;
    padding-left: 5px;
  }
  ul.hotel-message-list li .date {
    font-size: 13px;
  }
  ul.hotel-message-list li .action-label {
    top: -5px;
  }
}
@media (max-width: 767px) {
  .message-item .message-author {
    margin: 0 0 15px;
  }
  ul.hotel-message-list li .action-btn {
    text-align: left;
    margin: 10px 0 5px;
  }
}
@media (max-width: 479px) {
  ul.hotel-message-list li .image {
    width: auto;
    margin-right: 5px;
  }
  ul.hotel-message-list li .action-label {
    position: relative;
    top: 0;
    right: auto;
    left: 0;
  }
  ul.hotel-message-list li .content h4 {
    margin-right: 0;
  }
  ul.hotel-message-list li .content .location {
    margin-right: 0;
  }
}
/**
 * Dashboard
 */
.dashboard-avatar {
  background: #F7F7F7;
  text-align: center;
  line-height: 1.2;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  width: 100%;
}

.dashboard-avatar .image {
  width: 100px;
  margin: 30px auto 15px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
  -webkit-box-shadow: 0px 0px 5px 0px rgb(214, 13, 69);
  -moz-box-shadow: 0px 0px 5px 0px rgb(214, 13, 69);
  box-shadow: 0px 0px 5px 0px rgb(214, 13, 69);
}

.dashboard-avatar .content h4 {
  line-height: 1;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.dashboard-avatar .content p {
  margin: 0 0 10px;
}

.dashboard-avatar ul.meta {
  margin: 25px 0 0;
  border-top: 1px solid #E5E5E5;
}

.dashboard-avatar ul.meta li {
  float: left;
  width: 50%;
  border-right: 1px solid #E5E5E5;
  font-size: 12px;
  padding: 14px 0 15px;
}

.dashboard-avatar ul.meta li span {
  display: block;
  font-weight: 700;
  font-size: 13px;
}

.dashboard-avatar ul.meta li:last-child {
  border-right: 0;
}

.dashboard-menu-wrapper {
  background: #FFF;
}

ul.dashboard-menu-list li a {
  color: #5d5d5d;
  display: block;
  border-bottom: 1px solid #E5E5E5;
  padding: 12px 17px;
  padding-left: 50px;
  line-height: 1;
  font-size: 13px;
  letter-spacing: 0.5px;
}

ul.dashboard-menu-list li a:hover,
ul.dashboard-menu-list > li:hover a {
  color: #C70C41;
  padding-left: 55px;
  padding-right: 12px;
}

ul.dashboard-menu-list li a i {
  margin-right: 3px;
  font-size: 12px;
}

ul.dashboard-menu-list li:last-child a {
  border-bottom: 0;
}

ul.dashboard-menu-list li a > span {
  width: 37px;
  text-align: center;
  display: block;
  border-right: 1px solid #E5E5E5;
  line-height: 37px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding-left: 4px;
}

ul.dashboard-menu-list li ul li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.navbar-vertical ul.navbar-vertical-menu {
  margin: 0;
}

.navbar-vertical ul.navbar-vertical-menu li {
  position: relative;
}

.navbar-vertical ul.navbar-vertical-menu li ul {
  z-index: 9999;
  padding: 0;
  margin: 0;
  position: absolute;
  top: -1px;
  left: 100%;
  width: 190px;
  display: none;
  background: #fd0;
  padding: 0;
  margin-left: 0;
}

.navbar-vertical ul.navbar-vertical-menu li ul:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #fd0 transparent transparent;
  position: absolute;
  top: 6px;
  left: 0;
  margin-left: -7px;
  o-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
}

.navbar-vertical ul.navbar-vertical-menu li ul li a {
  display: block;
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
}

.navbar-vertical ul.navbar-vertical-menu li ul li:hover > a {
  color: rgb(255, 255, 255);
  padding-left: 20px;
  padding-right: 10px;
}

.navbar-vertical ul.navbar-vertical-menu li ul li ul {
  position: absolute;
  left: 100%;
  top: 0;
}

.dashboard-menu-wrapper .slicknav_menu {
  display: none;
}

.dashboard-content .dashboard-heading {
  position: relative;
  margin: 0 0 45px;
}

.dashboard-content .dashboard-heading h3 {
  text-transform: uppercase;
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
}

.dashboard-content .dashboard-heading p {
  margin-top: 5px;
}

.dashboard-content .dashboard-heading h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 60px;
  height: 2px;
  background: #fd0;
}

@media (max-width: 767px) {
  .navbar-vertical ul.navbar-vertical-menu {
    display: none;
  }
  .dashboard-menu-wrapper .slicknav_menu {
    display: block;
    background: #FFF;
    width: 100%;
  }
  .dashboard-menu-wrapper .slicknav_btn {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    line-height: 40px;
  }
  .dashboard-menu-wrapper .slicknav_btn:before {
    color: #333;
    position: absolute;
    top: 0;
    right: 15px;
  }
  .dashboard-menu-wrapper .slicknav_nav {
    position: relative;
    top: 0;
  }
  .dashboard-menu-wrapper .slicknav_nav a {
    font-size: 12px;
  }
  .dashboard-menu-wrapper .slicknav_nav a i {
    font-size: 11px;
    margin-right: 5px;
  }
  .dashboard-menu-wrapper .slicknav_menu .slicknav_menutxt {
    color: #333;
    font-size: 12px;
    position: absolute;
    top: 7px;
    left: 15px;
  }
}
/**
 * Miscellaneous
 */
.widget-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 30px;
}

.filter-toggle h4 {
  text-transform: uppercase;
  font-size: 14px;
  border-bottom: 1px solid #CCC;
  color: #333;
  font-weight: 500;
  letter-spacing: 1px;
}

.filter-toggle h4.active {
  color: #333;
}

.filter-toggle .btn-more-less {
  font-size: 10px;
  margin-top: 5px;
  color: #D60D45;
}

.filter-toggle .form-group.mt,
.filter-toggle .range-slider-wrapper {
  padding-top: 7px;
}

.filter-toggle .fancy-select .form-control {
  font-size: 12px;
  padding-top: 7px;
}

.review-widget-sm {
  text-align: left;
  font-size: 13px;
  line-height: 1;
}

.review-widget-sm .score {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  float: left;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 400;
  font-size: 22px;
}

.review-widget-sm .widget-content {
  margin-left: 50px;
}

.review-widget-sm .widget-content h5 {
  font-weight: 500;
  line-height: 1;
  margin-top: 2px;
  margin-bottom: 7px;
  font-family: "Open Sans", sans-serif;
}

.widget-search .form-control {
  font-size: 12px;
}

.lighhight-box {
  background: #7F4681;
  color: #FFF;
  padding: 20px 15px;
  padding-left: 50px;
  line-height: 1;
  font-size: 18px;
  letter-spacing: 1px;
  position: relative;
}

.lighhight-box i {
  position: absolute;
  top: 6px;
  left: -2px;
  font-size: 44px;
}

.attraction-list-item {
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.attraction-list-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.attraction-list-item h3, .attraction-list-item h4 {
  font-weight: 500;
  margin-top: 0;
}

.attraction-list-item .price {
  line-height: 1.2;
  color: #D60D45;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.attraction-list-item .price .font-lg {
  font-size: 22px;
}

.waether-item {
  font-size: 32px;
  position: relative;
  padding-right: 15px;
  display: inline-block;
}

.waether-item .icon {
  color: #A8A8A8;
}

.waether-item:after {
  font-family: "weathericons";
  content: "\f03c";
  position: absolute;
  top: 0;
  right: 0;
  font-size: 22px;
}

.table {
  background: #F7F7F7;
}

.table a {
  font-weight: 400;
  color: black;
  text-decoration: underline;
}

/*
  Filter
*/
.cities-regions a {
  font-weight: 600;
  color: black;
  text-decoration: underline;
}

.border-between > [class*=col-]:before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
}

.border-between > [class*=col-]:first-child:before {
  display: none;
}

@media only screen and (max-width: 991px) {
  .border-between > [class*=col-]:before {
    display: none;
  }
}
.region-list {
  padding-left: 30px;
}

ul.region {
  list-style: square;
}

@media (min-width: 992px) {
  .col-md-2-20 {
    width: 20%;
  }
  .equal {
    display: flex;
    display: -webkit-flex;
  }
}
.sitemap ul {
  list-style-type: disc;
  list-style-position: inside;
}

.sitemap ol {
  list-style-type: decimal;
  list-style-position: inside;
}

.sitemap ul ul, ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}

.sitemap ol ol, ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}

.dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

ul.none {
  list-style: none;
}
ul.none li {
  color: #5d5d5d;
  font-weight: 400;
}

.select2-container .select2-selection--single {
  border-color: black;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0px;
}

.operator-title {
  font-weight: 600;
}

.back-city {
  background-image: url(/assets/background-bdc0519b014b64e832ee89a34b8c031fe0ff96f9db12fbaa504ecc238d1d3d0e.jpg);
  height: 509px;
}

.back-city-sketch {
  background-image: url(/assets/background_b-06e359d8f042460ac195ea4be464464ece3181f3760da370c3fe2a6cae06c42c.png);
  height: 509px;
}

.main_style_link a {
  color: #333;
}

.ads-photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 100%;
  max-height: 100%;
}

.advantage img {
  margin: auto;
}

.construction img {
  height: 120px;
  margin: auto;
}
.construction img:hover {
  -webkit-animation: shake 1s;
  animation: shake 1s;
}

.custom-form {
  padding: 53px 40px;
  border-radius: 3px;
  -webkit-box-shadow: -4px 6px 37px -8px rgb(115, 103, 115);
  -moz-box-shadow: -4px 6px 37px -8px rgb(115, 103, 115);
  box-shadow: -4px 6px 37px -8px rgb(115, 103, 115);
}

.welcome .leave_request {
  text-align: center;
  font-size: 35px;
  text-transform: uppercase !important;
}

.kp {
  letter-spacing: 0px;
}

.line-title {
  background-color: #fd0;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 16px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: inset -1px 0 0 0 #fff, inset -2px 0 0 0 #ffe100, inset -18px 0 0 0 #fff, inset -21px 0 0 0 #ffe100, inset -37px 0 0 0 #fff, inset -43px 0 0 0 #ffe100, inset -59px 0 0 0 #fff, inset -71px 0 0 0 #ffe100, inset -87px 0 0 0 #fff, inset -105px 0 0 0 #ffe100, inset -121px 0 0 0 #fff, inset -145px 0 0 0 #ffe100, inset -161px 0 0 0 #fff;
  box-shadow: inset -1px 0 0 0 #fff, inset -2px 0 0 0 #ffe100, inset -18px 0 0 0 #fff, inset -21px 0 0 0 #ffe100, inset -37px 0 0 0 #fff, inset -43px 0 0 0 #ffe100, inset -59px 0 0 0 #fff, inset -71px 0 0 0 #ffe100, inset -87px 0 0 0 #fff, inset -105px 0 0 0 #ffe100, inset -121px 0 0 0 #fff, inset -145px 0 0 0 #ffe100, inset -161px 0 0 0 #fff;
  padding: 4px 170px 4px 40px;
}

.line-title-gray {
  background-color: #f5f5f5;
  color: #000000;
  display: flex;
  padding: 0 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contacts-info {
  padding: 20px 20px;
  webkit-box-shadow: 0 -1px 4px 0 #e0e0e0, 0 2px 6px 0 #e0e0e0;
  box-shadow: 0 -1px 4px 0 #e0e0e0, 0 2px 6px 0 #e0e0e0;
}

.page a {
  font-weight: 500;
  color: #000000;
}

.page.current {
  font-weight: 600;
  color: #D60D45;
}

.custom-header {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Merriweather", serif;
  font-style: italic;
}

.about-box {
  padding: 20px 40px;
  text-align: center;
  -webkit-box-shadow: -4px 6px 37px -8px rgb(115, 103, 115);
  -moz-box-shadow: -4px 6px 37px -8px rgb(115, 103, 115);
  box-shadow: -4px 6px 37px -8px rgb(115, 103, 115);
  max-width: 29%;
  margin-right: 40px;
  margin-bottom: 50px;
  background: #fff;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  vertical-align: top;
  min-height: 266px;
}
.about-box img {
  height: 80px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.about-box .item {
  padding-top: 10px;
  font-size: 18px;
}

@media (max-width: 767px) {
  .about-box {
    max-width: 100%;
    margin-left: 40px;
  }
}
.modal-dialog {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.modal-content {
  margin: 0 auto;
}

.page {
  padding-right: 3px;
}

.pagination {
  font-size: 16px;
}

.stacktable {
  width: 100%;
}

.st-head-row {
  padding-top: 1em;
}

.st-head-row.st-head-row-main {
  font-size: 1.5em;
  padding-top: 0;
}

.st-key {
  width: 15% !important;
  text-align: right;
  padding-right: 1%;
}

.st-val {
  width: 85%;
  padding-left: 1%;
  text-align: left !important;
}

.stacktable.large-only {
  display: table;
}

.stacktable.small-only {
  display: none;
}

@media (max-width: 800px) {
  .stacktable.large-only {
    display: none;
  }
  .stacktable.small-only {
    display: table;
  }
}
td, th {
  padding: 0.5rem;
}

.aim-hero {
  background: #F8F8F8;
  position: relative;
  overflow: hidden;
}

.aim-hero__img-left {
  position: absolute;
  left: 0;
  top: 90px;
  width: 370px;
  z-index: 1;
}
.aim-hero__img-left img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.aim-hero__img-right {
  position: absolute;
  right: 0;
  top: 50px;
  width: 340px;
  z-index: 1;
}
.aim-hero__img-right img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.aim-hero__content {
  position: relative;
  z-index: 2;
}

.aim-hero__head {
  text-align: center;
  padding: 52px 16px 0;
}

.aim-hero__title {
  font-size: 48px;
  font-weight: 800;
  color: var(--aim-dark);
  line-height: 1.2;
  margin: 0 0 10px;
}

.aim-hero__subtitle {
  font-size: 18px;
  color: var(--aim-dark);
  margin: 0;
}

.aim-hero__card-wrap {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 40px;
}

.aim-hero__card {
  background: var(--aim-yellow);
  border-radius: 24px;
  padding: 28px 32px;
}

.aim-hero__form-title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--aim-dark);
  margin: 0 0 20px;
}

.aim-hero__form-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.aim-hero__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aim-hero__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--aim-dark);
  margin: 0;
}

.aim-hero__select {
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%231A1A1A' d='M4 6l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 12px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 12px 38px 12px 14px;
  font-size: 15px;
  color: var(--aim-dark);
  width: 100%;
  cursor: pointer;
}
.aim-hero__select:focus {
  outline: none;
  border-color: var(--aim-dark);
}
.aim-hero__select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.aim-hero__submit {
  background: var(--aim-dark);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  height: 46px;
  transition: background 0.2s;
}
.aim-hero__submit:hover {
  background: #333;
}

.aim-hero__foot {
  text-align: center;
  margin-top: 40px;
}

.aim-hero__foot-img {
  width: 380px;
  max-width: 40%;
  border-radius: 16px 16px 0 0;
  display: inline-block;
  position: relative;
  left: -250px;
}

@media (max-width: 1199px) {
  .aim-hero__img-left {
    width: 300px;
  }
  .aim-hero__img-right {
    width: 275px;
  }
  .aim-hero__title {
    font-size: 38px;
  }
  .aim-hero__card-wrap {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .aim-hero__img-left {
    width: 230px;
    top: 120px;
  }
  .aim-hero__img-right {
    width: 215px;
  }
  .aim-hero__title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .aim-hero__img-left,
  .aim-hero__img-right {
    display: none;
  }
  .aim-hero__head {
    padding: 28px 20px 0;
    text-align: left;
  }
  .aim-hero__title {
    font-size: 32px;
    font-weight: 800;
  }
  .aim-hero__subtitle {
    font-size: 16px;
    margin-top: 6px;
  }
  .aim-hero__card-wrap {
    padding: 0 16px;
    margin-top: 24px;
  }
  .aim-hero__card {
    border-radius: 20px;
    padding: 24px 20px;
  }
  .aim-hero__form-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .aim-hero__form-row {
    flex-direction: column;
    gap: 14px;
  }
  .aim-hero__field {
    gap: 5px;
    width: 100%;
  }
  .aim-hero__submit {
    display: block;
    margin: 8px auto 0;
    width: auto;
    height: auto;
    padding: 14px 48px;
  }
  .aim-hero__foot {
    display: none;
  }
}
.contacts-page {
  background: #F8F8F8;
  padding-bottom: 0;
}

.contacts-page__title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
  font-style: normal;
  line-height: 160%;
  letter-spacing: 0%;
  color: var(--aim-dark);
  margin: 16px 0 32px;
}

.contacts-page__grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.contacts-page__left {
  flex: 1 1 50%;
}

.contacts-page__right {
  flex: 1 1 50%;
}

.contacts-page__section-title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  line-height: 120%;
  letter-spacing: 0;
  color: var(--aim-dark);
  margin: 0 0 12px;
}

.contacts-page__schedule {
  font-size: 15px;
  color: var(--aim-dark);
  margin: 0 0 24px;
}
.contacts-page__schedule strong {
  font-weight: 700;
}

.contacts-page__employees {
  display: flex;
  gap: 32px;
}

.contacts-page__employee {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contacts-page__avatar {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 12px;
}

.contacts-page__emp-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--aim-dark);
  margin-bottom: 2px;
}

.contacts-page__emp-role {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.contacts-page__emp-contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contacts-page__emp-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--aim-dark);
  text-decoration: none;
  word-break: break-all;
  display: block;
}
.contacts-page__emp-link:hover {
  text-decoration: underline;
}

.contacts-page__emp-phone {
  font-size: 14px;
  font-weight: 400;
  color: var(--aim-dark);
  text-decoration: none;
  display: block;
}
.contacts-page__emp-phone strong {
  font-weight: 700;
}
.contacts-page__emp-phone:hover {
  text-decoration: underline;
}

.contacts-page__form-card {
  background: #F1F1F1;
  border-radius: 16px;
  padding: 32px 28px;
}

.contacts-page__form-title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--aim-dark);
  margin: 0 0 20px;
}

.contacts-page__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contacts-page__form-row {
  display: flex;
  gap: 12px;
}
.contacts-page__form-row > .contacts-page__form-field {
  flex: 1;
}

.contacts-page__form-field {
  width: 100%;
}
.contacts-page__form-field .form-group {
  margin-bottom: 0;
}
.contacts-page__form-field .form-control {
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--aim-dark);
  height: auto;
  box-shadow: none;
  width: 100%;
  resize: vertical;
}
.contacts-page__form-field .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}
.contacts-page__form-field .form-control::placeholder {
  color: #aaa;
}
.contacts-page__form-field.contacts-page__form-field--phone .form-control {
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231A1A1A' d='M2 4l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 12px center;
  padding-right: 32px;
}

.contacts-page__form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.contacts-page__submit {
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px;
  padding: 14px 40px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: none !important;
}
.contacts-page__submit:hover, .contacts-page__submit:focus, .contacts-page__submit:active {
  background: #222 !important;
  color: #fff !important;
  box-shadow: none !important;
}

.contacts-page__map {
  margin-top: 32px;
  padding-bottom: 48px;
}
.contacts-page__map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 16px;
}

@media (max-width: 991px) {
  .contacts-page__grid {
    flex-direction: column;
  }
  .contacts-page__left,
  .contacts-page__right {
    width: 100%;
    flex: none;
  }
}
@media (max-width: 767px) {
  .contacts-page__title {
    font-size: 28px;
  }
  .contacts-page__grid {
    flex-direction: column;
    gap: 24px;
  }
  .contacts-page__left {
    background: #F1F1F1;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 20px;
  }
  .contacts-page__section-title {
    font-size: 18px;
  }
  .contacts-page__employees {
    flex-direction: column;
    gap: 0;
    margin-top: 16px;
  }
  .contacts-page__employee {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E8E8E8;
  }
  .contacts-page__employee:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .contacts-page__avatar {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .contacts-page__form-card {
    background: #F1F1F1;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 20px;
  }
  .contacts-page__form-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .contacts-page__form-card .form-control {
    background: #fff;
    border: 1px solid #E8E8E8;
  }
  .contacts-page__form-row {
    flex-direction: column;
  }
  .contacts-page__form-actions {
    justify-content: center;
    margin-top: 8px;
  }
  .contacts-page__map iframe {
    height: 300px;
  }
}
/* Popover styles for hover previews */
.popover {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  max-width: none !important;
}
.popover .popover-body {
  padding: 0;
}
.popover .popover-body img {
  display: block;
  border-radius: 0;
  max-height: 400px;
  width: auto;
}
.popover .popover-arrow {
  display: none;
}

.aim-table__td .aim-table__icon-link + .aim-table__icon-link {
  margin-left: 5px;
}
.aim-table__td .aim-table__icon-link .fa-external-link {
  color: #999;
}
.aim-table__td .aim-table__icon-link .fa-external-link:hover {
  color: #fd0;
}

/* Mobile optimizations for icons and popovers */
@media (max-width: 767px) {
  .popover {
    display: none !important; /* Disable hover popovers on mobile to avoid clutter */
  }
}
.aim-table__icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.aim-table__icon-link:hover {
  background: rgba(255, 221, 0, 0.2);
}

.aim-mobile-card__icons {
  display: flex;
  gap: 15px;
  align-items: center;
}
.aim-mobile-card__icons .aim-table__icon-link {
  font-size: 1.4rem;
}
/*






   */

/*# sourceMappingURL=application.css-4c9ba8895254e000f9ea5ff2e4eed7217f2c75a1c145689d42e557f93a142bd1.map */
