* { box-sizing: border-box; }
.two { width: 30em; max-width: 100%; }
.two p { display: inline-block; max-width: 50%; }
.two p:nth-child(1) { float:left; }
.two p:nth-child(2) { # }

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #4e4e4e; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0a090f; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #14bf98; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #113448; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #14bf98; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #0078ff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #3393ff;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.content-center {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.center {
  margin: 0;
  position: relative;
  top: 50%;
  left: 48%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/**** Image Position ****/
.img_left {
  float: left;
  padding: 0 12px 0 0;
}

.img_right {
  float: right;
  padding: 0 0 0 12px;
}

.img_center {
  margin: auto;
  display: flex;
}

.space-20 {
  padding: 10px 0 10px 0;
}

.space-30 {
  padding: 15px 0 15px 0;
}

.space-40 {
  padding: 20px 0 20px 0;
}

.space-80 {
  padding: 40px 0 40px 0;
}

.space-600 {
  padding: 300px 0 300px 0;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .dropdown-items-divide-hr {
    width: 100%;
    height: 1px;
    margin: 0.75rem auto 0.75rem auto;
    border: none;
    background-color: #b5bcc4;
    opacity: 0.2;
  }

  .navmenu .dropdown-items-divide-hr {
    width: 84%;
}

}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/******** FOOTER ********/
.footer {
  padding-top: 5rem;
  background-color: #113448;
}

.footer .text-container {
  margin-bottom: 2.25rem;
}

.footer h4 {
  margin-left: 68px;
  margin-bottom: 0.75rem;
  color: #fff;
}

.footer p,
.footer ul {
  font-size: 0.875rem;
  line-height: 1.375rem;
}

.footer-links h4 {
  margin-left: 30px;
  margin-bottom: 20px;
}

.footer .foot-abt {
  width: 470px;
}

.copyright {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  background-color: #113448;
  text-align: center;
}

.copyright p,
.copyright a {
  color: #dfe5ec;
  text-decoration: none;
}

.copy-clr {
  margin-top: 30px;
}

.copy-clr a {
  text-decoration: none;
  color: cornsilk;
}

.widget h4 {
  margin-left: 32px;
}

.about {
  color: #fff;
}

.cornsilk {
  color: cornsilk;
}

.words {
  margin-bottom: 25px;
  color: rgb(155, 151, 135);
}

.adm {
  color: #113448;;
}

.adm:hover {
  color: #113448;;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  margin: 0;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: calc(100vh - 92px);
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%); /* Background Image Dimming */
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
}

.hero p {
  margin: 35px 0 0 0;
  font-size: 18px;
  font-weight: 400;
}

.hero p span {
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/

.fhead {
  background: linear-gradient(rgba(0, 0, 0, 0.466), rgba(0, 0, 0, 0.315)), url('../img/featured/featured_bg.jpg') center center no-repeat;
  background-size: cover;
}

.fhead .fhead-content {
  padding-top: 8rem;
  padding-bottom: 2.125rem;
  text-align: center;
  min-height: 60rem;
  max-height: 80rem;
}

.fhead .fhead-content h2 {
  margin-top: 40px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Courgette", serif;
  font-optical-sizing: auto;
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  word-spacing: 10px;
  font-variation-settings: "wdth" 100;
  color: #fce8bc;
}

.fhead .fhead-content span {
  letter-spacing: .1rem;
  font-family: "Playwrite CO", serif;
  font-optical-sizing: auto;
  font-size: 14px;
  font-weight: 200;
  font-style: normal;
  color: #ffbb00;
}

.fhead .fhead-content img {
  margin: 0 auto;
  margin-top: 40px;
}

.fhead .featured-title {
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  color: #fce8bc;
}

.fhead .featured-ytc {
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: #fce8bc;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.intro .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.author {
  margin-left: 80%;
}

.intro-content {
  position: relative;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  max-width: 70%;
}

.into-content h3 {
  font-size: 24px;
}

/********* BOOKMARK ********/
.bookmark {
  text-transform: uppercase;
  text-align: center;
}

#intro {
  margin-bottom: 200px;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 150px;
  margin-bottom: 150px;
}

.form-container {
  margin: 0 auto;
  min-height: 60vh;
  display: flex;
  align-items: center;
  width: 50%;
}

.form-group {
  width: 50%;
  margin: 0 auto;
}

#name {
  border-radius: 8px;
  border: 1px solid #14abbf;
  padding: 20px;
  width: 300px;
  height: 15px;
  float: right;
}

#email {
  border-radius: 8px;
  border: 1px solid #14abbf;
  padding: 20px;
  width: 300px;
  height: 15px;
  float: left;
}

#subject {
  margin-left: 12px;
  border-radius: 8px;
  border: 1px solid #14abbf;
  padding: 20px;
  width: 625px;
  height: 15px;

}

#message {
  margin-left: 12px;
  margin-bottom: 25px;
  border-radius: 8px;
  border: 1px solid #14abbf;
  padding: 20px;
  width: 625px;
  height: 200px;
}

#contact .section-title {
  margin: 0 auto;
  margin-bottom: 45px;
  text-align: center;
  width: 50%;
}

#contact h2 {
  padding-bottom: 25px;
  font-size: 34px;
  text-transform: uppercase;
  color: #04AA6D;
}

.title-p p {
  color: rgb(63, 62, 62);
}

.btn-group button {
  margin-right: 10px;
  background-color: #04AA6D; /* Green background */
  border: 1px solid green; /* Green border */
  color: white; /* White text */
  padding: 10px 24px; /* Some padding */
  cursor: pointer; /* Pointer/hand icon */
  float: left; /* Float the buttons side by side */
  border-radius: 12px;
}

.btn-group button:not(:last-child) {
  border-right: none; /* Prevent double borders */
}

/* Clear floats (clearfix hack) */
.btn-group:after {
  content: "";
  clear: both;
  display: table;
}

/* Add a background color on hover */
.btn-group button:hover {
  background-color: #3e8e41;
}

::placeholder {
	color: #d3d3d3;
	opacity: 1;
  }
  
::-ms-input-placeholder {
	color: #d3d3d3b2;
  }

/******** THANK YOU NOTICE ********/
#thanks {
  margin-bottom: 180px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.thanks img {
  margin-left: 50px;
  border-radius: 40%;
  width: 500px;
  height: 336px;
}

.txt-rtn {
  margin-left: 5px;
}

.ty-container {
  text-align: center;
  text-transform: uppercase;
}

.ty-container h2 {
  font-size: 28px;
  margin-bottom: 45px;
}

.ty-notice h2 {
  margin-top: 60px;
  text-align: center;
  color: #00695b;
}

.redirect  {
  text-align: center;
  font-family:consolas;
  font-size: 20px;
  font-weight: 500;
  color: #3d002e;
}

/******** PRIVACY POLICY ********/
.privacy {
  margin: 5px 0 100px 0;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.privacy .text-container {
  margin-bottom: 3.625rem;
}

.privacy .text-container h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}

.privacy .text-container.last {
  margin-bottom: 0;
}

#update {
  text-align: center;
  vertical-align: middle;
  color: rgb(126, 34, 0);
}

/******** TERMS AND CONDITIONS ********/
.terms {
  margin: 5px 0 100px 0;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.terms .text-container {
  margin-bottom: 3.625rem;
}

.terms .text-container h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}

.terms .text-container.last {
  margin-bottom: 0;
}

#update {
  text-align: center;
  vertical-align: middle;
  color: rgb(126, 34, 0);
}
 
/******** AIRPORTS ********/
.air {
  margin: 0;
}

.air h2 {
  margin-bottom: 60px;
  text-align: center;
}

.air-loc {
  border-collapse: collapse;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  margin-bottom: 70px;
  max-width: 80em;
  min-width: 80em;
  border: 1px solid #14bf98;
}

.air-loc thead tr th {
  padding-left: 20px;
  font-weight: bold;
  color: #14bf98;
}

.air-loc tbody tr td {
  padding-left: 20px;
  font-size: 15px;
  color: #000
}

.air-loc tfoot tr td {
  padding-left: 20px;
  font-size: 15px;
  color: #000
}

.air-loc thead tr th:nth-child(1) {
  width: 30%;
}

.air-loc thead tr th:nth-child(2) {
  width: 10%;
}

.air-loc thead tr th:nth-child(3) {
  width: 20%;
}

.air-loc thead tr th:nth-child(4) {
  width: 20%;
}

.air-loc thead tr th:nth-child(5) {
  width: 20%;
}

.air-loc tbody tr th:nth-child(1) {
  width: 30%;
}

.air-loc tbody tr th:nth-child(2) {
  width: 10%;
}

.air-loc tbody tr th:nth-child(3) {
  width: 20%;
}

.air-loc tbody tr th:nth-child(4) {
  width: 20%;
}

.air-loc tbody tr th:nth-child(5) {
  width: 20%;
}

.warning h3 {
  text-align: center;
  width: 100%;
  color: red;
}

.warning h5 {
  color: red;
}

.warning h6 {
  text-align: center;
}

/******** resorts ********/
.resorts {
  margin: 0;
}

.resorts .stay {
  margin: 0;
}

.resorts .stay h2 {
  font-size: 28px;
  text-align: center;
}

.resorts .stay h4 {
  font-size: 24px;
  padding-top: 30px;
}

.resorts .stay h5 {
  font-size: 18px;
  padding-top: 30px;
}

.resorts .stay ul {
  list-style-type: none;
  margin: 0;
  padding: 25px;
}

.resorts .stay .sea-line {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-bottom: 60px;
  max-width: 80%;
  border-top: 1px solid #14bf98;
}

/**** Beach Images ****/
.beach_img {
  margin: 0;
}
.beach_img h2 {
  margin-top: 25px;
  margin-bottom: 20px;
  text-align: center;
}

.ocean ul {
  list-style-type: none;
  padding-left: 25%;
 }

/* Reset default margin and padding */
body, html {
  margin: 0;
  padding: 0;
  font-family: poppins, sans-serif;
  font-size: 15px;
}

.image-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.image-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}


.image-container img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.image-text {
  margin-top: 10px; /* Space between image and text */
}

.image-text p {
  margin: 5px 0; /* Space between lines of text */
  font-size: 16px; /* Adjust font size as needed */
  color: #333; /* Text color */
}


/******** RESORTS ********/
.resorts {
  margin: 0;
}

.resorts .stay {
  margin: 0;
}

.resorts .stay h2 {
  font-size: 28px;
  text-align: center;
}

.resorts .stay h4 {
  font-size: 24px;
  padding-top: 30px;
}

.resorts .stay h5 {
  font-size: 18px;
  padding-top: 30px;
}

.resorts .stay ul {
  list-style-type: none;
  margin: 0;
  padding: 25px;
}

.stay table {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: fit-content;
  border-collapse: collapse;
}

.stay table tr td {
  float: right;
  margin-right: 8px;
  padding: 2px;
  font-weight: 700;
  color: #000;
}

.stay table tr th {
  padding: 2px;
  color: #ff0000;
}

/**** Resort Images ****/
.stay_img {
  margin: 0;
}
.stay_img h2 {
  margin-top: 120px;
  margin-bottom: 40px;
  text-align: center;
}

/* Reset default margin and padding */
body, html {
  margin: 0;
  padding: 0;
  font-family: poppins, sans-serif;
  font-size: 15px;
}

.image-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.image-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.image-container img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-text {
  margin-top: 10px; /* Space between image and text */
}

.image-text p {
  margin: 5px 0; /* Space between lines of text */
  font-size: 16px; /* Adjust font size as needed */
  color: #333; /* Text color */
}

.image-text p span{
  margin: 5px 0; /* Space between lines of text */
  font-size: 16px; /* Adjust font size as needed */
  font-weight: 600;
  color: #fd0000; /* Text color */
}

/********* TRANSPORTATION ********/
.trans {
  margin: 0 auto;

  max-width: 80%;
}

.trans h2 {
  text-align: center;
}

.hr80-tr {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 200px;
  margin-bottom: 70px;
  max-width: 80%;
  border-top: 1px solid #14bf98;
}

.ipad-tr {
  margin-top: 80px;
}

#report {
  margin-bottom: 15px;
  font-size: 30px;
  text-align: center;
}

#contact {
  margin-top: 100px;
  font-size: 30px;
  text-align: center;
}

.ltfrb {
  margin-top: 10px;
  text-align: center;
}

.lto {
  margin-top: 10px;
  text-align: center;
}

.pnp {
  margin-top: 10px;
  text-align: center;
}

/******** CURRENCY ********/
.cash {
  margin: 0;
}

.cash h2 {
  text-align: center;
}

.cash h5 {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}

.cash .coins {
  margin: 0;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}

.cash .coins tr td {
  padding-left: 15px;
}

.cash .coins tr td:nth-child(4) {
  padding-left: 28px;
}

.cash .coins tr td:nth-child(5) {
  padding-left: 30px;
}

.cash .coins tr td:nth-child(7) {
  padding-left: 28px;
}

.cash .coins tr td:nth-child(8) {
  padding-left: 29px;
}

.cash .bills-old {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
}

.cash .bills-new tr td{
  padding: 8px;
}

.cash .bills-new {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
}

.cash .bills-old tr td{
  padding: 8px;
}

.pconvert {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

.pconvert h4 {
  margin-top: 50px;
  text-align: center;
  text-transform: uppercase;
}

.pconvert p {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: coral;
}

.hr75-currency {
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-bottom: 20px;
  max-width: 75%;
  border-top: 1px solid #14bf98;
}

/******** SCAMMERS ********/
.scams {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}

.scams h2 {
  text-align: center;
}

.scams h6 {
  font-weight: 600;
}

.scams ul {
  list-style-type: none;
  padding-left: 25%;
 }

 .scams dl {
  padding-left: 20%;
 }

.hr80-sc {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 100%;
  border-top: 1px solid #14bf98;
}

#statement {
  margin-top: 60px;
}

.text-center {
  text-align: center;
}

.ipad {
  margin-top: 50px;
}

.ltfrb {
  margin-top: 10px;
  text-align: center;
}

#ltfrb {
  padding-top: 100px;
  font-size: 18px;
  font-weight: bold;
  color: red;
}

.nbi {
  margin-top: 10px;
  text-align: center;
}

#nbi {
  padding-top: 100px;
  font-size: 18px;
  font-weight: bold;
  color: red;
}

.ccd {
  margin-top: 10px;
  text-align: center;
}

.sec {
  margin-top: 10px;
  text-align: center;
}

#sec {
  padding-top: 100px;
  font-size: 18px;
  font-weight: bold;
  color: red;
}

.conc {
  margin-top: 100px;
}

.conc p {
  padding-left: 16%;
}


/******** EMBASSIES ********/
.embassies {
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  min-width: 80%;
}

.embassies h3 {
  padding-top: 60px;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  min-width: 100%;
  color: #14bf98;
}

.embassies p {
  text-align: left;
}

.embassies .country {
  padding-left: 10px;
  text-align: left;
}

.embassies .container {

  text-align: center;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.embassies .origin p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #555;
  text-align: center;
}

.embassies .address p {
  font-size: 1em;
  line-height: 1.1;
  color: #666;
  text-align: center;
}

.conclusion {
  margin: 0;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-bottom: 50px;
}

/** ======== DATING SECTION ======== **/
.dating {
	margin: 0;
}

.dating h2 {
	margin-top: 40px;
	margin-bottom: 60px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-size: 30px;
}

.dating h3 {
	margin-top: 40px;
	margin-bottom: 30px;
	font-family: "Poppins", sans-serif;
	text-align: center;
	font-size: 28px;
}

.dating h4 {
	margin-top: 50px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
}

.dating h5 {
	margin-top: 60px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
}

.dating h6 {
	margin-top: 60px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: left;
	font-size: 14px;
	font-weight: bold;
}

.dating p {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
}

/** ======== MARRIAGE SECTION ======== **/
.marry {
	margin: 0;
}

.marrme {
  margin: 0 auto;
}

.marryme h2 {
	margin-top: 40px;
	margin-bottom: 60px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-size: 30px;
}

.marryme h3 {
	margin-top: 40px;
	margin-bottom: 30px;
	font-family: "Poppins", sans-serif;
	text-align: center;
	font-size: 28px;
}

.marryme h4 {
	margin-top: 100px;
	margin-bottom: 50px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
}

.marryme h5 {
	margin-top: 60px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
}

.marryme h6 {
	margin-top: 60px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: left;
	font-size: 14px;
	font-weight: bold;
}

.marryme p {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
}

.family-code {
  font-weight: 500;
  text-align: center;
  color: #14bf98;
}

.marryme ul {
  margin-left: 7%;
  list-style-type:none
}

.rules-law {
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
	margin-bottom: 100px;
	width: 100%;
	border: 2px solid #cfcfcf;
	border-radius: 8px;
	font-size: 18px;
	font-family: "Poppins", sans-serif;
	text-align: left;
	color: #000;
	background: #F1F5F8;
}

.rules-law li {
	margin-left: 20px;
	margin-right: 30px;
	font-family: "Poppins", sans-serif;
	text-align: left;
	font-size: 16px;
	color: #000;
}

.rules-law p {
	margin-bottom: 35px;
	margin-left: 38px;
	margin-right: 30px;
	text-align: left;
}

.rules-law li:last-child {
	margin-bottom: 40px;
}

.required {
  margin-left: 4%;
  max-width: 92%;
}

.procedure {
  margin-left: 4%;
  max-width: 92%;
}

.ceremony {
  margin-left: 4%;
  max-width: 92%;
}

.congrats p {
	text-align: center;
}

/** ======== HOUSING SECTION ======== **/
.housing {
	margin: 0;
}

.housing h2 {
	margin-top: 40px;
	margin-bottom: 60px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-size: 30px;
}

.housing h3 {
	margin-top: 50px;
	margin-bottom: 50px;
	font-family: "Poppins", sans-serif;
	text-align: center;
	font-size: 28px;
}

.housing h4 {
	margin-top: 30px;
	margin-bottom: 5px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: left;
  padding: 10px;
	font-size: 20px;
	font-weight: 500;
}

.housing h5 {
	margin-top: 20px;
	margin-bottom: 12px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
}

.housing p {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
}

.housing ul {
  margin-left: 7%;
  list-style-type:none
}

/** ======== INTERNET SECTION ======== **/
.thenet {
	margin: 0;
  font-family: "Poppins", sans-serif;
}

.thenet h2 {
	margin-top: 40px;
	margin-bottom: 60px;
	text-transform: uppercase;
	text-align: center;
	font-size: 30px;
}

.thenet h4 {
	margin-top: 50px;
	text-transform: uppercase;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
}

.thenet h5 {
  margin-top: 35px;
  margin-left: 22%;
	text-transform: uppercase;
	text-align: left;
	font-size: 17px;
	font-weight: bold;
}

.players h4 {
  margin-top: 50px;
  margin-bottom: 40px;
	text-transform: uppercase;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
}

.players p {
  margin-bottom: 50px;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
}

.pltd table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 50em;
}

.pltd thead th {
	padding: 10px;
	text-align: left;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-family: "Poppins", sans-serif;
	background: #14bf98;
	color: #fff;
  border: 1px solid #554e4e;
}

.pltd tbody td {
	padding: 10px;
	text-align: left;
	font-size: 15px;
  border: 1px solid #554e4e;
}

.pltd tfoot td {
	padding: 10px;
	text-align: justify;
	font-size: 13px;
}

.globe table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 50em;
}

.globe thead th {
	padding: 10px;
	text-align: left;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-family: "Poppins", sans-serif;
	background: #14bf98;
	color: #fff;
  border: 1px solid #554e4e;
}

.globe tbody td {
	padding: 10px;
	text-align: left;
	font-size: 15px;
  border: 1px solid #554e4e;
}

.globe tfoot td {
	padding: 10px;
	text-align: justify;
	font-size: 13px;
}

.converge table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 50em;
}

.converge thead th {
	padding: 10px;
	text-align: left;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-family: "Poppins", sans-serif;
	background: #14bf98;
	color: #fff;
  border: 1px solid #554e4e;
}

.converge tbody td {
	padding: 10px;
	text-align: left;
	font-size: 15px;
  border: 1px solid #554e4e;
}

.converge tfoot td {
	padding: 10px;
	text-align: justify;
	font-size: 13px;
}

.sky table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 50em;
}

.sky thead th {
	padding: 10px;
	text-align: left;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-family: "Poppins", sans-serif;
	background: #14bf98;
	color: #fff;
  border: 1px solid #554e4e;
}

.sky tbody td {
	padding: 10px;
	text-align: left;
	font-size: 15px;
  border: 1px solid #554e4e;
}

.sky tfoot td {
	padding: 10px;
	text-align: justify;
	font-size: 13px;
}

.dito table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 50em;
}

.dito thead th {
	padding: 10px;
	text-align: left;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-family: "Poppins", sans-serif;
	background: #14bf98;
	color: #fff;
  border: 1px solid #554e4e;
}

.dito tbody td {
	padding: 10px;
	text-align: left;
	font-size: 15px;
  border: 1px solid #554e4e;
}

.dito tfoot td {
	padding: 10px;
	text-align: justify;
	font-size: 13px;
}

.starlink table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 50em;
}

.starlink thead th {
	padding: 10px;
	text-align: left;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-family: "Poppins", sans-serif;
	background: #14bf98;
	color: #fff;
  border: 1px solid #554e4e;
}

.starlink tbody td {
	padding: 10px;
	text-align: left;
	font-size: 15px;
  border: 1px solid #554e4e;
}

.starlink tfoot td {
	padding: 10px;
	text-align: justify;
	font-size: 13px;
}

.other {
	margin: 0;
	width: 90%;
  text-align: center;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	background: #fff;
}

.other h4 {
  text-align: center;
	margin-top: 60px;
  margin-bottom: 10px;
	font-size: 20px;
	text-align: center;
}

.other h5 {
  margin: 0;
  text-align: center;

}

.other p {
	width: 90%;
	margin-left: 13%;
  margin-bottom: 60px;
	text-align: left;
}

.smaller {
  margin: 0 auto;
}

.smaller h5 {
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
}

.smaller table {
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
}

.smaller thead th {
	padding: 10px;
	text-align: left;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-family: "Poppins", sans-serif;
	background: #14bf98;
	color: #fff;
  border: 1px solid #554e4e;
  width: 250px;
}

.smaller tbody td {
	padding: 10px;
	text-align: left;
	font-size: 15px;
  border: 1px solid #554e4e;
}

.smaller tfoot td {
	padding: 10px;
	text-align: justify;
	font-size: 13px;
}

/******** CELLULAR ********/
.phone {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}

.phone h2 {
  text-align: center;
  padding-bottom: 30px;
}

.phone h4 {
  padding-top: 30px;
}

.phone #brands {
  border-collapse: collapse;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  margin-bottom: 40px;
  max-width: 60em;
  min-width: 60em;
  text-align: center;
  border: 1px solid #14bf98;
}

.phone #brands thead tr th {
  border-bottom: 1px solid #14bf98;
}

.phone #brands thead tr th:nth-child(1) {
  padding-left: 20px;
  font-weight: bold;
  color: #14bf98;
  width: 33%;
}

.phone #brands thead tr th:nth-child(2) {
  padding-left: 20px;
  font-weight: bold;
  color: #14bf98;
  width: 33%;
}

.phone #brands thead tr th:nth-child(3) {
  padding-left: 20px;
  font-weight: bold;
  color: #14bf98;
  width: 33%;
}

.phone #brands tbody tr td {
  padding-left: 20px;
  font-size: 15px;
  color: #000
}

.phone #convent {
  border-collapse: collapse;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  margin-bottom: 40px;
  max-width: 75em;
  min-width: 75em;
  border: 1px solid #14bf98;
}

.phone #convent thead tr th {
  border-bottom: 1px solid #14bf98;
}

.phone #convent thead tr th:nth-child(1) {
  padding-left: 20px;
  font-weight: bold;
  color: #14bf98;
  width: 25%;
}

.phone #convent thead tr th:nth-child(2) {
  padding-left: 20px;
  font-weight: bold;
  color: #14bf98;
  width: 25%;
}

.phone #convent thead tr th:nth-child(3) {
  padding-left: 20px;
  font-weight: bold;
  color: #14bf98;
  width: 25%;
}

.phone #convent thead tr th:nth-child(4) {
  padding-left: 20px;
  font-weight: bold;
  color: #14bf98;
  width: 25%;
}

.phone #convent tbody tr td {
  padding-left: 20px;
  color: #000;
  width: 25%;
}

.phone #prefix {
  border-collapse: collapse;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  margin-bottom: 40px;
  max-width: 35em;
  min-width: 35em;
  border: 1px solid #14bf98;
}

.phone #prefix thead tr th {
  border-bottom: 1px solid #14bf98;
}

.phone #prefix thead tr th {
  padding-left: 20px;
  font-weight: bold;
  color: #14bf98;
}

.phone #prefix tbody tr td {
  padding-left: 20px;
  padding-bottom: 10px;
  font-size: 15px;
  color: #000
}

/** ======== VISA SECTION ======== **/
.residency {
	margin: 0;
}

.residency h2 {
	margin-top: 40px;
	margin-bottom: 60px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-size: 30px;
}

.residency h3 {
	margin-top: 40px;
	margin-bottom: 30px;
	font-family: "Poppins", sans-serif;
	text-align: center;
	font-size: 28px;
}

.residency h4 {
	margin-top: 50px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
}

.residency h5 {
	margin-top: 60px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
}

.residency h6 {
	margin-top: 60px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: left;
	font-size: 14px;
	font-weight: bold;
}

.residency p {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
}

.residency .visa-type ul {
  margin-left: 7%;
  list-style-type:none
}

.residency .regs ul {
  margin-left: 10%;
  list-style-type:none
}

.residency .perm ul {
  margin-left: 5%;
  list-style-type:none
}

.residency .temp ul {
  margin-left: 5%;
  list-style-type:none
}

.residency .retire ul {
  margin-left: 5%;
  list-style-type:none
}

.residency .bali ul {
  margin-left: 5%;
  list-style-type:none
}

/** ======== DANGERS SECTION ======== **/
.threats {
	margin: 0;
}

.threats h2 {
	margin-top: 40px;
	margin-bottom: 60px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-size: 30px;
}

.threats h3 {
	margin-top: 40px;
	margin-bottom: 30px;
	font-family: "Poppins", sans-serif;
	text-align: center;
	font-size: 28px;
}

.threats h4 {
	margin-top: 100px;
	margin-bottom: 10px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: left;
	font-size: 20px;
	font-weight: 500;
}

.threats h5 {
	margin-top: 60px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
}

.threats h6 {
	margin-top: 60px;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-align: left;
	font-size: 14px;
	font-weight: bold;
}

.threats p {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
}

.threats .wrn-red {
	margin-bottom: 60px;
	text-align: center;
	font-size: 13px;
  color: red;
}

.threats .wrn-area {
  margin: 0;
  text-align: center;
}

.threats .wrn-area ul {
  list-style-type:none
}

.threats .wrn-area h6 {
  margin: 0;
  margin-top: 25px;
  text-align: center;
  font-weight: bold;
  color: red;
}

.threats .wrn-area span {
  margin: 0;
  margin-top: 25px;
  text-align: center;
  font-weight: bold;
  color: green;
}
