@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter18pt-Regular.woff2') format('woff2'),
       url('../fonts/Inter18pt-Regular.woff') format('woff'),
       url('../fonts/Inter18pt-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter18pt-Italic.woff2') format('woff2'),
       url('../fonts/Inter18pt-Italic.woff') format('woff'),
       url('../fonts/Inter18pt-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter18pt-Bold.woff2') format('woff2'),
       url('../fonts/Inter18pt-Bold.woff') format('woff'),
       url('../fonts/Inter18pt-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter18pt-BoldItalic.woff2') format('woff2'),
       url('../fonts/Inter18pt-BoldItalic.woff') format('woff'),
       url('../fonts/Inter18pt-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
/******************************************
  Icons
*******************************************/
@font-face {
  font-family: 'wf-icons';
  src:  url('../fonts/wf-icons.eot');
  src:  url('../fonts/wf-icons.eot#iefix') format('embedded-opentype'),
        url('../fonts/wf-icons.ttf') format('truetype'),
        url('../fonts/wf-icons.woff') format('woff'),
        url('../fonts/wf-icons.svg#wf-icons') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'wf-icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-magnifying-glass::before {
  content: "\e900";
}
.icon-arrow-up::before {
  content: "\e90a";
}
.icon-arrow-up-right::before {
  content: "\e90b";
}
.icon-arrow-right::before {
  content: "\e902";
}
.icon-arrow-down-right::before {
  content: "\e90c";
}
.icon-arrow-down::before {
  content: "\e90d";
}
.icon-arrow-down-left::before {
  content: "\e90e";
}
.icon-arrow-left::before {
  content: "\e901";
}
.icon-arrow-up-left::before {
  content: "\e90f";
}
.icon-checkmark::before {
  content: "\e903";
}
.icon-xmark::before {
  content: "\e904";
}
.icon-xmark-large::before {
  content: "\e905";
}
.icon-angle-up::before {
  content: "\e906";
}
.icon-angle-down::before {
  content: "\e907";
}
.icon-angle-left::before {
  content: "\e908";
}
.icon-angle-right::before {
  content: "\e909";
}
.icon-arrows-rotate:before {
  content: "\e910";
}
/******************************************
  Base
*******************************************/
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #fff;
  color: #333;
  font-family: "Inter",sans-serif;
}
* {
	scrollbar-width: thin;
	scrollbar-color: #cdcdcd #f0f0f0;
}
::-webkit-scrollbar {
	width: 0.5rem;
}
::-webkit-scrollbar-track {
	background-color: #f0f0f0;
}
::-webkit-scrollbar-thumb {
	background-color: #cdcdcd;
}
::-webkit-scrollbar-button {
  display: none;
}
::-moz-selection,
::selection {
	background-color: #113f7b;
	color: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter",sans-serif;
  line-height: 1.25;
  color: #1a1a1a;
  margin-top: 0;
  font-weight: bold;
  text-wrap-style: balance;
  margin-bottom: 1.5rem;
}
p:not(:last-child) {
  margin-bottom: 1.25rem;
}
p small {
  font-size: 0.875rem;
}
.container {
  width: 1170px;
  max-width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
.smaller-gap {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.row:not(:last-of-type) {
  margin-bottom: 3rem;
}
.col {
  flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.smaller-gap .col,
.smaller-gap .col-auto {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  column-gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  background-color: #113F7B;
  min-height: 3rem;
  min-width: 10rem;
  border-radius: 0.25rem;
  box-sizing: border-box;
  transition: all ease .25s;
  border: 1px solid transparent;
  cursor: pointer;
}
.primary-button:focus-visible {
  background-color: #eaeaea;
  color: #1a1a1a;
}
.site-logo {
  display: inline-block;
}
.back-to-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #062856;
  border: 1px solid transparent;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: normal;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 0;
  cursor: pointer;
  transform: translateX(calc(100% + 2rem));
  transition: transform ease .5s, opacity ease .5s, background-color ease .2s, color ease .2s;
  opacity: 0;
}
.back-to-top-btn.show {
  transform: translateX(0);
  opacity: 1;
}
.back-to-top-btn:focus-visible {
  background-color: #fff;
  border-color: #062856;
  color: #062856;
}
/******************************************
  Helper Class
*******************************************/
.container-width-fix {
  width: 964px;
}
.page-section {
  padding-top: 6rem;
  padding-bottom: 6rem; 
}
.justify-content-center {
  justify-content: center;
}
.align-items-center {
  align-items: center;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.no-scroll {
  overflow: hidden;
}
.google-ads {
  margin: 0 auto;
}
.ads-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #e9eaee;
  color: #B5BAD3;
}
.ads-728x90 {
  width: 728px;
  height: 90px;
}
.ads-468x60 {
  width: 468px;
  height: 60px;
}
.ads-300x250 {
  width: 300px;
  height: 250px;
}
.small {
  font-size: 0.875rem;
}
.h-100 {
  height: 100%;
}
.pt-0 {
  padding-top: 0 !important;
}
.grey-bg {
  background-color: #F8F8F8;
}
.text-balance {
  text-wrap-style: balance;
}
/******************************************
  Header
*******************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 89;
}
header::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255,0.9) 0%, rgba(255, 255, 255,0) 100%);;
  transition: background ease-in-out .5s;
  pointer-events: none;
  user-select: none;
  z-index: -1;
  opacity: 0;
  transition: all ease-in-out .5s;
}
header.sticky::before {
  opacity: 1;
}
header .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
header .menu-wrapper {
  display: flex;
  justify-content: flex-end;
}
.menu-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  column-gap: 0.5rem;
  border-radius: 0;
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a1a;
}
.menu-btn .burger {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  row-gap: 0.5rem;
  width: 2rem;
  height: 2rem;
}
.menu-btn .burger .line {
  width: 100%;
  max-width: 100%;
  height: 3px;
  background-color: #113F7B;
  transition: ease-in-out .2s;
}
.menu-btn .burger .line1 {
  max-width: 50%;
}
.menu-btn .burger .line3 {
  max-width: 75%;
}
.menu-btn:focus-visible .burger .line {
  max-width: 100%;
}
#menu-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  max-height: 100dvh;
  top: 0;
  left: 0;
  background-color: #113F7B;
  z-index: 98;
  transition: linear .5s;
  opacity: 0;
  pointer-events: none;
}
#menu-overlay.show {
  opacity: 1;
  pointer-events: fill;
}
#main-menu-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  max-height: 100dvh;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: ease-in-out .3s;
  box-sizing: border-box;
  overflow: auto;
  z-index: 99;
}
#main-menu-wrapper .close-btn {
  position: absolute;
  top: 3rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(255,255,255,.1);
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: normal;
  padding: 0;
  cursor: pointer;
  transition: all ease .2s;
}
#main-menu-wrapper .close-btn:focus-visible {
  background-color: #fff;
  color: #062856;
}
#main-menu-wrapper.show {
  transform: translateY(0%);
}
#main-menu-wrapper .nav-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 1170px;
  max-width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
#main-menu-wrapper .nav-container .google-ads {
  margin-bottom: 3rem;
}
#main-menu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 0;
  padding-right: 0;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
  width: 600px;
  max-width: 100%;
  list-style-type: none;
  text-align: center;
}
#main-menu li:not(:last-child) {
  margin-bottom: 1rem;
}
#main-menu li a {
  display: inline-block;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  position: relative;
}
#main-menu li a::before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  max-width: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all ease-in-out .25s;
}
#main-menu li a:focus-visible::before {
  max-width: 100%;
}
#main-menu li a.current::before {
  background-color: #F67A20;
  max-width: 100%;
}
/******************************************
  Footer
*******************************************/
footer {
  background-color: #113F7B;
  color: #D2D7F0;
}
footer .container {
  padding-top: 5rem;
  padding-bottom: 4rem;
}
footer .row:not(:last-of-type) {
  margin-bottom: 2rem;
}
footer .site-logo {
  margin-bottom: 1.5rem;
}
footer .row-1 {
  justify-content: center;
}
footer .row-1 .col {
  max-width: 464px;
}
footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;
  row-gap: 0.75rem;
}
footer ul li {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #D2D7F0;
}
footer ul li:not(:first-child)::before {
  content: '';
  display: inline-block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #F67A20;
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translate(-50%,-50%);
}
footer ul li a {
  display: block;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
  color: #fff;
}
footer p a {
  color: #fff;
  text-decoration: none;
}
footer ul li a:focus-visible,
footer p a:focus-visible {
  text-decoration: underline;
}
/******************************************
  HomePage
*******************************************/
#intro-section {
  background: url('../images/bg_image_01.webp');
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 100vh;
  max-height: 100dvh;
}
#intro-section .col {
  max-width: 800px;
}
#intro-section h1 {
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: normal;
  background-color: rgba(17,63,123,0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 1.5rem;
  margin-bottom: 1rem;
}
#intro-section h2 {
  font-size: 3rem;
  color: #113F7B;
}
#intro-section p {
  text-wrap-style: balance;
  margin-bottom: 2rem;
}
#intro-section form {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
#intro-section form input[type="text"] {
  background-color: rgba(255,255,255,0.5);
  border: 2px solid #fff;
  padding: 0.25rem 1rem;
  min-height: 3rem;
  width: 100%;
  border-radius: 1.5rem;
  color: #1a1a1a;
}
#intro-section form input[type="text"]::placeholder {
  color: #777;
  font-style: italic;
}
#intro-section form input[type="text"]:focus {
  outline: 2px solid #f67a20;
}
#intro-section form button {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  padding: 0;
  border: none;
  background-color: #F67A20;
  color: #fff;
  position: absolute;
  top: 50%;
  right: -0.5rem;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all ease .25s;
  font-size: 1.25rem;
}
#intro-section form button:focus-visible {
  background-color: #113F7B;
}
#weather-result .row:not(:last-of-type) {
  margin-bottom: 1rem;
}
h2.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
#page-header .fix-width,
#blog .fix-width {
  max-width: 800px;
}
#page-header .fix-width p,
#blog .fix-width p {
  text-wrap-style: balance;
}
.blog-container {
  display: flex;
  flex-direction: row;
  align-items: start;
  column-gap: 2rem;
  row-gap: 2rem;
}
article.blog-post {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 23rem;
  padding: 2rem;
  border-radius: 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}
article.blog-post::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 15%, transparent 75%);
  position: absolute;
  bottom: 0;
  left: 0;
}
article.blog-post .post-title {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.5rem;
}
article.blog-post .post-title a {
  color: inherit;
  text-decoration: none;
}
article.blog-post .post-title a:focus-visible {
  text-decoration: underline;
}
article.blog-post .read-more {
  position: relative;
  display: inline-block;
  padding-left: 2.5rem;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  width: fit-content;
}
article.blog-post .read-more i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #fff;
  color: #1a1a1a;
  transition: ease-in-out .15s;
}
article.blog-post .read-more:focus-visible i {
  transform: translateY(-50%) rotate(0deg);
}
@keyframes spin360 {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}
#refresh-weather i {
  animation: spin360 1.5s linear infinite;
	animation-play-state: paused;
}
#refresh-weather:focus-visible i {
  animation-play-state: running;
}
/******************************************
  Weather Forecast
*******************************************/
.forecast-block {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #dedede;
  background: transparent;
}
.forecast-block .block-title {
  margin-bottom: 1.5rem;
}
.forecast-block .block-title .title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0;
  position: relative;
}
.featured-block {
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: none;
  position: relative;
  padding-bottom: 1rem;
  text-shadow: 0px 0px 8px rgba(0,0,0,.2);
}
.featured-block .block-content {
  min-height: 12rem;
}
.featured-block::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1rem;
  pointer-events: none;
}
.class-01d::before,
.class-02d::before {
  background: linear-gradient(135deg,rgba(36, 85, 167, 0.85) 15%, transparent 35%, transparent 65%, rgba(36, 85, 167, 0.85) 90%);
}
.class-03d::before {
  background: linear-gradient(135deg,rgba(43, 84, 121, 0.85) 15%, transparent 35%, transparent 65%, rgba(43, 84, 121, 0.85) 90%);
}
.class-04d::before {
  background: linear-gradient(135deg,rgba(21, 39, 60, 0.85) 15%, transparent 35%, transparent 65%, rgba(21, 39, 60, 0.85) 90%);
}
.class-09d::before {
  background: linear-gradient(135deg,rgba(14, 38, 51, 0.85) 15%, transparent 35%, transparent 65%, rgba(14, 38, 51, 0.85) 90%);
}
.class-10d::before {
  background: linear-gradient(135deg,rgba(12, 40, 62, 0.85) 15%, transparent 35%, transparent 65%, rgba(12, 40, 62, 0.85) 90%);
}
.class-11d::before {
  background: linear-gradient(135deg,rgba(7, 16, 33, 0.85) 15%, transparent 35%, transparent 65%, rgba(7, 16, 33, 0.85) 90%);
}
.class-13d::before {
  background: linear-gradient(135deg,rgba(17, 48, 113, 0.85) 15%, transparent 35%, transparent 65%, rgba(17, 48, 113, 0.85) 90%);
}
.class-50d::before {
  background: linear-gradient(135deg,rgba(69, 79, 83, 0.85) 15%, transparent 35%, transparent 65%, rgba(69, 79, 83, 0.85) 90%);
}
.class-01n::before,
.class-02n::before,
.class-02n::before,
.class-04n::before {
  background: linear-gradient(135deg,rgba(21, 31, 42, 0.85) 15%, transparent 35%, transparent 65%, rgba(21, 31, 42, 0.85) 90%);
}
.class-09n::before {
  background: linear-gradient(135deg,rgba(20, 31, 40, 0.85) 15%, transparent 35%, transparent 65%, rgba(20, 31, 40, 0.85) 90%);
}
.class-10n::before {
  background: linear-gradient(135deg,rgba(22, 33, 44, 0.85) 15%, transparent 35%, transparent 65%, rgba(22, 33, 44, 0.85) 90%);
}
.class-11n::before {
  background: linear-gradient(135deg,rgba(15, 21, 26, 0.85) 15%, transparent 35%, transparent 65%, rgba(15, 21, 26, 0.85) 90%);
}
.class-13n::before {
  background: linear-gradient(135deg,rgba(37, 50, 67, 0.85) 15%, transparent 35%, transparent 65%, rgba(37, 50, 67, 0.85) 90%);
}
.class-50n::before {
  background: linear-gradient(135deg,rgba(28, 38, 48, 0.85) 15%, transparent 35%, transparent 65%, rgba(28, 38, 48, 0.85) 90%);
}
.featured-block .weather-icon {
  height: 72px;
  width: auto;
}
.featured-block .location {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  width: fit-content;
  min-height: 2.5rem;
  padding: 0.25rem 1rem;
  background-color: #fff;
  color: #1a1a1a;
  border-radius: 1.25rem;
  text-shadow: none;
}
.featured-block .temp-value {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  font-size: 4rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.featured-block .temp-value small {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
}
.featured-block .weather-condition {
  margin-top: -0.5rem;
}
.featured-block .weather-description:first-letter {
  text-transform: uppercase;
}
.featured-block .current-time {
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.forecast-block .block-content {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 1;
}
.forecast-block .block-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  column-gap: 0.5rem;
}
.forecast-block .block-row:not(:first-child) {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #dedede;
}
.featured-block .block-row:not(:first-child) {
  padding-top: 0;
  border: none;
  margin-top: auto;
  align-items: flex-end;
}
.forecast-block .block-column {
  flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}
.forecast-block .block-column-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.forecast-block .block-column,
.forecast-block .block-column-auto {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 0.5rem;
}
.forecast-block .weather-time {
  text-align: right;
}
.featured-block .block-column,
.featured-block .block-column-auto {
  row-gap: 0;
}
.forecast-block .temp-summary,
.forecast-block .weather-summary {
  row-gap: 2rem;
}
.forecast-block .weather-summary {
  text-align: right;
}
.forecast-block .day {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 0.5rem;
}
.forecast-block .day > div {
  flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}
.forecast-block .day .day-title {
  max-width: 140px;
  font-size: 0.875rem;
}
.forecast-block .day .day-condition {
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
  align-items: center;
}
.forecast-block .day .day-desc::first-letter {
  text-transform: uppercase;
}
.forecast-block .day .day-desc {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #777;
}
.forecast-block .day .day-temp {
  max-width: 80px;
  text-align: right;
}
.forecast-block .day .day-temp .day-temp-max {
  line-height: 1;
  margin-bottom: 0.25rem;
}
.forecast-block .day .day-temp .day-temp-min {
  font-size: 0.875rem;
  line-height: 1;
  color: #777;
}
.forecast-block .data-title {
  font-size: 0.875rem;
  line-height: 1.2;
  color: #777;
  margin-top: auto;
}
.forecast-block .data-icon {
  height: 48px;
  width: auto;
  margin-top: auto;
}
.general-info .data-icon {
  height: 64px;
}
.forecast-block .day-condition .day-icon {
  height: 2rem;
  width: auto;
}
.forecast-block .data-icon img,
.forecast-block .day-condition .day-icon img {
  width: auto;
  height: 100%;
}
.forecast-block .data-value {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.2;
}
.forecast-block .data-value i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #113f7b;
  border-radius: 50%;
  font-size: 0.75rem;
  color: #fff;
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}
.scrollable {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  cursor: grab;
  user-select: none;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  overflow: auto;
  padding-bottom: 0.75rem;
  margin-bottom: -0.75rem;
	scrollbar-color: transparent transparent;
}
::-webkit-scrollbar-track {
	background-color: transparent;
}
::-webkit-scrollbar-thumb {
	background-color: transparent;
}
.scrollable-block {
  position: relative;
}
.scrollable-block::before,
.scrollable-block::after {
  content: '';
  width: 2rem;
  height: 100%;
  position: absolute;
  top: 0;
  pointer-events: none;
}
.scrollable-block::before {
  left: -1.5rem;
  background: linear-gradient(to right, #fff, transparent);
}
.scrollable-block::after {
  right: -1.5rem;
  background: linear-gradient(to left, #fff, transparent);
}
.scrollable.dragging {
  cursor: grabbing;
  user-select: none;
}
.scrollable .data-icon img {
  pointer-events: none;
  user-select: none;
}
.scrollable .block-column {
  min-width: 6rem;
  width: 6rem;
}
.forecast-by-days {
  width: 480px;
}
.forecast-by-days .block-row:not(:first-child) {
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}
/******************************************
  Other Pages
*******************************************/
#page-header {
  background-image: url('../images/bg_image_01.webp');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: relative;
}
#page-header::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, #fff 0%, transparent 25%);
}
#page-header .container {
  padding-top: 14rem;
  padding-bottom: 8rem;
  position: relative;
}
#page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
#about-us h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
#about-us p strong {
  color: #1a1a1a;
}
#about-us p a {
  color: #1a1a1a;
  position: relative;
  text-decoration: none;
  background-image: linear-gradient(to top, #f67a20 0, #f67a20);
  background-size: 100% 0.125rem;
  background-repeat: no-repeat;
  background-position: 0% 100%;
  padding: 0.125rem 0;
  margin: -0.125rem 0;
  transition: all ease-in-out .15s
}
#about-us p a:focus-visible {
  background-size: 100% 100%;
}
#page-header.post-header {
  background-position: center;
  background-attachment: unset;
}
#page-header.blog-header .container,
#page-header.post-header .container {
  padding-bottom: 3rem;
}
#page-header h1.post-title {
  margin-bottom: 0;
}
#page-header.post-header::before {
  background: linear-gradient(to top, #fff 0%, rgba(255,255,255,0.6) 50%);
  backdrop-filter: grayscale(100%);
}
#single-post .img-wrapper {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
#single-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#single-post .post-content {
  text-align: left;
}
#single-post .post-content .google-ads {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
#single-post .post-content p.intro {
  font-style: italic;
  color: #1a1a1a;
}
#single-post .post-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
#single-post .post-content h3 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  text-transform: none;
}
#single-post .post-content > *:last-child {
  margin-bottom: 0;
}
#about-us ul,
#single-post .post-content ul {
  list-style-type: none;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 0;
  padding-left: 2rem;
}
#about-us ul li,
#single-post .post-content ul li {
  position: relative;
  padding-left: 2.5rem;
}
#about-us ul li:not(:last-child),
#single-post .post-content ul li:not(:last-child) {
  margin-bottom: 1.25rem;
}
#about-us ul li strong,
#single-post .post-content ul li strong {
  color: #1a1a1a;
}
#about-us ul li::before,
#single-post .post-content ul li::before {
  content: '\e903';
  font-family: "wf-icons";
  background-color: #113F7B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: 0.125rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  color: #fff;
}
/******************************************
  Hover: Hover
*******************************************/
@media (hover: hover) {
  .primary-button:hover {
    background-color: #eaeaea;
    color: #1a1a1a;
  }
  #intro-section form button:hover {
    background-color: #113F7B;
  }
  #main-menu li a:hover::before {
    max-width: 100%;
  }
  .menu-btn:hover .burger .line {
    max-width: 100%;
  }
  #main-menu-wrapper .close-btn:hover {
    background-color: #fff;
    color: #062856;
  }
  .back-to-top-btn:hover {
    background-color: #fff;
    border-color: #062856;
    color: #062856;
  }
  footer ul li a:hover,
  footer p a:hover {
    text-decoration: underline;
  }
  article.blog-post .post-title a:hover {
    text-decoration: underline;
  }
  article.blog-post .read-more:hover i {
    transform: translateY(-50%) rotate(0deg);
  }
  #about-us p a:hover {
    background-size: 100% 100%;
  }
  #refresh-weather:hover i {
    animation-play-state: running;
  }
}
/******************************************
  Mobile Responsiveness
*******************************************/
@media (max-width: 1140px) {
  header .ads-468x60 {
    width: 320px;
    height: 50px;
  }
  #weather-result .smaller-gap .col-auto {
    flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
  }
  .forecast-by-days {
    width: 100%;
  }
  .general-info .data-icon {
    height: 48px;
  }
}
@media (max-width: 1079px) {
  article.blog-post {
    height: 21rem;
    padding: 1.5rem;
  }
}
@media (max-width: 979px) {
  header .google-ads-wrapper {
    display: none;
  }
  header .menu-wrapper {
    flex: 0 0 auto;
    width: auto;
  }
  .ads-728x90 {
    width: 468px;
    height: 60px;
  }
  #weather-result .smaller-gap {
    flex-direction: column;
    row-gap: 1rem;
  }
  .forecast-block .day-condition .day-icon {
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    text-align: center;
  }
  .forecast-block .day .day-title,
  .forecast-block .day .day-temp {
    max-width: 100%;
  }
  .forecast-block .day .day-title {
    font-size: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .blog-container article.blog-post:last-child{
    display: none;
  }
}
@media (max-width: 767px) {
  .page-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .forecast-block .day .day-title,
  .forecast-block .day .day-temp {
    max-width: 140px;
  }
  .forecast-block .day .day-condition {
    column-gap: 0.5rem;
  }
  .scrollable .block-column {
    min-width: 5rem;
    width: 5rem;
  }
  .blog-container {
    flex-direction: column;
    row-gap: 2rem;
  }
  article.blog-post {
    padding: 2rem 1.5rem;
    min-height: 21rem;
  }
}
@media (max-width: 599px) { 
  .container,
  #main-menu-wrapper .nav-container {
    max-width: calc(100% - 3rem);
  }
  #intro-section form button {
    width: 3.5rem;
    height: 3.5rem;
    right: -0.25rem;
  }
  .ads-728x90 {
    width: 336px;
    height: 280px;
  }
  .featured-block {
    background-size: cover;
  }
  .featured-block .block-content {
    height: 280px;
  }
  .class-01d::before,
  .class-02d::before {
    background: radial-gradient(transparent 50%, rgba(36, 85, 167, 0.9) 95%);
  }
  .class-03d::before {
    background: radial-gradient(transparent 50%, rgba(43, 84, 121, 0.9) 95%);
  }
  .class-04d::before {
    background: radial-gradient(transparent 50%, rgba(21, 39, 60, 0.9) 95%);
  }
  .class-09d::before {
    background: radial-gradient(transparent 50%, rgba(14, 38, 51, 0.9) 95%);
  }
  .class-10d::before {
    background: radial-gradient(transparent 50%, rgba(12, 40, 62, 0.9) 95%);
  }
  .class-11d::before {
    background: radial-gradient(transparent 50%, rgba(7, 16, 33, 0.9) 95%);
  }
  .class-13d::before {
    background: radial-gradient(transparent 50%, rgba(17, 48, 113, 0.9) 95%);
  }
  .class-50d::before {
    background: radial-gradient(transparent 50%, rgba(69, 79, 83, 0.9) 95%);
  }
  .class-01n::before,
  .class-02n::before,
  .class-02n::before,
  .class-04n::before {
    background: radial-gradient(transparent 50%, rgba(21, 31, 42, 0.9) 95%);
  }
  .class-09n::before {
    background: radial-gradient(transparent 50%, rgba(20, 31, 40, 0.9) 95%);
  }
  .class-10n::before {
    background: radial-gradient(transparent 50%, rgba(22, 33, 44, 0.9) 95%);
  }
  .class-11n::before {
    background: radial-gradient(transparent 50%, rgba(15, 21, 26, 0.9) 95%);
  }
  .class-13n::before {
    background: radial-gradient(transparent 50%, rgba(37, 50, 67, 0.9) 95%);
  }
  .class-50n::before {
    background: radial-gradient(transparent 50%, rgba(28, 38, 48, 0.85, 0.9) 95%);
  }
  .forecast-block .day .day-title {
    font-size: 0.875rem;
  }
  .forecast-block .day .day-title,
  .forecast-block .day .day-temp {
    max-width: 96px;
  }
  .forecast-block .day .day-desc {
    font-size: 0.75rem;
  }
  .featured-block .location {
    font-size: 0.875rem;
    min-height: 2rem;
  }
  .featured-block .temp-value {
    font-size: 3.5rem;
  }
  .featured-block .current-time {
    font-size: 1.75rem;
  }
  .featured-block .feels-like,
  .featured-block .current-date,
  .featured-block .weather-description {
    font-size: 0.875rem;
  }
  .featured-block .weather-icon {
    height: 64px;
  }
  #main-menu-wrapper .close-btn {
    top: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
  #main-menu li a {
    font-size: 1.75rem;
  }
  .back-to-top-btn {
    bottom: 1rem;
    right: 1rem;
  }
}
@media (max-width: 479px) { 
  .general-info .block-row {
    flex-wrap: wrap;
    column-gap: 0;
  }
  .general-info .block-column {
    flex: 0 0 50%;
    width: 50%;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .general-info .block-column:nth-child(3),
  .general-info .block-column:nth-child(4) {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #dedede;
  }
  .forecast-block {
    padding: 1rem;
    padding-bottom: 1.5rem;
  }
  .featured-block .current-date {
    font-size: 0.75rem;
  }
  .featured-block .weather-description,
  .featured-block .current-date .date-day {
    display: none;
  }
  .featured-block .temp-value {
    margin-bottom: 0;
  }
  .featured-block .weather-icon {
    height: 48px;
  }
  .featured-block .temp-value {
    font-size: 3rem;
  }
  .featured-block .current-time {
    font-size: 1.5rem;
  }
  .forecast-block .day .day-desc {
    display: none;
  }
  .forecast-block .day .day-condition {
    flex: 0 0 auto;
    width: auto;
  }
  .forecast-block .day .day-title,
  .forecast-block .day .day-temp {
    max-width: 100%;
  }
  .scrollable {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 0;
    padding-right: 0;
    column-gap: 0;
  }
  .scrollable-block::before {
    left: -1rem;
  }
  .scrollable-block::after {
    right: -1rem;
  }
  article.blog-post {
    min-height: unset;
    height: unset;
    aspect-ratio: 4/3;
  }
  .menu-btn .text {
    display: none;
  }
  #page-header h1,
  #intro-section h2 {
    font-size: 2.5rem;
  }
  #page-header h1.post-title {
    font-size: 2rem;
  }
  #single-post .post-content h2 {
    font-size: 1.5rem;
  }
  #about-us ul,
  #single-post .post-content ul {
    padding-left: 0;
  }
  #single-post .img-wrapper {
    aspect-ratio: 6/5;
  }
  h2.section-title {
    font-size: 2rem;
  }
  #intro-section h1 {
    font-size: 1rem;
  }
  .forecast-block .block-row {
    column-gap: 0;
  }
}
@media (max-width: 389px) { 
  .ads-728x90 {
    width: 300px;
    height: 250px;
  }
}
@media (max-width: 359px) { 
  .ads-728x90 {
    width: 250px;
    height: 250px;
  }
}