/* ------------------------------------------------------------ *\
	Granger Web Colors. Class not used in code, just for reference
\* ------------------------------------------------------------ */
.palette {
  color: #ffffff;
  color: #f1f1f2;
  color: #e7e8e9;
  color: #dadada;
  color: #939598;
  color: #606a76;
  color: #4c5b68;
  color: #4d5b68;
  color: #555562;
  color: #535353;
  color: #333333;
  color: #231f20;
  color: #36659f;
  color: #1d3766;
  color: #0046ad;
  color: #1b1c1c;
  color: #000000;
}

/* ------------------------------------------------------------ *\
	Fonts 
\* ------------------------------------------------------------ */

/* @font-face {
  font-family: "Evogria";
  src: url("/fonts/Evogria.woff") format("woff"), url("/fonts/Evogria.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
} */
@font-face {
  font-family: "Gotham";
  src: url("/fonts/Gotham-Bold.woff2") format("woff2"), url("/fonts/Gotham-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("/fonts/Gotham-BookItalic.woff2") format("woff2"), url("/fonts/Gotham-BookItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("/fonts/Gotham-Book.woff2") format("woff2"), url("/fonts/Gotham-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("/fonts/Gotham-Medium.woff2") format("woff2"), url("/fonts/Gotham-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------ *\
	General
\* ------------------------------------------------------------ */

* {padding: 0; margin: 0; box-sizing: border-box;}
html {font-size: clamp(0px, 4vw, 16px); line-height: 1.4; height: 100%; background: white; scroll-behavior: smooth;}
body {font-family: "Gotham", serif; color: #231f20; font-size: 1rem;}
.container {max-width: 80rem; padding: 0 1rem; margin: 0 auto;}

body.nothome .header {padding: 1rem 0;}

div:not(.step_header) > h1, div:not(.step_header) > h2 {line-height: 1.25; font-size: 2rem;}
div:not(.step_header) > h2 {font-size: 1.8rem;}
div:not(.step_header) > h2:not(.noline) {position: relative; margin-bottom: 3rem;}
div:not(.step_header) > h2:not(.noline)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 0.15rem;
  width: 2.6rem;
  background-color: #4c5b68;
  margin-bottom: -1.8rem;
}

.blog > h2::after  {
width: 100%!important;
height: 2px!important;
background-color: #dadada!important;
}

.blog > h1 {letter-spacing: 0!important;}
.blog > h2 {letter-spacing: 0!important; margin-top: 5rem;}

.blog > h3 {
  font-family: "Gotham", sans-serif!important;
  font-size: 1.4rem!important;
  letter-spacing: 0em!important;
}
div:not(.step_header) > h3 {
  font-size: 1.1rem;
  font-family: "Gotham", sans-serif;
  color: #1d3766;
  font-weight: normal;
}
input[type="submit"], .button {
  appearance: none;
  font-family: "Gotham", sans-serif;
  color: white;
  background: #36659f;
  padding: 0 2.7rem;
  border: 0;
  border-radius: 3rem;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  height: 2.5rem;
  transition: background 0.1s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  line-height: 2.5rem;
}
input[type="submit"]:hover, .button:hover {background: #4c5b68}

.brochure {margin-bottom:0!important;}
img {max-width: 100%; height: auto;}

form > div {display: flex; gap: 0.5rem;}
form > div > div {display: flex; flex-grow: 1; flex-direction: column; align-items: stretch; margin-bottom: 0.5rem;}
form > div > div.half {width: calc(50% - 0.25rem);}
form > div input {
  background-color: #e7e8e9;
  padding: 0.35rem 1.2rem 0.35rem 0.7rem;
  border: 0;
  border-radius: 0;
  color: #939598;
  font-size: 0.8rem;
  line-height: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  appearance: none;
  background-image: none;
  width: 100%;
}
form > div input::-webkit-input-placeholder,
form > div input::-moz-placeholder,
form > div input::placeholder { 
  color: inherit;
  opacity: 1;
}

form > input {margin-top: 1.75rem;}

#form-status {
  text-align: center;
  color: gray;
}

.center { text-align: center}

/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */

.header {position: sticky; top: 0; background: white; font-family: "Gotham"; text-transform: uppercase; font-weight: bold; padding: 0rem 0; border-bottom: 2px solid grey; z-index: 100000;}
.header .container {display: flex; justify-content: space-between; align-items: center;}
.header .container .h1 a span {display: none;}
.header .container .h1 a img {height: 3.8rem; width: auto; margin-right: 2rem;}
.header .container > ul {display: flex; gap: 2rem;}
.header .container > ul li {list-style: none; position: relative; padding: 1rem 0;}
.header .container > ul li a, .header .container > ul li span {text-decoration: none; color: #555562;}
.header .container > ul li:hover > *, .header .container > ul li a:hover, .header .container > ul li span:hover {color: #23527c;}
.header .container > ul > li > ul > li > a {display: inline-block; position: relative;}
.header .container > ul > li > a::after,
.header .container > ul > li > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0.95rem;
  left: 0;
  width: 100%;
  height: 0.15rem;
  background-color: #555562;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.header .container > ul > li > ul > li > a::after {bottom: auto; top: calc(100% - 0.08rem);}
.header .container > ul > li > a:hover::after,
.header .container > ul > li > ul > li > a:hover::after {transform: scaleX(100%);}


.header .container > ul > li::before {content: ""; height: 1.25rem; width: 2px; position: absolute; margin-left: -1rem; background: #555562; transform: translateX(-50%);}
.header .container > ul > li:first-child:before {content: none;}
.header .container > ul > li > ul {
  opacity: 0;
  position: absolute; 
  background: white; 
  z-index: 99; 
  padding: 1rem 1.5rem; 
  min-width: 100%; 
  box-shadow: 0px 0px 9px 2px rgba(77, 91, 105, 0.3); 
  margin-top: 1rem;
  transform: translateY(-1rem);
  transition: all 0.15s ease-in-out;
  pointer-events: none;
}
.header .container > ul > li > ul li {font-size: 0.8rem; white-space: nowrap; padding: 0.25rem 0;}
.header .container > ul > li:hover > ul {opacity: 1; transform: translateY(0); pointer-events: all;}
.header .container > a {display: none; position: relative; color: transparent; user-select: none; width: 2.5rem; height: 1.75rem; text-align: right; overflow: hidden;}
.header .container > a > span, .header .container > a::after, .header .container > a::before {
  content: ""; 
  width: 100%; 
  height: 0.2rem; 
  background: #555562; 
  display: block; 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%);
}
.header .container > a::before {transform: none; top: 0;}
.header .container > a::after {transform: none; top: auto; bottom: 0;}
body.showmenu .header .container > a > span {display: none;}
body.showmenu .header .container > a::before {transform: translateY(-50%) rotate(45deg); top: 50%;}
body.showmenu .header .container > a::after {transform: translateY(-50%) rotate(-45deg); bottom: auto; top: 50%;}
@media (max-width: 1000px) {
  .header .container > a {display: block;}
  .header .container > ul {display: none; position: absolute; top: 6rem; width: 100%; z-index: 9; background: white; left: 0; padding: 1rem 0 2rem;}
  .header .container > ul > li {padding: 1rem 1.5rem;}
  .header .container > ul > li::before {content: none;}
  .header .container > ul > li > ul {position: relative; box-shadow: none; pointer-events: all; margin-top: 0; opacity: 1!important; transform: none!important; padding-bottom: 0;} 
  body.showmenu .header .container > ul {display: block;}
  .header .container > ul > li a {position: relative;}
  .header .container > ul > li a::after {bottom: auto; top: calc(100% - 0.05rem);}
}

/* ------------------------------------------------------------ *\
	Hero
\* ------------------------------------------------------------ */

.hero {min-height: 20rem; background: silver; position: relative;}
.hero img {position: absolute; width: 100%; height: 100%; object-fit: cover;}
.hero::after {content: ""; position: absolute; opacity: 0.77; background-color: #4d5b68; width: 100%; height: 100%; top: 0;}
.hero .container {position: relative; z-index: 2; color: white; display: flex; align-items: center; max-width: 68rem; gap: 5rem;}
.hero .container > div {padding: 5rem 0;}
.hero .container h1 {text-align: center; margin-top: 3rem; margin-bottom: 1.5rem;}
.hero .container h1 span:nth-child(1) {display: inline-block; border-bottom: 0.2rem solid #4c5b68; margin-bottom: 0.25rem;}

.hero .container .hero_text h1 span:nth-child(1) {border-bottom: none;}

.hero .container h1 span:nth-child(2) {display: inline-block;}
body.home .hero .container h1 {margin-top: 0; margin-bottom: 2.5rem; line-height: 1.25;}
.hero .container p {font-size: 1.4em; text-align: center; line-height: 1.25;  margin-left: auto; margin-right: auto; margin-bottom: 1.75rem;}
.hero .container .button {margin-top: 1.15rem;}

body.home .hero .container p {max-width: 28rem;}
.hero .container .form {
  -webkit-filter: drop-shadow(1rem 1rem 0.5rem rgba(0, 0, 0, 0.4));
  filter: drop-shadow(1rem 1rem 0.5rem rgba(0, 0, 0, 0.4));
  min-width: 18rem;

}
.hero .container .form form {
  /* clip-path: polygon(0 0,100% 0,100% 100%,50% calc(100% - 1.5rem),0 100%); */
  background-color: #fff;
  padding: 2rem 2.5rem 2rem;
  border-radius: 1rem;
}

.makemodel h1 {margin: 0; width: 28rem; text-align: center; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);}

@media (min-width: 60rem) {
.hero.image {background: #f1f1f2; min-height: 30rem; }
.hero.image img {width: 50%; left: 50%; width: 40rem;}
.hero.image.left img {width: 50%; left: auto; right: 50%; width: 40rem;}
.hero.image::after {content: none;}
.hero.image .container {display: block;}
.hero.image .container h1 {color: #1d3766; text-align: left;}
.hero.image .container p {color: rgb(35, 31, 32); text-align: left;}
.hero.image .container > div {width: 50%; text-align: left; padding: 3rem 4rem 5rem 3rem;}
.hero.image .container > .hero_text {width: 50%; text-align: left; padding: 3rem 1rem 1rem 1rem;}
.hero.image.left .container > div {margin-left: 50%; padding: 3rem 3rem 5rem 4rem;}
}

@media (max-width: 60rem) {
  .hero .container {flex-direction: column; gap: 2rem;}
  body.home .hero .container > div:first-child {padding-bottom: 0;}
  .hero .container > div + div {padding-top: 0;}
  .hero .container h1 {margin-top: 0;}
  .hero .container h1 span:nth-child(1) {border-bottom-color: white;}
  .hero .container form {text-align: center;}
}

/* ------------------------------------------------------------ *\
	Hero Blog
\* ------------------------------------------------------------ */

.hero-blog {min-height: 50vh; position: relative; display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Align at the bottom of the container */}
.hero-blog img {position: absolute; width: 100%; height: 100%; object-fit: cover;}
.hero-blog::after {content: ""; position: absolute; opacity: 0.7;   background: linear-gradient(to top, black, #4d5b68); width: 100%; height: 100%; top: 0;}
.hero-blog .container {position: relative; z-index: 2; color: white; display: flex; align-items: center; width: 100%; max-width: 68rem; gap: 5rem;}
.hero-blog .container > div {flex: 1; padding: 2rem 0;}
.hero-blog .container h1 {text-align: center; margin-top: 6rem; margin-bottom: 1.5rem; font-family: "obviously", sans-serif; font-size: 3rem; line-height: 3.5rem;}
.hero-blog .container h1 span:nth-child(1) {display: inline-block; border-bottom: 0.2rem solid #4c5b68; margin-bottom: 0.25rem;}
.hero-blog .container h1 span:nth-child(2) {display: inline-block;}
body.home .hero-blog .container h1 {margin-top: 0; margin-bottom: 2.5rem;}
.hero-blog .container p {text-align: left; line-height: 1.5; letter-spacing: 0.1em; margin-left: auto; margin-right: auto; margin-bottom: 1.75rem; font-size:1rem}
.hero-blog .container .button {margin-top: 1.15rem;}

body.home .hero-blog .container p {max-width: 28rem;}
.hero-blog .container .form {
  -webkit-filter: drop-shadow(1rem 1rem 0.5rem rgba(0, 0, 0, 0.4));
  filter: drop-shadow(1rem 1rem 0.5rem rgba(0, 0, 0, 0.4));
  max-width: 23rem;
}
.hero-blog .container .form form {
  clip-path: polygon(0 0,100% 0,100% 100%,50% calc(100% - 1.5rem),0 100%);
  background-color: #fff;
  padding: 4rem 2.5rem 4.3rem;
}

@media (min-width: 60rem) {
.hero-blog.image {background: #f1f1f2; min-height: 30rem; border-top: 0.2rem solid #4c5b68;}
.hero-blog.image img {width: 50%; left: 50%; width: 40rem;}
.hero-blog.image.left img {width: 50%; left: auto; right: 50%; width: 40rem;}
.hero-blog.image::after {content: none;}
.hero-blog.image .container {display: block;}
.hero-blog.image .container h1 {color: #1d3766; text-align: left;}
.hero-blog.image .container p {color: rgb(35, 31, 32); text-align: left;}
.hero-blog.image .container > div {width: 50%; text-align: left; padding: 3rem 4rem 5rem 3rem;}
.hero-blog.image.left .container > div {margin-left: 50%; padding: 3rem 3rem 5rem 4rem;}
}

@media (max-width: 60rem) {
  .hero-blog {min-height:90vh;}
  .hero-blog .container {flex-direction: column; gap: 2rem;}
  body.home .hero-blog .container > div:first-child {padding-bottom: 0;}
  .hero-blog .container > div + div {padding-top: 0;}
  .hero-blog .container h1 {margin-top: 0;}
  .hero-blog .container h1 span:nth-child(1) {border-bottom-color: white;}
  .hero-blog .container form {text-align: center;}
}

/* ------------------------------------------------------------ */
/* Makemodelselector */
/* ------------------------------------------------------------ */

.makemodelselector {text-align: center;}
.makemodelselector h3 {color: #36659f;}
.makemodelselector .selects {margin: 1.5rem 0; position: relative;}
.makemodelselector select {
  font-family: "Gotham";
  padding: 0.35rem 1.2rem 0.35rem 0.7rem;
  color: #000000;
  font-size: 1em;
  line-height: 1.5rem;
  letter-spacing: normal;
  text-transform: capitalize;
  appearance: none;
  background-image: none;
  min-width: 8rem;
  display: block;
  margin: 0.25rem auto;
  border-bottom: 1px solid lightgrey;
  border-top: 0px solid white;
  border-left: 0px solid white;
  border-right: 0px solid white;
}
.makemodelselector .selects + input {margin-top: 0;}

/* ------------------------------------------------------------ *\
	Bullets
\* ------------------------------------------------------------ */

.hero_bullets {
  background: linear-gradient(to right, #121212 0%, #656363 100%);
  color: white; 
  text-align: center;
  clip-path: polygon(50% 2rem, 100% 0, 100% 100%, 0 100%, 0 0);
  margin-top: calc(-2rem - 1px);
  padding: 4.25rem 0 2.25rem;
}
.hero_bullets .container {align-items: center;}
.hero_bullets .container ul {display: flex; gap: 3rem; max-width: 65rem; justify-content: center; margin-left: auto; margin-right: auto;}
.hero_bullets .container ul li {list-style: none; font-size: 0.8rem; flex: 1;}
body.home .hero_bullets .container ul li {max-width: 14rem;}

@media (max-width: 45rem) {
  .hero_bullets .container ul {flex-direction: column; max-width: 100%; gap: 1rem;}
  body.home .hero_bullets .container ul li {max-width: 100%; padding-bottom: 0.5rem;}
  .hero_bullets .container ul li::before {content: "☑"; display: inline-block; margin-right: 0.5rem; font-size: 1.1rem; position: relative; top: 0.05rem;}
}

/* ------------------------------------------------------------ *\
  Main-content
\* ------------------------------------------------------------ */

.main-content {padding: 6.5rem 0; background: url(/img/section-bg.jpg) center top / 2000px auto repeat;}
.main-content .container > div {padding-left: 3rem; border-left: 0.15rem solid #4c5b68; max-width: 45rem; margin: 0 auto;}
.main-content .container > div h2 {margin-bottom: 1.5rem;}
.main-content .container > div h2::after {content: none;}
.main-content .container > div > *:not(h2) {line-height: 1.5;}
@media (max-width: 45rem) {
  .main-content .container > div {padding-left: 2rem;}
}

/* ------------------------------------------------------------ *\
	Reviews
\* ------------------------------------------------------------ */

.reviews-title {text-align: center; color: white; position: relative; z-index: 3;}
.reviews-subtitle {display: flex; justify-content: center; text-align:center; color:white; position: relative; z-index: 3;}
.reviews {padding: 4rem 0 9rem; background: gray url(/img/section-bg2.jpg) center center / cover no-repeat; position: relative;}
.reviews::after {content: ""; position: absolute; opacity: 0.77; background-color: #4d5b68; width: 100%; height: 100%; top: 0;}
.reviews .carousel {position: relative; max-width: 35rem; margin: 0 auto; z-index: 2; overflow: hidden;}
.reviews .carousel ul li {text-align: center; padding: 1rem 0; font-size: 1.4rem; font-weight: 400; line-height: 1.2; display: flex; align-items: center;}
.reviews .carousel ul li > div {color: white;}
.reviews .carousel ul li > div p:first-child { padding-right: 5rem; margin: 0 0rem 2.5rem;}
.reviews .carousel ul li > div p:not(:first-child) {padding-right: 5rem;font-family: "Gotham", sans-serif; letter-spacing: 0.1em; font-size: 1.1rem;}
.reviews .carousel ol {left: auto; right: 0rem; transform: none; margin-bottom: -2.5rem;}
@media (max-width: 50rem) {
  .reviews .carousel {padding-left: 1rem!important; padding-right: 1rem!important;}
  .reviews .carousel ul li {text-align: center;}
  .reviews .carousel ul li > div p:first-child {margin-left: 0; margin-right: 0; padding-left: 0; border: 0;} 
  .reviews .carousel ol {right: 50%; transform: translateX(50%);}
  .reviews #next, .reviews #prev {display: none;}
}

.video {position: relative; z-index: 3; align-content: center; display: flex; justify-content: center;}
.rounded-portrait-video {border-radius:10px; width: 320px; height: 569px;overflow: hidden; border: 1px solid black; box-shadow: 0px 0px 1rem rgba(0, 0, 0, 0.4);}
.two-column-layout {display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; margin-top: 60px;}
.video-column {width: 50%; padding: 0rem; box-sizing: border-box;}
.testimonial-column {width: 50%; padding: 0rem; box-sizing: border-box;}
@media (max-width: 767px) {
  .reviews .carousel ul li > div p:first-child {padding-right: initial}
  .reviews .carousel ul li > div p:not(:first-child) {padding-right: initial;}
  .video {justify-content: center; padding-bottom: 2rem;}
  .two-column-layout {flex-direction: column;}
  .video-column, .testimonial-column {width: 100%;}
}

/* ------------------------------------------------------------ *\
	Why Us - Reviews
\* ------------------------------------------------------------ */
.reviews-full {display: flex; align-items: center; justify-content: center; height: 86vh; background: gray url(/uploads/image-22.jpg) center center / cover no-repeat; position: relative;}
.reviews-full-title {text-align: center; color: white; z-index: 3; position: relative;}
.reviews-full-subtitle { text-align:center; color:white;z-index: 3; position: relative }
.reviews-full::after {content: ""; position: absolute; opacity: 0.77; background-color: #4d5b68; width: 100%; height: 100%; top: 0;}
.button-reviews a  {position: relative; z-index: 3}
.button-reviews a:hover {cursor: pointer}
.testimonial-column-full { width: 100%; padding: 0rem; box-sizing: border-box;}

/* ------------------------------------------------------------ *\
  Why Us - Reviews Video Modal pop-up
\* ------------------------------------------------------------ */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 100;}
.modal-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: #000000; padding: 0px; border-radius: 5px; margin-top:4rem;}
.close { position: absolute; top: 10px; right: 15px; font-size: 20px; cursor: pointer; }

/* ------------------------------------------------------------ *\
	Features
\* ------------------------------------------------------------ */
.features  {background: url(/img/section-bg3.jpg) center center / cover no-repeat; padding: 8rem 0; text-align: center;}
.features .container h2 { color: white; margin-bottom: 5.5rem;} 
.features .container h2::after {content: none;}
.features .container > ul {
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  grid-gap: 2.5rem; 
  max-width: 53rem; 
  margin: 0 auto;
}
.features .container > ul li {
    list-style: none;
    background-color: #fff;
    padding: 2rem 2rem 2.5rem;
    letter-spacing: 0.05em;
    font-size: 1rem;
    border: 0.3rem solid #4c5b68;
    line-height: 1.5;
}
.features .container > ul li h3 { margin: 1.2rem 0 1.05rem; padding-bottom: 0.65rem; position: relative;}
.features .container > ul li h3::after {
  content: "";
  position: absolute; 
  left: 50%;
  bottom: 0;
  width: 9rem;
  height: 0.15rem;
  background: #55626e;
  transform: translateX(-50%);
}
.features .container > ul li .icon {width: 5rem; height: 4rem; margin: 0 auto; background: url(/img/icons/ico-ribbon.svg ) center center / auto 4rem no-repeat;}

/* ------------------------------------------------------------ *\
	Easy to protect your wallet
\* ------------------------------------------------------------ */

.easy {background: url(/img/section-bg.jpg) center top / 2000px auto repeat; padding: 7rem 0 5rem; text-align: center; border-bottom: 0.5rem solid white;}
.easy .container > div {display: flex; gap: 5rem; margin-bottom: 4rem; margin-top: -3rem; align-items: center;}
.easy .container > div h3 {margin: 2rem 0 0;}
.easy .container > div img {clip-path: polygon(calc(100% - 2rem) 0, 100% 50%, calc(100% - 2rem) 100%, 0 100%, 0 0); min-width: 32rem; height: 18rem; object-fit: cover;}
.easy .container > div > div {text-align: left;}
.easy .container > div > div h2 {max-width: 35rem;}
.easy .container > div > div h2 span {display: block; text-transform: none; font-size: 1.6rem; font-weight: 400; margin: 1.25rem 0 0;}
.easy .container > ul {display: flex; justify-content: center; padding: 1rem 0 0;}
.easy .container > ul li.box {
  list-style: none;
  flex: 1;
  max-width: 17rem;
  background-color: #fff;
  box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.45);
  padding: 1.5rem 2rem 2rem;
  letter-spacing: 0.05em; 
  font-size: 1rem;
  font-weight: 500;
}
.easy .container > ul li.line {list-style: none; width: 1.5rem; position: relative;}
.easy .container > ul li.line::after {content: ""; position: absolute; left: 0; top: 50%; width: 100%; height: 0.15rem; background: #4e5a65;}
.easy .container > ul li .icon {background: silver; width: 5rem; height: 3.2rem; margin: 0 auto;}
.easy .container > ul li:nth-child(1) .icon {background: url(/img/icons/step1.png) center center / auto 3.2rem no-repeat;}
.easy .container > ul li:nth-child(2) .icon {background: url(/img/icons/step2.png) center center / auto 3rem no-repeat;}
.easy .container > ul li:nth-child(3) .icon {background: url(/img/icons/step3.png) center center / auto 2.6rem no-repeat;}
.easy .container > ul li h3 {margin: 1.5rem 0 0.8rem;}
.easy .container > a:last-child {margin-top: 4rem;}

@media (max-width: 60rem) {
  .easy {padding-top: 0rem;}
  .easy .container > div {flex-direction: column; align-items: stretch; margin: 0 -1rem;}
  .easy .container > div > div {margin: 0 1rem; text-align: center;}
  .easy .container > div > div h2 {margin-left: auto; margin-right: auto;}
  .easy .container > div img {clip-path: polygon(100% 0, 100% calc(100% - 2rem), 50% 100%, 0 calc(100% - 2rem), 0 0); min-width: 0;}
  .easy .container > ul {flex-direction: column; align-items: center; padding-top: 2rem;}
  .easy .container > ul li.line {height: 1.5rem;}
  .easy .container > ul li.line::after {width: 0.15rem; height: 100%; left: 50%; top: 0;}
}

/* ------------------------------------------------------------ *\
	Easy More
\* ------------------------------------------------------------ */

.easy_more {padding: 3rem 0;}
.easy_more .container {max-width: 65rem;}
.easy_more .container > div:nth-child(1) {padding-bottom: 0rem; align-items: center; }
.easy_more .container > div:nth-child(1) > div {width: 100%; text-align: center;}
.easy_more .container > div:nth-child(1) > div:nth-child(1) h2 {margin: 1rem 0 0; width: 100%; text-align: center;}
.easy_more .container > div:nth-child(1) > div:nth-child(1) h2::after {content: none;}

.easy_more .container > ul {
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  grid-gap: 1.75rem;
  margin: 4rem auto 5rem;
  max-width: 54rem;
}
.easy_more .container > ul li {
  list-style: none;
  padding: 2rem 1.5rem;
  background: white;
  box-shadow: 0px 0px 1rem rgba(0, 0, 0, 0.4);
  font-size: 0.8rem; 
  font-weight: 500; 
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  border-left: solid 0.3rem #4c5b68;
}
.easy_more .container > ul li h3 {line-height: 1; margin-bottom: 0.75rem; padding: 0 0.5rem; font-weight:500}
.easy_more .container > div:nth-child(1).noimage {justify-content: center; padding-bottom: 0;}
.easy_more .container > div:nth-child(1).noimage > div:nth-child(1) h2 {text-align: center;}
@media (max-width: 60rem) {
  .easy_more {padding-top: 0;}
  .easy_more .container {padding: 0;}
  .easy_more .container > div:nth-child(1) {flex-direction: column-reverse; align-items: stretch; }
  .easy_more .container > div:nth-child(1) > div {width: 100%; text-align: center;}
  .easy_more .container > div:nth-child(1) > div:nth-child(1) {padding: 0 1rem;}
  .easy_more .container > div:nth-child(1) > div:nth-child(1) h2 {text-align: center; margin-left: auto; margin-right: auto;}
  .easy_more .container > ul {padding: 0 1rem;   grid-template-columns:none;}
  .easy_more .container > div:nth-child(1).noimage {padding-top: 4rem;}
}

/* ------------------------------------------------------------ *\
	Checkmarks (additional plans)
\* ------------------------------------------------------------ */

.checkmarks {padding: 7rem 0 5rem; background: #333 url(/img/section-bg3.jpg) center center / cover no-repeat; color: white;}
.checkmarks .container {display: grid; grid-template-columns: 3fr 2fr; grid-gap: 5rem; max-width: 65rem;}
.checkmarks .container h2 {text-align: right; margin: auto 0;}
.checkmarks .container.centered h2 {text-align: center; grid-column-start: 1; grid-column-end: 3;}
.checkmarks .container h2::after {content: none;}
.checkmarks .container p {line-height: 1.5;}
.checkmarks .container ul {grid-column-start: 1; grid-column-end: 3; display: flex; flex-wrap: wrap;}
.checkmarks .container ul li {
  list-style: none;
  border-left: 0.15rem solid white;
  padding: 3.5rem 2rem 2rem;
  text-align: center;
  font-size: 1.1rem;
  font-family: "Gotham", sans-serif;
  text-transform: uppercase;
  flex: 1;
  background: url(/img/icons/check-icon.png) center top / auto 2rem no-repeat;
}
.checkmarks .container ul li:first-child {border-left: 0;}
.checkmarks .container.centered:not(.row) ul {max-width: 40rem; margin: 0 auto 2rem;}
.checkmarks .container.centered:not(.row) ul li {min-width: 50%; border-top: 0.15rem solid white; padding: 5.5rem 2.75rem 3rem; background-position: center 2rem;}
.checkmarks .container.centered:not(.row) ul li:nth-child(odd) {border-left: 0;}
.checkmarks .container.centered:not(.row) ul li:nth-child(1), .checkmarks .container.centered ul li:nth-child(2) {border-top: 0;}

@media (max-width: 60rem) {
  .checkmarks {padding-top: 5rem;}
  .checkmarks .container {display: flex; gap: 3rem; flex-direction: column; text-align: center;}
  .checkmarks .container h2 {text-align: center;}
}
@media (max-width: 35rem) {
  .checkmarks .container.centered:not(.row) ul, .checkmarks .container ul {margin-left: -1rem; margin-right: -1rem; justify-content: center;}
  .checkmarks .container ul li {width: 50%; min-width: 50%; max-width: 50%; border-left: 0; padding-left: 1rem; padding-right: 1rem; margin-top: 1rem;}
  .checkmarks .container.centered:not(.row) ul li {border: 0;}
  .checkmarks .container.centered:not(.row) ul li {margin-top: 0; padding: 5.5rem 1rem 2rem 1rem;}
}

/* ------------------------------------------------------------ *\
	Routine (additional plans)
\* ------------------------------------------------------------ */

.routine {padding: 7rem 0 9rem; background: #333 url(/img/section-bg3.jpg) center center / cover no-repeat; color: white; text-align: center;}
.routine .container ul li {
  list-style: none; 
  max-width: 65rem; 
  text-align: left; 
  padding-bottom: 2.5rem;
  font-size: 1.15rem;
  display: grid; 
  grid-template-columns: 2fr 3fr; 
  grid-gap: 4rem;
}
.routine .container ul li h3 {text-align: right; color: white; margin: auto 0;}

/* ------------------------------------------------------------ *\
	Plans summary (home)
\* ------------------------------------------------------------ */

.plans_summary {padding: 8rem 0 3rem; background: #333 url(/img/section-bg3.jpg) center center / cover no-repeat; text-align: center; clip-path: polygon(50% 0px, 100% 2rem, 100% 100%, 0px 100%, 0px 2rem); margin-top: -2rem;}
.plans_summary h2 {margin-bottom: 2.5rem; color: white;}
.plans_summary h2::after {content: none;}
.plans_summary h2 + p {color: white; font-size: 1.4rem; max-width: 45rem; margin: 0 auto;}
.plans_summary .container li {list-style: none;}
.plans_summary .container > ul {margin: 2rem 0; display: flex; align-items: center; justify-content: center; gap: 0.5rem;}
.plans_summary .container > ul > li {background: white; width: 16rem; padding: 2rem 1.5rem; border: 0.3rem solid #4c5b68;}
.plans_summary .container > ul > li > div:nth-child(1) {margin-bottom: 1rem;}
.plans_summary .container > ul > li > h3 {border-bottom: 0.15rem solid #55626e; padding-bottom: 1.25rem; margin-bottom: 1.75rem;}
.plans_summary .container > ul > li > h4 {font-weight: 500; font-size: 1rem;}
.plans_summary .container > ul > li > ul {margin: 0.5rem 0 1.25rem;}
.plans_summary .container > ul > li > ul li {font-size: 0.8rem; font-weight: 500;}
@media (max-width: 60rem) {
  .plans_summary .container > ul {flex-direction: column;}
  .plans_summary .container > ul > li {width: 100%;} 
  .plans_summary .container > ul > li > ul {columns: 12rem;}
}

/* ------------------------------------------------------------ *\
  Text-block (home)
\* ------------------------------------------------------------ */

.text-block {background-color: white; padding: 80px 0;}
.text-block .container {justify-content: center;align-items: center;max-width: 57rem;border-left: 1px solid black;}
.text-block h2 {text-align: left;justify-content: center;margin-bottom: 2rem;}
.text-block p {text-align: left;justify-content: center;margin-bottom:1rem;margin-top: 1rem;}
.text-block li {list-style-position: inside;}

@media (max-width: 60rem) {.text-block .container {border-left: none;}}

/* ------------------------------------------------------------ *\
	Save Money (home)
\* ------------------------------------------------------------ */

.save_money {padding: 8rem 0 3rem; background: #333 url(/img/section-bg3.jpg) center center / cover no-repeat; text-align: center; clip-path: polygon(50% 0px, 100% 2rem, 100% 100%, 0px 100%, 0px 2rem); margin-top: -2rem;}
.save_money h2 {margin-bottom: 2.5rem; color: white;}
.save_money h2::after {content: none;}
.save_money p {color: white; font-size: 1.6rem; max-width: 40rem; margin: 0 auto;}
.save_money h2 + p {padding-bottom: 2rem; color: white; text-align:left; font-style:normal; font-size: 1rem; max-width: 50rem; margin: 0 auto;}
.save_money .container li {list-style: none;}
.save_money .container > ul {margin: 2rem 0; display: flex; align-items: center; justify-content: center; gap: 0.5rem;}
.save_money .container > ul > li {background: white; width: 16rem; padding: 2rem 1.5rem; border: 0.3rem solid #4c5b68;}
.save_money .container > ul > li > div:nth-child(1) {margin-bottom: 1rem;}
.save_money .container > ul > li > h3 {border-bottom: 0.15rem solid #55626e; padding-bottom: 1.25rem; margin-bottom: 1.75rem;}
.save_money .container > ul > li > h4 {font-weight: 500; font-size: 1rem;}
.save_money .container > ul > li > ul {margin: 0.5rem 0 1.25rem;}
.save_money .container > ul > li > ul li {padding: 0.4rem 0; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;}
@media (max-width: 60rem) {
  .save_money .container > ul {flex-direction: column;}
  .save_money .container > ul > li {width: 100%;} 
  .save_money .container > ul > li > ul {columns: 12rem;}
}

/* ------------------------------------------------------------ *\
	Why
\* ------------------------------------------------------------ */

.why {padding: 3rem 0;}
.why .container {max-width: 65rem;}
.why .container > div:nth-child(1) {display: flex; padding-bottom: 3rem; align-items: center; gap: 2rem;}
.why .container > div:nth-child(1) > div {width: 50%; text-align: center;}
.why .container > div:nth-child(1) > div:nth-child(1) h2 {margin: 2rem 0 0; max-width: 30rem; text-align: left;}
.why .container > div:nth-child(1) > div:nth-child(1) h2::after {content: none;}
.why .container > div:nth-child(1) > div:nth-child(2) img {
  max-width: 100%;
  clip-path: polygon(2rem 0, 100% 0, 100% 100%, 2rem 100%, 0 50%);
  min-width: 32rem;
  height: 18rem;
  object-fit: cover;
}
.why .container > ul {
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  grid-gap: 1.75rem;
  margin: 4rem auto 5rem;
  max-width: 54rem;
}
.why .container > ul li {
  list-style: none;
  padding: 2rem 1.5rem;
  background: white;
  box-shadow: 0px 0px 1rem rgba(0, 0, 0, 0.4);
  font-size: 0.8rem; 
  font-weight: 500; 
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  border-left: solid 0.3rem #4c5b68;
}
.why .container > ul li h3 {line-height: 1.5; margin-bottom: 0.75rem; padding: 0 0.5rem;}
.why .container > div:nth-child(1).noimage {justify-content: center; padding-bottom: 0;}
.why .container > div:nth-child(1).noimage > div:nth-child(1) h2 {text-align: center;}
@media (max-width: 60rem) {
  .why {padding-top: 0;}
  .why .container {padding: 0;}
  .why .container > div:nth-child(1) {flex-direction: column-reverse; align-items: stretch; padding-bottom: 1.5rem;}
  .why .container > div:nth-child(1) > div {width: 100%; text-align: center;}
  .why .container > div:nth-child(1) > div:nth-child(1) {padding: 0 1rem;}
  .why .container > div:nth-child(1) > div:nth-child(1) img {max-width: 80%;}
  .why .container > div:nth-child(1) > div:nth-child(1) h2 {text-align: center; margin-left: auto; margin-right: auto;}
  .why .container > div:nth-child(1) > div:nth-child(2) img {clip-path: polygon(100% 0, 100% calc(100% - 2rem), 50% 100%, 0 calc(100% - 2rem), 0 0); width: 100vw; min-width: 0;}
  .why .container > ul {padding: 0 1rem;}
  .why .container > div:nth-child(1).noimage {padding-top: 4rem;}
}

/* ------------------------------------------------------------ *\
	Components
\* ------------------------------------------------------------ */

.components > div:nth-child(1) {display: flex; align-items: center; background: linear-gradient(to right, #1b1c1c 20%, #535353 55%); justify-content: flex-end;}
.components > div:nth-child(1) h2 {color: white; text-align: right; word-spacing:9999px; padding-right: 5rem; letter-spacing: 0.2em; margin: 0; line-height: 1.6;}
.components > div:nth-child(1) h2::first-line {font-size: 7rem; line-height: 1.3;}
.components > div:nth-child(1) h2::after {content: none;}
.components > div:nth-child(1) > div:nth-child(2) {min-width: 50%;}
.components > div:nth-child(1) img {
  max-width: 100%; 
  clip-path: polygon(4rem 0,100% 0, 100% 100%, 4rem 100%, 0 50%); 
  width: 100%; 
  display: block; 
  object-fit: cover; 
  aspect-ratio: 2;
  min-height: 25rem;
  max-height: 40rem;
}
.components > .container {position: relative; margin-top: 4rem; margin-bottom: 4rem; display: flex; gap: 3rem;}
.components > .container > div:nth-child(1) {display: flex; flex-direction: column;}
.components > .container > div:nth-child(1) a {
  cursor: pointer; 
  padding: 1.25rem 2rem; 
  width: 25rem; 
  border: 0.15rem solid #606a76; 
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-family: "Gotham", sans-serif;
  text-transform: uppercase;
  color: #1d3766;
  font-weight: normal;
  text-decoration: none;
}
.components > .container > div:nth-child(1) a.selected {
  background: #1d3766;
  color: white;
  border-color: #1d3766;
}
.components > .container > div:nth-child(2) {width: 100%; max-width: 40rem;}
.components > .container > div:nth-child(2) > div {
  border: 0.15rem solid #606a76; 
  padding: 0 3rem 2.25rem; 
  display: none;
  font-size: 0.8rem;
  font-weight: normal;
}
.components > .container > div:nth-child(2) > div::before {
  content: "";
  height: 0.14rem;
  background: #4c5b68;
  width: 3.25rem;
  position: absolute;
  margin: 2rem 0 0 -6.25rem;
}
.components > .container > div:nth-child(2) > div li {padding: 0.35rem 0;}
.components > .container > div:nth-child(2) > div h3 {
  color: white; 
  background: #36659f;
  margin: 0 -3rem 1.25rem;
  padding: 1.25rem 3rem;
}
.components > .container > div:nth-child(2) > div h3::after {
  content: "Covered components"; 
  border-left: 0.15rem solid white; 
  display: inline-block;
  margin-left: 1rem;
  padding-left: 1.25rem;
}
.components > .container > div:nth-child(2) > div:nth-child(1) {margin-top: calc(5.31rem * 0);}
.components > .container > div:nth-child(2) > div:nth-child(2) {margin-top: calc(5.31rem * 1);}
.components > .container > div:nth-child(2) > div:nth-child(3) {margin-top: calc(5.31rem * 2);}
.components > .container > div:nth-child(2) > div:nth-child(4) {margin-top: calc(5.31rem * 3);}
.components > .container > div:nth-child(2) > div:nth-child(5) {margin-top: calc(5.31rem * 4);}
.components > .container > div:nth-child(2) > div:nth-child(6) {margin-top: calc(5.31rem * 5);}
.components > .container > div:nth-child(2) > div:nth-child(7) {margin-top: calc(5.31rem * 6);}
.components > .container > div:nth-child(2) > div:nth-child(8) {margin-top: calc(5.31rem * 7);}
.components > .container > div:nth-child(2) > div:nth-child(9) {margin-top: calc(5.31rem * 8);}
.components > .container > div:nth-child(2) > div:nth-child(10) {margin-top: calc(5.31rem * 9);}

@media (max-width: 60rem) {
  .components > div:nth-child(1) {flex-direction: column-reverse;}
  .components > div:nth-child(1) img {clip-path: polygon(100% 0, 100% calc(100% - 2rem), 50% 100%, 0 calc(100% - 2rem), 0 0); min-height: auto;}
  .components > div:nth-child(1) h2 {padding: 0rem 0 2rem; text-align: center; transform: scale(0.8);}
  .components > .container > div:nth-child(1) {display: none;}
  .components > .container > div:nth-child(2) > div::before {content: none;}
  .components > .container > div:nth-child(2) > div {display: block!important;}
  .components > .container > div:nth-child(2) > div + div {margin-top: 2rem!important;}
}
@media (max-width: 45rem) {
  .components > .container > div:nth-child(2) > div h3::after {content: none;}
}

/* ------------------------------------------------------------ *\
	FAQs
\* ------------------------------------------------------------ */

@keyframes animate {
  from {grid-template-rows: 0fr;}
  to {grid-template-rows: 1fr;}
}
.faqs { padding: 4rem 0; text-align: center;}
.faqs details {
  text-align: left; 
  max-width: 75rem; 
  margin: 0.75rem auto; 
  border-bottom: 2px solid #e7e8e9; 
  color: #231f20;
}

.faqs details summary {
  color: #1d3766; 
  font-size: 1.1rem;
  font-family: "Gotham", sans-serif;
  letter-spacing: 0.1em;
  font-weight: normal;
  padding: 1.75rem 3rem;
  cursor: pointer;
}
.faqs details > div {display: grid; grid-template-rows: 0fr;}
.faqs details[open] > div {animation: animate 0.15s 0s 1 normal forwards;}
.faqs details > div > div {padding: 0rem 3rem 0rem; overflow: hidden; position: relative; margin-top: -0.5rem;}
.faqs details > div > div > *:last-child {margin-bottom: 2.25rem;}
.faqs img {margin-top: 5.5rem; max-width: 80%;}
.faqs + .faqs:nth-child(even) {background: white;}
.faqs details a {color: #231f20; text-decoration: underline;}
@media (max-width: 40rem) {
  .faqs details summary,
  .faqs details > div > div {padding-left: 2rem; padding-right: 2rem;}
  .faqs details > div > div {margin-top: -0.75rem;}
}

/* ------------------------------------------------------------ *\
	Footerform
\* ------------------------------------------------------------ */

.footerform {
  text-align: center; 
  padding: 7rem 0 3rem;
  clip-path: polygon(0% 4rem, 50% 0%, 100% 4rem, 100% 100%, 0% 100%);
  margin-top: -4rem;
  background: white;
}
.footerform form {margin-bottom: 4rem;}
.footerform form > div {display: block;}
.footerform img {display: inline-block; max-width: 80%;}
.footerform h3 {font-size: 1.5rem;}
.footerform #makemodelselector select {display: inline-block; margin-left: 0.2rem; margin-right: 0.2rem;}
.footerform #makemodelselector .selects {transform: scale(120%); max-width: 90%; margin-left: auto; margin-right: auto;}
@media (max-width: 40rem) {
  .footerform {clip-path: polygon(0% 2rem, 50% 0%, 100% 2rem, 100% 100%, 0% 100%);}
}

/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */

.footer .container a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color:white;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s;
}

.footer .container a:hover::before {
  transform: scaleX(1);
}

.footer {background: #252525; color: grey; padding-top: 2.5rem;  }
.footer .container {display: flex; gap: 4rem; flex-wrap: wrap; justify-content: space-between; }
.footer .container ul li {list-style: none;}
.footer .container a {color: grey; text-decoration: none; position: relative }
.footer .container a:hover {color: white;}


.footer .container > div:nth-child(2) {flex: 2;}
.footer .container > div:last-child {flex: 3; line-height: 1.4;}

.footer .container .example-prices {
  text-align: left;
  margin-top: 2.5rem;
  font-size: .8em;
  color: grey;
}

.footer-column {
  /* flex: 1 1 200px; */
  min-width: 200px; 
}

.footer-column ul,
.footer-column p,
.footer-column a {
  margin: 0;
  padding: 0;
  list-style: none;
}


@media (max-width: 50rem) {
  .footer .container {gap: .5rem; flex-direction: column;}
  .footer .container .example-prices {margin-top: .5rem}
  .footer-column {min-width:100%; flex: 1 1 auto;}
}

.footer .container h3 {color :white; font-size: 1rem; text-transform: uppercase; margin-bottom:0rem; }

.copyright {padding-top:1rem; padding-bottom:1rem; font-size: 0.75rem; hyphens: auto;}
.copyright > div { border-top: 1px solid rgb(84, 84, 84); padding-top: 1rem;}

.row-reverse {flex-direction:row-reverse}
.small-link {font-size:.75rem;padding-bottom: 1rem;}
.copyright > .col > a {
  color:grey;
}
.disclaimer {
  font-size:.75rem; padding-top: 1rem; width:40vw; hyphens: auto;
}


@media (max-width: 60rem) { 
  .disclaimer {width:95vw;}
}


/* ------------------------------------------------------------ *\
  404
\* ------------------------------------------------------------ */

.error404 {color: white; padding: 4rem 0 3rem; background: #333 url(/img/section-bg3-2k.webp) center center / cover no-repeat; text-align: center;  margin-top: -2rem;}


/* ------------------------------------------------------------ *\
	Calculator
\* ------------------------------------------------------------ */

.calculator {padding: 5rem 0 5rem; text-align: center;}
.calculator h2 {margin: 0 auto 3rem; max-width: 40rem;}
.calculator .container warranty-purchase {text-align: left;}

/* ------------------------------------------------------------ *\
  Blog
\* ------------------------------------------------------------ */

.blog {
  padding: 2.75rem 0 0rem; 
  text-align: left;
  margin-left: 15%;
  margin-right: 15%;
  line-height: 1.8rem;
  font-size: 1.1rem;
}

.blog p { color: #231f20 }
.blog-heading {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 1rem;
  margin-top: 3rem;
}

.blog p, h3, h2, h1, hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.blog a {color: #36659f;text-decoration: none;}
.blog a:hover {color: #36659f;text-decoration: underline;}
.blog img {padding:1rem;}
h1.news-title-single {font-size: 2.25rem!important;  margin-right:20%!important;line-height:2.25rem; text-transform: initial!important;}
h4.news-description-single {margin-right:0%; text-transform: initial;font-size:1.2rem!important;
  line-height:1.6rem;}

.content-container a:hover {
  color: #36659f!important;
  text-decoration: underline;
}

.blog li {
  margin-left: 1rem;
}

.blog ol li {
  list-style: decimal;
}

.blog blockquote {
  border-left: 3px solid #36659f;
  margin-left: 2rem;
  padding-left: 2rem;
  font-size: 1.1rem;
}

p.news-description-single {
  font-size: 1.5rem!important; 
  line-height: 1.5rem!important;
  font-weight:400;
  letter-spacing: -0!important; 

}

p.news-title-single {
  font-size: 2.25rem!important; 
  font-weight: 500;
  letter-spacing: -1px!important; 
  line-height: 2.25rem!important;
}

.firstpost {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  letter-spacing: 0;
}

.news-container {
  display: flex;
  padding-left: 15px;
  padding-right: 15px;
}

.image-container {
  flex: 2;
}

.image-container img {
  width: 100%;
  object-fit: cover;
  border-radius: 3px!important;
}

img.news-thumbnail {object-fit: cover; height: 200px; width:100%}

div.pt {padding-top: 3rem;}
div.m10 {margin-left: 10%; margin-right: 10%}
div.pb {padding-bottom: 6rem;}
div.mt {padding:0rem;margin-top:6rem;}
div.p0 {padding: 0 0rem;}

a.nodecoration {
  text-decoration: none!important; 
  color: black;}

h2.news-first-title {text-align: left!important; line-height: 2rem; text-transform:initial!important;}

.content-container {
  flex: 1;
  padding-left: 25px;
  box-sizing: border-box;
  text-align: left; margin-top: -15px;
  padding-bottom: 2rem;
}

@media (max-width:60rem) {
  p.news-description-single {padding-bottom: 3rem}
  .m10 {margin-left: 0%!important; margin-right: 0%!important}
  .p10 {padding-left: 0%!important; padding-right: 0%!important;padding-top: 0%!important}
  .blog {margin-right: 1rem; margin-left: 1rem; padding: 1rem;}
  .news-container {flex-direction: column;}
  .content-container {padding: 1rem;}
  .image-container {padding: 1rem;}
  .blog-heading {padding-left: 30px;padding-right: 30px;}
  h1.news-title-single {margin-right:0%!important;padding: 1rem;font-size:2.2rem!important; line-height: 2.3rem;}
  h4.news-description-single {margin-right:0%;padding: 1rem;}
  .content-container h5 {padding: 0rem; }
  .none h5 {padding: 1rem;}
}

/* ------------------------------------------------------------ *\
	Blog More
\* ------------------------------------------------------------ */

.blog_more {padding-bottom: 3rem; padding-top: 3rem;}
.blog_more .container > div:nth-child(1) {padding-bottom: 0rem; align-items: center; }
.blog_more .container > div:nth-child(1) > div {width: 100%; text-align: center;}
.blog_more .container > div:nth-child(1) > div:nth-child(1) h2 {margin: 1rem 0 0; width: 100%; text-align: center;}
.blog_more .container > div:nth-child(1) > div:nth-child(1) h2::after {content: none;}

.blog_more .container > ul {
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
  grid-gap: 1.75rem;
  margin: 3rem auto 3rem;

}
.blog_more .container > ul li {
  list-style: none;
  padding: 1rem 1rem;
  font-size: .80rem; 
  font-weight: 300; 
  letter-spacing: 0.05em;
  line-height: 1.3rem;
  text-align: left;
}

.blog_more .container img { border-radius: 3px; box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.25);}
.blog_more .container img {transition: transform 0.5s ease;}
.blog_more .container img:hover {  filter:contrast(1.05) }
.blog_more .container > ul li h2:hover {text-decoration: none; color: #1d3766}

.blog-more .container > ul li h2 a {color: #1d3766;text-decoration: none;}
.blog_more .container > ul li h3 {line-height: 1.5; margin-bottom: 0.75rem; padding: 0 0.5rem;}
.blog_more .container > div:nth-child(1).noimage {justify-content: center; padding-bottom: 0;}
.blog_more .container > div:nth-child(1).noimage > div:nth-child(1) h2 {text-align: center;}
@media (max-width: 60rem) {

  .blog_more .container {padding: 0;}
  .blog_more .container > div:nth-child(1) {flex-direction: column-reverse; align-items: stretch; }
  .blog_more .container > div:nth-child(1) > div {width: 100%; text-align: center;}
  .blog_more .container > div:nth-child(1) > div:nth-child(1) {padding: 0 1rem;}
  .blog_more .container > div:nth-child(1) > div:nth-child(1) h2 {text-align: center; margin-left: auto; margin-right: auto;}
  .blog_more .container > ul {padding: 0 1rem;   grid-template-columns:none;}
  .blog_more .container > div:nth-child(1).noimage {padding-top: 4rem;}
}

/* ------------------------------------------------------------ *\
  404
\* ------------------------------------------------------------ */

.error404 {color: white; padding: 4rem 0 3rem; background: #333 url(/img/section-bg3.jpg) center center / cover no-repeat; text-align: center;  margin-top: -2rem;}

/* ------------------------------------------------------------ *\
  Paginator
\* ------------------------------------------------------------ */

.pagination-nav ul.pagination {
  list-style: none; 
  display: flex; 
  justify-content: left; }

.page-link {
	position: relative;
	display: block;
	padding: .5rem .5rem;
	margin-left: -1px;
	line-height: 1.25;
	color: black;
  text-decoration: none;
	background-color: white!important;
	border: 0px solid black; 
	border-radius: 200px!important;
  -moz-border-radius: 200px;
  -webkit-border-radius: 200px;
}

.page-item:first-child .page-link  {
	margin-left: 0;
}

.pagination-nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 32px;
    height: 32px;
    border:2px solid #4c5b68;
    margin: 5px;
    color: #4c5b68;
    transition: .2s ease-in;
}

.pagination-nav a:hover {    
  color: white;
  background-color: #4c5b68!important;
}


.page-item a.active  {
      background-color: #4c5b68!important;
      color: white;
}

@media (max-width:60rem) {
  .pagination-nav ul.pagination {margin-left: 2rem;}
}

.hero-single {position: relative; display: flex;
  flex-direction: column;
  justify-content:center; text-align: center;
min-height:40vh}

.hero-single img {position: absolute; width: 100%; height: 100%; object-fit: cover;}
.hero-single::after {content: ""; position: absolute; opacity: 0.8;   background: linear-gradient(to top, black, #A8A9AC); width: 100%; height: 100%; top: 0;}
.hero-single .container {flex-direction:column; position: relative; z-index: 2; color: white; display: flex; align-items: left; max-width: 68rem; }
.hero-single .container > div {flex: 1; padding: 0rem 0;}
.hero-single .container h1 {text-align: center;  font-family: "obviously", sans-serif; font-size: 2rem; line-height: 2.5rem; margin-bottom:2.5rem}
.hero-single .container h1 span:nth-child(1) {display: inline-block; border-bottom: 0.2rem solid #4c5b68; margin-bottom: 0.25rem;}
.hero-single .container h1 span:nth-child(2) {display: inline-block;}
body.home .hero-about .container h1 {margin-top: 0; margin-bottom: 2.5rem;}
.hero-single .container p {text-align: center; line-height: 1.25;  margin-bottom: 1.75rem; font-size:1.4em}
.hero-single .container .button {margin-top: 1.15rem;}

body.home .hero-about .container p {max-width: 28rem;}

@media (max-width: 60rem) {
  .hero-single .container p {margin-left:auto; margin-right:auto;}

}


/* ------------------------------------------------------------ *\
	Hero About
\* ------------------------------------------------------------ */

.hero-about {position: relative; display: flex;
  flex-direction: column;
  justify-content:center;}
.hero-about img {position: absolute; width: 100%; height: 100%; object-fit: cover;}
.hero-about::after {content: ""; position: absolute; opacity: 0.8;   background: linear-gradient(to top, black, #A8A9AC); width: 100%; height: 100%; top: 0;}

.hero-about .container {flex-direction:column; position: relative; z-index: 2; color: white; display: flex; align-items: left; max-width: 68rem; }
.hero-about .container > div {flex: 1; padding: 0rem 0;}
.hero-about .container h1 {text-align: left;  font-family: "obviously", sans-serif; font-size: 2rem; line-height: 2.5rem;}
.hero-about .container h1 span:nth-child(1) {display: inline-block; border-bottom: 0.2rem solid #4c5b68; margin-bottom: 0.25rem;}
.hero-about .container h1 span:nth-child(2) {display: inline-block;}
body.home .hero-about .container h1 {margin-top: 0; margin-bottom: 2.5rem;}
.hero-about .container p {text-align: left; line-height: 1.5; margin-left: auto; margin-right: auto; margin-bottom: 1.75rem; font-size:1rem}
.hero-about .container .button {margin-top: 1.15rem;}

body.home .hero-about .container p {max-width: 28rem;}
.hero-about .container .form {
  -webkit-filter: drop-shadow(1rem 1rem 0.5rem rgba(0, 0, 0, 0.4));
  filter: drop-shadow(1rem 1rem 0.5rem rgba(0, 0, 0, 0.4));
  max-width: 23rem;
}
.hero-about .container .form form {
  clip-path: polygon(0 0,100% 0,100% 100%,50% calc(100% - 1.5rem),0 100%);
  background-color: #fff;
  padding: 4rem 2.5rem 4.3rem;
}

.about_cta {
  font-size: 1.1rem;
}

.about_cta > a {
  color: #36659f;
}

@media (min-width: 60rem) {
.hero-about.image {background: #f1f1f2; min-height: 30rem; border-top: 0.2rem solid #4c5b68;}
.hero-about.image img {width: 50%; left: 50%; width: 40rem;}
.hero-about.image.left img {width: 50%; left: auto; right: 50%; width: 40rem;}
.hero-about.image::after {content: none;}
.hero-about.image .container {display: block;}
.hero-about.image .container h1 {color: #1d3766; text-align: left;}
.hero-about.image .container p {color: rgb(35, 31, 32); text-align: left;}
.hero-about.image .container > div {width: 50%; text-align: left; padding: 3rem 4rem 5rem 3rem;}
.hero-about.image.left .container > div {margin-left: 50%; padding: 3rem 3rem 5rem 4rem;}
}

@media (max-width: 60rem) {
  .hero-about .container {flex-direction: column; gap: 2rem;}
  body.home .hero-about .container > div:first-child {padding-bottom: 0;}
  .hero-about .container > div + div {padding-top: 0;}
  .hero-about .container h1 {margin-top: 2rem;}
  .hero-about .container h1 span:nth-child(1) {border-bottom-color: white;}
  .hero-about .container form {text-align: center;}
}

.hero-about .container .title-row {
  text-align: left;
  padding-top: 4rem;
  
}

.hero-about .container .title-row p {
  line-height: 1.6rem;
  font-size: 1.1rem;
  margin-bottom: 4rem;
  

}

.title-row > p > a {color:black;}
.container .page-size {
  margin-left: 7.5%; margin-right:7.5%; 
}

.container h2.page-size > a {
  color:white;
}



 .container .columns {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 2rem;
  margin-bottom: 2rem;
  gap: 2rem;
  margin-left: 7.5%;
  margin-right: 7.5%;

}

 .container .column {
  flex: 1;
  padding: 1rem 0;
  text-align: left;
  align-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem; 
  
}

.container .column .underline {
  line-height: 1.2rem;
  font-size: 1rem;
  border-bottom: 1px solid #0046ad;
}

.container .column img {
  margin-bottom: 0.5rem;
  border-radius: 100%;


 
}

@media (max-width: 60rem) {
   .container .columns {
      flex-direction: column;
      gap: 1rem;
  }
   .container .column {
      flex: 100%;
  }

  .columns > .column > img {
    padding-left: calc(100vw/4);
    padding-right: calc(100vw/4);
  }

  .small {font-size: 1.1rem;}
  .center-mobile {text-align: center}
  .underline {border-bottom: none!important;}
}

.container .mt-2, .mt-2 {
  margin-top: 2rem!important;
}


.container .mt-3, .mt-3 {
  margin-top: 3rem!important;
}

.container .mt-4, .mt-4 {
  margin-top: 4rem!important;
}

.container .mt-5, .mt-5 {
  margin-top: 5rem!important;
}


.container .mb-5, .mb-5 {
  margin-bottom: 5rem!important;
}

.container .mb-4, .mb-4 {
  margin-bottom: 4rem!important;
}

.container .mb-3, .mb-3 {
  margin-bottom: 3rem!important;
}

.container .mb-2, .mb-2 {
  margin-bottom: 2rem!important;
}

.container .mb-1, .mb-1 {
  margin-bottom: 1rem!important;
}

.container .small {
  font-size: 0.8rem!important;
}

.brand_title {
  text-align: center; 
  margin-bottom:2rem; 
  letter-spacing: 0.3rem;
}
