body {
    font: 14px/22px  Arial, Helvetica, sans-serif;
    color: #6e6e6e;
    background-color: #222;
    padding: 0 !important;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.wrapper {
    overflow: hidden;
    background-color: #fff;
}
.section-overlay {
    background-color: rgba(0, 0, 0, 0.60);
    padding: 90px 0;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.header {
    position: absolute;
    text-align: center;
    top: 0px;
    z-index: 1000;
    color: #fff;
    width: 100%;
    height: 99px;
    transition: background-color 200ms ease-in-out 0s;
    -o-transition: background-color 200ms ease-in-out 0s;
    -moz-transition: background-color 200ms ease-in-out 0s;
    -webkit-transition: background-color 200ms ease-in-out 0s;
}
.header.header-fixed {
    display: block;
    margin-top: 0 !important;
    position: fixed;
    height: 65px;
    background-color: #fff;
    border-bottom: 1px solid #f1f1f1;
    box-shadow: 0 -10px 20px 1px #a7a7a7
}
.header-inner {
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}
.header-fixed .logo a {
    margin-top: 0;
    margin-bottom: 15px;
    transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}
.header-fixed .nav-menu ul.nav-menu-inner li a {
    padding: 26px 12px;
    color: #555;
}
.nav-menu ul.nav-menu-inner li:first-child a {
	border-top:0 !important;
}
.header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(252, 252, 252, 0) 99%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(252, 252, 252, 0) 99%, rgba(255, 255, 255, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#a6000000", endColorstr="#00ffffff", GradientType=0);
}
.header-fixed:before {
    background: none;
    height: 0;
}
h1,
h2,
h3,
h4 {
    color: #555;
    text-transform: uppercase;
    font-family:  sans-serif;
}
h1 {
    font-size: 48px;
    line-height: 48px;
    font-weight: 800;
    margin: 15px 0;
}
h2 {
    font-size: 36px;
    line-height: 36px;
    font-weight: 800;
}
h3 {
    font-size: 24px;
    line-height: 24px;
}
h4 {
    font-size: 18px;
    line-height: 18px;
}
.background-parallax h2,
.background-parallax h1 {
    color: #fff;
}

.title-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .title-container .box {
    width: 250px;
    height: 250px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  
  .title-container .box .title {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 80px;
    justify-content: center;
  }
  
  .title-container .box .title .block {
    width: 0%;
    height: inherit;
    background: #db2800;
    position: absolute;
    animation: mainBlock 2s cubic-bezier(.74, .06, .4, .92) forwards;
    display: flex;
  }
  
  .title-container .box .title h1 {
    font-family: 'Sans-serif';
    color: #fff;
    font-size: 64px;
    -webkit-animation: mainFadeIn 2s forwards;
    -o-animation: mainFadeIn 2s forwards;
    animation: mainFadeIn 2s forwards;
    animation-delay: 1.6s;
    opacity: 0;
    display: flex;
    align-items: baseline;
    position: relative;
    letter-spacing: 10px;
    padding-left: 10px;
  }
  
  .title-container .box .role {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 30px;
    margin-top: -15px;
    justify-content: center;
  }
  
  .title-container .box .role .block {
    width: 0%;
    height: inherit;
    background: #db2800;
    position: absolute;
    animation: secBlock 2s cubic-bezier(.74, .06, .4, .92) forwards;
    animation-delay: 2s;
    display: flex;
  }
  
  .title-container .box .role h2 {
    animation: secFadeIn 2s forwards;
    animation-delay: 3.2s;
    opacity: 0;
    font-weight: 400;
    font-family: 'Sans-serif';
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  @keyframes mainBlock {
    0% {
      width: 0%;
      left: 0;
    }
    50% {
      width: 100%;
      left: 0;
    }
    100% {
      width: 0;
      left: 100%;
    }
  }
  
  @keyframes secBlock {
    0% {
      width: 0%;
      left: 0;
    }
    50% {
      width: 100%;
      left: 0;
    }
    100% {
      width: 0;
      left: 100%;
    }
  }
  
  @keyframes mainFadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes secFadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 0.5;
    }
  }

.btn-link:hover {
    text-decoration: none!important;
    cursor: pointer;
}

.nav-menu {
    position: static;
    float: right;
}
.nav-menu ul.nav-menu-inner {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-menu ul.nav-menu-inner li {
    display: inline-block;
    list-style: none;
    text-align: center;
}
.nav-menu ul.nav-menu-inner li a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    padding: 43px 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-family:  sans-serif;
}
.nav-menu ul.nav-menu-inner li a i {
    font-size: 11px;
    padding-right: 3px;
}
.navbar-toggler {
    outline: none !important;
}

#icon-toggler {
    width: 20px;
    height: 21px;
    position: relative;
    margin: 23px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: block;
}
#icon-toggler span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #555;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.header #icon-toggler span {
    background-color: #fff;
}
.header-fixed #icon-toggler span {
    background-color: #555;
}
#icon-toggler span:nth-child(1) {
    top: 0;
}
#icon-toggler span:nth-child(2),
#icon-toggler span:nth-child(3) {
    top: 6px;
}
#icon-toggler span:nth-child(4) {
    top: 12px;
}
.divider span {
    display: inline-block;
    vertical-align: middle;
}
.divider .fa {
    font-size: 20px;
    margin: 0 20px;
}
.divider .outer-line {
    width: 25%;
    border-bottom: 1px solid #ddd;
}
.dropdown-menu ul{
    list-style-type: none!important;
    margin-bottom: 0!important;
    padding-left: 0!important;
  }
  .dropdown-item{
    text-align: left!important;
    padding: .25rem 1rem!important;
  }

.background-parallax {
    color: #fff;
    background-image: url("../img/yacht-marina.webp");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.background-parallax .section-overlay {
    padding: 120px 0 100px;
}
.background-parallax h1 {
    margin-bottom: 20px;
}

.about {
    background-color: #fff;
}
.about .about-content .title-about {
    font-size: 28px;
    margin-bottom: 10px;
	    margin-top: 0;
}
.about .about-content {
    margin-top: 40px;
}
.about .about-content .custom-button {
    padding: 12px 26px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
}

.sub-title{
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .background-parallax {
        text-align: center;
        background-image: url("../img/mobile-bg.webp");
    }
}
  
@media (max-width: 991px) {
    .background-parallax {
        text-align: center;
        background-image: url("../img/mobile-bg.webp");
    }
    .about .about-content .title-about {
        margin-top: 0;
    }
	.about .about-right {
		margin-left:-22px;
	}
	.services .services-box {
        margin: 30px -9px;
    }
    .services .services-box-item-cover, .services .services-box-item-content {
        transform: none;
        transition: none;
    }
    .services .services-box-item-content {
        padding:15px;
    }
    
    .services .services-box-item-cover {
        display:none;
    }
    .services .services-box-item {
        margin:28px 0;
    }
	.nav-menu ul.nav-menu-inner li {
        display: block;
        width: 100%;
    }
    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        float: none;
        width: 100%;
        background: #fff;
        overflow-y: hidden;
        z-index: 999;
    }
    .nav-menu ul.nav-menu-inner li a {
        padding: 20px 12px;
        border-top: 1px solid #f6f6f6;
    }
    .nav-menu ul.nav-menu-inner li:last-child a {
        border-bottom: 1px solid #f6f6f6;
    }
    .nav-menu ul.nav-menu-inner li a {
        position: relative;
        text-decoration: none;
        color: #555;
        text-align: left;
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .background-parallax {
        text-align: center;
        background-image: url("../img/mobile-bg.webp");
    }
    .about .container,
    .services .container,
    .portfolio .container,
    .contact .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .header-inner {
        padding-left: 15px;
        padding-right: 15px;
    }
    h1 {
        font-size: 40px;
        line-height: 40px;
    }
    h2 {
        font-size: 32px;
    }
    h4 {
        font-size: 18px;
    }
    .header {
        height: 65px;
    }
    .top-text h1,
    .top-text h2,
    .footer p {
        margin-left: 15px;
        margin-right: 15px;
    }
    .top-text h2 {
        line-height: 28px;
    }
    .about .about-content .about-left-side {
        margin-top: 0;
    }
    .info-map-boxes-item {
        width: 100%;
        margin-top: 30px;
    }
}
@media (max-width: 576px) {
    .background-parallax {
        text-align: center;
        background-image: url("../img/mobile-bg.webp");
    }
    .portfolio .filtr-item {
        padding-left: 0;
        padding-right: 0;
    }
  .services .services-box-item {
    margin-top: 15px;
    padding: 0 15px;
}
}


@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .background-parallax {
      background-attachment: scroll !important;
      background-position: center center !important;
      background-size: cover !important;
    }
  }