/* ======= Base ======= */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: local('Lato Light'), local('Lato-Light'), url(https://fonts.gstatic.com/s/lato/v11/KT3KS9Aol4WfR6Vas8kNcg.woff) format('woff');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url(https://fonts.gstatic.com/s/lato/v11/9k-RPmcnxYEPm8CNFsH2gg.woff) format('woff');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: local('Lato Bold'), local('Lato-Bold'), url(https://fonts.gstatic.com/s/lato/v11/wkfQbvfT_02e2IWO3yYueQ.woff) format('woff');
}

@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 300;
  src: local('Lato Light Italic'), local('Lato-LightItalic'), url(https://fonts.gstatic.com/s/lato/v11/2HG_tEPiQ4Z6795cGfdivD8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}

@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  src: local('Lato Italic'), local('Lato-Italic'), url(https://fonts.gstatic.com/s/lato/v11/oUan5VrEkpzIazlUe5ieaA.woff) format('woff');
}

@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 700;
  src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url(https://fonts.gstatic.com/s/lato/v11/HkF_qI1x_noxlxhrhMQYED8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}

:root {
  --primary: #033D2F;
  --secondary: #094D3C;
  --highlight: #FCC419;
}

.btn-primary {
  background: var(--primary);
}

.btn-primary:hover {
  background: var(--secondary);
}

.btn-primary.active,
.btn-primary:active,
.open>.dropdown-toggle.btn-primary {
  background-color: var(--secondary);
  border-color: var(--primary);
}

.btn-primary.focus,
.btn-primary:focus {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.dropdown-toggle.btn-primary.focus,
.open>.dropdown-toggle.btn-primary:focus,
.open>.dropdown-toggle.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--primary);
}

body {
  background: #fff;
  color: #444;
  font-family: 'Lato', arial, sans-serif;
}

a {
  color: var(--primary);
  transition: all 0.4s ease-in-out;
}

a:focus,
a:hover {
  color: var(--secondary);
  text-decoration: none;
}

form .form-control:focus {
  border-color: var(--secondary);
}

.default-primary-color {
  background: var(--primary);
}

.light-primary-color {
  background: var(--secondary);
}

.text-primary-color {
  color: #FFFFFF;
}

.accent-color {
  background: var(--secondary);
}

.primary-text-color {
  color: #212121;
}

.secondary-text-color {
  color: #727272;
}

.divider-color {
  border-color: #B6B6B6;
}

.btn {
  transition: all 0.4s ease-in-out;
}

.justify {
  hyphens: auto;
  text-align: justify;
}

.btn .fa {
  color: #fff;
  margin-right: 5px;
}

.form-control {
  box-shadow: none;
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: none;
}

blockquote {
  font-size: 14px;
}

.text-highlight {
  color: #0288d1;
}

.row-end {
  margin-right: 0;
  padding-right: 0;
}

.offset-header {
  padding-top: 102px;
}

/* ======= Header ======= */
.header {
  background: #f8f9fa;
  z-index: 9999;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

.header h1.logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 0;
  text-align: center;
  padding: 20px 20px 0px;
}

.header h1.logo a {
  color: #444;
  transition: none;
}

.header .logo-title {
  margin: 13px 5px 0;
  display: block;
}

.header .main-nav button {
  background: #0288d1;
  color: #fff !important;
  border-radius: 4px;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.header .main-nav button:focus {
  outline: none;
}

.header .main-nav button .icon-bar {
  background-color: #fff;
}

.header h1.logo,
.header .diary-logo {
  transition: all 0.4s ease-in-out;
}

.header .diary-logo {
  height: 80px;
}

.header.affix h1.logo {
  font-size: 20px;
}

.header.affix .diary-logo {
  height: 50px;
}

/* ======= Footer ======= */
.footer {
  background-color: #444;
}

.footer .text {
  color: #b3b3b3;
  padding: 15px 0;
}

.footer .maker {
  background-color: #fff;
  display: inline-block;
  padding: 7.5px;
  position: relative;
}

.footer .maker img {
  height: 35px;
  margin-left: 24px;
}

/* ======= Featured Section ======= */
.featured {
  background: var(--primary);
  border-bottom: 1px solid var(--secondary);
  padding-top: 15px;
  padding-bottom: 0px;
  position: relative;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.featured .panel-heading {
  font-size: 18px;
}

/* ======= Features Section ======= */
.features {
  padding: 30px 0;
}


@media (max-width: 992px) {
  .featured {
    height: unset;
  }
}

/* Extra small devices (phones, less than 768px) */
@media (max-width: 767px) {
  .featured .overview .note .left-arrow {
    left: 0;
  }

  .featured .overview .note .right-arrow {
    right: 0;
  }

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

  .featured .overview .download-area {
    margin: 0 auto;
  }

  .footer {
    text-align: center;
  }

  .footer .copyright {
    width: 100%;
  }

  .footer .by-text {
    margin-right: 10px;
  }

  .footer .maker {
    border-radius: 4px;
  }

  .footer .maker-container .pull-left {
    float: none !important;
  }

  .footer .maker-container {
    float: none !important;
    margin-bottom: 10px;
  }

  .footer .maker img {
    margin-left: 0;
  }

  #top .pull-right.diary-logo {
    display: none;
  }
}

@media (min-width: 768px) {
  .footer .maker:before {
    border-bottom: 25px solid rgba(0, 0, 0, 0);
    border-left: 24px solid #444444;
    border-top: 25px solid rgba(0, 0, 0, 0);
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
  }

  .footer .maker:after {
    border-bottom: 25px solid rgba(0, 0, 0, 0);
    border-left: 24px solid #ffffff;
    border-top: 25px solid rgba(0, 0, 0, 0);
    content: "";
    height: 0;
    position: absolute;
    right: -24px;
    top: 0;
    width: 0;
  }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {}

@media (max-width: 992px) {
  .featured-right {
    position: unset;
  }

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

  .featured .download-pdf {
    margin: 30px auto 20px;
    top: 0;
    width: 300px;
  }

  .header h1.logo {
    font-size: 20px;
  }

  .features .item {
    margin-bottom: 10px;
  }
}

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