html,
body {
  font-family: "owner-regular";
}

h1,
h2 {
  font-family: "owners-wide";
}

h1,
h2 {
  text-transform: uppercase;
}

h3 {
  font-family: "owners-medium";
}

h4,
h5,
h6,
strong,
b,
button,
th {
  font-family: "owners-wide";
}

section,
p,
span,
div,
li,
td {
  font-family: "owners-regular";
}

.font-light {
  font-family: "owners-light" !important;
}

.font-regular {
  font-family: "owners-regular" !important;
}

.font-medium {
  font-family: "owners-medium" !important;
}

.font-bold {
  font-family: "owners-bold" !important;
}

:root {
  --teal: #4ec0b0;
  --cyan: #2fdac6;
  --lime: #30d890;
  --theme: #254d27;
  --dullGreen: #254d27;
  --green: #000;
  --leafyGradient: linear-gradient(to right, #30d890, #2ed4c1);
  --strongGradient: linear-gradient(45deg, #20966e, #06390d);
  --orangeGradient: linear-gradient(45deg, #fd7e14, #ff4b00);
  --purpleGradient: linear-gradient(45deg, #d091d9, #cd48df);
  --pinkGradient: linear-gradient(45deg, #ffe0ed, #ffd3e5);
  --brandGreen: #052900;
  --brandLightGreen: #76b732;
  --brandDullGreen: #667a65;
  --brandGrey: #bfbfbf;
}

html body ol li::before {
  color: var(--teal) !important;
}

html body ul li::before {
  background-color: var(--teal) !important;
}

body {
  position: relative;
  font-size: 14px;
  margin: 0;
  padding: 0;
  color: #495158;
  background-color: #fff !important;
}

html {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.8rem;
}

@media (max-width: 576px) {
  h2 {
    font-size: 2.2rem;
  }
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

.font-fourth {
  font-size: 1.125rem;
}

.font-tewelth {
  font-size: 12px;
}

p {
  font-size: 16px;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: inherit;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol li,
ul li {
  display: inline-block;
}

iframe {
  border: 0;
}

button {
  cursor: pointer;
  background: transparent;
}

button:focus {
  outline: none;
}

a,
button {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

img {
  width: 100%;
}

.thumb-img,
.thumb-img > img {
  display: block;
  width: 100%;
}

section {
  position: relative;
}

.btn-prime {
  background: var(--brandLightGreen);
  border: none;
  color: #fff;
  height: 50px;
  padding: 5px 40px;
  text-transform: uppercase;
  border-radius: 50px;
  font-size: 16px;
  font-family: "owners-medium";
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-prime:hover {
  background: var(--brandGreen);
  color: #fff;
}

.loginBanner .media {
  background: url(../../assets/images/banner.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: calc(1vw + 20px);
  overflow: hidden;
  min-height: 20dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 1199px) {
  .loginBanner .media {
    border-radius: 30px;
    background: none;
    min-height: 80px;
    margin: 2vh 0;
  }
}

.loginBanner .media .brand {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  padding: 18px 36px 18px 26px;
  border-radius: 0 50px 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

@media (max-width: 1199px) {
  .loginBanner .media .brand {
    transform: translateX(-50%);
    top: 0;
    left: 50%;
  }
}

.loginBanner .media .brand img {
  height: 32px;
  width: auto;
}

@media (max-width: 1199px) {
  .loginBanner .media .brand img {
    height: 45px;
  }
}

.wrap {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.wrap .top,
.wrap .bottom {
  position: fixed;
  z-index: 10;
}

.wrap .top {
  left: 0;
  top: 0;
  width: 120px;
}

@media (max-width: 1199px) {
  .wrap .top {
    width: 70px;
  }
}

.wrap .bottom {
  right: 0;
  bottom: 0;
  width: 15vw;
}

@media (max-width: 1199px) {
  .wrap .bottom {
    width: 150px;
  }
}

.wrap .container {
  position: relative;
  z-index: 20;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

@media screen and (min-width: 1200px) {
  .container {
    height: 100dvh;
  }
}

.container .row {
  margin-inline: -8px;
}

.container .row > div {
  padding-inline: 8px;
}

.pod {
  position: relative;
  border-radius: calc(0.8vw + 15px);
  overflow: hidden;
  margin-bottom: 0px;
  padding-top: 50vh;
}

@media (max-width: 1199px) {
  .pod {
    margin: 0 0 30px 0;
    padding-top: 230px;
  }
}

.pod::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, #052900);
  z-index: 10;
}

.pod img {
  width: 100%;
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.pod .text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  top: auto;
  bottom: 10vh;
  height: auto;
  gap: 20px;
  z-index: 20;
  flex-wrap: wrap;
  flex-direction: column;
  min-height: 200px;
}

@media (max-width: 1199px) {
  .pod .text {
    padding-top: 0px;
    bottom: 0;
    justify-content: center;
  }
}

.pod .text h2 {
  font-size: calc(1vw + 1.8em);
  color: #fff;
  width: 100%;
  text-align: center;
}

@media (max-width: 1199px) {
}

.pod .btn-outline {
  background-color: transparent;
  border: 3px solid #fff;
  font-family: wide;
  font-size: 16px;
  height: 50px;
  min-width: 140px;
  color: #fff;
  border-radius: 40px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pod .btn-outline:hover {
  color: #052900;
  background-color: #fff;
}

.pod .text p {
  color: #fff;
  font-size: 16px;
  font-family: "owners-medium";
  margin: 0 0 -15px;
}

.pod .text .link {
  font-size: 16px;
  font-family: "owners-medium";
  color: #fff;
  text-decoration: underline !important;
}
