/* This is the main CSS file for the entire application */
/* This does not include default and our previous base CSS styles - these are in base.css */
/* Example - font definitions are in base.css */

@import url("base.css");

/*
==============================
====================
PAGE VIEW  CSS 
====================
==============================
*/
@media all and (min-width: 0px) {
  /* Page comes immediately after the body tag and includes all webpage UI elements, including the main top header */
  
  body {
    position: relative;
    /* z-index: -3; */
    font-family: fontbody;
    font-size: 100%;
    color: var(--offblack);
    letter-spacing: 0;
    background-color: var(--white);
  }
  .page {
    position: relative;
    z-index: 2; 
  }

/* Letter spacing common values to make it easier to change later if the font family changes */
  p {
    margin-top: 12px;
    letter-spacing: 0.02em;
  }
  a {
    letter-spacing: 0.02em;
  }
  .form-button a {
    letter-spacing: 0.03em;
  }
  article p {
    letter-spacing: 0.00em;
  }
  label { 
    letter-spacing: 0.02em; 
  }
  td {
    letter-spacing: 0.02em;
  } 
  h1 {
    letter-spacing: -0.006em;
  }
  h2, h3 {
    letter-spacing: 0.000em;
  }
  .text {
    letter-spacing: 0.0em;
  }
  .ltspc-more {
    letter-spacing: 0.024em;
  }
  .ltspc-1 {
    letter-spacing: 0.01em;
  }
  .ltspc-2 {
    letter-spacing: 0.02em;
  }
  .ltspc-3 {
    letter-spacing: 0.03em;
  }

  .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%; 
    margin: 4px 4px; 
    background-color: var(--black);
  }


}



@media all and (min-width: 0px) {
.page-login {
  min-height: 100vh; 
  padding-top: 6vh;

  background: linear-gradient(182deg, 
  rgba(32, 123, 198, 0.40) 0%, 
  rgba(32, 123, 198, 0.0) 14%, 
  rgba(30, 169, 187, 0.0) 84%, 
  rgba(30, 169, 187, 0.40) 100%), 
  url('../../media/img/bkgd/srilanka002.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
} 
}




/*
==============================
====================
BUTTON CSS 
====================
==============================
*/
@media all and (min-width: 0px) {
  button {
    min-width: 8em;
    padding: 7px 14px;
    padding-bottom: 8px;
    margin: 6px 0px;
    line-height: 1.08;

    background-color: var(--white);
    border: var(--border3);
    box-shadow: none;
    font-family: fontbody;
    /* font-family: fontbody2; */
    transition: var(--transitionfast);
  }
  button:hover {
    box-shadow: var(--boxshadow2);
  }
  .button-2 {
    border: none; 
    min-width: 7.5em;
    padding: 9px 8px;
    padding-bottom: 10px;
    margin-right: 12px;
    color: var(--darkgray);
  }
  .button-2:hover { 
    box-shadow: none; 
    background-color: var(--blue); 
    color: var(--white);
  }

  .form-button-link {
    padding: 0 0 !important;
  }
  .form-button-link a {
    display: block;
    line-height: 1.15;
    letter-spacing: 0.036em;
    padding: 15px 12px !important;
  }

  /* For buttons with "a" (link) tags inside  */
  .button-link {
    padding: 0 0;
  }
  .button-link a {
    padding: 7px 14px;
    padding-bottom: 8px;
  }
  .button-2 a {
    display: block;
    padding: 8px 10px;
    padding-bottom: 9px; 
  }
  .button-disabled {
    cursor: not-allowed !important;
    pointer-events: all !important;
    background-color: #aab3bb !important;
  }
  /* For multiple buttons close to each other (within a button-panel) */
  .button-panel button {
    margin: 10px 16px;
    margin-left: 0;
  }
  /* Button to grab(!) user attention with some client brand colours */
  .button-primary {
    border: none;
    color: var(--white);
    background-color: var(--brandcolor1);
  }
  .button-secondary {
    border: none;
    color: var(--white);
    background-color: var(--brandcolor2);
  }
  .button-anim-line {
    position: absolute;
    left: 0;
    bottom: -5px;
    opacity: 0;
    height: 5px;
    width: 100%;
    background-color: var(--blue);
    transition: var(--transitionfast);
  }
  .form-button:hover .button-anim-line {
    opacity: 1;
  }

.dt-blue-button {
  color: var(--offwhite) !important;
  background: var(--blue) !important; 
  border-color: var(--blue) !important;
}
.dt-blue-button:hover {
  background: var(--darkblue) !important; 
  border-color: var(--darkblue) !important;
}
.fh {
  font-family: fontheading !important;
}

}



/*
==============================
====================
FORM AND INPUT CSS 
====================
==============================
*/
@media all and (min-width: 0px) {
  .form {
    position: relative;
    text-align: left;
    /* max-width: 25.6em; */
    /* width: 24.5em; */
    width: 540px;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.08em;
    border-radius: 1.2em;
    background-color: var(--white);
  }
  .form-inner {
    padding: 1.32em 3.2em;
    padding-bottom: 2.3em;
    border: none;
  }

  /* Important form input base style */
  form input, select, textarea {
    width: 99.5%;
    padding: 13px 10px;
    padding-bottom: 14px;
    line-height: 1.14;
    margin-top: 1px;

    font-family: fontbody;
    letter-spacing: 0.032em;
    border: 1px solid var(--nicesilver);
    border-radius: 0.03em;
    transition: 0.6s ease all;
  }
  form input, select, textarea:hover {
  }
  form select {
  }
  form textarea {
  }
  form select option {
  }
  form .form-input-readonly {
    background-color: #e1e8f1;
  }
  .form-col input,
  textarea {
  }
  .form-col select {
  }
  form textarea {
    padding: 8px 8px;
  }
  form input[type="submit"] {
    cursor: pointer;
    line-height: 1.12;
    padding: 15px 10px;
    padding-bottom: 17px;
    color: var(--black);
    font-family: fontheading;
    font-size: 1.1em;
    letter-spacing: 0.024em; 
    text-transform: uppercase;
    border: 2px solid var(--offblack);
    background-color: var(--white);
  }
  form input[type="submit"]:hover {
    color: var(--white);
    border: 1px solid var(--lightsilver);
    background: var(--gradient5); 
    background-size: 100% auto;
    background-attachment: scroll;
    background-position: center;
  }
  form .button-link {
    cursor: pointer;
    width: 13.5em;
    line-height: 1.15;
    padding: 15px 12px;
    padding-bottom: 15px;
    margin: 0 auto;
    color: var(--white);
    font-family: fontlight;
    letter-spacing: 0.034em;
    border: none;
    background-color: var(--blue);
    transition: var(--transitionfast);
  }
  form .button-link:hover {
    color: var(--black);
    background-color: var(--fireyellow);
  }
  form input[type="submit"]:disabled {
    /* background-color: #aab3bb; */
  }
  form input[type="file"] {
    background-color: white;
  }
  form label {
    display: inline-block;
    padding: 4px 2px;
    margin-bottom: 2px;
    font-size: 105%;
    font-family: fontstyled;
    color: var(--white);
    letter-spacing: 0.036em; 

  }
  form label i {
    font-size: 105%;
    color: var(--grayblue);
  }
  .form-inputs {
    margin-top: -14px;
  }
  .form-public .form-inputs {
    margin-top: 0;
  }
  .form-header .form-title {
    font-size: 2.25em;
    display: inline-block;
    margin-bottom: 0.0em;
    margin-top: 0.5em;
    font-family: fontheading;
    color: var(--black);
  }
  .form-header .heading-subtext {
    font-size: 80%;
    margin-top: 3px; 
    color: var(--offblack); 
    line-height: 1.12;
  }
  form .subtitle {
    font-family: fontheading;
    font-size: 1.45em;
    margin-top: -6px;
  }
  /* input-div-div is for the input outer div */
  .form .input-div {
    margin-top: 1.5em;
    margin-bottom: 0.8em;
  }
  .form .input-div input {
  }
  .form .input-div input:hover {
  }
  .form .input-div textarea {
    padding: 14px 10px;
    padding-bottom: 14px;
    line-height: 1.25;
  }
  .form .input-div-submit {
    margin-top: -2px;
    text-align: center;
  }
  .form .input-div-submit input[type="submit"] {
    width: 13.2em;
  }
  .form .input-div-submit input[type="submit"]:hover {
    background-color: var(--darkblue2);
    color: var(--white);
  }
  .form .input-div textarea::placeholder {
    letter-spacing: 0.01em;
  }
  .form .input-div select {
    padding: 11px 8px;
    padding-bottom: 11px;
  }
  .form .input-div input[type="submit"] {
  }
  .form label {
    display: block;
    text-align: left;
    margin-left: 0;
    font-size: 96%;
    padding-top: 3px;
    margin-bottom: 2px;
    color: var(--darksilver);
    font-family: fontlight;
  }
  .form .submit {
  }
  .form .submit:hover {
  }
  input:read-only {
    background-color: var(--offwhiteblue);
  }

  .form .form-buttons {
    margin-top: 1em;
    text-align: center;
  }
  .form-public .form-buttons {
    margin-bottom: -2px;
  }
  .form-buttons-center {
    text-align: center;
  }
  .form-buttons-center input {
    margin-left: auto;
    margin-right: auto;
  }
  .form-button {
    cursor: pointer;
    min-width: 13.375em;
    max-width: 16em;
    padding: 13px 12px;
    padding-bottom: 14px;
    line-height: 1.14 !important;
    margin: 0 auto;
    margin-top: 3px;
    border-radius: 0;
    border: none;
    text-align: center; 
    font-family: fontlight;
    background-color: var(--offblack);
    box-shadow: none;
    transition: var(--transitionfast);
  }
  .form-button:hover {
    box-shadow: none; 
    background-color: var(--darkblue);
  }
  .form-help-links .form-link { 
    max-width: 10em;
    text-align: center;
    border: 2px solid var(--offblack); 
    transition: var(--transitionfast);
  }
  .form-help-links .form-link a {
    display: block;
    padding: 10px 10px;
  }
  .form-help-links .form-link:hover {
    color: var(--black);
    font-family: fontheading;
    background-color: var(--fireyellow);
    border: 2px solid var(--offblack); 
  }
  .form-help-links .form-button {
    min-width: 10.8em;
    padding: 0;
  }
  .form-help-links .form-button a {
    display: block;
    padding: 11px 10px;
    padding-bottom: 12px;
    line-height: 1.12;
  }

  .form .select-option-box {
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #0e59e4;
    color: #084bc7;
    margin: 0.24em 0.2em;
    margin-bottom: 0.64em;
    padding: 0.5em 0.86em;
    display: inline-block;
    min-width: 6em;
    border-radius: 2.5em;
    font-size: 80.6%;
    font-family: fontheading;
    transition: 0.45s cubic-bezier(0.5, 0.7, 0.7, 0.5) all;
  }
  .form .select-option-box:hover {
    background-color: #009b34;
    color: #f3f3f3;
    border: 2px solid #009b34;
  }
  .form .select-option-box-2 {
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #0e59e4;
    color: #084bc7;
    margin: 0.24em 0.2em;
    margin-bottom: 0.64em;
    padding: 0.5em 0.86em;
    display: inline-block;
    min-width: 6em;
    border-radius: 2.5em;
    font-size: 80.6%;
    font-family: fontheading;
    transition: 0.45s cubic-bezier(0.5, 0.7, 0.7, 0.5) all;
  }
  .form .select-option-box-2:hover {
    background-color: #009b34;
    color: #f3f3f3;
    border: 2px solid #009b34;
  }
  .form-option-box-selected {
    background-color: #009b34 !important;
    border: 2px solid #009b34 !important;
    color: #f3f3f3 !important;
  }
  .form .input-guide-text {
    text-align: left;
    padding-left: 7px;
    margin-top: 8px;
    color: var(--fontcolor3); 
    font-family: fontbody; 
  }
  form .logo-div {
    display: inline;
  }
  .form-logo {
    height: 2.16em;
    width: auto;
    position: absolute;
    margin-left: 0.75em;
    margin-top: 0.7em;
  }
  .form .input-extra-info {
    position: absolute;
    display: inline-block;
    max-width: 11em;
    min-width: 8em;
    margin-top: 5px;    
    bottom: -1.85em;
    right: 0;
    padding: 4px 0;
    font-size: 93%;
    text-align: center;
    color: var(--gray); 
    box-shadow: 0px 1px 9px rgba(165, 189, 224, 0.5);
  }
  .form-input-compact .input-div {
    margin-top: 1.12em;
  }
  .form-input-compact .form-section-title {
    margin-bottom: -0.42em;
    margin-top: 2.16em;
  }


  .form-admin {
    /* form-admin are the forms used in the admin (backend) panel */ 
    min-width: 500px; 
    width: 500px; 
    margin: 0.8em 0; 
    border-radius: 0;
  }
  .page-admin .form-backdrop {
    padding: 4em 1em;
    text-align: center; 

    background: linear-gradient(90deg, 
    rgba(240, 240, 254, 0.00) 0%, 
    rgba(230, 230, 245, 0.00) 100%), 
    url('../../media/img/bkgd/bkgd001.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
  }
  .page-admin .form-backdrop .form {
    margin-right: auto;
    margin-left: auto;
  }
  .form-admin .form-inner {
    padding: 1.72em 3.6em;
  }
  .form-admin .form-title {
    font-size: 1.86em; 
    line-height: 1.08; 
  }
  .form-admin .input-div {
  }
  .form-admin label {
    position: relative;
  }
  .form-admin-edit .form-inner {
    padding-right: 3.5em;
    padding-left: 3.4em; 
    padding-top: 1.96em;
    padding-bottom: 1.86em;
  }

  .form-a-link {
    position: absolute;
    display: inline-block;
    font-size: 90%; 
    padding: 5px 9px;
    padding-bottom: 6px;
    right: 3px;
    bottom: 6px;
    min-width: 5.1em;
    text-align: center;
    border-radius: 0.14em; 
    border: var(--border4); 
    color: var(--gray);  
    box-shadow: var(--boxshadow7);
    transition: var(--transitionfast);
  }
  .form-a-link:hover { 
    color: var(--white);  
    background-color: var(--darkgray);
    box-shadow: none;
  }

  .form-input-section {
    transition: var(--transitionfast);
  }
  .form .show-section-button {
    border-radius: 0.16em; 
    color: var(--darkgray);  
    color: var(--gray);  
    border: var(--border4); 
    background-color: var(--white) !important;
    box-shadow: var(--boxshadow7);
  }
  .form .show-section-button:hover {
    color: var(--white);  
    background-color: var(--bkgdlight1);

  }
  .form-admin .input-div input[type="submit"] {
    border: none; 
    padding: 14px 12px;
    padding-bottom: 14px;
    line-height: 1.15;
    font-size: 103%;
    width: 12.5em;
    border-radius: 0.1em;
    background-color: var(--blue2);
    background-color: var(--greenyellow);
    color: var(--offblack); 
    box-shadow: none;
    
  } 
  .form-public .input-div input[type="submit"] { 
    width: 13.235em;
    padding: 15px 12px;
    padding-bottom: 15px;
    border-radius: 0;
    line-height: 1.15;
    float: none;
  }

  .form-section-title {
    font-size: 1.16em; 
    margin-top: 2.05em;
    margin-bottom: -0.36em;
    font-family: fontheading;
    color: var(--offblack); 
  }
  }


@media all and (min-width: 0px) {
  .form-help-tip {

  }
  .form-help-tip .help-tip { 
    position: absolute;
    display: inline !important;
    top: 17px;
    padding-top: 0;
    color: var(--black);
    border: none; 
    background-color: var(--white);
    margin: 5px 5px;
  } 
  .form-help-tip .help-tip:hover { 
    /* color: var(--offwhite); */
    border: 0px solid var(--black) !important; 
    background-color: var(--fireyellow) !important;
  } 
.form-help-tip .help-text { 
    font-family: fontlight !important; 
  } 
  .form .help-tip:hover + .help-text { 
    display: inline-block !important;
    opacity: 0.98;
    position: absolute;
    margin: 28px 8%;
    z-index: 7;
    bottom: 0;
    left: 0;
    width: 84%;
    height: auto;
    max-height: 165px;
    padding: 1.12em 1.27em;
    padding-right: 2em;
    overflow: hidden;

    font-size: 17px;
    line-height: 1.35;
    border-radius: 1.2em;
    color: var(--offwhite);
    background-color: var(--darkgray);
  } 

  .input-div {
    position: relative;
  }
  .input-help-icon { 
    cursor: pointer;
    display: inline;
    right: 7px; 
    top: 3px;
    position: absolute; 
    padding-bottom: 0.3em;
    padding-left: 0.45em;
    font-weight: bold;
    font-family: fontheading;
    color: var(--darkolive);
    font-size: 1.14em;
    opacity: 0.8;
    transition: var(--transition2);
  }
  .input-help-text {
    height: 0.1em;
    opacity: 0.2; 
    overflow: hidden;
    color: var(--mediumgray);
    padding-left: 2px;
    padding-right: 1px;
    font-size: 0.97em;
    line-height: 1.2;
    transition: var(--transition2);
  }
  .input-help-icon:hover + .input-help-text {
    height: auto;
    height: 2.8em;
    overflow: visible;
    opacity: 0.9;
  }
  .input-help-text:hover  {
    height: auto;
    height: 2.8em; 
    overflow: visible;
    opacity: 0.9;
  }
  .input-help-icon:hover  {
    opacity: 1;
  }

  .form-guide-icon {
    cursor: pointer;
    font-size: 1.4em;
    border-radius: 50%;
    padding: 0.5em 0.5em; 
    position: absolute;
    right: -0.1em; 
    top: 0.1em;
  } 
  .form-guide-text-box {
    position: fixed; 
    padding: 1.2em 1.25em; 
    bottom: 1.5em; 
    bottom: -6em;
    margin: 0 0; 
    right: 30%; 
    left: 30%;
    border-radius: 1.6em; 
    width: 40%; 
    max-width: 93%;
    background-color: var(--white);
    transition: var(--transitionfast);
  }  
  .form-guide-text p:first-child { 
    margin-top: 0;
  }
  .form-guide-icon:hover + .form-guide-text-box {
    bottom: 1.5em;
  }
  .form-guide ol li {
    margin-left: 1.2em;
    list-style-type: disc; 
    margin-bottom: 4px;
  }


  .admin-page-section .page-desc {
    font-size: 105%;
  }

  .form-result-msg {
  }
  .form-result-msg .title {
    font-family: fontheading;
    font-size: 1.2em;
  }
  .form-result-msg .text {
    font-size: 1.00em;
  }
  form .msg-active {
    /* padding: 0.45em 0.75em; */
    /* padding-bottom: 0.45em;  */
    margin-top: 0.36em;
    margin-bottom: 2.16em;
    /* box-shadow: var(--boxshadow6); */
    /* border: var(--border5);  */
  }
  .msg-active .title {
    margin-bottom: 12px;
    display: inline-block;
    padding: 3px 10px;
    padding-top: 2px;
    line-height: 1.15;
    border: 2px solid var(--red); 
  }
  .msg-active .text {
    margin-bottom: 6px;
  }
  .msg-warning .title {
    color: var(--red);
  }




  .form-public {
    font-size: 103%; 
    max-width: 100%;
    min-width: 300px; 
    width: 480px; 
    margin: 0 auto;
    text-align: left;
    padding-right: 0;
    padding-left: 0;
  }
  .form-public .form-inner {
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .form-public .input-div {
    clear: both;
    display: block;
    width: 100%;
    border-bottom: 1px dashed var(--mediumsilver);
    margin-bottom: 0em;
    margin-top: 0;
    padding: 13px 0;
    padding-right: 2px;
  }

  .w50 {
    /* To have 2 form inputs on the same row, e.g., date and time */
    width: 50% !important; 
    clear: none !important;
    float: left;
  }
  .form-public .input-div-submit {
    border-bottom: none;
  }
  .form-public .input-div label {
    display: block;
    width: 30%;
    float: left;
    padding: 14px 6px;
    padding-left: 2px;
    padding-bottom: 13px;
  }
  .form-public .input-div input {
    display: block;
    width: 70%;
    float: left;
    color: var(--black);
    border-radius: 0.45em;
    padding-left: 11px;
    padding-bottom: 13px;
    border: 1px solid var(--mediumsilver); 
  }
  .form-public .input-div select {
    display: block;
    width: 70% !important;
    float: left;
    border: none;
    border: 1px solid var(--mediumsilver) !important; 
  }
  .form-public .input-div .select-w17em {
    width: 17em !important;
  }
  .form .input-div input[type="text"]:hover {
    border: 1px solid var(--darkblue2) !important;
  }
  .form-public .input-div select {
    display: block;
    float: left;
    margin-left: 0px;
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 11px 9px;
    padding-bottom: 11px;
    border-radius: 0.45em;
    border: var(--border5);
  }
  .form-public .input-div select:hover { 
    border: 1px solid var(--darkblue2)
  }

  .form-public .form-text-bottom {
    border-top: 1px dashed var(--mediumsilver);
    margin-top: 1.5em; 
    padding-top: 0.75em;
  }
  .form-text-bottom .disclaimer-text {
    color: var(--darksilver);
    font-size: 89%; 
    line-height: 1.15; 
  }
  .form-text-bottom .disclaimer-text a { 
    display: inline;
  }
          
} 


@media all and (min-width: 0px) { 
  .input-icon-image {
    display: inline;
    position: relative;
    right: -0.75em; 
  }
  .input-icon-image img {
    position: relative;
    height: 2.1em;
    width: auto;
    margin-top: 6px;
  }
}
  




/*
==============================
====================
MISC ELEMENT CSS
====================
==============================
*/
@media all and (min-width: 0px) {
  .fly-to-top {
    position: fixed;
    right: 1.24em;
    bottom: 1.5em;
    font-size: 93%;
    z-index: 6;
    padding: 7px 16px;
    padding-bottom: 7px;
    border-radius: 1.5em;
    color: #202020;
    font-family: fontlight;
    background-color: white;
    box-shadow: 0px 3px 15px rgba(84, 93, 119, 0.24);
    transition: 0.6s ease all;
  }
  .fly-to-top:hover {
    font-size: 100%;
    bottom: 1.4em;
    padding: 14px 16px;
    padding-top: 48px;
    border-radius: 0em;
    border-top-left-radius: 7em;
    border-top-right-radius: 7em;
  }
  .fly-to-top {
    display: none;
  }
  @media all and (max-width: 1080px) {
    .fly-to-top {
      font-size: 90%;
    }
  }
  @media all and (max-width: 720px) {
    .fly-to-top {
      font-size: 95%;
    }
  }


  
  

  .support-tap {
    cursor: pointer;
    font-size: 90%;
    font-family: fb;
    position: fixed;
    z-index: 50;
    bottom: 1%;
    right: 1%;
    text-align: center;
    padding: 4px 10px;
    padding-bottom: 4px;
    color: rgb(68, 74, 85);
    transition: 0.7s cubic-bezier(0.3, 0.7, 0.5, 0.5) all;
  }
  .support-tap img {
    height: 2.5em;
    width: auto;
    transition: 0.7s cubic-bezier(0.3, 0.7, 0.5, 0.5) all;
  }
  .support-tap img:hover {
    height: 3.6em;
  }

  /* Tooltip container */
  .tooltip {
    position: relative;
    display: inline-block;
    /* border-bottom: 1px dotted black;  */
    /* ^ Border bottom - for dots under the hoverable text */
  }

  /* Tooltip text */
  .tooltip .tooltip-text {
    visibility: hidden;
    width: 140px;
    background-color: rgb(62, 68, 75);
    color: var(--lightsilver);
    line-height: 1.32;
    text-align: center;
    padding: 6px 6px;
    padding-bottom: 7px;
    border-radius: 6px;
    font-size: 97%;
    font-family: fontbody;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
  }
  form .tooltip .tooltip-text {
    width: 160px;
  }
  /* Tooltip arrow */
  .tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }

  /* Show the tooltip text when you mouse over the tooltip container */
  .tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 0.96;
  }
  .tooltip-icon {
    width: 1.5em;
    height: auto;
    margin-bottom: -5px;
  }
  
  .help-tip {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 25px;
    height: 25px;
    cursor: pointer;

    text-align: center;
    font-family: fontbold;
    font-size: 20px;
    padding: 0;
    padding-top: 2px;
    line-height: 1.21;
    border-radius: 50%; 
    color: var(--brandcolor3);
    border: 2px solid var(--brandcolor3);

    transition: var(--transitionveryfast);
  }
  .stat-card .help-tip {
    height: 25px;
    line-height: 1;
  }
  .stat-card-white .help-tip {
    color: var(--darkgray);
    border: 2px solid var(--darkgray);
  }
  .help-tip .icon {
  }
  .help:hover .help-tip { 
    background-color: var(--yellow);
    border: 2px solid var(--yellow);
    color: var(--black);
  }
  .help .help-text {
    opacity: 0; 
    position: absolute;
    z-index: 0;
    width: 0em;
    top: 0;
    left: 0;
    overflow: hidden;

    font-family: fontbody;
    color: var(--black);
    font-size: 5px;
    line-height: 1.36;
    transition: var(--transitionmedium);
    border-radius: 1em;
  }
  .help-tip:hover {
    z-index: 8;
  }
  .help-tip:hover + .help-text {
    opacity: 0.9;
    position: absolute;
    width: 100%; 
    z-index: 7;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 120px;
    padding: 0.84em 1.02em;
    padding-right: 2.95em;
    overflow: hidden;

    font-size: 16px;
    color: var(--white);
    background-color: var(--darkgray);
  }

  .a-link {
    padding: 6px 6px;
    padding-top: 6px;
    min-width: 5.3em;
    margin: -6px 0;

    line-height: 1.12;
    color: var(--black); 
    background-color: var(--greenyellow); 
    text-align: center;
    font-size: 93%;
    border-radius: 0.02em;
    transition: var(--transitionfast);
  }
  .a-link:hover {
    color: var(--white); 
    background-color: var(--darkblue);
  }
  .table-ui-1 .a-link {
    font-size: 93%;
  }

  .page-note {
    display: inline-block;
    margin-top: 0.3em;
    line-height: 1.2;
    font-size: 90%;
    color: var(--gray);
  }

  .cta-box {    
    width: 420px;
    margin: 2em auto;
    padding: 32px 35px;
    padding-bottom: 33px;
    border-radius: 0;
    background-color: var(--white);
    font-size: 1.12em;
    text-align: center;
    /* box-shadow: var(--boxshadow9); */
  } 
  .cta-box .title {
    text-align: center;
    font-family: fontheading;
    margin-bottom: 18px;
    font-size: 1.54em;
  }
  .cta-box .title em {
    display: inline-block;
    padding: 3px 12px;
    line-height: 1.12;
    padding-bottom: 2px;
    border-radius: 1.2em;
    color: var(--white); 
    background-color: var(--blue); 
    /* border-bottom: 3px solid var(--darkblue); */
  }
  .cta-box .text {
  }
  .cta-box .text p {
    line-height: 1.25;
  }
  
  .cta-box .button {
    width: 100%;
    margin-top: 9px;
    background-color: var(--black);
  }
  .cta-box .button a {
    display: block;
    padding: 11px 10px;
    padding-bottom: 12px;
    /* margin-top: 9px; */
    color: var(--white); 
    min-width: 10em;
    transition: var(--transitionfast);
  }
  .cta-box .button a:hover {
    /* background-color: var(--darkblue); */
  }

  .footer .whatsapp-now {
    margin: 1.4em auto;
    margin-bottom: 0.25em;
    padding: 0.7em 0.5em; 
    width: 14em;
    border-radius: 0.7em;
    color: var(--white);
    font-size: 1.6em;
    background: var(--gradient5);
    background-size: 100% 100%;
    background-attachment: scroll;
    background-position: center; 
    text-shadow: var(--textshadow3);
  } 
  .footer .whatsapp-now a {
    color: var(--white);
    font-family: fontstyled;
    letter-spacing: 0.05em;
  }

  .img-width-60em {
    width: 60em !important;
    height: auto;
  }
  .img-width-50em {
    width: 50em !important;
    height: auto;
  }
  .img-width-40em {
    width: 40em !important;
    height: auto;
  }
  .img-width-30em {
    width: 30em !important;
    height: auto;
  }
  .img-width-25em {
    width: 25em !important;
    height: auto;
  }
  .img-width-20em {
    width: 20em !important;
    height: auto;
  }
  .img-width-15em {
    width: 15em !important;
    height: auto;
  }
  .img-width-10em {
    width: 10em !important;
    height: auto;
  }
  .img-width-5em {
    width: 5em;
    height: auto;
  }
  .img-width-4em {
    width: 4em;
    height: auto;
  }
  .img-width-3em {
    width: 3em;
    height: auto;
  }
  
  

.line1 {
  display: block;
  width: 3.5em;
  height: 3px;
  background-color: var(--mediumsilver);
}
.line2 {
  display: block;
  width: 3.5em;
  height: 4px;
  background-color: var(--brandcolor5);
}
.line-a {
  display: inline-block;
  width: 20px;
  height: 3px;
  margin-right: 1px;
  margin-bottom: 2px;
  border-radius: 0.05em;
  background-color: var(--mediumsilver);  
}
.line-a1 {
  width: 24px;
}
.line-a2 {
  width: 18px;
}
.line-a3 {
  width: 12px;
}
.line-a4 {
  width: 7px;
}


.alert-side {
  position: fixed;
  z-index: 7;
  right: 1.12em; 
  top: 3.84em; 
  width: 20%;
  min-width: 16em;
  right: 40%;

  padding: 1.46em 1.45em; 
  padding-bottom: 1.57em;
  border-radius: 0.7em; 
  background-color: var(--white); 
  text-align: center;
  font-size: 1.16em; 
  box-shadow: var(--boxshadow7);
} 
.alert-side .alert-title {
  font-family: fontheading; 
  font-family: fontbody;
  letter-spacing: 0.014em;
  font-size: 1.6em; 
  margin-bottom: 14px;
}
.alert-title img {
  height: 2.25em; 
  width: auto;
  display: block;
  margin: 4px auto;
  margin-bottom: 20px;
} 
.alert-image img {
  height: 2.5em; 
  width: auto;
  display: block;
  margin: 4px auto;
  margin-bottom: 17px;
} 
.alert .alert-message {
  line-height: 1.24;
}

@media all and (max-width: 720px) {  
.alert-side {
  width: 60%;
  right: 20%;
}
}
@media all and (max-width: 540px) {  
.alert-side {
  width: 80%;
  right: 10%;
}
}


.page-warning {
  font-size: 1.16em; 
  width: 100%; 
  text-align: center;
  line-height: 1.27;
  padding: 1em 1em;
}

.test-msg {
  position: relative;
  z-index: 12;
  top: 0;
  margin: 0.25em auto;
  width: 45em;
  max-width: 100%;
  min-height: 5em;
  text-align: center;
  background-color: var(--white); 
  font-family: fontbody; 
  line-height: 1.2; 
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 1.14em;
  padding: 0.5em 0.9em; 
  border-radius: 1.2em;
}

.msg-capsa {
  min-height: 36vh;
  max-height: 600px;
}
.msg-box {
  width: 17em;
  min-height: 8.6em;
  padding: 1.65em 1.24em;
  padding-bottom: 1.77em;
  background-color: var(--white);
  box-shadow: var(--boxshadow4);
  border-radius: 0.84em;
  font-size: 105%;
  line-height: 1.2;
  margin: 0 auto;
}
.msg-box-wide {
  width: 480px;
}
.msg-box-serious {
  border-radius: 0;
  min-height: 17.5em;
}
.msg-box .msg-title {
  font-family: fontheading;
  font-size: 1.4em;
  margin-bottom: 16px;
}
.msg-box .button-link {
  display: inline-block;
  cursor: pointer;
  padding: 9px 8px;
  padding-bottom: 11px;
  min-width: 8em;
  margin: 3px 3px;
  border-radius: 0.06em;
  color: var(--offwhite); 
  background-color: var(--offblack);
  border: var(--border1);
  transition: var(--transitionveryfast);
}
.msg-box .button-link:hover {
  border: 1px solid var(--silver);
  color: var(--offblack); 
  background: var(--gradient4);
}
.msg-box em {
  font-family: fontheading;
}

}




/*
==============================
====================
HEADERS, FOOTERS AND NAV MENU CSS
====================
==============================
*/

@media all and (min-width: 0px) {
  /* nav-header-public is the public-facing main navigational menu of the website and this is included in the public header */

  .nav-menu-button {
    /* This is the button that opens and closes the main top navigational menu of each page */ 
    position: fixed; 
    z-index: 10;
    top: 1em; 
    right: 1.05em;
    padding: 0.34em 0.2em;
    /* height: 3.6em; */
    /* width: 3.6em; */
    height: 3em;
    width: 3em;
    border-radius: 50%;
    font-size: 1.6em;
    font-family: fontstyled; 
    line-height: 1.23;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.054em; 
    padding-top: 0.84em;
    color: var(--black); 
    background-color: var(--yellow);
    border: 0px solid var(--darkgray);
    cursor: pointer;
    transition: var(--transitionfast);
  }
  .nav-menu-button .line { 
    margin-top: 9px;
    border-bottom: 3px solid var(--darkgray);
  }
  .nav-menu-button:hover {
    background-color: var(--greenyellow);
  }

  .nav-header {
    /* Base class applied to all navigational headers */
    /* Main public-facing top-positioned navigational menu, 
    inside the top main header  */
    padding: 0px 0px; 
    /* background-color: var(--white); */
    /* border-bottom: 1px solid var(--lightsilver);  */
  }

  .header-public-outer {
    width: 100%;
    height: 150vh;
    min-height: 100vh;
    position: absolute;
    z-index: 0;
    /* display: none; */
    top: -151vh;
    display: block;
    font-family: fontbody;
    padding: 5.5em 6em;
    padding-top: 6em;
    opacity: 1; 
    transition: var(--transition1);

    background: var(--offblack); 
    background: linear-gradient(180deg, 
    rgba(30, 32, 35, 0.93) 00%,  
    rgba(26, 27, 25, 0.97) 84%,
    rgba(63, 61, 55, 0.5) 100%), 
    url('../../media/img/bkgd/elephant01.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom center;
  }
  .header-nav-show {
    /* display: block; */
    top: 0; 
    left: 0;
    position: absolute;
    z-index: 9;
  }
  .header-public-outer-transparent {
    position: absolute;
    z-index: 10;
    width: 100%;
    display: block;
    font-family: fontbody;
    background: var(--transparent); 
  }
  .header-public-outer-transparent .nav-header {
    box-shadow: none;
  } 

  .nav-header ol {
    text-align: left;
  }
  .nav-header ol li {
    position: relative;
    text-align: left;
    clear: both;
    transition: var(--transitionfast);
  }
  .nav-header-public ol li {
    position: relative;
    margin: 0.84em 0;
  }
  .nav-header ol li a {
    min-width: 5em; 
    margin: 0px 2px; 
    padding: 12px 12px; 
    line-height: 1.1; 
    text-align: left; 
    letter-spacing: 0.036em;
    font-size: 3.5em; 
    font-family: fontstyled; 
    /* text-transform: uppercase;  */
    color: var(--white); 
    transition: var(--transitionfast);
  }
  .nav-header ol li a:hover {
    color: var(--greenyellow3);     
  }
  .nav-header ol li a:hover {
  }
  .nav-header-public ol li a {
  }
  
  .nav-header-logo {
    position: absolute;
    top: 6px;
    left: 6px;
  }
  .nav-header-logo img {
    height: 1.95em; 
    width: auto;
  }

  
  .nav-header-public ol li .icon {
    position: relative;
    filter: invert(1); 
    width: 5.4em;
    height: auto;
    top: 7px;
    transform: translateX(-4.8em);
    opacity: 0.0;
    transition: var(--transition1);
  }
  .nav-header-icon-hover {
    opacity: 1 !important;
    transform: translateX(3.5em) !important;
  }
  .header-public .whatsapp-link {
    position: absolute;
    bottom: 2em;
    top: 88vh;
    right: 2.7em;
  }
  .header-public .whatsapp-icon {
    height: 3.4em;
    width: auto;
  }

  .header-public .key-places-selector-nav {
    position: absolute;
    right: 9.6em;
    top: 9.6vh;
  }
  .header-public .key-places-selector-nav .unit {
    float: left;
    width: 340px;
    margin: 2.16em 2.16em;
  }  
  .header-public .key-places-selector-nav .unit .image {
    position: relative;
    width: 340px;
    height: 425px;
    overflow: hidden;
    border-radius: 0.6em;
  }
  .header-public .key-places-selector-nav .unit .image img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    transition: var(--transition1);
  }
  .header-public .key-places-selector-nav .unit .text {
    font-family: fontstyled;
    font-size: 1.5em;
    color: var(--white); 
    margin-top: 5px;
    padding: 0.3em 0.14em; 
    line-height: 1.16;
    letter-spacing: 0.054em;
  }
  .header-public .key-places-selector-nav .unit .subtitle {
    font-size: 1.96em;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
  }
  .header-public .key-places-selector-nav .unit .slogan {
    font-family: fontheading;
    letter-spacing: 0.008em;
  }
  .key-places-selector-nav .dots {
    margin-left: -4px;
    margin-bottom: 9px;
    margin-top: 4px;
  }
  .key-places-selector-nav .dot {
    background: var(--greenyellow) !important;
  }
  .key-places-selector-nav .unit .image:hover img {
    width: 112%;
    left: -6%;
    top: -6%;
    filter: saturate(1.15) brightness(1.04) contrast(1.15);
  }

  @media all and (max-width: 1500px) {
    .header-public-outer {
      padding: 3em 3em;
      padding-top: 7.5em;
    }
    .nav-header ol li a {
      font-size: 3.4em;
    }
    .nav-header-public ol li {
        margin: 0.6em 0;
    }
    .nav-menu-button {
      font-size: 1.5em;
    }
    .nav-header-public ol li .icon {
      width: 5.1em;
      top: 9px;
      z-index: 6;
    }
    .header-public .key-places-selector-nav .unit {
        width: 270px;
    }
    .header-public .key-places-selector-nav .unit .image {
      position: relative;
      width: 270px;
      height: 340px;
      overflow: hidden;
      border-radius: 0.6em;
    }
    .header-public .key-places-selector-nav .unit .text {
      font-size: 1.4em;
      margin-top: 9px;
    }
    .header-public .key-places-selector-nav .unit .slogan {
      font-size: 1.1em;
      line-height: 1.2;
      margin-top: 11px;
    }
    .key-places-selector-nav .dot {
      width: 14px;
      height: 14px;
    }
  }
  @media all and (max-width: 1200px) {
    .header-public-outer {
      padding: 3em 2.1em;
      padding-top: 7em;
      padding-left: 1.4em;
    }
    .nav-header ol li a {
      font-size: 2.1em;
    }
    .nav-header-public ol li {
        margin: 0.0em 0;
    }
    .nav-menu-button {
      font-size: 1.5em;
    }
    .nav-header-public ol li .icon {
      width: 4em;
      top: 11px;
      z-index: 6;
    }
    .header-public .key-places-selector-nav .unit {
        float: left;
        width: 225px;
        margin: 1.4em 1.6em;
        margin-top: 0em;
    }
    .header-public .key-places-selector-nav .unit .image {
      position: relative;
      width: 225px;
      height: 280px;
      overflow: hidden;
      border-radius: 0.6em;
    }
    .header-public .key-places-selector-nav .unit .text {
      font-size: 1.2em;
    }
    .header-public .key-places-selector-nav .unit .slogan {
      font-size: 1.1em;
      line-height: 1.23;
    }
    .key-places-selector-nav .dot {
      width: 12px;
      height: 12px;
    }
  }
  @media all and (max-width: 900px) {    
    .header-public .key-places-selector-nav {
      position: absolute;
      right: 7em;
      top: 9.6vh;
  }
  .header-public .whatsapp-link {
      position: absolute;
      bottom: 1.5em;
      right: 1.86em;
  }
  .nav-header ol li a {
      font-size: 1.96em;
      padding: 9px 10px;
  }
  .header-public .key-places-selector-nav .unit .subtitle {
    font-size: 1.8em;
  }
  .header-public .key-places-selector-nav .unit .slogan {
    font-size: 1em;
  }  
  .nav-header-public ol li .icon {
    width: 3.4em;
    top: 7px;
    z-index: 6;
}
.header-public .whatsapp-icon {
    height: 3.2em;
}
  }
  @media all and (max-width: 720px) {
    .nav-menu-button {
      font-size: 1.27em;
      right: 1.54em;
    }
    .header-public-outer {
        padding-top: 2.4em;
    }
    .header-public .key-places-selector-nav {
      top: 24em;
      left: 0.9em;
      width: 87%;
    }
    .header-public .key-places-selector-nav .unit {
      width: 170px;
      margin: 1em 1.32em;
      margin-top: 0em;
      float: left;
    }
    .header-public .key-places-selector-nav .unit .image {
      position: relative;
      width: 170px;
      height: 212px;
      overflow: hidden;
      border-radius: 0.6em;
    }
    .header-public .key-places-selector-nav .unit .subtitle {
      font-size: 1.4em;
      margin-top: -5px;
    }
    .header-public .key-places-selector-nav .unit .slogan {
      font-size: 0.8em;
      line-height: 1.14;
      margin-top: 6px;
    }  
    .nav-header ol li a {
        font-size: 1.6em;
        padding: 6px 10px;
    }
    .key-places-selector-nav .dots {
      margin-bottom: 7px;
    }
    .key-places-selector-nav .dot {
      width: 11px;
      height: 11px;
      margin: 3px 3px;
    }
    .header-public .whatsapp-icon {
        height: 3em;
    }
  }
  @media all and (max-width: 600px) {
    .nav-menu-button {
      font-size: 0.96em;
      right: 0.6em;
      top: 0.7em;
    }
    .header-public-outer {
        padding-top: 2em;
    }
    .header-public .key-places-selector-nav .unit {
      width: 120px;
      margin: 1em 1.1em;
      margin-top: 0em;
    }
    .header-public .key-places-selector-nav .unit .image {
      position: relative;
      width: 120px;
      height: 160px;
      overflow: hidden;
      border-radius: 0.6em;
    }
    .header-public .key-places-selector-nav .unit .subtitle {
      font-size: 1.27em;
    }
    .header-public .key-places-selector-nav .unit .slogan {
      font-size: 0.72em;
      line-height: 1.14;
      margin-top: 6px;
  }
    .header-public .key-places-selector-nav {
      top: 19em;
      left: 0.9em;
    }
    .nav-header ol li a {
        font-size: 1.5em;
        padding: 5px 10px;
    }
  }    
    @media all and (max-width: 480px) {
      .nav-menu-button {
        font-size: 0.96em;
        right: 0.6em;
        top: 0.7em;
      }
  }
}





@media all and (min-width: 0px) {
  .footer {
    /* Slightly larger font size to make the links, phone numbers, and other specifics to be readable for elderly  and for users using certain high resolution displays */
    position: relative;
    font-size: 104%;
  }
  .footer li {
    color: var(--darkgray);
  }
  .footer a {
    font-family: fontbody;
    color: var(--offblack);
  }
  .footer .footer-middle-section a {
    color: var(--offwhite);
    font-family: fontbody;
  }
  .footer p {
    font-family: fontbody; 
    color: var(--darkgray);
  }
  .footer-top-section { 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat; 
    
    background-color: var(--pagebackdrop2);
    padding: 2em 2em;
    padding-bottom: 1em;
  }
  .footer-middle-section { 
    padding: 4em 2em;
    padding-bottom: 4.2em;
  }
  .footer-bottom-section {
    padding: 2em 2.4em;
    padding-top: 1em;
    text-align: center;
    background-color: var(--white);
  }
  .footer-bottom-section .text {
    line-height: 1.24;
  }
  .footer-bottom-section .text em {
    display: inline-block;
    font-size: 1.32em;
    margin-bottom: 4px; 
    font-family: fontstyled;
    letter-spacing: 0.042em;
    color: var(--bluegreendark4);
  }
  .footer-logo .logo-img {
    height: 9em;
    width: auto;
    margin-bottom: 0px;
    margin-top: -6px;
  }
  .footer .links {
    margin-bottom: 1.65em;
  }
  .footer .footer-contacts .icon img {
    height: 2.1em;
    width: auto;
    margin: 0 auto; 
    margin-bottom: 8px;
    display: block;
    padding-top: 0;
    font-family: fontlight;
    filter: invert(1);
  }
  .footer-links-outer {
    margin-top: 0em; 
    padding: 0 0.75em;
    padding-top: 1.5em;
    /* border-top: 1px solid var(--lightsilver); */
  }
  .footer .link {
    margin-top: 0px;
    margin-bottom: 7px;
    text-align: left;
    line-height: 1.32;
  }
  .footer .links .link {
    text-align: center;
  }
  .footer-links {
    width: 360px; 
    max-width: 100%;
    float: left; 
  }
  .footer-links .title {
    margin-bottom: 20px; 
  }
  .footer-links .title a {
    font-family: fontbody;
    font-size: 108%; 
    letter-spacing: 0.012em;
  }
  .yellow-line {
    width: 2em;
    height: 3px;
    background-color: var(--yellow2);
  }
  .footer .yellow-line {
    margin-top: 4px;
  }
  .footer-emphasis {
    width: 750px;
    max-width: 100vw;
    margin: 0 auto;
    margin: 1em auto;
    margin-bottom: 2.4em;
    padding: 0.6em 0.7em;
    padding-bottom: 0.6em;

    border-top-left-radius: 6em;
    border-top-right-radius: 6em;
    /* background-color: transparent; */
    /* color: var(--offwhite);  */
    border: 1px solid var(--offwhite2); 
  }

  .footer-emphasis .item {
    width: 33.33%;
  }
  .footer-emphasis .item a {
    font-size: 106%;
    letter-spacing: 0.024em;
  }
  .footer-emphasis .icon img {
    display: block;
    height: 2em;
    width: auto;
    margin: 0 auto; 
    margin-bottom: 10px;
  }
  .footer-pre-section {
    /* Section just above the footer to have a CTA */ 
    padding: 3.5em 1%; 
    text-align: center; 
    
    background: var(--gradient4);
  }
  .footer .cta-button { 
    width: 5.4em; 
    height: 5.4em;
    font-size: 2.16em;
    line-height: 1.05;
    padding: 1.05em 0.3em;
    padding-top: 1.15em;
    cursor: pointer;
    border-radius: 50%; 
    color: var(--white);
    background-color: var(--offwhite);
    transition: var(--transition1);
    
    background: linear-gradient(90deg, 
    rgba(0, 183, 207, 0.1) 0%, 
    rgba(11, 57, 137, 0.1) 100%), 
    url('../../media/img/textures/texture-01.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;    
  }
  .footer .cta-button:hover {
    background-position: bottom;    
  }
  .footer .cta-button a { 
    font-family: fontheading;
    padding: 6px 6px;
    color: var(--offwhite);
  }
  .footer .cta-slogan {
    width: 100%; 
    margin-bottom: 0.84em;
    color: var(--white);
    font-size: 1.7em; 
    font-family: fontheading;   
    letter-spacing: 0.003em; 
    text-shadow: var(--textshadow4);
  }
  .footer .cta-slogan em {
  }
  .footer-segment-3 {
    width: 400px;
    max-width: 100vw;
    margin: 0 auto;
    padding-right: 0.5em;
    padding-left: 0.5em;
  }
  .footer-segment-4 {
    padding-top: 1em;
    width: 150px;
    max-width: 100vw;
    margin: 0 auto;
  }

    @media all and (min-width: 720px) {    
    .footer-middle-section { 
      background: linear-gradient(264deg,  
      rgba(255, 255, 255, 0) 0%, 
      rgba(29, 105, 182, 0.5) 10%,
      rgba(13, 67, 161, 0.84) 40%,  
      rgba(29, 61, 107, 0.99) 100%),
        url("../../media/img/photos/maldives/maldives-05.jpg");
      background-size: cover;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat; 
    }
    .footer-pre-section {
      background: var(--gradient4);
      background: linear-gradient(90deg, 
      rgba(0, 183, 207, 0.1) 0%, 
      rgba(11, 57, 137, 0.1) 100%), 
      url('../../media/img/bkgd/ocean-sun-horizon.jpg');
      background-size: cover;
      background-attachment: fixed;
      background-position: top center;   
    }
  }
  @media all and (max-width: 1200px) {
    .footer-pre-section {
      font-size: 93%;
    }
  }
  @media all and (max-width: 900px) {
    .footer-middle-section { 
      background: linear-gradient(264deg,  
        rgba(255, 255, 255, 0) 0%, 
        rgba(29, 105, 182, 0.5) 10%,
        rgba(13, 67, 161, 0.84) 40%,  
        rgba(41, 72, 114, 0.99) 100%),
        url("../../media/img/photos/maldives/maldives-02-portrait.jpg");
      background-size: cover;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat; 
    }
    .footer-pre-section {
      font-size: 87%; 
    }
  }
  @media all and (max-width: 720px) {
    .footer-pre-section {
      background: var(--gradient4);
      background: linear-gradient(90deg, 
      rgba(0, 183, 207, 0.1) 0%, 
      rgba(11, 57, 137, 0.1) 100%), 
      url('../../media/img/bkgd/ocean-sun-horizon-mobile.jpg');
      background-size: cover;
      background-attachment: fixed;
      background-position: top center;   
    }
  .footer-emphasis {
    width: 100%;
    margin-bottom: 0.6em;
  }    
  .footer-emphasis .item {
    width: 100% !important;
    margin-bottom: 1.25em;
  }    
  .footer-links-outer {
    padding-left: 10%;
  }
  .footer-emphasis .icon img {
    margin-bottom: 6px; 
  }
  .footer-segment-3 .links {
    margin-bottom: 0.6em;
  } 
  .footer-middle-section {
    padding-top: 2.55em; 
    padding-bottom: 3.6em;
  }
  }
  @media all and (max-width: 600px) {
    .footer-pre-section {
      font-size: 80%;
    }
    .footer .cta-slogan {
      width: 70%;
      min-width: 200px;
    } 
    .footer-links {
      width: 320px; 
      max-width: 100%;
    }
    .footer-segment-3 {
      width: 300px;
      max-width: 100%;
    }
  }
  @media all and (max-width: 480px) {
  }
  @media all and (max-width: 360px) {
    .footer .cta-slogan {
      width: 100%;
      min-width: 30px;
    }
  }
}



/*
==============================
====================
TABLE CSS
====================
==============================
*/
@media all and (min-width: 0px) {
  table {
    border-spacing: 0px;
    /* border: 1px dashed #b3bfc9 !important; */
    /* box-shadow: 1px 2px 7px rgba(152, 174, 207, 0.6); */
  }
  table tr {
  }
  table td {
    padding: 9px 10px;
    /* border-bottom: 1px solid var(--darkolive); */
  }
  table tr:last-child td {
    border-bottom: none;
  } 
  table .td-subtext {
    color: var(--grayblue); 
    font-size: 95%;
    margin-top: 3px;
  }



  .tableart3 {
    border-spacing: 0px;
    /* border: 1px dashed #b3bfc9 !important; */
    /* box-shadow: 1px 2px 7px rgba(152, 174, 207, 0.6); */
  }
  .tableart3 td {
    padding: 12px 12px !important;
    border-bottom: 1px dashed #aab3bb !important;
  }
  .tableart3 tr:last-child td {
    border-bottom: none !important;
  }

  .table-art-1 {
    border-spacing: 0px;
    border: 1px dashed #b3bfc9 !important;
    border: 1px solid #d0dae8 !important;
    /* box-shadow: 1px 1px 10px rgba(152, 174, 207, 0.36); */
  }
  .table-art-1 td {
    color: #505050;
    padding: 10px 12px !important;
    padding-top: 11px !important;
    border-bottom: 1px dashed #c7d3df !important;
  }
  .table-art-1 tr:last-child td {
    border-bottom: none !important;
  }
  .table-art-1 th {
    color: #333;
    padding: 12px 12px !important;
    padding-top: 12px !important;
    background-color: #eef1f5;
    font-family: fh;
    /* text-shadow: 2px 1px 32px #3b3e41; */
    /* border-bottom: 1px dashed #aab3bb !important; */
  }
  .table-art-1 th {
    text-align: left;
  }

  .table-art-3 {
    border-spacing: 0px;
    /* border: 1px dashed #b3bfc9 !important; */
    /* box-shadow: 1px 2px 7px rgba(152, 174, 207, 0.6); */
  }
  .table-art-3 td {
    padding: 12px 12px !important;
    border-bottom: 1px dashed #d0dae8 !important;
  }
  .table-art-3 tr:last-child td {
    border-bottom: none !important;
  }

  .td-compact-text {
    line-height: 1.2 !important;
    font-size: 95% !important;
  }
  #myTable td {
  }
  .logs-datatable tr td {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  
  /* For table td tags, including datatable td tags */
  .td-max-width-450 {
    width: 450px !important;
    max-width: 450px !important;
  }
  .td-max-width-400 {
    width: 400px !important;
    max-width: 400px !important;
  }
  .td-max-width-300 {
    width: 300px !important;
    max-width: 300px !important;
  }
  .td-max-width-240 {
    width: 240px !important;
    max-width: 240px !important;
  }
  .td-max-width-200 {
    width: 200px !important;
    max-width: 200px !important;
  }
  .td-max-width-180 {
    width: 180px !important;
    max-width: 180px !important;
  }
  .td-max-width-160 {
    width: 160px !important;
    max-width: 160px !important;
  }
  .td-max-width-120 {
    width: 120px !important;
    max-width: 120px !important;
  }
  .td-max-width-100 {
    width: 100px !important;
    max-width: 100px !important;
  }
  .td-max-width-80 {
    width: 100px !important;
    max-width: 100px !important;
  }
  .td-max-width-60 {
    width: 60px !important;
    max-width: 60px !important;
  } 
  .td-max-width-40 {
    width: 40px !important;
    max-width: 40px !important;
  }

 .max-width-1200 {
    /* For entire tables */
    max-width: 1200px !important;
  }
 .max-width-1080 {
    /* For entire tables */
    max-width: 1080px !important;
  }
 .max-width-1000 {
    /* For entire tables */
    max-width: 1000px !important;
  }
 .max-width-720 {
    /* For entire tables */
    max-width: 720px !important;
  }

  @media all and (min-width: 840px) {
  .td-min-width-500 {
    width: 500px !important;
    min-width: 500px !important;
  }
  .td-min-width-400 {
    width: 400px !important;
    min-width: 400px;
  }
  .td-min-width-360 {
    width: 360px !important;
    min-width: 360px;
  }
  .td-min-width-300 {
    width: 300px !important;
    min-width: 300px;
  }
  .td-min-width-240 {
    width: 240px !important;
    min-width: 240px;
  }
  .td-min-width-200 {
    width: 200px !important;
    min-width: 200px;
  }
  .td-min-width-160 {
    width: 160px !important;
    min-width: 160px;
  }
  .td-min-width-120 {
    width: 120px !important;
    min-width: 120px;
  }
  }

  .table-ui-1 { 
    /* Used mostly as the small tables in the units of the single appointment profile page */
    padding: 9px 9px;
    padding-bottom: 10px;
    background-color: var(--white);
  }
  .table-ui-1 td {
    padding: 9px 11px;
  }
  .table-ui-1 .label {
  }

  .public-datatable {
  }
  .public-datatable .dt-view-link {
    padding: 12px 10px !important;
    padding-bottom: 12px !important;
    min-width: 9em !important;
    border: 1px solid var(--mediumsilver); 
    background-color: var(--darkblue);
  }
  #myTable .dt-link-underlined {
    background-color: var(--transparent);
    border: none;
    border-bottom: 3px solid var(--greenyellow);
    padding: 0 0;
    line-height: 1.05 !important;
    padding-left: 0;
    min-width: auto;    
  }
  #myTable .dt-link-underlined:hover {
    background-color: var(--transparent);   
    color: var(--transparent);   
    border: none;
    border-bottom: 4px solid var(--greenyellow);
    padding: 0 0;
    line-height: 1 !important;
    padding-left: 0;
    min-width: auto;    
  }
  #myTable .dt-link-boxed { 

  }
  .dt-button-gradient {
    background-color: var(--darkblue);
    background: linear-gradient(230deg, #007bee, #0d4baf) !important;
    background-size: 400% 400%;  
  }
  .dt-button-gradient:hover {
    background: linear-gradient(230deg, #015fb7, #083479) !important;
    background-size: 400% 400%;
  }

  .availabilty-time-table td:first-child {
    font-family: fontbold !important;
  }
  .availabilty-time-table .first-row td:first-child {
    font-family: fontbody !important;
  }
  .availabilty-time-table td:nth-child(1) {
    min-width: 6.8em !important;
    max-width: 10em;
  }
  .availabilty-time-table td:nth-child(2) {
    min-width: 5.4em !important;
    max-width: 10em;
  }
  .availabilty-time-table td:nth-child(3) {
    min-width: 6em !important;
    max-width: 10em;
  }
  .availabilty-time-table td:nth-child(4) {
    min-width: 6em !important;
    max-width: 10em;
  }
  .availabilty-time-table td:nth-child(5) {
    min-width: 5.4em !important;
    max-width: 10em;
  }
  .td-link-2 {
    color: var(--black);
    background-color: var(--white);
    border: var(--borderdark); 
    padding: 6px 11px;
    padding-bottom: 6px;
    line-height: 1.16;
    font-size: 93%; 
    transition: var(--transitionfast);
  } 
  .td-link-2:hover { 
    color: var(--offblack);
    background-color: var(--yellow2);
  }

  .table-w1000 #myTable {
    width: 1000px !important;
  }
  
  .td-link a {
    padding: 4px 9px;
    margin-top: -2px;
    min-width: 5.4em;
    border-radius: 0.84em; 
    text-align: center;
    line-height: 1.2;
    color: var(--gray);
    background-color: var(--white);
    box-shadow: var(--boxshadow2);
    transition: var(--transitionfast);
  }
  .td-link a:hover {    
    color: var(--offwhite);
    background-color: var(--darkgray);
  }

}




/*
==============================
====================
IMAGE CSS
====================
==============================
*/







/*
==============================
====================
ARTICLE CSS
====================
==============================
*/
@media all and (min-width: 0px) {   

}



/*
==============================
====================
ANIMATION CSS
====================
==============================
*/
@media all and (min-width: 0px) {
  .slide-bottom {
    -webkit-animation: slide-bottom 4s ease-in-out both 900;
    animation: slide-bottom 4s ease-in-out both 900;
  }
  .slide-bottom-slow {
    -webkit-animation: slide-bottom 6s ease-in-out both 900;
    animation: slide-bottom 6s ease-in-out both 900;
  }
  .slide-bottom-fast {
    -webkit-animation: slide-bottom 3s ease-in-out both 900;
    animation: slide-bottom 3s ease-in-out both 900;
  }
  @keyframes slide-bottom {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(15px);
      transform: translateY(15px);
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  .slide-bottom-2 {
    -webkit-animation: slide-bottom-2 4.3s ease-in-out both 900;
    animation: slide-bottom-2 4.3s ease-in-out both 900;
  }
  @keyframes slide-bottom-2 {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(10px) translateX(3px);
      transform: translateY(10px) translateX(3px);
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  .slide-bottom-3 {
    -webkit-animation: slide-bottom-2 3.75s ease-out both 900;
    animation: slide-bottom-2 3.75s ease-out both 900;
  }
  @keyframes slide-bottom-3 {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(9px) translateX(-3px);
      transform: translateY(9px) translateX(-3px);
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  
  @keyframes bkgd-color-anim-1 {
  0% {
    background-color: var(--black);
  }
  30% {
    background-color: var(--brandcolor2);
  }
  50% {
    background-color: var(--brandcolor1);
  }
  70% {
    background-color: var(--brandcolor2);
  }
  100% {
    background-color: var(--black);
  }
}
.bkgd-color-anim-2 {
    background: linear-gradient(265deg, #ffee00, #0074b6);
    background-size: 400% 400%;

    -webkit-animation: bkgd-color-anim-2 6s ease 2;
    -moz-animation: bkgd-color-anim-2 6s ease 2;
    animation: bkgd-color-anim-2 6s ease 2;
}

@-webkit-keyframes bkgd-color-anim-2 {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
@-moz-keyframes bkgd-color-anim-2 {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
@keyframes bkgd-color-anim-2 {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
}


@media all and (min-width: 0px) {
  @keyframes bkgd-color-anim-3 {
  0% {
    background-color: var(--black);
  }
  50% {
    background-color: var(--gray);
  }
  100% {
    background-color: var(--black);
  }
}

@keyframes pulse-anim-1 {
  20% {
    font-size: 100%;
  }
  50% {
    font-size: 120%;
  }
  80% {
    font-size: 100%;
  }
}
}



/*
==============================
====================
JQUERY MODAL POPUP CSS 
====================
==============================
*/
@media all and (min-width: 0px) {
  .blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 70;
    padding: 20px;
    box-sizing: border-box;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
  }
  .blocker:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em;
  }
  .blocker.behind {
    background-color: transparent;
  }
  .modal {
    display: none;
    vertical-align: middle;
    position: relative;
    z-index: 71;
    max-width: 500px;
    box-sizing: border-box;
    width: 90%;
    background: #fff;
    padding: 15px 30px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    text-align: left;
  }
  .modal a.close-modal {
    position: absolute;
    top: -12.5px;
    right: -12.5px;
    display: block;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
  }
  .modal-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 12px 16px;
    border-radius: 5px;
    background-color: #111;
    height: 20px;
  }
  .modal-spinner > div {
    border-radius: 100px;
    background-color: #fff;
    height: 20px;
    width: 2px;
    margin: 0 1px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
  }
  .modal-spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
  }
  .modal-spinner .rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
  }
  .modal-spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
  }
  @-webkit-keyframes sk-stretchdelay {
    0%,
    40%,
    100% {
      -webkit-transform: scaleY(0.5);
    }
    20% {
      -webkit-transform: scaleY(1);
    }
  }
  @keyframes sk-stretchdelay {
    0%,
    40%,
    100% {
      transform: scaleY(0.5);
      -webkit-transform: scaleY(0.5);
    }
    20% {
      transform: scaleY(1);
      -webkit-transform: scaleY(1);
    }
  }

  .modal {
    /* padding-top: 12px; */
    text-align: center;
    line-height: 1.4;
    font-size: 0.95em;
    color: #4a5461;
    max-width: 420px;
    padding-bottom: 24px;
    margin-bottom: 3.5vh;
  }
  .modal em {
    display: block;
    margin-bottom: 9px;
    font-size: 2.16em;
    font-family: fh;
    text-align: center !important;
  }
  .okay-modal em {
    color: #404040;
    color: #04cc86;
  }
  .modal .button {
    font-size: 0.95em;
    margin: 10px;
    margin-top: 12px;
    color: #4a5461;
  }
  .modal .button:hover {
    font-size: 0.96em;
    color: white;
    font-family: fontheading;
  }
  .modal .button:first-of-type {
    margin-left: 0px !important;
  }
  .modal a.button {
    min-width: 135px;
  }
}

 


/*
==============================
====================
PUBLIC SEGMENTS CSS 
====================
==============================
*/


@media all and (min-width: 0px) { 
  .home-banner-slideshow-services {
    background-color: var(--white);
    
  }
  .banner-slideshow .slide {
    width: 100%; 
    height: auto;
    max-height: 600px;
    overflow: hidden;
  }
  .banner-slideshow .slide figure {
    width: 100%;
  }
  .banner-slideshow-services {

  }
}




/*
==============================
====================
USER GUIDES CSS 
====================
==============================
*/ 







/*
==============================
====================
CREATIVE SEGMENTS CSS
====================
==============================
*/

@media all and (min-width: 0px) {
  .landing-jumbo .units {
    position: relative;
    /* background: linear-gradient(90deg, 
    rgba(25, 41, 43, 0.95) 0%, 
    rgba(32, 45, 63, 0.95) 100%);
    background-size: cover;
    background-attachment: scroll;
    background-position: center; */
  }
  
  .landing-jumbo .title-overlay {
    z-index: 5;
    position: absolute; 
    font-size: 1.6em;
    line-height: 1.01;
    padding: 0.5em 1.05em;
    font-family: fontbody;
    background-color: var(--white);
    border-radius: 50%; 
    width: 10em;
    height: 10em;
    transition: var(--transition1);
  }
  .landing-jumbo .title-overlay:hover {
    cursor: pointer;
    background-color: var(--darkgray);
  }
  .landing-jumbo .title-overlay:hover .subtitle {
    color: var(--goldenrod);
  }  
  .landing-jumbo .title-overlay .subtitle {
    font-size: 1.4em;
    margin-top: 15px;
    font-family: fontstyled;
    color: var(--black);
    text-transform: uppercase;
  }
  .landing-jumbo .title-overlay .subtext {
    font-size: 0.9em;
    margin-top: 16px;
    color: var(--black);
    font-family: fontlight; 
  }
  .landing-jumbo .title-overlay .subtext-2 {
    color: var(--white);
  }

  .landing-jumbo .unit {
    overflow: hidden;
    position: relative;
    height: 90vh;
    width: 25%;
    padding: 2em 1.5em; 
    background-color: var(--grayblue);

    background: linear-gradient(90deg, 
    rgba(240, 240, 254, 0.0) 0%, 
    rgba(230, 230, 245, 0.0) 100%); 
    /* url('../../media/img/bkgd/maldives-01-ai.jpg'); */
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
  }  
  .landing-jumbo .unit .cover-overlay {
    position: absolute; 
    height: 90vh;
    width: 100%;
    z-index: 4;
    top: 0vh;
    left: 0;
    opacity: 0.0 !important; 
    transition: var(--transitionveryfast);
  }
  .landing-jumbo .unit .cover-overlay:hover {
    /* background: var(--transparent); */
    background: var(--offblack);
    opacity: 0.78 !important; 
    transition: var(--transitionfast);
  }
  
  .landing-jumbo .unit-1 {
    background: linear-gradient(90deg, 
    rgba(16, 72, 80, 0.0) 0%, 
    rgba(17, 53, 104, 0.0) 100%), 
    url('../../media/img/bkgd/ocean01.jpg');
    /* url('../../media/img/bkgd/maldives-01-ai-portrait.jpg'); */
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
  }
  .landing-jumbo .unit-2 {
    background: linear-gradient(90deg, 
    rgba(16, 72, 80, 0.0) 0%, 
    rgba(17, 53, 104, 0.0) 100%), 
    /* url('../../media/img/bkgd/elephant04.jpg'); */
    url('../../media/img/bkgd/ruins01-portrait.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
  }
  .landing-jumbo .unit-3 {
    background: linear-gradient(90deg, 
    rgba(16, 72, 80, 0.0) 0%, 
    rgba(17, 53, 104, 0.0) 100%), 
    url('../../media/img/bkgd/elephant01-portrait.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
  }
  .landing-jumbo .unit-4 {
    background: linear-gradient(90deg, 
    rgba(16, 72, 80, 0.0) 0%, 
    rgba(17, 53, 104, 0.0) 100%), 
    url('../../media/img/bkgd/activity01.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
  }
  .landing-jumbo .unit-link {
    position: absolute;
    display: block; 
    z-index: 6;
    bottom: 3.75em;
  }
  .landing-jumbo .unit-link a {
    display: block; 
    width: 16.5em;
    padding: 0.6em 0.3em; 
    padding-bottom: 0.84em;
    font-size: 1.27em; 
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--black); 
    background-color: var(--offwhite); 
    border: 1px solid var(--offwhite);
    transition: var(--transitionfast);
  }
  .landing-jumbo .unit-link a:hover {
    color: var(--greenyellow); 
    background-color: var(--transparent); 
    border: 2px solid var(--greenyellow);
  }
  .landing-jumbo .unit .cover-overlay:hover + .unit-link a {
    color: var(--greenyellow); 
    background-color: var(--transparent); 
    border: 2px solid var(--greenyellow);
  }
  .landing-jumbo .flags {
    position: absolute;
    top: 1.4em;
    z-index: 7;
    width: 30%;
    margin: 0 35%;
    text-align: center;
  }
  .landing-jumbo .flags img {
    height: 75px;
    width: auto;
    position: relative;
    margin: 1px -5px;
    filter: brightness(1.05);
  }


  @media all and (max-width: 720px) {
    .landing-jumbo .unit {
      overflow: hidden;
      position: relative;
      height: 80vw;
      width: 50vw;
      float: left;
      padding: 0.8em 0.6em; 
    }  
    .landing-jumbo .unit .cover-overlay {
      position: absolute; 
      height: 80vw;
      width: 50vw;
      z-index: 4;
      top: 0vh;
      left: 0;
      opacity: 0.0 !important; 
      transition: var(--transitionveryfast);
    }
    .landing-jumbo .title-overlay {
      font-size: 1.08em;
      padding: 0.3em 0.7em;
    }
    .landing-jumbo .unit-link {
      display: none;
      font-size: 70%;
      bottom: 1.92em;
    }
    .landing-jumbo .unit-link a {
        width: 12em;
        padding: 0.48em 0.2em;
        padding-bottom: 0.6em;
        font-size: 1.1em;
        line-height: 1.15;
    }
    .landing-jumbo .title-overlay .subtitle {
      font-size: 1.2em;
    }
    .landing-jumbo .title-overlay .subtext {
      font-size: 0.9em;
    }
  }
}




@media all and (min-width: 0px) {
  .page-destination {
    padding-bottom: 2em;
  }
  .destination {
    background-color: var(--white);
  }
  .destination .header-image {
    position: relative;
    margin-bottom: 0em;
  }
  .destination .header-image .transparent-image {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 6;
    
  }
  .destination .header-image .transparent-image img {
    width: 100%;
  }
  .destination .header-image .bkgd-image {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-bottom: -1.4em;
  }
  .destination .header-image .bkgd-image img {
    width: 99.7%;
    display: block;
  }
  .destination-page-header .header-wording {
    position: relative;
    z-index: 7;
    width: 100%;
    text-align: center;
    font-size: 2.25em;
    color: var(--black); 
  }
  .destination-page-header .header-wording h1 {
    margin-top: 0.14em;
    font-family: fontheading;
    font-family: fontstyled;
    text-align: center;
    letter-spacing: 0.02em;
  }
  .destination-page-header .subtitle {
    max-width: 24em;
    margin: 0 auto;
    margin-top: 12px;
    font-size: 0.84em;
    font-family: fontheading;
    letter-spacing: -0.0045em;
    line-height: 1.1;
    color: var(--bluegreendark4);
  }

  .destination-gallery { 
    padding: 0em 0em;
    /* background-color: var(--offblack); */
  }
  .destination-image-gallery {
    padding: 2.1em 0em;
    text-align: center;
  }
  .destination-image-gallery figure { 
    position: relative;
    height: 17.5vw;
    width: 33.05vw;
    margin: 0.0em 0.0em;
    padding: 0;
    overflow: hidden;
    float: left;
  }
  .destination-image-gallery img { 
    position: relative;
    width: 128%;
    height: auto;
    left: -14%;
    top: -3em;
    filter: saturate(1) contrast(1) brightness(1);
  }

  @media all and (max-width: 1080px) {
    .destination-page-header .header-wording {
      font-size: 1.6em;
    }
    .destination-page-header .header-wording h1 {
      margin-top: 0.3em;
    }
  }
  @media all and (max-width: 960px) {
    .destination-page-header .header-wording {
      font-size: 1.5em;
    }
  }
  @media all and (max-width: 750px) {
    .destination-page-header .header-wording {
      font-size: 1.27em;
    }
  }
  @media all and (max-width: 600px) {
    .destination-page-header .header-wording {
      font-size: 1.05em;
    }
  }




  .destination-photos .photos {
    width: 1200px;
    margin-left: 25%;
  }
  .destination-photos .unit {
    margin: 3em auto;
    justify-content: start;
  }
  .destination-photos .photo {
    float: right;
  }
  .destination-photos .text {
    width: 17em;
    float: left;
    padding: 12px 12px;
    padding-right: 24px;
    font-size: 1.32em;
    letter-spacing: 0.012em;
    font-family: fontlight;
  }
  .destination-photos .photo img {
    width: 800px;
    height: auto;
    max-width: 84%;
  }
  .destination-photos .portrait img {
    width: 500px;
    height: auto;
  }
  .destination-photos .photo figcaption {
    color: var(--bluegreendark4); 
    margin-top: 4px;
    font-size: 90%;
  }

  @media all and (max-width: 1900px) {
    .destination-photos .photos {
      width: 1200px;
      margin-left: 20%;
    }
  }
  @media all and (max-width: 1600px) {
    .destination-photos .photos {
      width: 1200px;
      margin-left: 14%;
    }
  }
  @media all and (max-width: 1280px) {
    .destination-photos .photos {
      width: 1100px;
      margin-left: 11%;
    }
    .destination-photos .photo img {
      width: 680px;
      height: auto;
    }
    .destination-photos .text {
      padding: 12px 9px;
      padding-right: 21px;
      font-size: 1.2em;
    }
    .destination-photos .portrait img {
      width: 460px !important;
      height: auto;
    }
  }
  @media all and (max-width: 1080px) {
    .destination-photos .photos {
      width: 900px;
      margin-left: 9%;
    }
    .destination-photos .photo img {
      width: 640px;
      height: auto;
    }
    .destination-photos .portrait img {
      width: 420px !important;
      height: auto;
    }
  }
  @media all and (max-width: 960px) {
    .destination-photos .photos {
      width: 780px;
      margin-left: 5%;
    }
    .destination-photos .photo img {
      width: 570px;
      height: auto;
    }
    .destination-photos .portrait img {
      width: 375px !important;
      height: auto;
    }
    .destination-photos .text {
      padding: 12px 9px;
      padding-right: 18px;
      font-size: 1.16em;
    }
  }
  @media all and (max-width: 840px) {
    .destination-photos .photos {
      width: 720px;
      margin-left: 6%;
    }
    .destination-photos .photo img {
      width: 500px;
      height: auto;
    }
    .destination-photos .portrait img {
      width: 300px !important;
      height: auto;
    }
    .destination-photos .text {
      padding: 12px 9px;
      padding-right: 18px;
      font-size: 1.12em;
    }
  }
  @media all and (max-width: 750px) {
    .destination-photos .photos {
      width: 100%;
      margin-left: 0;
    }
    .destination-photos .unit {
      display: block;
      text-align: center;
      margin: 0 auto;
    }
    .destination-photos .photo {
      width: 100%;
    }
    .destination-photos .text {
      width: 100%;
      margin-top: 1.2em;
      margin-bottom: 0.36em;
    }
    .destination-photos .photo img {
      width: 500px;
      height: auto;
    }
    .destination-photos .portrait img {
      width: 300px !important;
      height: auto;
    }
    .destination-photos .text {
      padding: 12px 9px;
      padding-right: 18px;
      font-size: 1.12em;
    }
    .destination-map .map-img {
      width: 340px !important;
      max-width: 90% !important;
    }
  }


  .destination-map {
    margin-top: 1em;
    padding-left: 2.8%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .destination-map .text {
    width: 255px;
    text-align: left;
    font-size: 1.25em;
    line-height: 1.23;
  }
  .destination-map .map-img {
    margin: 0.9em auto;
    width: 430px;
    max-width: 80%;
    height: auto;
  }
  .destination-summary {
    font-size: 1.05em;
  }
  .destination .destination-summary .unit {
    margin: 2.16em 0;
  }
  .destination-summary .unit .label {
    margin-bottom: 9px;
  }
  .destination .destination-summary .unit .value {
    margin-top: 14px;
    line-height: 1.27;
  }


  .destination-details {
    padding: 2em 0em;
    font-size: 2.05em;
  }
  .destination-details .unit {
    position: relative;
    font-family: fontstyled;
    padding: 7em 2em;
    width: 50%;
    float: left;
  }
  .destination-details .label {
    position: relative;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
  }
  .destination-details .value {
    /* font-weight: bold; */
    letter-spacing: 0.05em;
  }
  .destination-details .label .text {
    position: relative;
    z-index: 5;
  }
  .destination-details .label .line-image {
    height: 2.00em;
    width: auto;
    position: absolute;
    top: -0.2em;
    left: -0.5em;
    z-index: 4;
  }

  .destination-details .unit-1 {
    background-color: var(--bluegreenwhite);
  }
  .destination-details .unit-2 {
    background-color: var(--bluegreenlight);
  }
  .destination-details .unit-3 {
    background-color: var(--bluegreenmedium);
  }
  .destination-details .unit-4 {
    background-color: var(--bluegreen);
    background-color: var(--bluegreenwhite);
  }
  .destination-details .unit-5 {
    background-color: var(--bluegreendark);
  }
  .destination-details .unit-6 {
    background-color: var(--bluegreendark);
  }


  .destination-specifics .unit {
    font-family: fontbody;
    font-size: 1.4em;
    /* letter-spacing: 0.04em; */
  }
  .destination-specifics .unit .label {
    font-family: fontbody;
    font-size: 1em;
    margin-bottom: 2px;
  }
  .destination-specifics .unit .value {
    font-family: fontbody;
    font-size: 1.1em;
  }


  .destination-article .inner {
    padding: 0.5em 1em;
    padding-bottom: 2.5em;
    width: 750px;
    max-width: 95%;
  }
  .destination-article header {
    position: relative;
    margin-bottom: -0.36em;
    text-align: center;
  }
  .destination-article h2 {
    position: relative;
    font-size: 3.6em;
    font-family: fontbody;
    letter-spacing: 0.007em; 
    line-height: 1.1;
    margin-bottom: 0.7em;
    z-index: 4;
  }
  .destination-article h3 {
    font-size: 2.4em;
    font-family: fontheading;
    letter-spacing: -0.007em; 
    line-height: 1.1;
    margin-top: 1.2em;
    margin-bottom: 0.7em;
    color: var(--bluegreendark4);
  }
  .destination-article p {
    font-size: 1.25em;
    line-height: 1.43;
    letter-spacing: 0.01em;
    margin-top: 1em;
    color: var(--darkgray2);
  }
  .destination-article .line-image {
      position: absolute;
      height: 11.00em;
      width: auto;
      top: -1.2em;
      left: 6em;
      z-index: 3;
      opacity: 0.9;
  }

  @media all and (max-width: 1800px) {
    .destination-page-header .header-wording h1 {      
      font-size: 2.7em;
    }
  }
  @media all and (max-width: 1080px) {
    .destination-article h3 {
      font-size: 2.16em;
    }
  }
  @media all and (max-width: 780px) {
    .destination-article .line-image {
      font-size: 80%;
    }
    .destination-article h2 {
      font-size: 3.2em;
      margin-bottom: 0.5em;
    }
    .destination-article h3 {
      font-size: 1.96em;
    }
    .destination-article p {
      font-size: 1.17em;
      line-height: 1.43;
    }
    .destination .destination-summary .unit {
        margin: 0.84em 0;
    }
    .destination-page-header .header-wording h1 {
        margin-top: 0.6em;
    }
  }
  @media all and (max-width: 640px) {
    .destination-article .line-image {
      font-size: 70%;
    }
    .destination-article h2 {
      font-size: 3em;
      margin-bottom: 0.42em;
    }
    .destination-map .text {
      padding-left: 2%;
    }
    .destination-map .map-img {
      margin-left: -8%;
    }
  }
  @media all and (max-width: 570px) {
    .destination-article .line-image {
      font-size: 60%;
    }
    .destination-article h2 {
      font-size: 2.7em;
      margin-bottom: 0.36em;
    }
  }

  
  .destination-city-links {
    font-size: 1.15em;
    padding: 2.4em 2%;
    padding-bottom: 3.4em;
  }
  .dcl .heading {
    text-align: center;
    font-size: 2em;
    letter-spacing: 0.0em; 
    margin-bottom: 0.45em;
  }
  .dcl .heading h3 {
    letter-spacing: -0.01em; 
    color: var(--blueblack);
    line-height: 1.05;
  }
  .dcl .dots {
    align-items: center;
    justify-content: center; 
    margin-top: 17px;
  }
  .dcl .dots .dot {
    background-color: var(--blueblack);
  }
  .dcl .links { 
    width: 70%;
    margin: 1% 15%;
    padding: 1.5em 1.6em;
    text-align: center;
    border: 1px solid var(--blueblack);
  }
  .dcl .links-inner { 
  }
  .dcl .link {
    margin: 12px 12px;
    float: left;
  }
  .dcl .link a {
    display: block;
    padding: 14px 20px;
    padding-top: 13px;
    line-height: 1.2;
    min-width: 10.2em;
    text-align: center;
    background-color: var(--blueblack);
    color: var(--white); 
    font-size: 1.03em;
    font-family: fontheading;
    transition: var(--transitionfast);
  }
  .dcl .link a:hover {
    background-color: var(--blue3);
    color: var(--white); 
  }
  @media all and (max-width: 1500px) {
    .dcl .links { 
      width: 80%;
      margin: 1% 10%;
    }
  }
  @media all and (max-width: 1280px) {
    .dcl .links { 
      width: 90%;
      margin: 1% 5%;
    }
  }
  @media all and (max-width: 1080px) {
    .dcl .links { 
      width: 93%;
      margin: 1% 3.5%;
      font-size: 95%;
    }
    .dcl .heading {
      font-size: 1.8em;
    }
  }
  @media all and (max-width: 840px) {
    .dcl .links { 
      font-size: 84%;
      padding: 1.1em 1.12em;
    }
    .dcl .link {
      margin: 10px 10px;
    }
    .dcl .link a {
      padding: 12px 14px;
      padding-top: 11px;
      line-height: 1.24;
      min-width: 9em;
      font-size: 1em;
    }
    .dcl .heading h3 {
      font-size: 1.34em;
    }
  }

}




@media all and (min-width: 0px) {
  .country-maldives .jumbo-image {
    position: relative;
    height: 1400px;
    min-height: auto;
    max-height: 86vh;
    width: 100%;
    overflow: hidden;
    background: url('../../media/img/bkgd/maldives-01-ai.jpg');
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  .country-maldives .jumbo-image img {
    width: 100%; 
  }
  .country-maldives .jumbo-image .wordings {
    position: absolute;
    bottom: 1.4em;
    width: 100%;
    color: var(--white);
    font-size: 1.2vw;
    text-align: center;
  }
  
  .country-srilanka .jumbo-image {
    position: relative;
    height: 1400px;
    min-height: auto;
    max-height: 86vh;
    width: 100%;
    overflow: hidden;
    background: url('../../media/img/photos/srilanka/srilanka-01.jpg');
    background-size: 100% auto;
    background-repeat: no-repeat;
  } 


  .country-page .jumbo-image .title {
    font-size: 2em;
    margin-bottom: -0.42em;
    text-transform: uppercase;
  }
  .country-page .jumbo-image .title h1 {
    letter-spacing: 0.0em;
    /* text-shadow: var(--textshadow3); */
  }
  .country-maldives .jumbo-image .wordings {
    bottom: auto;
    top: 1.25em;
    left: 2.8em;
  }
  .country-srilanka .jumbo-image .wordings {
    top: auto;
    left: auto;
    bottom: 1.4em;
    text-align: center;
  }
  .country-srilanka .jumbo-image .wordings .title {
    width: 100%;
    text-align: center;
  }
  .country-srilanka .jumbo-image .wordings .subtitle {
    width: 100%;
    text-align: center;
  }


  .country-page .jumbo-image .subtitle h2 {
    font-size: 1.7em;
    /* text-transform: uppercase; */
    letter-spacing: 0.005em;
    margin-left: 9px;
  } 

  .country-page .onpage-links { 
    position: absolute;
    bottom: 6vh;
    left: 3.4em;
    color: var(--white);
  }
  .country-srilanka .onpage-links { 
    position: absolute;
    bottom: auto;
    top: 2.25vh;
    left: 2.5em;
    color: var(--white);
  }
  .country-page .onpage-link {
    float: left;
    margin: 1em 1em;
    border: 1px solid var(--nicesilver);
    opacity: 0.95;
    /* text-transform: uppercase; */
    background: var(--gradient2);
    transition: var(--transitionfast);
  }
  .country-page .onpage-link a {
    min-width: 7.7em;
    padding: 10px 14px;
    display: inline-block;
    letter-spacing: 0.045em;
    font-size: 1.08em;
  }
  .country-page .onpage-link:hover {
    color: var(--darkgray);
  }
  

  .country-page-section .title {
    font-size: 1.96em; 
    margin-bottom: 2.1em;
  }
  .country-page-section .title h2 {
    text-align: center;
    font-family: fontheading;
    color: var(--black); 
  }


  @media all and (max-width: 1500px) {
    .country-srilanka .jumbo-image {
      position: relative;
      height: 800px;
      min-height: auto;
      max-height: 86vh;
      width: 100%;
      overflow: hidden;
      background: url('../../media/img/photos/srilanka/srilanka-01.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    } 
    .country-maldives .jumbo-image {
      position: relative;
      height: 800px;
      min-height: auto;
      max-height: 86vh;
      width: 100%;
      overflow: hidden;
      background: url('../../media/img/bkgd/maldives-01-ai.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    } 
  }
  @media all and (max-width: 900px) {
    .country-srilanka .jumbo-image {
      position: relative;
      height: 600px;
      min-height: auto;
      max-height: 86vh;
      width: 100%;
      overflow: hidden;
      background: url('../../media/img/photos/srilanka/srilanka-01.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    } 
    .country-maldives .jumbo-image {
      position: relative;
      height: 600px;
      min-height: auto;
      max-height: 86vh;
      width: 100%;
      overflow: hidden;
      background: url('../../media/img/bkgd/maldives-01-ai.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    } 
    .country-page .jumbo-image .wordings {
      font-size: 0.64em;
    }
    .country-page .onpage-link {
      margin: 0.7em 0.7em;
    }
    .country-maldives .onpage-links {
      left: 1.27em;
      bottom: 3.6vh;
    }
    .country-page .onpage-link a {
      font-size: 87%;
      padding: 10px 11px;
      padding-top: 7px;
      min-width: 7.2em;
    }
  }
  @media all and (max-width: 600px) {
    .country-srilanka .jumbo-image {
      position: relative;
      height: 480px;
      min-height: auto;
      max-height: 86vh;
      width: 100%;
      overflow: hidden;
      background: url('../../media/img/photos/srilanka/srilanka-01.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    } 
    .country-maldives .jumbo-image {
      position: relative;
      height: 480px;
      min-height: auto;
      max-height: 86vh;
      width: 100%;
      overflow: hidden;
      background: url('../../media/img/bkgd/maldives-01-ai.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    } 
  }


  .place-details .inner {
    margin: 0.2em 0em;
    padding: 0.3em 0em;
  }
  .place-details .unit {
    width: 33.33%;
    float: left;
    padding: 1.86em 3em;
    padding-bottom: 2.1em;
    margin: 3em 0;
    font-size: 1.02em;
    color: var(--darkgray);
    line-height: 1.27;
    letter-spacing: 0.012em;
  }
  .place-details .unit-b {
    width: 23.00%;
    float: left;
    padding: 1.2em 1.4em;
    padding-left: 1em;
    padding-bottom: 1.32em;
    margin: 2em 1%;
    font-size: 1.02em;
    color: var(--darkgray);
    line-height: 1.27;
    letter-spacing: 0.012em;
  }
  .place-details .unit .label {
    font-size: 1.05em;
  }
  .place-details .unit .value {
    max-width: 22.5em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 9px;
    letter-spacing: 0.027em;
    font-family: fontlight;
  }
  .place-details .unit .value {
    max-width: 20em;
    margin-top: 4px;
    font-size: 96%;
  }
  
  .place-details .unit-1 {
    border-right: 1px solid var(--tan);
  }
  .place-details .unit-2 {
    border-right: 1px solid var(--tan);
  }
  .place-details .unit-4 {
    border-top: 1px solid var(--tan);
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
  }
  .place-details .unit-5 {
    border-right: 1px solid var(--tan);
  }
  .place-details .unit-6 {
    border-right: 1px solid var(--tan);
    margin-bottom: 1.5em;
  }
  .place-details .unit-7 {
    border-right: 1px solid var(--tan);
  }
  .place-details .icons {
    margin-top: 8px;
  }
  .place-details .icons img {
    height: 3.5em;
    width: auto;
    margin: 5px 5px;
  }
  .place-details .dots {
    margin-top: 5px;
    margin-bottom: 7px;
  }
  .place-details .dot {
    width: 10px;
    height: 10px;
    margin: 2px 2px;
    background-color: var(--bluegreendark);
  }
  .dot1 {
    background-color: var(--bluegreendark2);
  }
  .dot2 {
    background-color: var(--bluegreendark);
  }
  .dot3 {
    background-color: var(--bluegreen4);
  }


  .country-maldives .country-map {
    text-align: center;
  }
  .country-maldives .country-map .map-img {
    height: 900px;
    width: auto;
  }
  .country-srilanka .country-map .map-img {
    height: 680px;
    width: auto;
  }

@media all and (max-width: 2000px) {
  .country-maldives .country-map .map-img {
    width: 24%;
    height: auto;
  }
}
  @media all and (max-width: 1600px) {
    .country-page-section .units {
      width: 90%;
    }
  }
  @media all and (max-width: 1440px) {
    .country-page-section .units {
      width: 95%;
    }
    .country-maldives .country-map .map-img {
      width: 28%;
      height: auto;
    }
  }
  @media all and (max-width: 1200px) {
    .country-page-section .units {
      width: 100%;
    }
  }
  @media all and (max-width: 1150px) {
    .place-details .unit {
      width: 50.00%;
      padding: 1.86em 0.84em;
      padding-bottom: 2.1em;
    }
    .place-details .unit-b {
      width: 48.00%;
    }
    .place-details .unit-2 {
      border-right: 0px solid var(--tan);
    }
    .place-details .unit-6 {
      border-right: 0px solid var(--tan);
    }
    .place-details .unit-3 {
      padding-top: 0.84em;
      padding-bottom: 1em;
      margin: 0.3em 0;
      margin-bottom: 0.1em;
    }
    .destination .destination-summary .unit {
      margin-bottom: 0.5em;
    }
    .destination .destination-summary .unit-3 {
      margin-top: 0.5em;
      margin-bottom: 0.84em;
    }
    .destination-article h2 {
      font-size: 3em;
      margin-bottom: 0.54em;
    }
    .destination-article .line-image {
      height: 8.4em;
      left: 9em;
      top: -0.6em;
    }
    .destination .article .paragraphs {
      max-width: 590px;
      font-size: 97%;
      margin-right: auto;
      margin-left: auto;
    }
    .country-page-section .title h2 {
      font-size: 1.6em;
    }
  .country-srilanka .country-map .map-img {
    height: 570px;
    width: auto;
  }
  .country-maldives .country-map .map-img {
    width: 40%;
    height: auto;
  }
  }
  @media all and (max-width: 900px) {
    .country-maldives .country-map .map-img {
      width: 50%;
      height: auto;
    }
  }
  @media all and (max-width: 680px) {
    .place-details .unit {
      width: 70.00%;
      padding-top: 1.6em;
      padding-bottom: 0.84em;
      margin: 0.5em 0;
      margin-bottom: 0.5em;
      border-right: 0px solid var(--tan);
      border-top: 1px solid var(--tan);
    }
    .place-details .unit-1 {
      margin-top: 1.4em;
      border-top: 0px solid var(--tan);
    }
    .country-page-section .title h2 {
      font-size: 1.4em;
    }
    .place-details .icons img {
      height: 2.8em;
    }
    .country-srilanka .country-map .map-img {
      height: 480px;
      width: auto;
    }
    .country-maldives .country-map .map-img {
      width: 60%;
      height: auto;
    }
  }
  @media all and (max-width: 450px) {
    .place-details .unit {
      width: 84.00%;
    }
    .place-details .icons img {
      height: 2.5em;
    }
    .country-srilanka .country-map .map-img {
      max-width: 7dvb;
      height: auto;
    }
    .country-maldives .country-map .map-img {
      width: 64%;
      height: auto;
    }
  }



  .place-gallery {
    padding-bottom: 4.5em;
  }
  .place-gallery .title h2 {
  }
  .place-gallery .title-image {
    position: fixed; 
    z-index: -1;
    top: 10vh;
    right: 0vh;
    text-align: center;
    margin-bottom: 12px;
  }
  .place-gallery .title-image img {
    height: 42em;
    width: auto;
  }
  .country-maldives .place-gallery .title-image img {
    position: relative;
    height: 30vh;
    width: auto;
    top: 20vh;
    right: -5vh;
    width: auto;
    opacity: 0.14 !important;
  }
  .country-srilanka .place-gallery .title-image img {
    position: relative;
    height: 23vh;
    width: auto;
    top: 34vh;
    right: -20vh;
    margin-bottom: -5em;
    opacity: 0.05 !important;
    filter: brightness(1.5) contrast(1.5);
  }

  .place-gallery .photos {
    font-size: 1.27em;
  }
  .place-gallery .photos .unit .subunit {
    width: 21.6em;
    padding: 0em 0em;
  }
  .place-gallery .photos .unit .photo img {
    display: block;
    max-width: 100%;
    width: 21.6em;
    height: auto;
    /* float: right; */
  }
  .place-gallery .photos .unit .text {
    /* float: left; */
    /* text-align: left; */
    padding: 1em 1.15em;
    line-height: 1.23;
    letter-spacing: 0.003em;
    color: var(--rosegolddark); 
  }


  @media all and (max-width: 1800px) {
    .country-maldives .jumbo-image .wordings {
    }
    .place-gallery .photos .unit .subunit {
      width: 20em;
    }
    .place-gallery .photos .unit .photo img {
      width: 20em;
      height: auto;
    }
  }

  @media all and (max-width: 1500px) {
    .place-gallery .photos .unit .subunit {
      width: 19em;
    }
    .place-gallery .photos .unit .photo img {
      width: 19em;
      height: auto;
    }
  }
  
  @media all and (max-width: 1200px) {
    .place-gallery .photos .unit .subunit {
      width: 17em;
    }
    .place-gallery .photos .unit .photo img {
      width: 17em;
      height: auto;
    }
  }
  
  @media all and (max-width: 900px) {
    .place-gallery .photos .unit .subunit {
      width: 15em;
    }
    .place-gallery .photos .unit .photo img {
      width: 15em;
      height: auto;
    }
  }
  
  @media all and (max-width: 720px) {
    .place-gallery .photos .unit .subunit {
      width: 12.7em;
    }
    .place-gallery .photos .unit .photo img {
      width: 12.7em;
      height: auto;
    }
  }
  
  @media all and (max-width: 600px) {
    .place-gallery .photos .unit .subunit {
      width: 11em;
      font-size: 90%;
    }
    .place-gallery .photos .unit .text {
      font-size: 80%;
      line-height: 1.17;
    }
    .place-gallery .photos .unit .photo img {
      width: 11em;
      height: auto;
    }
    .place-gallery .photos .unit .subunit {
    }
  }

  @media all and (max-width: 480px) {
    .place-gallery .photos .unit .subunit {
      font-size: 80%;
    }
  }
  @media all and (max-width: 400px) {
    .place-gallery .photos .unit .subunit {
      font-size: 70%;
    }
  }
}



/* ds - destination-selector */
@media all and (min-width: 0px) { 
  .destination-selector {
    padding: 2em 0;
    padding-top: 3.6em;
  }
  .destination-selector .units {
    padding: 1em 1em;
  }
  .ds .unit {
    position: relative;
    width: 270px; 
    height: auto;
    margin: 30px 30px; 
    padding-top: 17px; 
    padding-bottom: 7px;   
    border: 2px solid var(--black);

    background: linear-gradient(177deg, 
    rgba(255, 255, 255, 0.99) 0%, 
    rgba(255, 255, 255, 0.99) 90%), 
    url('');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
  }
  .ds .heading {
    text-align: center;
  }
  .ds .heading h2 {
    font-size: 3.6em;
    letter-spacing: -0.02em;
  }
  .ds .subtext {
    text-align: center;
    font-size: 1.4em;
    line-height: 1.24;
    margin: 0 auto;
    margin-top: 1.5em;
    max-width: 25.5em;
  }
  .ds .unit .photo {
    position: relative;
    width: 270px; 
    height: 320px; 
    overflow: hidden; 
    /* padding: 20px 20px; */
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
  }
  .ds .unit .photo img {
    /* width: 100%; */
    height: auto;
    width: 270px; 
    height: 320px; 
  }
  .ds .unit .name {
    width: 70%;
    /* position: absolute; */
    /* top: 14px; */
    border-radius: 1.86em;

    padding: 5px 3px;
    padding-bottom: 7px;
    font-size: 1.24em;
    font-family: fontstyled;
    letter-spacing: 0.025em;
    color: var(--black);
    border: 2px solid var(--black);
    /* margin-bottom: -7px; */
    margin-bottom: -20px;
    z-index: 5;
    
    /* background: linear-gradient(270deg, 
    rgba(0, 187, 255, 0.84) 0%, 
    rgba(13, 176, 154, 0.84) 100%), 
    url('');
    background-size: cover;
    background-attachment: fixed;
    background-position: center; */
    
    background-color: var(--white);
  }
  .ds .unit .activities {
    width: 99%;
    border-radius: 1.86em;

    padding: 6px 6px;
    padding-bottom: 7px;
    font-size: 1.12em;
    font-family: fontstyled;
    line-height: 1.2;
    letter-spacing: 0.032em;
    color: var(--black);
    /* border: 2px solid var(--black); */
    margin-top: 5px;
  }
  .ds .unit .name em {
    display: inline;
  }
  .ds .unit .name .icon {
    display: inline; 
    float: right;  
    margin-left: 14px;  
    margin-top: -1px;
    height: 1.23em; 
    width: auto; 
    /* filter: invert(1);  */
  } 
  .ds .photo .link {
    position: absolute;
    bottom: 2.1em;
  }
  .ds .photo .link a {
    position: absolute;
    display: block;
    font-family: fontstyled;
    line-height: 1.08;
    opacity: 1;
    border-radius: 1.4em;
    font-size: 1.24em;
    width: 6.8em;
    padding: 4px 3px;
    padding-bottom: 5px;
    background-color: var(--white);
    border: 2px solid var(--black);
    transition: var(--transitionveryfast);
    
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .ds .photo .link a:hover {
    background-color: var(--greenyellow);
    
  }

  @media all and (max-width: 1500px) {
    .ds .heading h2 {
      font-size: 3em;
      line-height: 1.12;
    }
    .ds .subtext {
        font-size: 1.34em;
    }
  }
  @media all and (max-width: 1200px) {
    .ds .unit {
      width: 230px; 
      height: auto;
      margin: 22px 23px; 
      padding-top: 15px; 
      padding-bottom: 6px;   
      font-size: 90%;
    }
    .ds .unit .photo {
      width: 230px; 
      height: 270px;
    }
    .ds .unit .photo img {
      width: 230px; 
      height: 270px;
    }
    .ds .unit .name {
      padding-bottom: 8px;
      padding-left: 4px;
    }
    .ds .unit .activities {
      margin-top: 3px;
    }
  }
  @media all and (max-width: 900px) {
    .ds .heading h2 {
      font-size: 2.5em;
    }
    .ds .subtext {
        font-size: 1.32em;
    }
    .ds .heading h2 {
      font-size: 2.3em;
    }
    .ds .subtext {
        font-size: 1.25em;
    }
    .ds .unit {
      width: 230px; 
      height: auto;
      margin: 22px 23px; 
      padding-top: 15px; 
      padding-bottom: 6px;   
      font-size: 90%;
    }
    .ds .unit .photo {
      width: 230px; 
      height: 270px;
    }
    .ds .unit .photo img {
      width: 230px; 
      height: 270px;
    }
    .ds .unit .name {
      padding-bottom: 8px;
      padding-left: 4px;
    }
    .ds .unit .activities {
      margin-top: 3px;
    }
  }
  @media all and (max-width: 720px) {
    .destination-selector {
      padding-top: 3em;
    }
    .ds .unit {
      width: 200px; 
      height: auto;
      margin: 19px 19px; 
      padding-top: 14px; 
      padding-bottom: 6px;   
      font-size: 86%;
    }
    .ds .unit .photo {
      width: 200px; 
      height: 225px;
    }
    .ds .unit .photo img {
      width: 200px; 
      height: 236px;
    }
    .dcl .link {
        margin: 8px 8px;
    }
    .dcl .link a {
        padding: 9px 9px;
        padding-top: 9px;
        line-height: 1.2;
        min-width: 8.4em;
        font-size: 0.93em;
        border-radius: 0.24em;
    }
    .dcl .heading h3 {
      line-height: 0.96;
    }
    .ds .unit .name {
      width: 82%;
    }
    .ds .unit .name .icon {
        margin-left: 8px;
        margin-top: -1px;
        height: 1em;
    }
  }
  @media all and (max-width: 570px) {
    .destination-selector {
      padding-top: 2.55em;
    }
    .ds .unit {
      width: 200px; 
      height: auto;
      margin: 19px 19px; 
      padding-top: 14px; 
      padding-bottom: 6px;   
      font-size: 86%;
    }
    .ds .unit .photo {
      width: 200px; 
      height: 225px;
    }
    .ds .unit .photo img {
      width: 200px; 
      height: 236px;
    }
    .dcl .link {
        margin: 8px 8px;
    }
    .dcl .link a {
        padding: 9px 9px;
        padding-top: 9px;
        line-height: 1.2;
        min-width: 8.4em;
        font-size: 0.93em;
        border-radius: 0.24em;
    }
    .dcl .heading h3 {
      line-height: 0.96;
    }
  }
  @media all and (max-width: 480px) {
    .destination-selector {
      padding-top: 2.55em;
    }
    .ds .unit {
      width: 180px; 
      height: auto;
      margin: 16px 19px; 
      padding-top: 12px; 
      padding-bottom: 5px;   
      font-size: 84%;
    }
    .ds .unit .photo {
      width: 180px; 
      height: 190px;
    }
    .ds .unit .photo img {
      width: 180px; 
      height: 216px;
    }
    .dcl .link {
        margin: 8px 8px;
    }
    .dcl .link a {
        padding: 9px 9px;
        padding-top: 9px;
        line-height: 1.2;
        min-width: 8.4em;
        font-size: 0.93em;
        border-radius: 0.24em;
    }
    .dcl .heading h3 {
      line-height: 0.96;
    }
  }
}




/* Country Selector */ 
@media all and (min-width: 0px) {
  .country-selector {
    padding-top: 2.1em;
    padding-bottom: 5.5em;
    
    background: var(--offblack); 
    background: linear-gradient(180deg, 
    rgba(30, 32, 35, 0.84) 00%,  
    rgba(26, 27, 25, 0.93) 80%,
    rgba(63, 61, 55, 0.97) 100%), 
    url('../../media/img/bkgd/srilanka002.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
  }
  .country-selector .unit {
    margin: 0 auto;
    display: block;
  }
  .country-selector h2 {
    position: relative;
    font-family: fontheading;
    font-family: fontlight;
    font-size: 5.1em;
    letter-spacing: 0.004em;
    color: var(--offwhite);
    z-index: 2;
  }
  .country-selector .heading {
    position: relative;
    text-align: center;
  }
  .country-selector .heading .line-image {
    position: absolute;
    top: -1.7em;
    margin: 0 auto;
    height: 11em;
    width: auto;
    z-index: 1;
  }
  
  .country-selector .flags {
    position: relative;
    top: 0.8em;
    text-align: center;
  }
  .country-selector .flag {
    position: relative;
    float: left;
  }
  .country-selector .flags img {
    height: 180px;
    width: auto;
    margin: 1px -5px;
    filter: brightness(1.02);
    transition: var(--transitionfast);
  }
  .country-selector .flags img:hover {
    filter: brightness(1.15) saturate(1.2);
  }

  .country-selector .unit { 
    position: relative;
    width: 50%; 
    float: left;
  }
  .country-selector .country-images {
    margin-top: 1.1em;
    padding: 0 2%;
  }
  .country-selector .subunit {
    position: relative;
    overflow: hidden;
    clear: both;
    width: 14vw; 
    height: 18vw; 
    margin: 2.64em auto; 
    text-align: center;
  } 
  .country-selector .country-images .subunit img {
    width: 14vw; 
    height: 18vw; 
    /* margin-left: -5%; */
    transition: var(--transition1);
  }
  .country-selector .country-images img:hover {
    filter: grayscale(1) contrast(1.1) brightness(1.05);
  }
  .country-selector .unit-heading {
    text-align: center;
    margin: 0.5em auto;
    margin-bottom: 0.9em;
  }
  .country-selector .unit-heading .link {
    position: relative;
    display: inline-block;
    z-index: 3;
    min-width: 6.75em;
    font-family: fontheading;
    font-size: 1.65em;
    color: var(--white);
    border-radius: 1.2em;
    border: 2px solid var(--white); 
  }
  .country-selector .unit-heading .link a {
    letter-spacing: 0.008em;
    padding: 12px 21px; 
    padding-top: 8px; 
    line-height: 1.12;
  }
  .country-selector .unit-heading .link:hover {
    background-color: var(--white);
    color: var(--blueblack); 
  }


  .country-selector .heading .words1 {
    /* color: #0b7b9a; */
  } 
  .country-selector .heading .words2 {
    /* color: #0b7b9a; */
  } 
  .country-selector .heading .words3 {
    /* color: #0b6d9a; */
  } 
  .country-selector .heading .words4 {
    /* color: #0b559a; */
  } 
  .country-selector .heading .words5 {
    /* color: #0b559a; */
  } 
  .country-selector .heading .words6 {
    /* color: #374887; */
  } 


  @media all and (max-width: 1600px) {    
  .country-selector .subunit {
    width: 300px;
    height: 390px;
  }
  .country-selector .country-images .subunit img {
      width: 300px;
      height: 390px;
  }
  }
  @media all and (max-width: 1400px) {
    .country-selector h2 {
        font-size: 3.75em;
        line-height: 1.12;
    }    
    .country-selector .flags img {
      height: 140px;
  }
  .country-selector .unit-heading .link {
      font-size: 1.5em;
  }
  .country-selector .subunit {
    width: 300px;
    height: 390px;
  }
  .country-selector .country-images .subunit img {
      width: 300px;
      height: 390px;
  }
  .country-selector .subunit {
    width: 250px;
    height: 325px;
  }
  .country-selector .country-images .subunit img {
    width: 250px;
    height: 325px;
  }
  }
  @media all and (max-width: 900px) {
    .country-selector h2 {
        font-size: 3.2em;
        margin-top: 14px;
    }    
    .country-selector .flags img {
      height: 100px;
  }
  .country-selector .unit-heading .link {
      font-size: 1.25em;
  }
  .country-selector .subunit {
    width: 200px;
    height: 264px;
  }
  .country-selector .country-images .subunit img {
    width: 200px;
    height: 264px;
  }
  }
  @media all and (max-width: 720px) {
    .country-selector h2 {
        font-size: 2.5em;
        margin-top: 14px;
    }    
    .country-selector .flags img {
      height: 80px;
  }
  .country-selector .unit-heading .link {
      font-size: 1.2em;
  }
  .country-selector .subunit {
    width: 150px;
    height: 195px;
  }
  .country-selector .country-images .subunit img {
    width: 150px;
    height: 195px;
  }
  }
  
  @media all and (max-width: 570px) {
    .country-selector {
      padding-bottom: 2.5em;
    }
    .country-selector h2 {
        font-size: 2em;
        margin-top: 14px;
    }    
    .country-selector .flags img {
      height: 70px;
  }
  .country-selector .unit-heading .link {
      font-size: 1.1em;
  }
  .country-selector .subunit {
    width: 150px;
    height: 195px;
  }
  .country-selector .country-images .subunit img {
    width: 150px;
    height: 195px;
  }
  }
}






/*
==============================
====================
ABOUT AND TEAM CSS 
====================
==============================
*/ 


/* About Us and Contact Us Page CSS */
@media all and (min-width: 0px) {
  .page-contactus {
    background: linear-gradient(90deg, 
    rgba(240, 240, 254, 0.0) 0%, 
    rgba(230, 230, 245, 0.0) 100%), 
    url('../../media/img/bkgd/maldives-01-ai.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
  }
  .page-contactus .page-inner {
    z-index: 1;
  }
  .page-contactus .page-title {
    color: var(--white);
    text-transform: uppercase;
    margin: 0.28em 0;
    margin-bottom: 0.28em;
  }
  .image-fixed {
    position: fixed;
  }
  .page-contactus .image-fixed {
    right: 0;
    top: 20vh;
    z-index: 2;
  }
  .page-contactus .image-fixed img {
    width: 100%;
  }
  .page-contactus .contact-details {
    font-size: 1.2em;
    text-align: center;
  }
  .page-contactus .contact-details .label {
    font-size: 1.06em;
    font-family: fontstyled;
    font-family: fontheading;
    letter-spacing: -0.007em;
  }
  .page-contactus .dot {
    margin: 11px 3px;
    margin-bottom: 16px;  
    width: 12px;
    height: 12px;
  }
  .page-contactus .contact-details .unit {
    position: relative;
    z-index: 3;
    padding: 1.32em 1.24em;
    padding-top: 1.12em;
    margin: 2.1em 0;
    background-color: var(--white);
    border-radius: 1.16em;
  }
  .page-contactus .contact-details .unit .subunit {
    width: 33.33%;
    padding: 2px 12px;
  }
  .page-contactus .contact-details .unit .icon img {
    height: 3em;
    width: auto;
  }
  .page-contactus .contact-details .unit-social-media {
    font-size: 90%;
    padding-top: 1.15em;
    padding-bottom: 1em;
  }
  .page-contactus .contact-details .unit-social-media .dot {
    margin: 8px 3px;
    margin-bottom: 14px;  
  }

  .page-contactus .contact-form {
    position: relative;
    z-index: 3;
  }
  
  @media all and (max-width: 900px) {
    .page-contactus {
      font-size: 95%;
    }
    .page-contactus .contact-details .unit .icon img {
        height: 2.55em;
        width: auto;
    }
  }
  @media all and (max-width: 600px) {
    .page-contactus {
      font-size: 87%;
    }
    .page-contactus .contact-details .unit {
        padding: 1.02em 0.84em;
        padding-top: 0.9em;
        margin: 1.86em 0;
    }
    .page-contactus .dot {
      width: 10px;
      height: 10px;
      margin-right: 3px;
      margin-left: 2px;
      margin-bottom: 12px;
    }
    .page-contactus .contact-details .unit .icon img {
        height: 2.3em;
        width: auto;
    }
    .form {
      max-width: 100%;
    }
    .form-inner {
        padding: 1.2em 2.4em;
        padding-bottom: 1.86em;
    }
    .page-contactus .space-f {
      display: none;
    }
  }
  @media all and (max-width: 480px) {
    .page-contactus .page-title {
      font-size: 3em;
      padding-top: 0.36em;
      margin-bottom: 0.25em;
    }
    .page-contactus {
      font-size: 84%;
    }
  }


  .page-aboutus .about-section {
    padding: 3.2em 1.5em;
    padding-top: 3.2em;
    min-height: 400px;
  }
  .page-aboutus .section1 {
    padding-bottom: 5.25em;
    background: linear-gradient(100deg, 
    rgba(24, 50, 69, 0.6) 0%, 
    rgba(24, 50, 69, 0.8) 25%, 
    rgba(24, 50, 69, 0.95) 50%, 
    rgba(24, 50, 69, 0.8) 75%, 
    rgba(30, 55, 52, 0.6) 100%), 
    url('../../media/img/bkgd/activity01.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
  }
  .page-aboutus .section2 {
    padding-top: 5em;
    padding-bottom: 5.1em;
    background: linear-gradient(100deg, 
    rgba(24, 50, 69, 0.7) 0%, 
    rgba(24, 50, 69, 0.86) 25%, 
    rgba(24, 50, 69, 0.98) 50%, 
    rgba(24, 50, 69, 0.86) 75%, 
    rgba(30, 55, 52, 0.7) 100%), 
    url('../../media/img/bkgd/srilanka002.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
  }
  .page-aboutus header {
    text-align: center;
  }
  .page-aboutus section h3 {
    text-align: center;
    color: var(--white);
    font-size: 3.75em;
    font-family: fontstyled;
    letter-spacing: 0.016em;
    margin-top: 1.25em;
    margin-bottom: 0.1em;
  }
  .page-aboutus .section2 h3 {
    margin-top: 0.2em;
  }
  .section-white {
    width: 100%;
    padding: 1.08em 0.5em;
    padding-bottom: 0.84em;
    margin: 0em 0;
    text-align: center;
    background-color: var(--white);
  }
  .page-aboutus .section-white img {
    height: 600px;
    width: auto;
  }
  .page-aboutus section p {
    font-size: 1.32em;
    line-height: 1.45;
    letter-spacing: 0.0036em;
    color: var(--white);
    font-family: fontbody;
    width: 24em;
    margin: 1.27em auto;
    padding-left: 7px;
  }
  .page-aboutus .about-section .dots {
    margin-bottom: 1.4em;
    justify-content: center;
  }
  .page-aboutus .about-section .dot {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    background-color: var(--greenyellow) !important;
  }

  @media all and (max-width: 900px) {
    .page-aboutus section p {
      font-size: 1.25em;
      line-height: 1.43;
      max-width: 100%;
    }
    .page-aboutus section h3 {
      font-size: 3.2em;
    }
    .page-aboutus .section-white img {
        height: 250px;
        width: auto;
    }
    .page-aboutus .space-div {
      display: none;
    }
  }
}




/* Policy Page CSS */
@media all and (min-width: 0px) {
  .page-policy {
    padding: 3.6em 0;
    padding-top: 2em;
    background: #c0edea;
    background: linear-gradient(170deg, 
    rgb(208, 238, 235) 0%, 
    rgb(221, 233, 238) 100%);
  }
  .policy-article {
    width: 1080px;
    max-width: 100%;
    margin: 0em auto;
    padding: 1.4em 7em;
    padding-left: 7.3em;
    /* background-color: var(--offwhite); */
  }
  .policy-article .article-section {
    margin: 2.1em 0;
  }
  .policy-article p {
    font-size: 1.23em;
    line-height: 1.4;
    margin-bottom: 1.2em;
    text-align: justify;
    color: var(--darkgray2);
  }
  .policy-article li a {
    font-size: 1.23em;
    line-height: 1.32;
    margin: 7px 1px;
    padding: 5px 12px;
    padding-bottom: 8px;
    border-radius: 0.42em;
    background-color: var(--white);
    transition: var(--transitionfast);
  }
  .policy-article li a:hover {
    background-color: var(--greenyellow3);
  }
  .policy-article h2 {
    font-family: fontstyled;
    font-family: fontheading;
    font-size: 1.86em;
    margin-top: 1.4em;
    margin-bottom: 0.68em; 
    letter-spacing: 0.002em;
    color: var(--bluegreendark4);
  }
  .policy-article header .subtitle {
    margin-top: 0.5em;
    margin-bottom: -0.2em;
  }
  .policy-article header .dots {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20px; 
    margin-bottom: 24px;
  }
  .policy-article h1 {
    color: var(--bluegreendark4);
  }
  .policy-article .section-1 {
    margin-top: 1em;
  }
  .policy-article .section-2 {
    margin-top: 1.2em;
  }
  .policy .breadcrumbs {
    margin-bottom: 0.3em;
    font-size: 1.05em;
  }
  .policy .breadcrumbs .unit {
    display: inline-block;
    font-family: fontlight;
    color: var(--white);
    background-color: var(--bluegreendark4);
    padding: 8px 17px;
    margin-right: 7px;
    border-radius: 1.4em;
    min-width: 6.8em;
    text-align: center;
    letter-spacing: 0.042em;
  }
}





/* Guide Page CSS */
@media all and (min-width: 0px) {
  .page-guide {
    font-size: 1.24em;

    background-color: var(--tanpink2);
  }
  .page-guide .page-inner {
    padding: 0 3.5%;
  }
  .faq {
    padding: 1em 0;
  }
  .faq .heading { 
    width: 80%;
    margin: 1em auto;
    margin-bottom: -3px;
    font-size: 1.5em;
    text-align: center;
  }
  .faq .unit {
    width: 700px;
    max-width: 100%;
    margin: 2em auto;
    font-size: 1em;
    line-height: 1.28;
    padding: 23px 30px; 
    padding-bottom: 30px;
    border-radius: 0.45em;
    color: var(--darkgray2);
    background-color: var(--white);
    box-shadow: var(--boxshadow7);
  }
  .faq .question {
    font-size: 1.4em;
    font-family: fontheading;
    letter-spacing: -0.005em;
    color: var(--rosegolddark); 
    margin-bottom: 21px; 
  }
  .faq .answer {
    color: #6d5b64; 
    letter-spacing: 0.005em;
  }


  @media all and (max-width: 960px) {
    .faq .unit {
      width: 64%;
      font-size: 0.97em;
    }
  }
  @media all and (max-width: 720px) {
    .faq .unit {
      width: 80%;
      margin: 2em auto;
      font-size: 0.95em;
    }
  }
  @media all and (max-width: 570px) {
    .faq .unit {
      width: 90%;
      font-size: 0.93em;
    }
  }
}


.no-padding-top {
    padding-top: 0em;
}