@charset "UTF-8";
:root {
  --max-width: 1000px;
  --top-height: 640px;

  /* THEME COLORS */
  --accent-color-1: #c2282d;
  --accent-color-2: #0059bc;

  /* BACKGROUND */
  --background: linear-gradient(to bottom right, #333333, #111);
  --background-alt: #ffffff;
  --item-background: white;

  /* HEADER */
  --header-background: gray;
  --header-text: aliceblue;
  --header-text-hover: white;

  /* BUTTON COLORS */
  --button-color: linear-gradient(to bottom, #1287e5, #0544c3);
  --button-text: white;
  --button-hover-color: #b50d15;
  --button-hover-text: white;

  /* FONTS */
  --font-heading: 'Rethink Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-default: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* TEXT COLOR */
  --text-default: whitesmoke;
  --text-default-dark: #333;

  /* SEARCH BOX */
  --searchbox-background: white;
  --searchbox-border: 1px solid lightgray;
  --searchbox-text: black;

  /* FOOTER */
  --footer-background: black;
  --footer-text: #bcc4cb;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-default);
  width: 100%;
  font-size: 14pt;

  /* CUSTOMIZE */
  background: var(--background);
  color: var(--text-default);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: bold;
}

a,
.button {
  cursor: pointer;
  text-decoration: none;
}

/* Quick classes */

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

.text-right {
  text-align: right;
}

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

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #e1e1e1;
}

hr.spacer {
  border: none;
  margin: 25px;
}

/* HEADER */

header {
  width: 100%;
  padding: 10px;
  z-index: 9999;
  max-width: var(--max-width);
  margin: 0 auto;
}

header .navbar {
  padding: 15px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navbar-site-title {
  display: none;
}

.navbar-logo {
  flex: 1;
}

.navbar-logo img {
  width: auto;
  max-height: 60px;
  max-width: 260px;
}

/* DEFAULTS */

#content {
  margin: auto;
  width: 100%;
}

section {
  padding: 60px 20px;
}

section.alt {
  background: var(--background-alt);
  color: var(--text-default-dark);
}

section.alt .section-heading {
  color: var(--text-default-dark);
}

section.alt .section-heading b {
  color: var(--accent-color-2);
}

section#subpage {
  padding: 20px 30px 60px;
}

.container {
  width: 100%;
  margin: auto;
  max-width: var(--max-width);
}

.section-heading {
  font-size: 28pt;
  margin: 0 0 40px;
  color: #b2bbc9;
  line-height: 1.2;
}

.section-heading b {
  color: white;
}

.grid,
.list {
  display: grid;
  gap: 15px;
}

.flex {
  display: flex;
  gap: 15px;
}

.btn {
  border: none;
  width: auto;
  display: inline-block;
  padding: 8px 20px;
  background: var(--button-color);
  border: none;
  /* text-transform: uppercase; */
  /* font-weight: bold; */
  font-family: var(--font-heading);
  color: var(--button-text);
  border-radius: 50px;
  transition: all 0.2s;
}

.btn:hover {
  background: var(--button-hover-color);
  color: var(--button-hover-text);
}

/* CTA BUTTONS */

section .cta {
  padding: 15px 50px;
  font-size: 18pt;
  margin-top: 20px;
}

/* TOP */

section#top {
  padding: 0;
  display: flex;
  min-height: var(--top-height);
  background: url('../images/bg-top.jpg') no-repeat center white;
  background-size: cover;
  flex-direction: column;
  align-items: center;
  color: black;
}

section#top .container {
  max-width: 600px;
  text-align: center;
  font-size: 16pt;
}

section#top .top-heading {
  font-size: 30pt;
  color: black; }

section#top .top-heading b {
  color: #b4171c;
}

/* INQUIRY */

section#inquiry {
  background: url('../images/bg-bottom.jpg') no-repeat bottom center white;
  background-size: cover;
  color: black;
  font-size: 14pt;
}

section#inquiry .container {
  /* text-align: center; */
  /* font-size: 14pt; */
}

section#inquiry .section-heading {
  max-width: 600px;
  font-size: 32pt;
  color: black;
  margin-bottom: 20px;
}

section#inquiry .section-heading b {
  color: var(--accent-color-1);
}

section#inquiry .cta {
  font-weight: bold;
}

/* ABOUT */

section#about .container {
  display: grid;
  gap: 20px;
}

section#about .section-content {
  line-height: 2;
  font-size: 16pt;
  border-top: 10px solid #5b646e;
  padding-top : 30px;
}

section#about .section-content p:first-child {
  margin-top: 0;
}


/* OFFERS */

section#offers {
  background: url('../images/bg-middle.jpg') no-repeat top center white;
  background-size: cover;
}

section#offers .section-heading {
  text-align: right;
  font-size: 32pt;
}

.grid-offers {
  gap: 40px;
}

.grid-offers .grid-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 24px;
  grid-template-rows: auto 1fr;
  text-align: left;
  justify-items: start;
  align-items: start;
}

.grid-offers .grid-item .offer-img {
  grid-row: 1/3;
}


.grid-offers .grid-item .offer-img svg {
  width: 50px;
  height: 50px;
}

.grid-offers .grid-item .offer-heading {
  font-size: 20pt;
  font-weight: bold;
  margin: 0 0 10px;
}

.grid-offers .grid-item .offer-heading b {
  color: var(--accent-color-1);
}

/* .grid-offers .grid-item .offer-text {
  font-size: 12pt;
} */

/* BENEFITS */

section#benefits {
  text-align: center;
}

.grid-benefits {
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.grid-benefits .grid-item .benefit-heading {
  font-size: 14pt;
  font-weight: normal;
  line-height: 1.25;
  margin: 15px 0;
}

.grid-benefits .grid-item .benefit-heading b {
  display: block;
  font-weight: block;
}

.grid-benefits .grid-item .benefit-text {
  display: none;
  font-size: 12pt;
}

.grid-benefits .grid-item .benefit-icon svg {
  background: linear-gradient(to bottom, #b7282b, #701122);
  padding: 18px;
  width: 70px;
  height: 70px;
  border-radius: 10px;
}

/* FOOTER */

footer {
  padding: 20px 30px 20px;
  font-size: 10pt;

  /* CUSTOMIZE */
  background: var(--footer-background);
  color: var(--footer-text);
}

footer > .container {
  display: flex;
  flex-direction: column;
  justify-items: center;
  gap: 15px;
}

.footer-menu {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 30px;
}

footer a,
footer a:hover {
  /* CUSTOMIZE */
  color: var(--footer-text);
}

/* Mobile first queries */

/* Larger than mobile */
@media (min-width: 400px) {
}

/* Larger than phablet */
@media (min-width: 550px) {
}

/* Larger than tablet */
@media (min-width: 750px) {


.navbar-logo img {
  width: auto;
  max-height: 50px;
  max-width: none;
}
  section {
    padding: 100px 15px;
  }
  
  
section#about .container {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 30px;
}

section#about .section-content {
  line-height: 2;
  font-size: 16pt;
  border-left: 10px solid #5b646e;
  border-top: none;
  padding-left: 30px;
  padding-top: 0;
}
  .grid-benefits {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 50px;
  }
  
.grid-offers {
  max-width: 90%;
  margin: auto;
  gap: 40px;
}

    
}

/* Larger than desktop */
@media (min-width: 1000px) {
  

section#top .top-heading {
  font-size: 34pt;
  color: black; }

.grid-offers {
  max-width: 80%;
  margin: 0 0 0 auto;
}

}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
}
