/* Main style file. Override general styles here. Specific module or page type
styles, often have their on css files, which are called only if necessary. */

/*
* =============================
* === Base ===
* =============================
*/

html {
  position: relative;
  min-height: 100%;
  /*  Usually default font-size of the browser is 16px. Setting font-size: 100% will make 1rem = 16px. But it will make calculations a little difficult. A better way is to set font-size: 62.5%. Because 62.5% of 16px is 10px. Which makes 1rem = 10px. */
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 100%;
  line-height: 1.4;
  font-weight: 400;
  font-size: 16px;
  /* font-size: calc(1.2rem + (1.6 - 1.2) * ((100vw - 32rem) / (120 - 32))); */
  font-size: calc(1.2rem + 0.4 * ((100vw - 32rem) / 88));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.4;
}

/* $font-size-base is equal to the body font size, in this case 16px */

/* $font-size-base * 2.5 */

h1,
.h1 {
  font-size: 3.2em;
  font-size: calc(3rem + (3.4 - 3) * ((100vw - 32rem) / 88));
  margin: 0.4em 0;
}

/* $font-size-base * 2 */

h2,
.h2 {
  font-size: 2.6em;
  font-size: calc(2.475rem + (3 - 2.475) * ((100vw - 32rem) / 88));
  margin: 0.6em 0;
}

/* $font-size-base * 1.75 */

h3,
.h3 {
  font-size: 2.275em;
  font-size: calc(2.15rem + (2.475 - 2.15) * ((100vw - 32rem) / 88));
  margin: 0.7em 0;
}

/* $font-size-base * 1.5 */

h4,
.h4 {
  font-size: 1.95em;
  font-size: calc(1.85rem + (2.15 - 1.85) * ((100vw - 300px) / 88));
  margin: 0.8em 0;
}

/* $font-size-base * 1.25 */

h5,
.h5 {
  font-size: 1.625em;
  font-size: calc(1.5rem + (1.85 - 1.5) * ((100vw - 32rem) / 88));
  margin: 0.8em 0;
}

/* $font-size-base */

h6,
.h6 {
  font-size: 1.3em;
  font-size: calc(1.2rem + (1.5 - 1.2) * ((100vw - 32rem) / 88));
  margin: 0.8em 0;
}

p {
  margin: 1em 0;
}

em {
  font-weight: 400;
}

code {
  background: rgba(0, 0, 0, .05);
}

.dropdown-toggle:focus,
a:focus {
  outline-style: dashed;
  outline-color: rgb(235, 221, 2);
  outline-offset: 1px;
  outline-width: 4px;
}

a[target="_blank"]:after {
  content: '\f35d';
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  padding-left: 5px;
}

/* wysiwyg override styles for the editor */

.wysiwyg table {
  width: 100%;
  margin-bottom: 1.6rem;
  background-color: transparent;
}

.wysiwyg table td,
.wysiwyg table th {
  padding: 15px 0;
  vertical-align: top;
  /* border-top: 1px solid #dee2e6; */
}

.wysiwyg table {
  width: 100% !important;
  height: auto !important;
}

@media (min-width: 768px) { 
  .wysiwyg table td,
  .wysiwyg table th {
    padding: 15px;
  }
  
}
@media (max-width: 768px) { 
  .wysiwyg table tr,
  .wysiwyg table td {
    width: 100% !important;
    height: auto !important;
    display: block;
    
  }
}

/* Bootstrap tweaks */

.sticky-top {
  position: absolute;
}

.navbar-brand {
  font-size: 2rem;
}

.navbar {
  padding: 0 1.6rem;
  font-size: 16px;
  border-bottom: 3px solid rgb(157, 20, 45);
  background-color: #000;
}

.navbar-item {
  list-style: none;
}

.navbar .dropdown-menu {
  margin: 0;
}

.dropdown-menu {
  font-size: inherit;
  min-width: 16rem;
  padding: .8rem 0;
  margin: .2rem 0 0;
  border-radius: .4rem;
}

.dropdown-item {
  padding: .4rem 2.4rem;
}

.navbar-nav .navbar-item {
  
}

.navbar-nav .nav-link {
  padding: .96rem 1.6rem;
}

.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show>.nav-link {
  background-color: #9d142d;
}

@media (min-width: 992px) and (max-width:1200px) {
  .navbar-nav {
    font-size: 13px;
  }
}

@media (min-width: 992px) {
  .navbar-brand {
    display: none;
  }
  
  .navbar-expand-lg .navbar-nav {
    align-items: center;
  }
  
  .nav-item {
    display: block;
    text-align: center;
    margin: 0px 8px;
  }

}

.navbar .dropdown-menu {
  background-color: rgba(216, 216, 216, 0.8);
  color: #fff;
  border-radius: 0;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  color: #fff;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.6);
}

.btn {
  text-transform: uppercase;
}

.btn-primary {
  background-color: #feb716;
  border-color: #feb716;
  color: #fff;
}

.btn-primary.focus, 
.btn-primary.active, 
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover{
  -webkit-box-shadow: 0 0 0 0.2rem rgba(254, 183, 22, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(254, 183, 22, 0.5);
  background-color: #feb716;
  border-color: #feb716;
}

.btn-secondary {
  background-color: #3399cc;
  border-color: #3399cc;
  color: #fff;
}

.btn-secondary.focus, 
.btn-secondary.active, 
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(51, 153, 204, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(51, 153, 204, 0.5);
  background-color: #3399cc;
  border-color: #3399cc;
}



.btn-lg {
  padding: 1.25rem 5rem;
  font-size: 2.25rem;
}

.page-link {
  background-color: transparent;
  border-color: transparent;
  color: #feb716;
}

.page-item .page-link.focus, 
.page-item .page-link.active, 
.page-item .page-link:active,
.page-item .page-link:focus,
.page-item .page-link:hover{
  -webkit-box-shadow: 0 0 0 0.2rem rgba(254, 183, 22, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(254, 183, 22, 0.5);
  background-color: #feb716;
  border-color: #feb716;
  color: #fff;
}

.page-item.active .page-link {
  background-color: transparent;
  border-color: #feb716;
  color: #feb716;
}

.page-item.active .page-link.focus, 
.page-item.active .page-link.active, 
.page-item.active .page-link:active,
.page-item.active .page-link:focus,
.page-item.active .page-link:hover{
  -webkit-box-shadow: 0 0 0 0.2rem rgba(254, 183, 22, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(254, 183, 22, 0.5);
  background-color: #feb716;
  border-color: #feb716;
  color: #fff;
}

.page-item.disabled .page-link {
  background-color: transparent;
  border-color: transparent;
  opacity: 0.7;
}

.pagination {
  
}

/**** Side Nav Menu Customization****/

.side-nav {
  margin-bottom: 50px;
}

.side-nav>h3:first-child {
  margin-top: 0;
}

.side-nav .nav .nav {
  margin: 5px 0 10px 15px;
}

.side-nav .nav li a {
  padding: 2px;
  padding-left: 13px;
  color: #767676;
}

.side-nav .nav li.active>a {
  color: #337ab7 !important;
  padding-left: 2px;
  font-weight: 700;
}

.side-nav .nav .nav .nav {
  /* font-size: 12px !important; */
}

.side-nav .nav li a:hover {
  color: #333 !important;
  background: none !important;
}

.side-nav .nav .nav {
  position: relative;
}

.side-nav .nav .nav:before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0;
  bottom: 0;
  border-left: dashed 1px #555;
}

/*
* =============================
* === Blog ===
* =============================
*/

.posts .post {
  margin-bottom: 40px;
}

/*
  * =============================
  * === Breadcrumb ===
  * =============================
  */

.breadcrumb {
  margin-top: 1.6rem;
  padding: 1.2rem 0;
  margin-bottom: 1.6rem;
  border-radius: .4rem;
  background-color: transparent;
  text-transform: uppercase;
  font-family: 'Titillium Web', sans-serif;
}

.breadcrumb li {
  color: #50514f;
  font-size: 16px;
  font-weight: 300;
}

.breadcrumb li+li::before {
  content: "/";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  padding: 0 5px;
}

.breadcrumb a {
  color: #50514f;
}

/*
* =============================
* === Hero ===
* =============================
*/

.hero {
  height: 100%;
  height: 100vh;
  max-height: 800px;
  position: relative;
  overflow: hidden;
}

.hero h3 {
  font-size: 18px;
}

.landing .hero .overlay {
  height: 70%; /* 83.5vw */
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 65%;
  background-image: url(https://akii-songheesnation.imgix.net/images/landing-overlay.png);
  background-position: bottom right;
  position: absolute;
  z-index: 5;
  bottom: 0;
  border: 0;
  
  
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   
  -webkit-box-flex: 1;
      -ms-flex: 1 1 62.5vw;
          flex: 1 1 auto;
          
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
          
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 576px) {
  .landing .hero .overlay {
    background-size: auto 85%;
    
  }
}

@media (min-width: 768px) {
  .landing .hero .overlay {
    background-size: auto 100%;
    
  }
}

.hero .logo {
  max-width: 100%;
  height: auto;
}

/*
* =============================
* === Util ===
* =============================
*/

.intro-text {
 
  color: #50514f;
}

@media (min-width: 768px) {
  .intro-text {
     font-size: 40px;
  }
}

.content {
  margin-bottom: 5rem;
  color: #50514f;
}

.no-js {
  position: absolute;
  top: 2.5%;
  left: 2.5%;
  right: 2.5%;
  width: 95%;
  padding: 15px;
  background-color: red;
  color: #eee;
  z-index: 500;
  text-align: center;
}

.save_button {
  position: fixed;
  top: 100px;
  left: 25px;
  z-index: 50;
}

.-pre-line:before {
  content: '';
  
  -ms-flex: 0 0 33.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
  
  height: 7px;
  background: #3399cc;
  margin: auto;

  margin-left: 58.333333%;
  margin-bottom: 50px;
  margin-top: 50px;
}

.-pre-line-right:before {
  content: '';
  
  -ms-flex: 0 0 33.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
  
  height: 7px;
  background: #3399cc;
  margin: auto;

  margin-right: 58.333333%;
  margin-bottom: 50px;
  margin-top: 50px;
}

.-lower-line:after {
  content: '';
  width: 200px;
  height: 7px;
  background: #feb716;
  margin: auto;
  display: block;
  margin-top: 50px;
  margin-bottom: 50px;
}

.-uppercase {
  text-transform: uppercase;
}

.-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 50px;
  font-weight: 600;
}

.-line:after {
  content: '';
  max-width: 200px;
  height: 7px;
  background: #feb716;
  margin: auto;
  display: inline-block;
  margin-left: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.-line:before {
  content: '';
  max-width: 200px;
  height: 7px;
  background: #feb716;
  margin: auto;
  display: inline-block;
  margin-right: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

div.-line:before {
  margin-right: 0;
}

div.-line:after {
  margin-left: 0;
}


.-color-primary {
  color: #9d142d;
}

.-color-secondary {
  color: #3399cc;
}

.hero {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  
  display: -webkit-box;
  
  display: -ms-flexbox;
  
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  color: #fff;
  
  position: relative;
  padding: 50px 0;
}

.hero:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background-color: rgba(0,0,0,0.46);
}

.landing .hero:after {
  display: none;
}

.landing .hero {
  background-position: center bottom;
}

.hero > div {
  position: relative;
  z-index: 10;
}

.section {
  
  display: -webkit-box;
  
  display: -ms-flexbox;
  
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  
  position: relative;
  padding: 100px 0;
}

.section.-with-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}

.section.-with-bg:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

.-no-overlay:before {
  display: none !important;
}


.section .container-fluid,
.section .container {
  position: relative;
  z-index: 5;
}

.section.bg-light:before {
  display: none;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 50px;
  }
  
  .section h2 {
    font-size: 40px;
  }
  
  .section h3 {
    font-size: 30px;
  }
  
  .section h4 {
    font-size: 21px;
  }
}

.cta-box {
  position: relative;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
    height: 100%;
}

.cta-box a {
  color: #fff;
}

.cta-box--content {
  position: relative;
  z-index: 5;
  background-color: #9d142d;
  padding: 15px;
}

.cta-box--content h3 {
  margin-top: 0;
  text-transform: uppercase;
}

.cta-box .cta-box--image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.cta-box .cta-box--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.cta-box.-over {
  display: block;
  height: auto;
}

.cta-box.-over h4 {
  color: #fff;
}

.cta-box.-over .cta-box--content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: left;
  font-size: 21px;
  
  background-color: transparent;
  background: rgb(0,0,0);
  background: -webkit-linear-gradient(bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  background: -moz-linear-gradient(bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  background: -o-linear-gradient(bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.cta-box.-over a {
  text-transform: uppercase;
}

.cta-box.-over .cta-box--image {
  position: relative;
}

.cta-box--image img {
  width: 100%;
  height: auto;
}

.-divider-top {
  position: relative;
  background-color: #E9E9E9 !important;
}

.-divider-top:before {
  content: '';
  position: absolute;
  top: -80px;
  width: 100%;
  height: 160px;
  background-color: transparent;
  background-image: url('https://akii-songheesnation.imgix.net/images/divider-white.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  display: block !important;
  z-index: 2;
}

.-divider-bottom:after {
  content: '';
  position: absolute;
  bottom: -80px;
  width: 100%;
  height: 160px;
  background-color: transparent;
  background-image: url('https://akii-songheesnation.imgix.net/images/divider-white.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  display: block !important;
  z-index: 2;
}

.intro-img {
  width: 100%;
  height: auto;
}

.row-full {
  width: 100vw;
  height: auto;
  position: relative;
  margin-left: -50vw;
  left: 50%;
}

.box-link {
  padding: 25px;
  background-color: #9d142d;
  color: #fff;
  font-size: 25px;
  text-align: center;
  
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  justify-items: center;
  align-items: center;
  min-height: 200px;
}

.box-link:focus,
.box-link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #000;
  
}


.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  margin-top: 1.4em;
  margin-bottom: 1em;
}

.embed-responsive.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.embed-responsive iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*
* =============================
* === Responsive ===
* =============================
*/

.dropdown:hover>.dropdown-menu,
.dropdown:focus>.dropdown-menu {
  display: block;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.bd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ft {
  background-image: url('https://akii-songheesnation.imgix.net/images/footer-bg.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  margin-top: -30px;
  position: relative;
  z-index: 5;
  text-align: center;
}

@media (min-width: 768px) {
  .ft {
    text-align: left;
  }
}

.ft .logo {
  width: 100%;
  height: auto;
}

.ft .top {
  padding: 75px 0;
}

.ft .top a {
  color: #000;
}

.ft .bottom {
  background-color: #000;
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
}

@media (min-width: 768px) {
  .ft .bottom p {
    margin: 0;
  }
}

.ft .bottom a {
  color: #fff;
}

/* 
* Extra small devices (portrait phones, less than 576px) 
* No media query since this is the default in Bootstrap
*/

/* Small devices (landscape phones, 576px and up) */

@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */

@media (min-width: 992px) {}

/* Extra large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {}

/*!--------------------------------------------------------------------
no-js
-----------------------------------------------------------------------*/

.no-js {
  position: absolute;
  top: 2.5%;
  left: 2.5%;
  right: 2.5%;
  width: 95%;
  padding: 15px;
  background-color: #000;
  color: #fff;
  border: 5px solid #AF151E;
  z-index: 1500;
  text-align: center;
}

.noscript-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1400;
  background-color: rgba(0, 0, 0, 0.7);
}

/*!--------------------------------------------------------------------
STYLES "Outdated Browser"
Version:    1.1.2 - 2015
author:     Burocratik
website:    http://www.burocratik.com
* @preserve
-----------------------------------------------------------------------*/

#outdated {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  text-align: center;
  font-weight: 600px;
  text-transform: uppercase;
  z-index: 1500;
  background-color: #f25648;
  color: #ffffff;
}

* html #outdated {
  position: absolute;
}

#outdated h6 {
  font-size: 25px;
  line-height: 28.8px;
  margin: 30px 0 10px;
}

#outdated p {
  font-size: 16px;
  line-height: 19.2px;
  margin: 0;
}

#outdated #btnUpdateBrowser {
  font-size: 16px;
  line-height: 19.2px;
  display: block;
  position: relative;
  padding: 10px 20px;
  margin: 30px auto 0;
  width: 230px;
  /*need for IE*/
  color: #ffffff;
  text-decoration: none;
  border: 2px solid #ffffff;
  cursor: pointer;
  background-color: #ffffff;
}

#outdated #btnUpdateBrowser:hover {
  color: #f25648;
  background-color: #ffffff;
}

#outdated .last {
  position: absolute;
  top: 10px;
  right: 25px;
  width: 20px;
  height: 20px;
}

#outdated .last[dir='rtl'] {
  right: auto !important;
  left: 25px !important;
}

#outdated #btnCloseUpdateBrowser {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #ffffff;
  font-size: 36px;
  line-height: 36px;
}
