/*=========================================================================
2020 Menu
1. Header

2. Widgets

=========================================================================*/

/* ===========  1. Header  =========== */
#header {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.06);
    position: fixed;
    z-index: 999;
    height: initial;
    line-height: initial;
    padding-bottom: initial;
    color: initial;
    text-shadow: none;
    margin-bottom: initial;
    font-family: 'Montserrat';
    width:100vw;

}
#header .header-inner {
  /*height: 100px;*/
  position: relative;
}
#header .logo {
  /*line-height: 100px;*/
  float: left;
}
#header .logo > a {
  line-height: inherit;
  display: block;
  padding-top:18px;
}
#header .logo img {
  max-height: 24px;
}
.main-menu {
  text-transform: uppercase;
  /*line-height: 40px;*/
  padding-top: 15px;
  padding-bottom: 15px;
}
.main-menu .logo {
  display: none;
}
.main-menu .menu-list > li:last-child > a {
  padding-right: 0;
}
.main-menu li {
  position: relative;
  display: inline-block;
  font-size: 11px;
  
}
.main-menu li a {
  color: #fff;
  padding: 12px 18px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.main-menu li:hover > a {
  color: #0aaee4;
}
.main-menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.main-menu .sub-menu {
  width: 220px;
  background-color: #fff;
  margin: 0;
  padding: 0;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 100%;
  left: 0;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: opacity ease 0.5s;
  -moz-transition: opacity ease 0.5s;
  -ms-transition: opacity ease 0.5s;
  -o-transition: opacity ease 0.5s;
  transition: opacity ease 0.5s;
}
.main-menu .sub-menu li {
  display: block;
  font-size: 11px;
}
.main-menu .sub-menu a {
  display: block;
  padding: 5px 20px;
}
.main-menu .sub-menu a:hover {
  background-color: #464647;
  color: #ffffff !important;
}
.main-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}
.main-menu li.current_page_item a {
  color: #101010;
  background-color: #f7f8f9;
}
.close-menu {
  display: none;
}
.item-search + form {
  display: none;
}
.header-hide {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s ease, opacity 0.3s ease;
  -moz-transition: visibility 0.3s ease, opacity 0.3s ease;
  -ms-transition: visibility 0.3s ease, opacity 0.3s ease;
  -o-transition: visibility 0.3s ease, opacity 0.3s ease;
  transition: visibility 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}
.header-hide.active {
  visibility: visible;
  opacity: 1;
}
.menu-mobile {
  display: none;
  position: absolute;
  top: 22px;
  right: 0;
  width: 40px;
  height: 100px;
  padding-left: 16px;
  cursor: pointer;
}
.menu-mobile.active .item-2 {
  right: 0;
}
.menu-mobile .item {
  position: absolute;
  right: 22px;
  background-color: #dadada;
  width: 24px;
  height: 1px;
}
.menu-mobile .item-1 {
  top: 0px;
}
.menu-mobile .item-2 {
  top: 8px;
  width: 18px;
  -webkit-transition: left 0.3s ease-in-out;
  -moz-transition: left 0.3s ease-in-out;
  -ms-transition: left 0.3s ease-in-out;
  -o-transition: left 0.3s ease-in-out;
  transition: left 0.3s ease-in-out;
  right: 22px;
}
.menu-mobile .item-3 {
  top: 16px;
}
.menu-search-form {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.98);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  text-align: center;
}
.menu-search-form.active {
  opacity: 1;
  visibility: visible;
  z-index: 999999999999;
}
.menu-search-form a {
  font-size: 62px;
  display: inline-block;
  margin-top: 15px;
  padding: 10px 15px;
  background-color: transparent;
  color: #181818;
}
.menu-search-form .search-input {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 750px;
  width: 100%;
  margin: 30px auto;
  border: 1px solid #f4f5f6;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.05);
}
.menu-search-form .search-input:before {
  content: "";
  display: block;
  width: 3px;
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  background-color: #181818;
}
.menu-search-form input[type="text"] {
  display: block;
  width: 100%;
  height: 72px;
  padding-left: 25px;
  padding-right: 40px;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  font-size: 24px;
}
.menu-search-form input[type="text"]:focus,
.menu-search-form input[type="text"]:active {
  outline: 0;
}
.menu-search-form button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 22px;
  font-size: 24px;
  width: 72px;
  box-shadow: none;
  background-color: #181818;
  border: 0 solid #ff6060;
  color: #ffffff;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  opacity: 1;
}
.menu-search-form button:hover {
  opacity: 0.7;
}
.mt30 {
  margin-top: 30px;
}
.pt30 {
  padding-top: 30px;
}
  .desktopMenu
  {
  	display:block;
  }
  .mobileMenu
  {
  	display:none;
  }
  .tabletLogo_show
  {
  	display:none;
  }

section {
	background-repeat:no-repeat;
}
.topBar{
		border-top:solid 79px #282828;
		height:79px;
	}
@media only screen and (max-width: 767px) {
	.removeMobilePadding{
		top:-100px;
	}
	.topBar{
		border-top:solid 55px #282828;
		height:55px;
	}

}

/* =========== 2. Widgets  =========== */
#loading-mask {
	background: #fff;
	height: 100%;
	left: 0;
	opacity: 1;
	position: fixed;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 999999999;
}
.loading-img {
	height: 100%;
	left: 0;
	position: fixed;
	top: 42%;
	width: 100%;
}
.sidebar {
  padding-left: 10px;
  margin-bottom: 120px;
}
.col-md-pull-8 .sidebar {
  padding-left: 0;
  padding-right: 20px;
}
.widget {
  position: relative;
  line-height: 1.8em;
  margin-bottom: 50px;
  /* 1. KD About */
  /* 2. Kd Mailchimp */
  /* 3. Popular, Random, Latest Posts */
  /* 4. Twitter */
  /* 5. Instagram */
}
.widget .screen-reader-text {
  display: none;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget .title {
  margin-top: 0;
  font-size: 18px;
  text-transform: capitalize;
}
.widget:after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.21);
}
.widget .widget-content {
  margin-top: 20px;
}
.widget .widget-title {
  font-size: 18px;
  font-weight: 300;
  position: relative;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 30px;
}
.widget .widget-title:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #eeeeee;
}
.widget .widget-title span {
  position: relative;
  display: inline-block;
  padding: 0 0 15px;
}
.widget .widget-title span:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #444444;
}
.widget img {
  width: 100%;
}
.widget .widget-title img {
  width: auto;
}
.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget ul li {
  padding-bottom: 5px;
}
.widget ul li:last-child {
  padding-bottom: 0;
}
.widget label {
  display: block;
  margin-bottom: 10px;
}
.widget select {
  display: block;
  width: 100%;
}
.widget #wp-calendar {
  width: 100%;
}
.widget #wp-calendar caption {
  text-align: right;
  font-size: 12px;
  margin-bottom: 15px;
  padding-top: 0;
  padding-bottom: 8px;
}
.widget #wp-calendar thead {
  font-size: 12px;
}
.widget #wp-calendar thead th {
  padding-bottom: 10px;
  text-align: center;
}
.widget #wp-calendar tfoot #prev {
  font-size: 10px;
  text-transform: uppercase;
  padding-top: 10px;
}
.widget #wp-calendar tr td {
  border-left: 0;
  padding: 10px;
}
.widget #wp-calendar tbody td {
  background: #ffffff;
  border: 1px solid #ffffff;
  text-align: center;
  padding: 8px;
}
.widget #wp-calendar #today a {
  font-weight: 700;
}
.widget #wp-calendar tfoot {
  display: none;
}
.widget .recentcomments .comment-author-link {
  text-transform: capitalize;
}
.widget .recentcomments a {
  color: #181818;
}
.widget .rsswidget {
  color: #181818;
}
.widget.widget_search .wrap-search {
  position: relative;
}
.widget.widget_search .search-field {
  border-color: #181818;
}
.widget.widget_search .search-submit {
  font-family: 'FontAwesome';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: #181818;
  border: 1px solid transparent;
  width: 50px;
  display: inline-block;
  color: #ffffff;
}
.widget.widget_nav_menu ul ul {
  padding-left: 15px;
}
.widget.widget_tag_cloud .widget-title {
  margin-bottom: 20px;
}
.widget.widget_tag_cloud .tagcloud {
  margin-left: -5px;
  margin-bottom: -5px;
}
.widget.widget_tag_cloud .tagcloud a {
  display: inline-block;
  border: none;
  font-size: 11px !important;
  padding: 10px 20px 8px;
  margin-left: 5px;
  margin-top: 10px;
  letter-spacing: 1px;
  background-color: #f2f2f2;
  text-transform: uppercase;
  line-height: 1.4em;
  font-weight: 400;
}
.widget.kd-about .title {
  margin-bottom: 15px;
}
.widget.kd-about .title span {
  color: #181818;
  font-size: 30px;
}
.widget.kd-about .widget-follow-content a {
  font-size: 14px;
  margin-left: 8px;
}
.widget.kd-about .widget-follow-content a:first-child {
  margin-left: 0;
}
.widget.kd-mailchimp {
  background: #f0f0f0;
  text-align: center;
}
.widget.kd-mailchimp .widget-content {
  padding: 30px 20px;
  background: transparent;
  font-size: 16px;
  line-height: 1.4em;
}
.widget.kd-mailchimp .description {
  font-style: italic;
  font-size: 14px;
}
.widget.kd-mailchimp .kd-subscribe {
  position: relative;
  margin-top: 20px;
}
.widget.kd-mailchimp input[type="email"] {
  border: 1px solid transparent;
  font-size: 14px;
  display: block;
  width: 100%;
  height: 37px;
  padding: 0 10px 0;
  margin-bottom: 7px;
  font-weight: 300;
  background: white;
  margin-top: 5px;
}
.widget.kd-mailchimp input[type="submit"] {
  margin-top: 10px;
  width: 100%;
  line-height: 40px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 2px 0 0;
}
.widget.kd-mailchimp .subscribe-status {
  margin: 0;
}
.widget.kd-posts-list .item {
  position: relative;
  margin-bottom: 20px;
}
.widget.kd-posts-list .image {
  padding-bottom: 75%;
}
.widget.kd-posts-list .image:after {
  pointer-events: none;
  content: '';
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: -moz-linear-gradient(top, transparent 0, rgba(0, 0, 0, 0.7) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(100%, rgba(0, 0, 0, 0.7)));
  background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, 0.7) 100%);
  background: -o-linear-gradient(top, transparent 0, rgba(0, 0, 0, 0.7) 100%);
  background: -ms-linear-gradient(top, transparent 0, rgba(0, 0, 0, 0.7) 100%);
  background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.7) 100%);
}
.widget.kd-posts-list .widget-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  padding-bottom: 15px;
}
.widget.kd-posts-list .title {
  font-size: 14px;
  color: #f6f6f6;
  line-height: 1.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.widget.kd-posts-list .post-details {
  font-size: 11px;
  color: #f6f6f6;
}
.widget.kd-posts-list .post-details a {
  color: inherit;
}
.widget.kd-posts-list .post-details a.post-author {
  display: none;
}
.widget.kd-posts-list .post-details a:after {
  color: inherit !important;
}
.widget.kd-contact .item-field {
  line-height: 30px;
  margin-top: 10px;
}
.widget.kd-contact .item-field i {
  display: inline-block;
  width: 30px;
  height: 30px;
  font-size: 20px;
  color: #181818;
}
.widget.kd-twitter .twitter-logo {
  text-align: center;
  font-size: 50px;
  color: #181818;
}
.widget.kd-twitter .owl-dots {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
  padding-bottom: 10px;
  padding-top: 10px;
}
.widget.kd-twitter .owl-dots .owl-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid #181818;
}
.widget.kd-twitter .owl-dots .owl-dot.active {
  background: #181818;
}
.widget.kd-twitter .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.widget.kd-images .kd-content {
  margin-left: -4px;
  margin-right: -4px;
  text-align: center;
}
.widget.kd-images .kd-content:after {
  content: '';
  display: block;
  clear: both;
}
.widget.kd-images .item {
  float: left;
  position: relative;
  width: 33.333333%;
  padding-top: 33.333333%;
}
.widget.kd-images .item :hover img {
  opacity: 0.8;
}
.widget.kd-images .items-group:after {
  content: '';
  clear: both;
  display: block;
}
.widget.kd-images .items-group:first-child .item:first-child {
  width: 66.666666%;
  padding-top: 66.666666%;
}
.widget.kd-images a {
  overflow: hidden;
  position: absolute;
  display: block;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
}
.widget.kd-likebox {
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
	.tabletLogo_show
	{
		display:block;
	}
	.tabletLogo_hide
	{
		display:none;
	}
}
@media screen and (max-width: 991px) {
	#header {
		height:0px;
		min-height:0px !important;
	}
  .sidebar {
    padding-left: 0;
    padding-right: 0;
  }
  #header .menu-mobile {
    display: block;
  }
  #header .close-menu {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    
  }
  #header .close-menu i {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    color:#282828;
  }
  #header .item-search {
    display: none !important;
  }
  #header .item-search + form {
    display: block;
  }
  #header .item-search + form input {
    border: none;
    background-color: #eeeeee;
    width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    font-size: 14px;
  }
  #header .main-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    padding: 0;
    height: 100%;
    background: #ffffff;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    min-height:100vh;
    overflow-y:scroll;
  }
  #header .main-menu.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  #header .main-menu .logo {
    display: block;
    padding-top: 60px;
    padding-bottom: 40px;
    text-align: center;
    float: none;
    background-color:#fff;
  }
  #header .main-menu .logo img {
    max-height: 40px;
  }
  #header .main-menu .menu-list {
    padding-left: 0;
  }
  #header .main-menu .menu-list a {
    display: block;
    padding: 2px 0;
    color:#555;
    font-weight:400;
  }
  #header .main-menu .menu-list li {
    display: block;
    text-align: center;
    border-top: 1px solid #e9e9e9;
    color:#555;
  }
  #header .main-menu .menu-list li .sub-menu {
    width: 100%;
    position: static;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    z-index: 1;
    display: none;
    background-color: #eeeeee;
  }
  #header .main-menu .menu-list li .sub-menu li {
    border-top-color: #dddddd;
  }
  .about-section {
    margin-top: 150px;
  }
  .portfolio-section {
    padding-top: 120px;
    padding-bottom: 100px;
  }
  .service-item {
    margin-bottom: 40px;
  }
  
  
  .desktopMenu
  {
  	display:none;
  }
  .mobileMenu
  {
  	display:block;
  }
  .tabletLogo_show
	{
		display:none;
	}
  .tabletLogo_hide
	{
		display:block;
	}
}
@media screen and (max-width: 600px) {
  #portfolio .grid-item {
    width: 100% !important;
  }
  #portfolio .image {
    padding-bottom: 100% !important;
  }
  #portfolio.fade-in .caption-inner {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  #portfolio.fade-in .caption-inner .title {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  #portfolio.fade-in .caption-inner .cat {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  .error404 article.post .post-content .the-content h1 {
    font-size: 180px;
  }
  .error404 article.post .post-content .the-content h4 {
    font-size: 24px;
  }
  .featured-slider .title {
    font-size: 24px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4em;
  }
  .featured-slider .post-cat {
    margin-top: 0;
  }
  .featured-slider .post-cat a + a {
    display: none;
  }
  .featured-slider .read-more {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #post-author .avatar-author {
    float: none;
  }
  #post-author .post-author-content {
    margin-left: auto;
    padding-left: 0;
    margin-top: 20px;
  }
  .single article.post .related-posts .related-wrap .related-item {
    width: 100%;
    margin-bottom: 30px;
  }
  .single article.post .related-posts .related-wrap .related-item:last-child {
    margin-bottom: 0;
  }
  .single article.post #comments .comment-list .children {
    padding-left: 0;
  }
  .single article.post #comments .comment-list .comment-body:after {
    content: '';
    clear: both;
    display: block;
  }
  .single article.post #comments .comment-list .comment-context {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 40px;
  }
  .single article.post #comments .comment-list .comment-context .comment-head {
    margin-left: 70px;
    padding-left: 20px;
    min-height: 70px;
  }
  .single article.post #comments .comment-list .comment-context p:last-child {
    margin-bottom: 10px;
  }
}
/* OVERRIDE STYLES - FROM TEMPLATE */
.largeLink{
		font-size:8.75pt !important;
	}
	
	.smallLink{
		font-size:6pt !important;
	}
	.closedMenu{
		display:none !important;
		
	}
	.activeMenu{
		display:block;

	}
	.col-center {
    display:inline-block;
    float:none;
	}
	a.blackLink{
		color:#000 !important;
		line-height: 0px !important;
	}
	
	a.blackLink:link{
		color:#000 !important;
		line-height: 0px !important;
	}
	
	a.blackLink:hover{
		color:#555 !important;
		line-height: 0px !important;
	}
	
	
	@media only screen and (max-width: 600px)
	{
		.boatMenu{
			left:0px;
		}
	}
	.lightLi{
		padding: 10px;
    	font-weight: 100 !important;
    	font-family: 'Open Sans', sans-serif;
	}
	
	.blockButton{
		height:125px;
		width:125px;
		background-color:#000;
		color:#fff;
		font-family:'Montserrat', sans-serif;
		
	}
	
	.blockButton:hover{
		background-color:#282828;
	}
/*# sourceMappingURL=styles.css.map */