/* ClearRamp — standalone static copy of clearramp.com styling */
body {
  background-color: var(--koordly-dark-green);
}

/*Koordly colors*/
.kdg-bg {
  background-color: var(--koordly-darker-green);
}

.kg-bg {
  background-color: var(--koordly-dark-green);
}

.klg-bg {
  background-color: var(--koordly-grey);
}

/*a control*/
a {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

a::before {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/*pricing line*/
.pricing-line {
  position: absolute;
  top: 0px;
  height: 10px;
  width: 100%;
}

.pricing-line.free {
  background-color: #e4e6c3;
}

.pricing-line.team {
  background-color: #899878;
}

.pricing-line.business {
  background-color: #222725;
}

.pricing-line.enterprise {
  background-color: #121113;
}

/*btn control*/
.btn-koordly {
  background-color: #899878;
  color: #fff;
  border-color: none;
  transition: ease-in-out 0.2s;
}

.btn-koordly:hover {
  background-color: #222725;
  transition: ease-in-out 0.2s;
}

.btn-koordly h4,
span {
  color: #fff;
  transition: ease-in-out 0.2s;
}

/*btn link control*/
.btn-link {
  color: #899878 !important;
}

.btn-link:hover {
  color: #222725 !important;
  text-decoration: none;
}

/*contact image control*/
.rune-image {
  background-image: url(./assets/rune.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  max-height: 700px;
  max-width: 475px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 550px;
}

.oliver-image {
  background-image: url(./assets/oliver.webp);
  background-repeat: no-repeat;
  background-size: cover;
  max-height: 700px;
  max-width: 475px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 550px;
}

/*font control*/
h1,
h2,
h3,
h4 {
  font-family: 'Koordly';
}

p,
a,
ul,
li,
span.h5,
h6,
label {
  font-family: 'Koordly-light';
}

/*font weight control*/
.font-weight-light {
  font-weight: 100 !important;
}

.branding {
  font-weight: 700 !important;
  font-family: 'Koordly-semibold';
  font-size: 2rem;
}

/*social icon control*/
.social-btn {
  opacity: 1;
  width: 25px;
  display: block;
  height: 25px;
}

.social-btn:hover {
  opacity: 0.6;
  transition: ease-in-out 0.2s;
}

/*min/max width/height classes*/
.min-h-500 {
  min-height: 500px;
}

.min-h-250 {
  min-height: 250px;
}

/*Mobile nav control*/
.vertical-nav-item {
  background-color: var(--koordly-grey);
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
  transition: ease-in-out 0.2s;
}

.vertical-nav-item:hover {
  background-color: #000
}

/*icon button control*/
.icon-button {
  color: #fff;
  transition: ease-in-out 0.2s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
}

.icon-button:hover {
  color: #000 !important;
  background-color: #fff;
  border-radius: 50%;
}

/*root style control*/
:root {
  --koordly-darker-green: #f2f2f1;
  --koordly-dark-green: #f2f2f1;
  --koordly-grey: #222725;
}

/*media screen*/
@media only screen and (min-width: 900px) {
  .normal-nav {
    display: block !important;
  }

  .mobile-nav {
    display: none !important;
  }
}

@media only screen and (max-width: 900px) {
  .normal-nav {
    display: none !important;
  }

  .mobile-nav {
    display: block !important;
  }
}

/*font face classes*/
@font-face {
  font-family: 'Koordly-semibold';
  src: url(./assets/fonts/Lato/fonts/Lato-Semibold.ttf);
}

@font-face {
  font-family: 'Koordly';
  src: url(./assets/fonts/Lato/fonts/Lato-Regular.ttf);
}

@font-face {
  font-family: 'Koordly-light';
  src: url(./assets/fonts/Lato/fonts/Lato-Light.ttf);
}

.font {
  font-family: 'Koordly';
}

/*font size classes*/
h1 {
  font-size: 25px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 23px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 20px;
}

p {
  font-size: 20px;
}

.pt-pb-5 {
  padding-top: 30px;
  padding-bottom: 20px;
}

.w-80 {
  width: 80%;
}
