/* body */

body {
    /* font-family: 'Agency FB', sans-serif; */
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

section {
    height: auto;
}


/* loader */

.loader {
    z-index: 4000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    transition: opacity 0.75s, visibility 0.75s;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader::after {
    content: "";
    width: 75px;
    height: 75px;
    border: 15px solid #dddddd;
    border-top-color: #1b7bab;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
}

@keyframes loading {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}


/* whatsapp buttion */


/* .w-button {
    height: 300px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 2000;
} */


/* .w-button img {
    float: right;
    padding-right: 20px;
    z-index: 3000;
} */


/* end top */


/* start nav */

.navbar {
    padding-left: 180px !important;
    padding-right: 180px!important;
    z-index: 1000;
    width: 100%;
    position: absolute!important;
    top: 0;
}

.navbar-nav .nav-link {
    color: white !important;
    font-size: 17px;
    /* Ensures the links have white color */
}

.navbar-nav a {
    font-weight: 400;
}

.nav-item {
    position: relative;
}

.navbar-nav a:hover {
    color: #fff!important;
}


/* Default: no underline */

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 0;
    visibility: hidden;
    background-color: #fff;
    transition: width 0.5s, height 0.5s, left 0.5s;
    transform: translateX(-50%);
    -webkit-transition: width 0.5s, height 0.5s, left 0.5s;
    -moz-transition: width 0.5s, height 0.5s, left 0.5s;
    -ms-transition: width 0.5s, height 0.5s, left 0.5s;
    -o-transition: width 0.5s, height 0.5s, left 0.5s;
}


/* Show underline on hover */

.nav-link:hover::after {
    width: 100%;
    height: 2px;
    visibility: visible;
    left: 50%;
}


/* Keep underline only on the active link */

.nav-link.active::after {
    width: 100%;
    height: 2px;
    visibility: visible;
}

.navbar-nav a::after {
    color: #fff!important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.dropdown-item:hover {
    color: #fff!important;
    transition: 0.5s;
}

.dropdown-menu a:hover {
    color: #1b7bab !important;
}


/* end nav */


/* start hero */

.hero {
    position: relative;
    background-color: #000;
}

#carousel .carousel-item.boat {
  background-image: url("../img/bg1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: bgZoom 10s ease-in-out infinite alternate;
}

#carousel .carousel-item.sea {
  background-image: url("../img/bg2.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: bgZoom 10s ease-in-out infinite alternate;
}

#carousel .carousel-item.river {
  background-image: url("../img/bg3.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: bgZoom 10s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  from {
    background-size: 100%;
  }
  to {
    background-size: 115%;
  }
}
@media (max-width: 768px) {
  @keyframes bgZoom {
  from {
    background-size: cover;
  }
  to {
    background-size: cover;
  }
}
}

#carousel .carousel-item {
    height: 100vh;
    width: 100%;
    min-height: 350px;
    background: no-repeat center center scroll;
    background-size: cover;
}

#carousel .carousel-inner .carousel-item {
    transition: -webkit-transform 2s ease;
    transition: transform 2s ease;
    transition: transform 2s ease, -webkit-transform 2s ease;
}

#carousel .carousel-item .caption {
    
    padding: 40px;
    color: white;
    animation-duration: 1s;
    animation-delay: 1s;
}

#carousel .caption h2 {
    padding: 0 0px;
    animation-duration: 1s;
    animation-delay: 2s;
    color: #fff;
    text-align: left;
    font-weight: 700;
    font-size: 2.6rem;
    text-transform: uppercase;
}

#carousel .caption p {
    animation-duration: 1s;
    animation-delay: 2.2s;
    color: #fff;
}

#carousel .caption a {
    animation-duration: 1s;
    animation-delay: 2.4s;
    color: #fff;
}

.delicious-btn {
    display: inline-block;
    color: #fff;
    border: 1px solid #fff!important;
    width: 200px;
    border-radius: 0;
    padding: 20px 30px;
    font-size: 16px;
    line-height: 58px;
    font-weight: 600;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-transform: capitalize;
}

.delicious-btn:hover,
.delicious-btn:active,
.delicious-btn:focus {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border-color: #1b7bab!important;
}
.carousel-indicators .active{
    border-radius: 60%!important;
   padding: 10px;
   width: 5px;
   transform: translateY(-10px);
   background-color: #1b7bab;
   transition: all 0.5s ease-in-out;
    
}

/* end hero */


/* start about */


/* about_top */

.about {
    margin-top: 50px;
    margin-left: 170px;
}

.about_top {
    text-align: center;
}


/* about middle */

.about_middle {
    padding: 40px 0;
}

.a_m_left h1 {
    margin-top: 20px;
    font-weight: 400;
    color: #1b7bab;
}

.a_m_left p {
    text-align: justify;
}

.a_m_right {
    position: relative;
    bottom: 1px;
    left: 50px;
}

.a_m_right img {
    width: 80%;
}


/* about bottom */

.about_bottom {
    margin-top: 30px;
    content: "";
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
.full-width-background {
    background-image: url('../img/img_home_about.jpeg');
    background-size: cover;
    /* This makes the image cover the entire area */
    background-position: center;
    /* This centers the image */
    background-repeat: no-repeat;
    width: 100%;
    /* Full viewport width */
    height: auto;
    /* Adjust height as needed */
    min-height: 100%;
    /* Ensure it covers the full height if necessary */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Adjust padding if necessary */
}

.grid-container {
    width: min(75rem, 100%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
    gap: 2rem;
}

.card {
    --grad: #1b7bab, blue;
    padding: 2.5rem;
    background-image: linear-gradient(to bottom left, #e0e4e5, #f2f6f9);
    border-radius: 2rem;
    gap: 1.5rem;
    display: grid;
    grid-template: "title icon" "content content" "bar bar" / 1fr auto;
    font-family: system-ui, sans-serif;
    color: #444447;
    box-shadow: inset -2px 2px hsl(0 0% 100% / 1), -20px 20px 40px hsl(0 0% 0% / 0.25);
}

.card .title {
    font-size: 1.5rem;
    grid-area: title;
    align-self: end;
    text-transform: uppercase;
    font-weight: 500;
    word-break: break-word;
}

.card .icon {
    grid-area: icon;
    font-size: 3rem;
}

.card .icon i {
    color: transparent;
    background: linear-gradient(to right, #1b7bab, blue);
    -webkit-background-clip: text;
    background-clip: text;
}

.card .content {
    grid-area: content;
}

.card .content>*:first-child {
    margin-top: 0rem;
}

.card .content p {
    text-align: justify;
}

.card .content>*:last-child {
    margin-bottom: 0rem;
}

.card::after {
    content: "";
    grid-area: bar;
    height: 2px;
    background-image: linear-gradient(90deg, #1b7bab, blue);
}


/* end about */


/* START COMPANY */


/* Slider */

.company {
    height: auto;
    margin: 100px 0;
}

.company h2 {
    margin: 100px 0;
    font-weight: 900;
    font-size: 3.3rem;
    text-align: center;
    color: #1b7bab;
}

.slick-slide {
    margin: 0px 20px;
    
}

.slick-slide img {
    height: 150px;
    width: 100%;
    border: #1b7bab 1px solid;
    border-radius: 20%!important;
    
}


.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    
    
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/* END COMPANY */
.c_head h1{
    margin: 100px 0;
    color: #1b7bab; 
    font-size: 4.5rem; 
    font-weight: 900;
}

/* start services */

.service {
    background-color: white;
    margin-top: 100px;
    height: auto;
}

.service h1 {
    color: #1b7bab;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 80px;
    font-weight: bolder;
    font-size: 60px;
    font-weight: 900;
}

.service .card {
    margin-bottom: 60px;
    margin-left: 60px;
    background: #fafafa;
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
    transition: background-color 1000ms ease, color 1000ms ease;

    border-radius: 20px;
}

.service .card:hover {
    background-color: #1b7bab;
    color: #ffffff;
}

.card-body a {
    text-decoration: none;
    transition: background-color 1000ms ease, color 1000ms ease;
    color: #1b7bab;
}

.service .card:hover .card-body a {
    color: #ffffff;
}


/* end service */


/* start find us */

.find_map {
    padding: 0 20px;
}

.find_heading {
    text-align: center;
    margin: 50px 0;
}

.find_heading h1 {
    color: #1b7bab;
    font-size: 50px;
    position: relative;
    display: inline-block;
    font-weight: 900;
}


/* end find us */


/* review */

.review {
    height: auto;
}

.responsive-cell-block {
    min-height: 75px;
}

.text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 25px;
    height: 50%;
    width: 100%;
}

.responsive-cell-block img {
    object-fit: cover;
}

.responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
}

.responsive-container-block.bg {
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 1320px;
    margin: 50px 0 50px 0;
}

.text-blk.title {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 36px;
    line-height: 45px;
    font-weight: 900;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin: 0 0 15px 0;
    color: #1b7bab;
}

* {
    font-family: Nunito, sans-serif;
}

.text-blk.desc {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    height: auto;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    max-width: 750px;
}

.responsive-container-block.blocks {
    width: 100%;
    min-height: 0px;
    justify-content: space-between;
    max-width: 1320px;
}

.responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
    width: 30%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #d9d9d9;
}

.text-blk.info-block {
    width: 85%;
    height: auto;
    font-size: 18px;
    line-height: 30px;
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    margin: 30px 0 30px 0;
}

.responsive-container-block.person {
    width: 90%;
    min-height: 0px;
    height: auto;
    margin-top: 0px;
    margin-right: 31.25px;
    margin-bottom: 20px;
    margin-left: 31.25px;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.icon-block {
    width: 22%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.text-block {
    width: 78%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.text-blk.name {
    font-size: 18px;
    line-height: 20px;
    font-weight: 900;
    height: auto;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
}

.text-blk.desig {
    line-height: 16px;
    height: auto;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.responsive-container-block.big-container {
    justify-content: center;
    padding: 0 50px 0 50px;
}

@media (max-width: 1024px) {
    .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
        width: 47%;
    }
    .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content.bottom {
        margin-top: 5%;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 25%;
    }
    .text-blk.desc {
        width: 70%;
    }
    .responsive-container-block.person {
        margin-top: 5%;
        margin-right: 31.25px;
        margin-bottom: 0px;
        margin-left: 31.25px;
    }
    .text-blk.title {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
    .responsive-container-block.person {
        margin-top: 21.9375px;
        margin-right: 31.25px;
        margin-bottom: 20px;
        margin-left: 31.25px;
    }
    .text-blk.info-block {
        margin-top: 30px;
        margin-right: 0px;
        margin-bottom: 25px;
        margin-left: 0px;
    }
}

@media (max-width: 768px) {
    .responsive-container-block.person {
        margin-top: 0px;
        margin-right: 31.25px;
        margin-bottom: 0px;
        margin-left: 31.25px;
    }
    .text-blk.info-block {
        height: 50%;
        font-size: 17px;
    }
    .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
        width: 100%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 5%;
        margin-left: 0px;
    }
    .text-blk.desc {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 80px;
        margin-left: 0px;
        width: 85%;
        font-size: 17px;
    }
    .text-blk.title {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        font-size: 30px;
    }
    .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content.bottom {
        width: 100%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
    .responsive-container-block.blocks {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
    .responsive-container-block.bg {
        flex-wrap: nowrap;
    }
    .responsive-container-block.person {
        margin-top: 0px;
        margin-right: 31.25px;
        margin-bottom: 20px;
        margin-left: 31.25px;
    }
    .text-blk.info-block {
        margin-top: 30px;
        margin-right: 0px;
        margin-bottom: 30px;
        margin-left: 0px;
    }
    .text-blk.desc {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 30px;
        margin-left: 0px;
    }
    .text-blk.desig {
        font-size: 15px;
    }
    .text-blk.name {
        font-size: 17px;
    }
}

@media (max-width: 500px) {
    .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
        width: 100%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 8%;
        margin-left: 0px;
    }
    .text-blk.desc {
        width: 90%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        font-size: 16px;
        line-height: 24px;
    }
    .text-blk.title {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        font-size: 26px;
    }
    .text-blk.info-block {
        margin-top: 30px;
        margin-right: 0px;
        margin-bottom: 50px;
        margin-left: 0px;
        font-size: 16px;
        line-height: 26px;
        margin: 30px 0 20px 0;
    }
    .text-blk.desc {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 30px;
        margin-left: 0px;
    }
    .responsive-container-block.big-container {
        padding: 0 30px 0 30px;
    }
    .text-blk.name {
        font-size: 17px;
    }
    .text-blk.desig {
        font-size: 15px;
    }
}


/* start footer */

.footer {
    margin-top: 50px;
    height: auto;
    width: 100%;
    color: #fff;
    background-color: #1b7bab;
}

.footer .container {
    margin-top: 30px
}

.footer a {
    color: #fff!important;
    text-decoration: none!important;
}
.footer h6 {
    color: #fff!important;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer p {
    color: #fff;
    
}

@media screen and (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }
    .hero {
        height: auto;
    }
}

@media (max-width: 776px) {
    nav .nav-item {
        background-color: #1b7bab!important;
    }
    .dropdown-item {
        background-color: #1b7bab;
        color: white;
    }
}

@media (max-width: 556px) {
    html,
    body {
        overflow-x: hidden;
    }
    .navbar {
        background-color: #1b7bab!important;
        margin: 0px;
        padding: 0rem!important;
    }
    .hero {
        height: auto;
    }
    .about {
        width: 100%;
        height: auto;
        margin: 0px!important;
    }
    .about p {
        text-align: justify;
    }
    .service {
        width: 100%;
    }
    .service .card {
        margin-left: 10px;
    }
    .company {
        height: auto;
    }
    .company h2 {
        font-size: 40px;
        font-weight: 600;
    }
    .company img {
        height: 100px;
    }
    footer {
        height: auto;
    }
}

