/*

Vertrax LLC — Digital Solutions
tooplate-style.css (customised from Template 2110 Character)

BRAND COLORS
Primary Dark:       #042C53
Primary (Blue):     #185FA5
Primary Light:      #378ADD
Secondary Dark:     #085041
Secondary (Teal):   #1D9E75
Secondary Light:    #5DCAA5
Off-White:          #F1EFE8
Dark:               #2C2C2A

*/

body {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  color: #444444;
  -webkit-font-smoothing: antialiased;
  padding: 80px;
  padding-top: 150px;
  overflow-x: hidden;
}

textarea {
  font-family: "Open Sans", sans-serif;
}

a {
  color: #1D9E75;
  text-decoration: none;
}

button {
  border: none;
}

a,
button {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

h2 {
  margin-top: 0;
}

p {
  line-height: 2;
  margin: 0;
}

/* ─── NAVBAR ─────────────────────────────────── */

.tm-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #042C53;
  padding: 0 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.tm-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 70px;
}

.tm-navbar-logo {
  height: 45px;
  width: auto;
  display: block;
}

.tm-navbar-nav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.tm-navbar-nav a {
  color: #F1EFE8;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.tm-navbar-nav a:hover {
  color: #5DCAA5;
}

/* ─── LAYOUT ─────────────────────────────────── */

.tm-container {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* http://w3bits.com/css-masonry/ */
.masonry {
  -webkit-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 0;
  column-gap: 0;
}

.item {
  display: inline-block;
  margin: 0;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.tm-relative {
  position: relative;
}

.tm-block {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 600px;
}

.tm-block-wider {
  max-width: 640px;
  width: calc(100% + 40px);
}

.tm-block-left {
  right: 20px;
  bottom: 20px;
}

.tm-block-left-2 {
  right: 60px;
  top: 15px;
}

.tm-block-right {
  padding: 15px 0 20px 20px;
}

.tm-img-left {
  display: block;
  margin-right: 0;
  margin-left: auto;
}

.tm-hero-text {
  padding: 120px 95px 0;
  font-size: 1.05em;
  color: #042C53;
  font-style: italic;
  line-height: 1.9;
}

.tm-block-pad {
  padding: 67px 63px;
}

.tm-block-icon {
  text-align: center;
  display: block;
  margin: 0 30px 30px;
}

/* ─── BRAND BLOCK ────────────────────────────── */

.tm-block-brand {
  position: relative;
  margin-top: 100px;
  margin-bottom: 27px;
}

.tm-block-brand-inner {
  position: relative;
  right: 50px;
  padding: 50px 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tm-brand-icon {
  height: 55px;
  width: auto;
  flex-shrink: 0;
}

.tm-brand-name {
  margin: 0 20px 0 24px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #F1EFE8;
  display: none; /* logo already contains wordmark */
}

/* ─── COLORS ──────────────────────────────────── */

.tm-bg-dark {
  background-color: #2C2C2A;
}

.tm-bg-white {
  background-color: #ffffff;
}

.tm-bg-primary-light {
  background-color: #185FA5;
}

.tm-bg-primary-dark {
  background-color: #042C53;
}

.tm-bg-secondary {
  background-color: #1D9E75;
}

/* ─── BUTTONS ────────────────────────────────── */

.tm-btn {
  padding: 15px 25px;
  display: inline-block;
  font-size: 1em;
}

.tm-btn-small {
  font-size: 15px;
  font-weight: 600;
  padding: 12px 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tm-btn-pad-big {
  padding: 17px 45px;
}

.tm-btn-primary {
  color: #185FA5;
  background-color: #ffffff;
}

.tm-btn-primary:hover {
  background-color: #F1EFE8;
  color: #042C53;
}

.tm-btn-secondary {
  color: white;
  background-color: #1D9E75;
}

.tm-btn-secondary:hover {
  color: #ffffff;
  background-color: #085041;
}

/* ─── TEXT UTILITIES ─────────────────────────── */

.tm-text-white {
  color: #ffffff;
}

.tm-text-gray-light {
  color: #7a8a9a;
}

.tm-mt {
  margin-top: 30px;
}

.tm-mt-big {
  margin-top: 50px;
}

.tm-mb {
  margin-bottom: 45px;
}

.tm-mb-small {
  margin-bottom: 20px;
}

.tm-text-right {
  text-align: right;
}

.tm-text-uppercase {
  text-transform: uppercase;
}

/* ─── SERVICES LIST ──────────────────────────── */

.tm-services-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.tm-services-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 18px;
}

.tm-service-icon {
  font-size: 1.3em;
  margin-top: 6px;
  color: #F1EFE8;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

.tm-services-list li strong {
  display: block;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.tm-services-list li p {
  font-size: 0.82em;
  line-height: 1.7;
  opacity: 0.9;
}

/* ─── CONTACT INFO ───────────────────────────── */

.tm-contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tm-contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 18px;
}

.tm-contact-icon {
  font-size: 1.2em;
  color: #1D9E75;
  margin-top: 4px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.tm-contact-item strong {
  display: block;
  font-size: 0.75em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #042C53;
  margin-bottom: 4px;
}

.tm-contact-item p {
  font-size: 0.88em;
  line-height: 1.8;
  color: #555555;
}

/* ─── FORM SECTION (contact block layout) ────── */

.tm-form-container {
  /* keep padding from tm-block-pad */
}

.tm-form-section {
  margin-top: -5px;
}

.tm-form-section-tag {
  position: relative;
}

.tm-form-section-tag h2 {
  font-size: 1.4rem;
}

.tm-form-section-tag-inner {
  position: relative;
  left: 40px;
  right: -40px;
  bottom: -40px;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  padding: 55px 47px;
}

.tm-pb-0 {
  padding-bottom: 0 !important;
}

/* ─── FOOTER ─────────────────────────────────── */

.tm-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 600px;
  margin-right: auto;
  margin-left: 0;
  padding: 40px 20px;
}

.tm-footer,
.tm-footer a {
  color: #9aabb8;
}

.tm-footer a:hover {
  color: #5DCAA5;
}

.tm-footer p {
  font-size: 15px;
}

/* ─── RESPONSIVE ──────────────────────────────── */

@media (max-width: 1232px) {
  body {
    padding: 60px;
    padding-top: 130px;
  }
}

@media (max-width: 1199px) {
  .masonry {
    -webkit-column-count: 1;
    column-count: 1;
  }

  .tm-container {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .tm-navbar {
    padding: 0 20px;
  }

  .tm-navbar-nav {
    gap: 18px;
  }

  .tm-navbar-nav a {
    font-size: 0.75em;
  }
}

@media (max-width: 540px) {
  .tm-block-brand-inner {
    flex-direction: column;
    padding: 35px;
    right: 30px;
  }

  .tm-brand-icon {
    height: 45px;
  }

  .tm-navbar-nav {
    display: none;
  }
}

@media (max-width: 520px) {
  body {
    padding: 50px;
    padding-top: 120px;
  }

  .tm-block-pad {
    padding: 45px;
  }

  .tm-hero-text {
    padding: 40px 45px 0;
  }

  .tm-block-brand {
    margin-top: 50px;
  }
}

@media (max-width: 417px) {
  .tm-block-left,
  .tm-block-left-2 {
    right: 0;
  }

  .tm-block-wider {
    width: 100%;
  }

  .tm-footer {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  body {
    padding: 40px 20px 10px;
    padding-top: 110px;
  }

  .tm-form-section-tag-inner {
    left: 25px;
    right: -25px;
    bottom: -25px;
  }
}
