/*
* This is the Main CSS file for the TrixMed Transportation LLC website.
* ================================================================================================
*/
@import url('https://fonts.cdnfonts.com/css/zona-pro');
@import url('https://fonts.cdnfonts.com/css/barlow');

:root {
    
    /********* Color Pallete ********************************/

    --hue: 25;
    --hueCompliment: calc(var(--hue) + 180);
    --hueRightAnaloguos: calc(var(--hue) + 30);
    --hueLeftAnaloguos: calc(var(--hue) - 30);

    --primary: hsl(var(--hue) 90% 50%);
    --secondary: hsl(var(--hueCompliment) 90% 50%);
    --ascent: hsl(var(--hueRightAnaloguos) 90% 50%);

    --primary-dark: hsl(var(--hue) 90% 40%);
    --primary-darker: hsl(var(--hue) 90% 30%);
    --primary-light: ;
    --ascent-dark: hsl(var(--hueRightAnaloguos) 90% 40%);
    --ascent-darker: hsl(var(--hueRightAnaloguos) 90% 30%);
    --ascent-light: ;
    --ascent-compliment: hsl(calc(var(--hueRightAnaloguos) + 180) 90% 50%);
    --ascent-compliment-dark: hsl(var(--ascent-compliment) 90% 30%);

    /***************************************************************/
    
    --orange: var(--primary);
    --black: #000;
    --dark: #555;
    --gray: lightslategray;
    --lightblack: #777;
    --white: #fff;
}

.ascent-btn {
    background-color: var(--ascent);
    border: 1px solid var(--ascent-compliment-dark);
    color: var(--ascent-compliment);
    font-weight: bolder;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 275;
    font-style: normal;
    line-height: 1.35em;
    position: relative;
    color: var(--dark);
}
a {
    color: var(--orange) !important;
    text-decoration: none !important;
}
a:hover {
    color: var(--black) !important;
    text-decoration: none !important;
}
.a-white {
    color: var(--white) !important;
}

.table-wrapper {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    overflow: auto;
    white-space: normal;
}

.header {
    background-image: url("../images/trixmed-background-2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-origin: top left;
}
.header-a {
    color: var(--white) !important;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Zona Pro", sans-serif;
    font-weight: 400;
}

input, 
textarea {
    font-family: 'Barlow', sans-serif !important;
    font-size: 18px !important;
}

.hero {
    background: rgba(255, 255, 255, 1);
    min-height: 400px;
}
.hero h1 {
    font-size: 2.8em;
}
.hero p {
    font-size: 1.4em;
    line-height: 1.2em;
}
.c {
    background: rgba(255, 255, 255, 1);
    min-height: 400px;
}
.c-div {
    border: 1px solid var(--black);
    border-radius: 10px;
    min-height: 350px;
}

.o-wrapper {
    background-color: var(--orange);
    border: 1px solid #d56d22;
}
.w-wrapper {
    background-color: var(--white);
}
.lb-wrapper {
    background-color: var(--primary-dark);
    border: 1px solid var(--primary-darker);
}

.b {
    min-height: 500px;
}
.a #a-text1 {
    color: var(--primary);
    border: 1px solid var(--orange);
    border-radius: 50px;
    margin-top: -20px;
    z-index: 1000;
    background-color: var(--white);
}

.b #b-text1 {
    font-size: 2.3em;
    line-height: 1.1em;
    color: var(--white);
    font-weight: bold;
}
.b #b-text2 {
    font-size: 1.4em;
    text-align: right;
    line-height: 1.1em;
    color: var(--white);
}

.e #e-text1 {
    font-size: 1.6em;
    line-height: 1.1em;
}
.e #e-text2 {
    font-size: 1.1em;
    line-height: 1.1em;
}
.e #e-icon1 {
    font-size: 1.8em;
}
.e #e-text3 {
    font-size: 2.1em;
    line-height: 1.1em;
}

.g a {
    color: var(--white) !important;
    font-weight: 400;
    line-height: 1.7em;
}

.back-circle, 
.back-circle-active {
    border: 1px solid var(--lightblack);
    width: 30px;
    height: 30px;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}
.back-circle-active, 
.back-circle:hover {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white) !important;
}

.after-footer {
    margin-top: 150px;
}

.page-navigation {
    display: flex;
    align-items: center;
    width: 100%;
    margin: auto;
    padding: 20px 0;
    background-color: white;
    box-shadow: none;
    border-radius: 0 0 10px 10px;
  }
  .page-navigation .inner {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  } 
  .navigation-btn {
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
    height: 24px;
    width: 24px;
    /* border: 1px solid #DFE3E8; */
    border: none;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s linear;
  }
  .navigation-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
  }
  .prev, .next {
    border: 2px solid var(--primary-blue);
    height: 27px;
    width: 27px;
  }
  .active {
      background-color: var(--primary-blue);
      color: var(--white);
      border: 1px solid var(--primary-blue);
      font-weight: 600;
  }
  .navigation-btn.disabled {
      background-color: var(--grey-bg);
      border-width: 1px;
      border-color: #8D8D8D;
      color: #8D8D8D;
      cursor: not-allowed !important;
  }

.relative-position {
    position: relative;
}

.nav-anchor, 
.nav-anchor-active {
    display: inline-block;
    padding: 10px 20px;
    width: 100%;
    background-color: transparent;
    border: 1px solid transparent;
}
.nav-anchor {
    color: var(--dark) !important;
}
.nav-anchor-active, 
.nav-anchor-active:hover {
    background-color: var(--primary);
    color: var(--white) !important;
    border: 1px solid var(--primary)
}
.nav-anchor:hover {
    background-color: #efefef;
    color: var(--black) !important;
    border: 1px solid transparent;
}

.form-view-small {
    font-size: 13px;
    font-weight: bold;
}
.form-view-text {
    font-weight: normal;
}
.color-dark {
    color: var(--dark);
}
.color-black {
    color: var(--black);
}
.color-lightblack {
    color: var(--lightblack);
}

.home-container {
    display: "table";
    width: 100%;
    height: 100vh;
}
.home-container > div {
    display: table-cell;
    height: 100vh;
}
.home-container > div:first-child {
    width: 18vw;
}
.home-container > div:nth-child(2) {
    width: 82vw;
}

@media (min-width: 1200px)
{
    
}

@media (max-width: 320px)
{
    body {
        font-size: 13px;
    }
}