/* =========================
   BASE
   ========================= */

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
}

/* =========================
   GLOBAL CONTAINER
   ========================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;   /* LEFT SPACE FIX */
    padding-right: 20px;  /* RIGHT SPACE */
    box-sizing: border-box;
}

/* =========================
   HEADER
   ========================= */

header {
    background: #0f2a44;
    padding: 12px 0;
}

.logo {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
}

/* =========================
   NAVIGATION (DESKTOP)
   ========================= */

.desktop-nav {
    display: block;
}

.desktop-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;               /* IMPORTANT: no left offset */
    display: flex;
    flex-wrap: wrap;
}

.desktop-nav ul li {
    position: relative;
}

.desktop-nav ul li a {
    color: #fff;
    padding: 10px 14px;
    display: block;
    text-decoration: none;
    white-space: nowrap;
}

.desktop-nav ul li:hover {
    background: #163b5c;
}

/* =========================
   2ND LEVEL DROPDOWN
   ========================= */

.desktop-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f2a44;
    min-width: 220px;
    z-index: 999;
}

.desktop-nav ul li:hover > ul {
    display: block;
}

.desktop-nav ul li ul li {
    width: 100%;
}

/* =========================
   3RD LEVEL DROPDOWN
   ========================= */

.desktop-nav ul li ul li ul {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #0f2a44;
    min-width: 220px;
}

.desktop-nav ul li ul li:hover > ul {
    display: block;
}

/* =========================
   CONTENT
   ========================= */

.content {
    padding: 30px 0;
}

.content h1,
.content h2,
.content h3 {
    margin-top: 0;
}

/* =========================
   FOOTER
   ========================= */

footer {
    background: #0f2a44;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* =========================
   WHATSAPP FLOAT BUTTON
   ========================= */

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp img {
    width: 55px;
}

/* MOBILE MENU BEHAVIOR */

@media (hover: none) {

.desktop-nav ul li ul {
    display: none;
}

.desktop-nav ul li.open > ul {
    display: block;
}

}


/* =========================
   UPDATED HEADER LAYOUT
   ========================= */

body{
    background:#DFD0AF;
}

.header-row{
    display:flex;
    align-items:center;
    margin:0;
    padding:0;
}

.header-container{
    width:100%;
    padding-left:0;
    padding-right:25px;
    box-sizing:border-box;
}

.logo{
    display:flex;
    align-items:center;
    margin:0;
    padding:0;
    flex-shrink:0;
}

.logo img{
    height:140px;
    width:auto;
}

.logo span{
    color:#fff;
}

.desktop-nav{
    flex:1;
    margin-left:15px;
}

.content h1,
.content h2,
.content h3{
    color:#0F2A44;
}

.content b{
    color:#555555;
}

/* CTA SECTION */

.teal-section{
    background:#0F766E;
    color:#fff;
    padding:50px 40px;
    border-radius:10px;
    margin-top:40px;
}

.teal-section h2,
.teal-section h3{color:#fff;}

.teal-section p{color:#f5f5f5;}

.teal-section a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
}

.teal-section a:hover{text-decoration:underline;}

.page-cta{text-align:left;}

.cta-contact{
    margin-top:20px;
    font-size:20px;
}

.cta-separator{
    margin:0 15px;
    color:#fff;
}
