/* Natari - Main CSS Stylesheet */

/* ----------------------------------
    BASIC HTML & CSS SETUP
---------------------------------- */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

html,
body {
    background-color: #fff;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    scroll-behavior: smooth;
    height: 100vh;
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

img, video, embed { max-width: 100%; }

section {
    font-size: 100%;
    width: 100%;
}

.row {
    max-width: 1366px;
    margin: 0 auto;
    line-height: 30px;
}

.col { margin: 0; }

/* Hide Elements */
.desktop-hide { display: none; }
@media screen and (max-width: 950px) {
    .mobile-hide { display: none; }
    .desktop-hide { display: block; }
}


/* ----------------------------------
    REUSABLE CONTENT
---------------------------------- */
/* ----- Headings ----- */

h1, h2, h3, h4 { font-weight: 600; }

h1 { font-size: 200%; }
h2 { font-size: 175%; }
h3 { font-size: 150%; }
h4 { font-size: 125%; }

p {
    font-size: 100%;
    line-height: 25px;
    margin-bottom: 20px;
}

p:last-child {
    font-size: 100%;
    line-height: 25px;
    margin-bottom: 0px;
}

/* ----- Standard Site Links ----- */
.standard-link {
    display: inline-block;
    background-color: transparent;
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
    color: #333;
    padding-bottom: 1px;
    border-bottom: 1px solid #ccc;
    transition: border-bottom-color 0.3s;
}

.standard-link:hover { border-bottom-color: #1b1b1b; }

a:link,
a:visited {
    color: inherit;
    text-decoration: none;
}

/* ----- Site Buttons ----- */
.standard-button {
    padding: 9px 20px;
    border: 1px solid #1b1b1b;
    border-radius: 100px;
    color: #1b1b1b;
    font-size: 14px;
    transition: 0.2s;
    font-family: 'Roboto', sans-serif;
    background: #fff;
    margin-top: 15px;
    overflow: hidden;
    outline: none;
}

.standard-button:hover {
    border-color: maroon;
    color: #fff;
    background: maroon;
}

.standard-button span:after {
    content: "";
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    background-image: url(/css/css_images/chevron-right-normal.svg);
}

.standard-button:hover span:after {
    content: "";
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    background-image: url(/css/css_images/chevron-right-white-bold.svg);
}


.standard-button.goBack span:before {
    content: "";
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    background-image: url(/css/css_images/chevron-left-bold.svg);
}

.standard-button.goBack:hover span:before {
    content: "";
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    background-image: url(/css/css_images/chevron-left-white-bold.svg);
}

.standard-button.goBack span:after { display: none; }

.buttons a { margin-right: 10px; }

.buttons a:last-child { margin-right: 0; }

/* ----- Splitter ----- */

span.splitter {
    margin-left: 10px;
    margin-right: 10px;
}

/* -----------------------------
       Global Attributes
----------------------------- */
/* ---- Site Header & Navigation Bar ----- */
section.global_standard-page-header {

}

section.global_standard-page-header  div.g_standard-page-header-content { 
    background-color: white; 
    padding-top: 20px;
    padding-bottom: 20px;
} 

section.global_standard-page-header  div.g_standard-page-header-content .site-logo { width: 5%;} 

.topnav {
    overflow: hidden;
    background-color: #333;
  }
  
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .topnav a.active {
    background-color: #04AA6D;
    color: white;
  }
  
  .topnav .icon {
    display: none;
  }

/* -----------------------------
       Homepage Attributes
----------------------------- */
/* ----- Page Header ----- */
section.homepage_page-header {
    padding-top: 75px;
    padding-bottom: 25px;
}

section.homepage_page-header div.hp_page-header-content { text-align: center;} 

section.homepage_page-header div.hp_page-header-content h1 {
    color: orange;
    font-size: 50px;
    font-weight: 700;
    line-height: 30px;
}

section.homepage_page-header div.hp_page-header-content h4 {
    color: maroon;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

section.homepage_page-header div.hp_page-header-content .site-logo img { 
    transition: 0.3s; 
    width: 30%;
}
section.homepage_page-header div.hp_page-header-content .site-logo img:hover { transform: scale(1.1); }

/* ----- Welcome Message ----- */
section.homepage_welcome-message { padding-top: 25px; }

section.homepage_welcome-message div.hp_welcome-message-content {
    text-align: center;
    line-height: 25px;
}

/* ----- Customer Notification ----- */
section.homepage_customer-notification {
    padding-top: 25px;
    padding-bottom: 25px;
}

section.homepage_customer-notification div.hp_customer-notification-content {
    text-align: center;
    line-height: 25px;
    background-color: #f5bb00;
    padding: 25px;
}


/* -----------------------------
         Media Queries
----------------------------- */

/* Big Tablets to 1200px (widths smaller than 1140px row) */
@media screen and (max-width: 1200px) {
}


/* Small Tablet to Big Tablet: 768px to 1023px */
@media screen and (max-width: 1023px) {
    body { font-size: 18px; }

}

/* Small Phones to Small Tablets: from 481px to 767px */
@media screen and (max-width: 767px) {
    body { font-size: 14px; }

    section .row {
        padding-left: 20px;
        padding-right: 20px;
    }
      
      @media screen and (max-width: 600px) {
        .topnav a:not(:first-child) {display: none;}
        .topnav a.icon {
          float: right;
          display: block;
        }
      }
      
      @media screen and (max-width: 600px) {
        .topnav.responsive {position: relative;}
        .topnav.responsive .icon {
          position: absolute;
          right: 0;
          top: 0;
        }
        .topnav.responsive a {
          float: none;
          display: block;
          text-align: left;
        }
      }
}


/* Small Phones: from 0 to 480px */
@media screen and (max-width: 480px) {

}