a{
  color: #fff;
}
a:link { text-decoration: none; }
a:visited { text-decoration:none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }
html, body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica", sans-serif;
  scroll-behavior: smooth;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: #ceeff6;
}





/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #fff;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  float: right;
  padding: 1.5rem;
  font-weight: bold;
  width: 100%;
  display: flex;
  position: fixed;
  z-index: 99999;
  box-shadow: 0 3px 13px #000;
}
/* Links inside the navbar */
.navbar a{
  float: left;
  font-size: 16px;
  color: black;
  text-align: left;
  padding: 14px 16px;
  text-decoration: none;
}
/* The dropdown container */
.dropdown{
  overflow: hidden;
  display: flex;
  margin: 0 50px 0 835px;
}
.dropdown-products{
  overflow: hidden;
  display: flex;
  margin: 0 50px 0 0;
}
.dropdown-1{
  margin: 0 25px 0 0;
  display: flex;
}
/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0 0 0 0; /* Important for vertical align on mobile phones */
  font-weight: bold;
}
.dropdown-products .dropbtn-1 {
  font-size: 16px;
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0 0 0 0; /* Important for vertical align on mobile phones */
  font-weight: bold;
}
/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  color: blue;
}
.navbar a:hover, .dropdown-products:hover .dropbtn {
  color: blue;
}
/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: relative;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin: 45px 0 0 0;
}
.dropdown-content-products {
  display: none;
  position: relative;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin: 45px 0 0 0;
}
/* Links inside the dropdown */
.dropdown-content a {
  float:none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  position: relative;
}
.dropdown-content-products a {
  float:none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  position: relative;
}
/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: lightblue;
}
.dropdown-content-products a:hover {
  background-color: lightblue;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
  position: fixed;
}
.dropdown-products:hover .dropdown-content-products {
  display: block;
  position: fixed;
}
.dropdown .dropdown-products .dropdown-content {
  display: block;
  position: fixed;
}
.dropdown .dropdown-products .dropdown-content-products {
  display: block;
  position: fixed;
}
.logo img{
  position:absolute;
  top: -9px;
  left: 2.5rem;
  font-size: 18px;
  height: 7rem;
  display: flex;
}
.insta img{
      position: absolute;
    top: 30px;
    right: 90px;
    font-size: 18px;
    height: 2rem;
    display: flex;
}
.fb img{
      position: absolute;
    top: 30px;
    right: 150px;
    font-size: 18px;
    height: 2rem;
    display: flex;
    pointer-events: none;
}





/*PRODUCT HEAD MAIN PICTURE*/
body {
  margin: 0;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  width: 400%;
  -webkit-animation: carousel 20s linear infinite;
          animation: carousel 20s linear infinite;
}

.carousel img {
  display: inline-block;
  width: 25%;
  float:left;
  height: 65vh;
  object-fit: cover;
}

@-webkit-keyframes carousel {
  /* add/remove steps if more/less images */
  0%, 23% {
    transform: translate3d(0, 0, 0);
  }
  25%, 48% {
    transform: translate3d(-25%, 0, 0);
  }
  50%, 73% {
    transform: translate3d(-50%, 0, 0);
  }
  75%, 98% {
    transform: translate3d(-75%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes carousel {
  /* add/remove steps if more/less images */
  0%, 23% {
    transform: translate3d(0, 0, 0);
  }
  25%, 48% {
    transform: translate3d(-25%, 0, 0);
  }
  50%, 73% {
    transform: translate3d(-50%, 0, 0);
  }
  75%, 98% {
    transform: translate3d(-75%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}



.intro{
  display: block;
  text-align: center;
  background-color: #ceeff6;
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: lighter;
  color: rgb(30, 43, 58);
}



/** LIGHTBOX MARKUP **/
.lightbox {
  /** Default lightbox to hidden */
margin-left: -240rem;

  /** Position and style */
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  transition: all .6s;
}

.lightbox img {
  /** Pad the lightbox image */
  max-width: 100%;
  max-height: 85%;
  margin-top: 85px;
  transition: all .7s;
}

.lightbox:target {
  /** Remove default browser outline */
  outline: none;

  /** Unhide lightbox **/
margin-left: 0;
transition: all .8s;
}
blockquote {
width: 50%;
display: inline-block;
line-height: 130%;
padding-bottom: 1em;
}
.containerlightbox{
display: flex;
justify-content: center;
}
.containerlightbox-last{
display: flex;
justify-content: center;
}
.column-img{
background-image: url(/images/newgallery/OLD/tuaran.webp);
background-size: cover; 
width: 30vw;
height: 47vh;
padding: 1rem;
}
.column-img2{
background-image: url(/images/newgallery/OLD/3.webp);
background-size: cover; 
width: 30vw;
height: 47vh;
padding: 1rem;
}
.column-img3{
background-image: url(/images/newgallery/OLD/rabbitfish.webp);
background-size: cover; 
width: 30vw;
height: 47vh;
padding: 1rem;
}
.column-img4{
background-image: url(/images/newgallery/OLD/6.webp);
background-size: cover; 
width: 30vw;
height: 47vh;
padding: 1rem;
}
.column-img5{
background-image: url(/images/newgallery/OLD/16.webp);
background-size: cover; 
width: 30vw;
height: 47vh;
padding: 1rem;
}
.column-img6{
background-image: url(/images/newgallery/OLD/7.webp);
background-size: cover; 
width: 30vw;
height: 47vh;
padding: 1rem;
}
.column-img a img#_01.thumb{
display: flex;
justify-content: center;
}  
.thumb {
  width: 50%;
  height: auto;
  margin-left: 8.5rem;
  margin-top: 5px;
}
.column-text{
background-color: rgb(30, 43, 58);
width: 30vw;
height: 47vh;
padding: 1rem;
}
.h2-2{
margin: 70px 0px -37px 46px;
padding: 0px 0px 0px 0px;
color: #fff;
font-size: 2rem;
}
.column-text p{
padding: 3rem;
color: #ceeff6;
font-size: 1.1rem;
font-weight: lighter;
overflow: hidden;
}






.backtotop{
  display: flex;
  justify-content: flex-end;
  padding: 30px;
  margin-right: 30px;
  position: relative;
  margin-top: -110px;
}
.backtotop img{
  width: 30px;
  margin: 15px 0 0 0;
}
.backtotop .button{
  background-color:transparent;
  border: 3px;
  color: #000;
  border-radius: 20px;
  opacity: 0.7;
  font-weight: bold;
}
.button:hover{
  box-shadow: 0px 0px 5px 2px #000;
  opacity: 1.2;
}
.button a{
  color: #000;
}





  


.footer{
  display: flex;
  justify-content: center;
  background-color: rgb(30, 43, 58);
  color: #fff;
  padding: 17px 8px 8px 8px;
}
.footer a{
  margin:0 22px -10px 22px ;
}
.copyright{
  display: flex;
  justify-content: center;
  margin: 0p 0px 16px 0px;
  background-color: rgb(30, 43, 58);
  color: #fff;
}







/*MOBILE FRIENDLY SETTINGS*/ /*MOBILE FRIENDLY SETTINGS*/ /*MOBILE FRIENDLY SETTINGS*/


/*PROFILE CONTENT PLACEMENTS*//*PROFILE CONTENT PLACEMENTS*/
@media screen and (max-width: 600px) {
.h2-2{
  font-size: 15.5px;
  margin: 0;
  margin-top: 10px;
}
.column-text p {
  padding: 0;
  font-size: 0.6rem;
}
.thumb{
  margin-left: 0;
  width: 100%;
  margin-top: 18px;
}
.column-img{
  height: 30vh;
}
.column-img1{
  height: 30vh;
}
.column-img2{
  height: 30vh;
}
.column-img3{
  height: 30vh;
}
.column-img4{
  height: 30vh;
}
.column-img5{
  height: 30vh;
}
.column-img6{
  height: 30vh;
}
.column-img7{
  height: 30vh;
  margin-bottom: 50px;
}
.column-text{
  height: 30vh;
}
.backtotop{
  display: none;
}
.lightbox img{
  width: 90%;
  padding: 1rem;
}
.containerlightbox-last{
  margin-bottom: 2rem;
}
}


@media screen and (min-width: 600px)  and (max-width:900px){
.h2-2{
  font-size: 15.5px;
  margin: 0;
  margin-top: 5rem;
}
.column-text p {
  padding: 0;
  font-size: 0.6rem;
  font-weight: bold;
}
.thumb{
  margin-left: 1.5rem;
  width: 80%;
  margin-top: 1.5rem;
}
.column-img{
  height: 30vh;
}
.column-img1{
  height: 30vh;
}
.column-img2{
  height: 30vh;
}
.column-img3{
  height: 30vh;
}
.column-img4{
  height: 30vh;
}
.column-img5{
  height: 30vh;
}
.column-img6{
  height: 30vh;
}
.column-img7{
  height: 30vh;
  margin-bottom: 50px;
}
.column-text{
  height: 30vh;
}
.backtotop{
  display: none;
}
.lightbox img{
  width: 75%;
  padding: 1rem;
}
.containerlightbox-last{
  margin-bottom: 2rem;
}
}  


@media screen and (min-width: 900px)  and (max-width:1200px){
.h2-2{
  font-size: 15.5px;
  margin: 0;
  margin-top: 3rem;
}
.column-text p {
  padding: 0;
  font-size: 0.6rem;
  font-weight: bold;
}
.thumb{
  margin-left: 4.5rem;
  width: 50%;
  margin-top: 0;
  margin-bottom: 2rem;
}
.column-img{
  height: 30vh;
}
.column-img1{
  height: 30vh;
}
.column-img2{
  height: 30vh;
}
.column-img3{
  height: 30vh;
}
.column-img4{
  height: 30vh;
}
.column-img5{
  height: 30vh;
}
.column-img6{
  height: 30vh;
}
.column-img7{
  height: 30vh;
  margin-bottom: 50px;
}
.column-text{
  height: 30vh;
}
.backtotop{
  display: none;
}
.lightbox img{
  width: 41%;
  padding: 1rem;
}
.containerlightbox-last{
  margin-bottom: 2rem;
}
}






/*GENERAL ITEM PLACEMENTS*/ /*GENERAL ITEM PLACEMENTS*/ /*GENERAL ITEM PLACEMENTS*/ /*GENERAL ITEM PLACEMENTS*/ /*GENERAL ITEM PLACEMENTS*/
/* NAVBAR DESKTOP VERSION HIDDEN*/
@media screen and (max-width: 1919px){
  .navbar {
    display: none;
  }
  
  /*INDEX IMAGE*//*INDEX IMAGE*/
  .carousel img {
      display: inline-block;
      width: 25%;
      float:left;
      height: 45vh;
      object-fit: cover;
  }
  .intro p{
    font-weight: bold;
  }
  /*OUR FAMILIES SLIDER*//*OUR FAMILIES SLIDER*/
  .slide-header{
    display: flex;
    justify-content: center;
    background-color: #ceeff6;
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: -23px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 43rem;
  }
  .slider {
    background-color: #ceeff6;
    height: 250px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100vw;
  }
  
  /*FOOTER END OF WEBPAGE*//*FOOTER END OF WEBPAGE*/
  .footer {
    display: flex;
    justify-content: center;
    background-color: rgb(30, 43, 58);
    color: #fff;
    padding: 0px 8px 0px 8px;
  }
  .footer a{
    margin: 0;
    text-align: center;
  }
  .copyright{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(30, 43, 58);
    color: #fff;
    padding: 0 8px 0 8px;
  }
  .socialmedialinks{
    height: 8vh;
    background-color: rgb(30, 43, 58);
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .socialmedialinks img{
    margin-right: 0.5rem;
  }
  .insta-social img{
    font-size: 18px;
    height: 2rem;
    display: flex;
    margin-right: 20px;
  }
  .fb-social img{
    font-size: 18px;
    height: 2rem;
    display: flex;
    margin-left: 20px;
  }
  .fb-social a{
    pointer-events: none;
  }
  }
  
  
  
  /*NAVBAR MOBILE & TABLET VERSION*/ /*NAVBAR MOBILE & TABLET VERSION*/ /*NAVBAR MOBILE & TABLET VERSION*/ /*NAVBAR MOBILE & TABLET VERSION*/ /*NAVBAR MOBILE & TABLET VERSION*/
  @media screen and (min-width: 1920px){
  .navbar-mobile{
    display: none;
  }
  .socialmedialinks{
    display: none;
  }
  }
  
  
  @media screen and (max-width: 1920px){
  .navbar-mobile{
    height: 70px;
    width: 100vw;
    background-color: #fff;
    position: fixed;
    z-index: 9999;
  }
  .nav-logo-mobile img{
    width: 9rem;
    height: auto;
    display: flex;
    align-items: center;
    margin-top: -8px;
  } 
  .navbar-mobile .nav-header-mobile{
    display: inline;
  }
  .navbar-mobile .nav-header-mobile .nav-logo-mobile{
    display: inline-block;
    margin-top: -7px;
  }
  .navbar-mobile .nav-links-mobile{
    display: inline;
    float: right;
    font-size: 18px;
  } 
  .navbar-mobile .nav-links-mobile .loginBtn-mobile{
    display: inline-block;
    padding: 5px 15px;
    margin-left: 20px;
    font-size: 17px;
    color: rgb(30, 43, 58);
  }
  .navbar-mobile .nav-links-mobile a {
    padding: 10px 12px;
    text-decoration: none;
    font-weight: 550;
    color: #fff;
  }
  /* Hover effects */
  .navbar-mobile .nav-links-mobile a:hover{
    background-color: #ceeff6;
    color: #000;
  }
  /* responsive navbar toggle button */
  .navbar-mobile #nav-check-mobile, .navbar-mobile .nav-btn-mobile{
    display: none;
  }
  
  
  @media (max-width:1920px){
  .navbar-mobile .nav-btn-mobile{
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0px;
  }
  .navbar-mobile .nav-btn-mobile label {
    display: inline-block;
    height: 70px;
    padding: 25px;
  }
  .navbar-mobile .nav-btn-mobile label span {
    display: block;
    height: 7px;
    width: 25px;
    border-top: 3px solid #000;
    margin-left: 60px;
  }
  .navbar-mobile .nav-btn-mobile label:hover, .navbar-mobile #nav-check-mobile:checked ~ .nav-btn-mobile label {
    background-color: transparent;
    transition: all 0.5s ease;
    height: 2.6vh;
  }
  .navbar-mobile .nav-links-mobile{
    position: absolute;
    display: block;
    text-align: center;
    width: 45vw;
    opacity: 0.8;
    background-color: rgb(30, 43, 58);
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 70px;
    right: 0px;
  }
  .navbar-mobile .nav-links-mobile a {
    display: block;
  }
   
  /* when nav toggle button not checked */
  .navbar-mobile #nav-check-mobile:not(:checked) ~ .nav-links-mobile {
    height: 0px;
  }
   
  /* when nav toggle button is checked */
  .navbar-mobile #nav-check-mobile:checked ~ .nav-links-mobile {
    overflow-y: auto;
  }
  .navbar-mobile .nav-links-mobile .loginBtn-mobile {
    padding: 10px 40px ;
    margin: 20px;
    font-size:  18px;
    font-weight: bold;
    color: rgb(9, 14, 90);
  }
  /* Responsive dropdown code */
  .navbar-mobile .nav-links-mobile .dropdown-mobile, .navbar-mobile .nav-links-mobile .dropdown2-mobile {
    float: none;
    width: 100%;
  }
  .navbar-mobile .nav-links-mobile .drop-content-mobile, .navbar-mobile .nav-links-mobile .drop-content2-mobile {
    position: relative;
    background-color: rgb(220, 220, 250);
    top: 0px;
    left: 0px;
  }
  /* Text color */
  .navbar-mobile .nav-links-mobile .drop-content-mobile a {
    color: rgb(9, 14, 90);
  }  
  }
   
  
  /* DROPDOWN MENU CSS CODE */ /* DROPDOWN MENU CSS CODE */ /* DROPDOWN MENU CSS CODE */
  .dropdown-mobile{
    position: relative;
    display: inline-block;
  }
  .drop-content-mobile, .drop-content2-mobile {
    display: none;
    position: absolute;
    background-color: #1b4cd3;
    min-width: 120px;
    font-size: 16px;
    top: 34px;
    z-index: 1;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
  }
  /* on hover show dropdown */
  .dropdown-mobile:hover .drop-content-mobile, .dropdown2-mobile:hover .drop-content2-mobile {
    display: block;
  }
  /* drondown links */
  .drop-content-mobile a {
    padding: 12px 10px;
    border-bottom: 1px solid rgb(197, 197, 250);
    display: block;
    transition: all 0.5s ease !important;
  }
  .dropBtn-mobile .drop-content-mobile a:hover {
    background-color: rgb(230, 230, 230);
  }
  .dropdown-mobile:hover .dropBtn-mobile, .dropdown2-mobile:hover .dropBtn2-mobile {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .dropdown2-mobile .drop-content2-mobile {
    position: absolute;
    left: 120px;
    top: 126px;
  }
  }