@font-face {
    font-family: 'Calibri Light';
    src: url('../font/Calibri-Light.woff2') format('woff2'),
    url('../font/Calibri-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Calibri Bold';
    src: url('../font/Calibri-Bold.woff2') format('woff2'),
    url('../font/Calibri-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham Light';
    src: url('../font/Gotham-Light.woff2') format('woff2'),
    url('../font/Gotham-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham Bold';
    src: url('../font/Gotham-Bold.woff2') format('woff2'),
    url('../font/Gotham-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham Medium';
    src: url('../font/Gotham-Medium.woff2') format('woff2'),
    url('../font/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham Book';
    src: url('../font/Gotham-Book.woff2') format('woff2'),
    url('../font/Gotham-Book.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Area Normal Regular';
    src: url('../font/AreaNormal-Regular.woff2') format('woff2'),
    url('../font/AreaNormal-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Area Normal Bold';
    src: url('../font/AreaNormal-Bold.woff2') format('woff2'),
    url('../font/AreaNormal-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



::selection {
    color: #ffffff;
    background: #3f3f3f;
}
:root{
    --pimary-color: #5e17eb;
    --secondary-color: #ff6600;
    --font-calibri-bold: 'Calibri Bold';
    --font-calibri-light: 'Calibri Light';
    --font-gotham-light: 'Gotham Book';
    --font-gotham-bold: 'Gotham Medium';
    --font-areanormal-light: 'Area Normal Regular';
    --font-areanormal-bold: 'Area Normal Bold';
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    padding: 0;
    margin: 0;
    font-family: var(--font-calibri-light);
    font-size: 18px;
    color: #848484;
    line-height: 1.5;
    overflow-x: hidden!important;
    background: #ffffff;
}

input, select, button, a, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
    transition: all 0.5s;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    list-style: none;
}
select option{
    color: black!important;
}
p{
    margin-top: 0;
}
ul{
    margin: 0;
    padding: 0;
    display: flow-root;
}
.container {
    position: relative;
    padding: 0;
}
h1{
    margin: 0;
    font-weight: normal;
    font-family: var(--font-areanormal-bold);
    font-size: 36px;
    color: #3f3f3f;
}
h2{
    margin: 0;
    font-weight: normal;
    font-family: var(--font-areanormal-bold);
    font-size: 36px;
    color: #3f3f3f;
}
h3{
    margin: 0;
    font-weight: normal;
    font-family: var(--font-areanormal-bold);
    font-size: 22px;
    color: #3f3f3f;
}
h4{
    margin: 0;
    font-weight: normal;
    font-family: var(--font-areanormal-light);
    font-size: 20px;
    color: #585858;
}
.section_parallax{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.section_parallax:before{
    content: '';
    background-image: url("../images/icon/bg.png");
    width: 250px;
    height: 500px;
    background-size: contain;
    position: absolute;
    left: 0;
    bottom: -250px;
    background-repeat: no-repeat;
}
.section_parallax img{
    width: 100%;
    display: block;
}
.section_header{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    font-family: var(--font-areanormal-light);
    color: #4e4e4e;
}
.brand_logo img{
    height: 100px;
    width: auto;
}
.section_header ul{
    margin: 0;
    padding: 0;
    width: fit-content;
}
.section_header li{
    position: relative;
    padding: 15px 0 15px 35px;
    border-bottom: 1px solid #dbdbdb;
    list-style: none;
}
.section_header li:before{
    content: '';
    background-image: url("../images/icon/list.png");
    width: 23px;
    height: 22px;
    background-size: cover;
    position: absolute;
    left: 0;
}
.brand_logo{
    margin-bottom: 25px;
    width: fit-content;
}
.section_header li.active{
    font-family: var(--font-areanormal-bold);
}
.images_description{
    width: 100%;
    height: 700px;
}
.images_description img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details_description{
    padding: 50px 0 0;
}
.details_description h1>label{
    color: var(--secondary-color);
}
.section_description{
    padding: 100px 0;
    position: relative;
}
.section_description:before{
    content: none;
    background-image: url('../images/icon/bg-1.png');
    width: 100px;
    height: 100px;
    background-size: cover;
    position: absolute;
    top: auto;
    bottom: 150px;
    margin: auto;
    left: 0;
}
.details_description h4{
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.details_description h4:before{
    content: '';
    width: 50px;
    height: 3px;
    background: var(--pimary-color);
    position: absolute;
    left: 0;
    bottom: 0;
}
.row_description:nth-child(1) .col-xs-5{
    float: right;
}
.row_description:nth-child(1) .col-xs-7{
    padding-right: 50px;
}
.row_description:nth-child(1) .images_description{
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 25%);
    -webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 25%);
}
.row_description:nth-child(1) .details_description{
    clip-path: none!important;
    -webkit-clip-path: none!important;
}
.row_description{
    display: flow-root;
}
.row_description:nth-child(2) .images_description{
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 520px;
    border-left: 50px solid #fff;
    border-top: 50px solid #fff;
}
.row_description:nth-child(2) .details_description{
    border: none!important;
    padding: 0;
}
.row_description:nth-child(2){
    position: relative;
    margin-top: -350px;
}
.btn_readmore{
    background: var(--pimary-color);
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    position: relative;
}
.btn_readmore:before{
    content: '';
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s;
}
.btn_readmore:hover:before{
    width: 0;
}
.section_location{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section_location img{
    width: 100%;
    display: block;
}
.details_location h2>label{
    color: var(--secondary-color);
}
.details_location h2{
    padding-bottom: 25px;
    margin-bottom: 25px;
    position: relative;
}
.details_location h2:before{
    content: '';
    width: 50px;
    height: 3px;
    background: var(--pimary-color);
    position: absolute;
    left: 0;
    bottom: 0;
}
.details_location{
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0 100px;
    width: 600px;
}
.section_widget{
    padding: 100px 0;
    text-align: center;
}
.section_widget img{
    width: 100%;
}
.address{
    position: relative;
    background-color: var(--pimary-color);
    background-image: url('../images/icon/bg-2.png');
    background-size: cover;
    color: #ffffff;
    padding: 100px 0;
    display: flow-root;
    width: 100%;
    overflow: hidden;
    background-position: center;
}
.address a:hover{
    color: var(--secondary-color);
}
.address:before{
    content: '';
    background-image: url('../images/icon/boat.png');
    width: 715px;
    height: 160px;
    background-size: contain;
    position: absolute;
    left: -60px;
    background-repeat: no-repeat;
    bottom: 10%;
}
.address h4{
    font-family: var(--font-gotham-bold);
    color: var(--secondary-color);
    text-transform: uppercase;
}
.address .col-xs-3:nth-child(1) img{
    filter: brightness(0) invert(1);
    height: 90px;
}
.address ul{
    margin: 0;
    padding: 0;
}
.address li{
    list-style: none;
}
.address .col-xs-4 ul:nth-last-child(2){
    margin: 25px 0;
}
.address .col-xs-4 label{
    width: 20px;
}
ul.social_media .mask_img {
    width: 30px !important;
    height: 30px !important;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100%;
    mask-repeat: no-repeat;
    background: #ffffff;
    transition: all 0.25s;
    display: inline-block;
    vertical-align: sub;
}
ul.social_media li{
    float: left;
    margin-right: 25px;
}
ul.social_media .mask_img:hover{
    background: var(--secondary-color);
}
.address .col-xs-3 p>label{
    display: inline-block;
    width: 100%;
}
.address .col-xs-3:nth-last-child(1) ul{
    margin-top: 25px;
}
.copyright{
    background: var(--secondary-color);
    color: #ffffff;
    padding: 15px 0;
}
.copyright label:nth-last-child(1){
    float: right;
}
.menu_mobile{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: var(--pimary-color);
    z-index: 1;
    transition: all 0.5s;
}

.button_container {
    position: absolute;
    /*top: 0;*/
    /*bottom: 0;*/
    height: 18px;
    width: 30px;
    cursor: pointer;
    transition: all 1s;
    z-index: 15;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.button_container:hover {
    opacity: 1;
}

.button_container.active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
    background: #fff;
}

.button_container.active .middle {
    opacity: 0;
    background: #fff;
}

.button_container.active .bottom {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
    background: #fff;
}

.button_container span {
    background: #ffffff;
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}

.button_container span:nth-of-type(2) {
    top: 8px;
    width: 70%;
}

.button_container span:nth-of-type(3) {
    top: 16px;
}

.overlay {
    position: fixed;
    /*background-image: url('../images/icon/bg.jpg');*/
    background: var(--pimary-color);
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    z-index: 9;
    transition: all 1s;
}

.overlay.open {
    opacity: 1;
    width: 350px;
}

.overlay.open li {
    -webkit-animation: fadeInUp .9s ease forwards;
    animation: fadeInUp .9s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .40s;
    animation-delay: .40s;
}

.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: .60s;
    animation-delay: .60s;
}

.overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s;
}
.overlay.open li:nth-of-type(8) {
    -webkit-animation-delay: .70s;
    animation-delay: .70s;
}

.overlay.open li:nth-of-type(9) {
    -webkit-animation-delay: .75s;
    animation-delay: .75s;
}

.overlay nav {
    position: relative;
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
    text-align: left;
    padding: 0 50px;
    margin-top: 75px;
}

.overlay ul {
    list-style: none;
    margin: 80px auto 0;
    position: relative;
    height: 100%;
    color: #ffffff;
    text-align: left;
    padding: 0 30px;
    font-family: var(--font-areanormal-light);
}

.overlay ul li {
    /*display: block;*/
    position: relative;
    padding: 10px 0 10px 30px;
    opacity: 0;
    width: 100%;
    line-height: initial;
}

.overlay ul li a {
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
    /*overflow: hidden;*/
    opacity: 0.6;
    transition: all 0.25s;
}
.overlay ul li.active a{
    font-family: var(--font-areanormal-bold);
}

.overlay ul li.active a, .overlay ul li a:hover, .nav_mobile .overlay-menu .active {
    color: #fff;
    opacity: 1;
}

.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
    width: 100%;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

.fix_body {
    overflow: hidden !important;
}
.navbar_fix ul{
    margin: 0;
    padding: 0;
    width: fit-content;
}
.navbar_fix li{
    position: relative;
    padding: 15px 0 15px 35px;
    border-bottom: 1px solid #dbdbdb1f;
    list-style: none;
}
.navbar_fix li:before{
    content: '';
    background-image: url("../images/icon/list.png");
    width: 23px;
    height: 22px;
    background-size: cover;
    position: absolute;
    left: 0;
}
.menu_mobile.scroll_mobile{
    width: 50px;
    height: 50px;
}
.section_aboutus{
    padding: 100px 0;
    text-align: center;
}
.section_aboutus h1{
    position: relative;
    padding-bottom: 25px;
}
.section_aboutus h1:before{
    content: '';
    width: 50px;
    height: 3px;
    background: var(--pimary-color);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.section_aboutus h1>label{
    color: var(--secondary-color);
}
.row_aboutus{
    margin-top: 50px;
    text-align: left;
}
.row_aboutus .col-xs-5{
    float: right;
}
.row_aboutus .col-xs-7{
    padding-right: 50px;
}
.images_aboutus {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 25%);
    -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 25%);
}
.images_aboutus img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.section_bgbeach{
    height: 500px;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
}
.section_aboutranong{
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.section_aboutranong:before{
    content: '';
    background-image: url('../images/icon/bg-1.png');
    width: 200px;
    height: 400px;
    position: absolute;
    top: -25%;
    bottom: 0;
    right: 0;
    background-size: contain;
    margin: auto;
}
.section_aboutranong h2>label{
    color: var(--secondary-color);
}
.section_aboutranong h2{
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.section_aboutranong h2:before{
    content: '';
    width: 50px;
    height: 3px;
    background: var(--pimary-color);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.section_aboutranong .row_aboutus .col-xs-5{
    float: left;
}
.section_aboutranong .row_aboutus .col-xs-7{
    padding: 0 0 0 50px;
}
.section_aboutranong .row_aboutus .images_aboutus{
    clip-path: polygon(0 0, 80% 0, 100% 25%, 100% 100%, 0 100%, 0% 50%);
    -webkit-clip-path: polygon(0 0, 80% 0, 100% 25%, 100% 100%, 0 100%, 0% 50%);
    justify-content: start;
}
.section_aboutranong .row_aboutus .images_aboutus.details_aboutus, .section_aboutus .row_aboutus .images_aboutus.details_aboutus{
    clip-path:none!important;
}
.section_footer{
    font-size: 16px;
}
.slide_services{
    margin-top: 50px;
}
.slide_services img{
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    clip-path: polygon(0 0, 90% 0, 100% 15%, 100% 100%, 0 100%, 0% 50%);
    -webkit-clip-path: polygon(0 0, 90% 0, 100% 15%, 100% 100%, 0 100%, 0% 50%);
}
.slide_services .details_services{
    padding: 30px 0 0;
    text-align: left;
}
.slide_services .details_services h3{
    margin-bottom: 15px;
}
.slide_services .slide{
    padding: 0 25px;
}
.slide_services .slick-list{
    margin: 0 -25px;
}
.slick-list{
    padding: 0!important;
}
.section_famousservices{
    background: var(--pimary-color);
    text-align: center;
    padding: 100px 50px;
}
.section_famousservices h2>label{
    color: var(--secondary-color);
}
.section_famousservices h2{
    position: relative;
    padding-bottom: 25px;
    color: #ffffff;
}
.section_famousservices h2:before{
    content: '';
    width: 50px;
    height: 3px;
    background: #ffffff;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.slide_famousservices img{
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    clip-path: polygon(0 0, 90% 0, 100% 15%, 100% 100%, 0 100%, 0% 50%);
    -webkit-clip-path: polygon(0 0, 90% 0, 100% 15%, 100% 100%, 0 100%, 0% 50%);

}
.details_famousservices{
    padding: 30px 0 0;
    text-align: left;
    color: #ffffff;
}
.details_famousservices p>label{
    display: inline-block;
    width: 100%;
}
.details_famousservices h3{
    color: #ffffff;
    margin-bottom: 15px;
}
.slide_famousservices{
    margin-top: 50px;
}
.slide_famousservices .slide{
    padding: 0 25px;
}
.slide_famousservices .slick-list{
    margin: 0 -25px;
}
.slick-arrow{
    background: none;
    border: none;
    position: absolute;
    height: 400px;
    top: 0;
    margin: auto;
    z-index: 1;
}
.slick-arrow img{
    height: 30px;
    filter: brightness(0) invert(1);
}
.slick-prev{
    left: -50px;
    right: auto;
}
.slick-next{
    right: -50px;
    left: auto;
}
.section_support{
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.section_support:before{
    content: '';
    background-image: url('../images/icon/bg-1.png');
    width: 200px;
    height: 400px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-size: contain;
    margin: auto;
}
.row_support{
    margin: 0 -25px;
}
.row_support .col-xs-6{
    padding: 0 25px;
}
.section_support img{
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    clip-path: polygon(0 0, 90% 0, 100% 15%, 100% 100%, 0 100%, 0% 50%);
    -webkit-clip-path: polygon(0 0, 90% 0, 100% 15%, 100% 100%, 0 100%, 0% 50%);
}
.details_support{
    padding: 30px 30px 0;
    text-align: left;
}
.details_support ul{
    margin: 0;
    padding: 0;
}
.details_support li{
    position: relative;
    width: 100%;
    list-style: none;
    padding: 5px 0 5px 30px;
}
.details_support li:before{
    content: '';
    background-image: url("../images/icon/list.png");
    width: 23px;
    height: 22px;
    background-size: cover;
    position: absolute;
    left: 0;
}
.section_support h2>label{
    color: var(--secondary-color);
}
.section_support h2{
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 50px;
}
.section_support h2:before{
    content: '';
    width: 50px;
    height: 3px;
    background: var(--pimary-color);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.slide_famousservices .slick-dots li.slick-active button{
    background: #ffffff;
}
.slide_famousservices .slick-dots button{
    background: #ffffff;
}
.slick-dots li {
    margin: 0 5px;
}
.section_contact h1{
    margin-bottom: 25px;
}
.section_contact p>label{
    display: inline-block;
    width: 100%;
}
.images_contact{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    text-align: center;
    background: var(--pimary-color);
    margin: auto;
    border-radius: 100%;

}
.images_contact .mask_img {
    width: 25px !important;
    height: 25px !important;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100%;
    mask-repeat: no-repeat;
    background: #ffffff;
    transition: all 0.25s;
    display: inline-block;
    vertical-align: sub;
    margin: auto;
}
.details_contact{
    text-align: center;
    margin-top: 25px;
}
.details_contact a:hover{
    color: var(--pimary-color);
}
.details_contact p{
    margin: 0;
}
.details_contact h3{
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 10px;
    color: #3f3f3f;
}
.details_contact p>label{
    display: inline-block;
    width: 100%;
}
.box_contact .col-xs-4:nth-child(2) .images_contact{
    background: var(--secondary-color);
}
.box_contact .col-xs-4{
    padding: 0 15px;
}
.box_contact{
    margin: 50px -15px 0;
}
.section_googlemap{
    padding: 0 100px;
}
.section_googlemap iframe{
    width: 100%;
    height: 600px;
    display: block;
}
.section_contactform{
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.section_contactform:before{
    content: '';
    background-image: url('../images/icon/bg-1.png');
    width: 200px;
    height: 400px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-size: contain;
    margin: auto;
}
.box_contactform{
    width: 600px;
    margin: auto;
    background: var(--pimary-color);
    color: #ffffff;
    padding: 50px;
    display: flow-root;
}
.box_contactform h2{
    position: relative;
    padding-bottom: 25px;
    color: #ffffff;
    margin-bottom: 25px;
}
.box_contactform h2:before{
    content: '';
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.box_contactform label{
    display: inline-block;
    width: 100%;
}
.input_data{
    border: none;
    background: none;
    border-bottom: 1px solid #fff;
    width: 100%;
    padding: 0 0 5px 0;
}
.box_contactform form{
    text-align: left;
}
.box_contactform .col-xs-12{
    margin-bottom: 15px;
}
.btn_submit{
    background: var(--secondary-color);
}
.btn_submit:before{
    background: #ffffff;
}
.box_contactform textarea{
    height: 150px;
}
span.error, #span_error{
    color: var(--secondary-color)!important;
}
.menu_desktop a:hover{
    color: var(--pimary-color);
}