/*
Theme Name: Titan
Theme URI: https://titanwms.com
Author: Ryan Miller Front-End Developer at Titan Web Marketing Solutions
Author URI: https://titanwms.com
Description: A Gutenberg-ready bootstrap 4 theme created and modified based off of the Twenty Nineteen Theme.
Requires at least: WordPress 4.9.6
Version: 3.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: titan
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Titan is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc and the Twenty Nineteen Theme.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Titan Utilizes Reboot from Bootstrap to provide normalizing styles.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

#Website Colors
#Typography
#Bootstrap Margin Fix
#Media
  ## Captions
  ## Galleries
#Transition Mixin and Normalizing Styles
#Header Blocks
#Footer Blocks
#Home Hero Content Block
#Home Content Blocks
#Internal Hero Content Block
#Internal Content Blocks
#Gravity Forms
#Custom Site Style by Developer

--------------------------------------------------------------*/
/*---
Website Colors
---*/
.white {
  color: #ffffff;
}

.primary {
  color: #0C7847;
}

.secondary {
  color: #0C7847;
}

.dkgray {
  color: #333333;
}

.primary-bg {
  background-color: #0C7847;
}

.secondary-bg {
  background-color: #0C7847;
}

.ltgray-bg {
  background-color: #f2f2f2;
}

.white-bg {
  background-color: #ffffff;
}

/*---
Typography
---*/
.font-primary {
  font-family: "Inter", sans-serif;
}

.font-secondary {
  font-family: "Sans", sans-serif;
}

a {
  font-size: inherit;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: #0C7847;
}

body {
  font-size: 10px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: #676767;
}

p, .screen-reader-text, input[type=search], .tos-list, li {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  font-family: "Inter", sans-serif;
}

h1 {
  font-size: 80px;
  font-weight: 800;
  line-height: 76.66px;
  font-style: italic;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
h1.hero {
  font-size: 48px;
  font-weight: 400;
}

h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: normal;
  font-style: italic;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

h3 {
  font-size: 32px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

h4 {
  font-size: 23px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

nav ul li {
  font-size: inherit;
}

/*---
Bootstrap Margin Fix
---*/
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/*---
Media
---*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

embed,
iframe,
object {
  max-width: 100%;
}

.custom-logo-link {
  display: inline-block;
}

.avatar {
  border-radius: 100%;
  display: block;
  height: 22.5px;
  min-height: inherit;
  width: 22.5px;
}

svg {
  transition: fill 120ms ease-in-out;
  fill: currentColor;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .wp-caption.aligncenter {
    position: relative;
    left: calc((66.6666666667vw - 28px) / 2);
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 1200px) {
  .wp-caption.aligncenter {
    left: calc((50vw - 28px) / 2);
  }
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption-text {
  color: #767676;
  font-size: 12px;
  margin: 0;
  padding: 15px;
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.gallery-item {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 16px;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: calc((100% - 16px * 1) / 2);
}
.gallery-columns-2 .gallery-item:nth-of-type(2n+2) {
  margin-right: 0;
}
.gallery-columns-3 .gallery-item {
  max-width: calc((100% - 16px * 2) / 3);
}
.gallery-columns-3 .gallery-item:nth-of-type(3n+3) {
  margin-right: 0;
}
.gallery-columns-4 .gallery-item {
  max-width: calc((100% - 16px * 3) / 4);
}
.gallery-columns-4 .gallery-item:nth-of-type(4n+4) {
  margin-right: 0;
}
.gallery-columns-5 .gallery-item {
  max-width: calc((100% - 16px * 4) / 5);
}
.gallery-columns-5 .gallery-item:nth-of-type(5n+5) {
  margin-right: 0;
}
.gallery-columns-6 .gallery-item {
  max-width: calc((100% - 16px * 5) / 6);
}
.gallery-columns-6 .gallery-item:nth-of-type(6n+6) {
  margin-right: 0;
}
.gallery-columns-7 .gallery-item {
  max-width: calc((100% - 16px * 6) / 7);
}
.gallery-columns-7 .gallery-item:nth-of-type(7n+7) {
  margin-right: 0;
}
.gallery-columns-8 .gallery-item {
  max-width: calc((100% - 16px * 7) / 8);
}
.gallery-columns-8 .gallery-item:nth-of-type(8n+8) {
  margin-right: 0;
}
.gallery-columns-9 .gallery-item {
  max-width: calc((100% - 16px * 8) / 9);
}
.gallery-columns-9 .gallery-item:nth-of-type(9n+9) {
  margin-right: 0;
}
.gallery-item:last-of-type {
  padding-right: 0;
}

.gallery-caption {
  display: block;
  font-size: 14px;
  margin: 0;
  padding: 15px;
}

.gallery-item > div > a {
  display: block;
  line-height: 0;
  box-shadow: 0 0 0 0 transparent;
}
.gallery-item > div > a:focus {
  box-shadow: 0 0 0 2px #0073aa;
}

/*-------
Transition Mixin and Normalizing Styles
-------*/
html {
  scroll-behavior: smooth;
}

.search-submit {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0px;
  white-space: normal;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  padding: 10px 25px;
  background-color: #0C7847;
  border: solid 3px #0C7847;
}
.search-submit:hover {
  background-color: transparent;
  color: #0C7847;
  border-color: #0C7847;
}

/*---
Header Blocks
---*/
/*--Dropdown Blue Box Fix--*/
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: transparent;
}

/*--- Import Color Mixins ---*/
.white {
  color: #ffffff;
}

.primary {
  color: #0C7847;
}

.secondary {
  color: #0C7847;
}

.dkgray {
  color: #333333;
}

.primary-bg {
  background-color: #0C7847;
}

.secondary-bg {
  background-color: #0C7847;
}

.ltgray-bg {
  background-color: #f2f2f2;
}

.white-bg {
  background-color: #ffffff;
}

/*--- Collapse Header Navigation ---*/
img.custom-logo {
  width: 100%;
  max-width: 118px;
  height: auto;
}

@media (max-width: 991px) {
  .custom-logo-link {
    display: inline-block;
  }
  img.custom-logo {
    display: block;
    margin: 0 auto;
  }
  .brand-flex {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }
}
/*-------
Transition Mixin
-------*/
/*--------*/
.navbar {
  background-color: #ffffff;
}

/*-------
Desktop
--------*/
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 600;
    color: #0C7847;
    text-transform: capitalize;
    border-radius: 0px;
    padding-right: 0px;
    padding-left: 0px;
    margin-left: 12px;
    margin-right: 12px;
    transition: all 0.3s ease-in-out;
  }
  .dropdown-item {
    padding: 0.25rem 0.45rem;
    background-color: transparent;
    color: #333333;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
    padding: 0px !important;
  }
  img.custom-logo {
    max-width: 120px;
  }
}
.navbar-nav .dropdown-menu {
  border-radius: 0;
  border: none;
  margin-top: 0;
}

.navbar-nav .show > .nav-link {
  color: #333333;
}

/*-------
## Mobile
-------*/
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    font-size: 24px;
    font-weight: 400;
    color: #333333;
    text-align: center;
    border-bottom: solid 1.5px #0C7847;
    border-radius: 0px;
    text-transform: uppercase;
  }
  .navbar-nav .active > .nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .show > .nav-link {
    color: #ffffff;
    background-color: #0C7847;
  }
  .navbar-brand img {
    width: 100%;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .dropdown-item {
    padding: 0.25rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    text-align: center;
  }
  .navbar-header {
    width: 100%;
  }
  .nav-phone {
    color: #0C7847;
    font-size: 18px;
    padding-right: 15px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
  }
  .navbar-toggler {
    top: 15px;
    border: none;
    position: absolute;
    right: 15px;
    z-index: 64;
  }
  .navbar-toggler:focus, .navbar-toggler:hover {
    outline: none;
  }
  #titan-nav {
    position: absolute;
    z-index: 10;
    top: 0px;
    padding-top: 60px;
    left: 0;
    transition: 0.001s;
    text-align: center;
    background-color: #ffffff;
    width: 100%;
  }
  #titan-nav .social-icons {
    display: none;
  }
  /*---- Dropdown Toggle ----*/
  /* Icon 4 */
  #nav-icon4 {
    width: 25px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
    cursor: pointer;
  }
  #nav-icon4 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #0C7847;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  #nav-icon4 span:nth-child(1) {
    top: 0px;
    transform-origin: left center;
  }
  #nav-icon4 span:nth-child(2) {
    top: 8px;
    transform-origin: left center;
  }
  #nav-icon4 span:nth-child(3) {
    top: 16px;
    transform-origin: left center;
  }
  #nav-icon4.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 0px;
  }
  #nav-icon4.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }
  #nav-icon4.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 18px;
    left: 0px;
  }
}
/*--- Social Menu ---*/
.social-nav {
  display: flex;
  justify-content: flex-end;
}

.social-menu li {
  display: inline-block;
}
.social-menu li a {
  color: #0C7847;
  padding: 5px 10px;
  line-height: 0.1;
  transition: all 0.3s ease-in-out;
}
.social-menu li a:hover {
  color: #0C7847;
}

.screen-reader-text {
  display: none;
}

.social-btns {
  background-color: #0C7847;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 10px;
  border-radius: 4px;
  margin-left: 12px;
  line-height: normal;
  transition: all 0.3s ease-in-out;
}
.social-btns:hover {
  background-color: #0C7847;
  color: #ffffff;
  text-decoration: none;
}

.social-icons {
  margin-left: 18px;
}
.social-icons svg {
  font-size: 24px;
  color: #0C7847;
}

@media (max-width: 991px) {
  .social-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .social-btns {
    border-radius: 0px;
    font-size: 24px;
    display: block;
    margin: 0 auto;
  }
}
/*------*/
/*---
Footer Blocks
---*/
.white {
  color: #ffffff;
}

.primary {
  color: #0C7847;
}

.secondary {
  color: #0C7847;
}

.dkgray {
  color: #333333;
}

.primary-bg {
  background-color: #0C7847;
}

.secondary-bg {
  background-color: #0C7847;
}

.ltgray-bg {
  background-color: #f2f2f2;
}

.white-bg {
  background-color: #ffffff;
}

footer {
  background-color: #333333;
  padding-top: 30px;
  padding-bottom: 53px;
}
footer .container {
  max-width: 1310px;
}
footer .container .social-icons svg {
  color: #ffffff;
}
footer .container .helix-logo {
  margin-top: -46px;
  padding-bottom: 47px;
}
footer .container .helix-logo p, footer .container .helix-logo .screen-reader-text, footer .container .helix-logo input[type=search] {
  font-size: 16px;
}

.navbar-nav.footer {
  margin-right: 15px;
}

.navbar-nav.footer .nav-link {
  padding: 0px 8px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
}
.navbar-nav.footer .nav-link:hover {
  color: #0C7847;
}

.foot-logo {
  max-width: 171px;
}

.footer-text p, .footer-text .screen-reader-text, .footer-text input[type=search], .footer-text a {
  font-size: 13px;
  margin-bottom: 0px;
  color: #ffffff;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav.footer .nav-link {
    padding: 0px 10px;
    font-size: 13px;
  }
  .footer-text p, .footer-text .screen-reader-text, .footer-text input[type=search], .footer-text a {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  footer .social-btns {
    font-size: 16px;
    display: inline-block;
  }
  footer .social-icons {
    margin-left: 10px;
  }
  footer .social-icons svg {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  footer .container .social-btns {
    border-radius: 8px;
  }
  footer .container .helix-logo {
    margin-top: 46px;
  }
}
/*---
Home Hero Content Block
---*/
.home-top {
  background-image: url("/wp-content/themes/titan/images/home-top.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.home-hero {
  background-image: url("/wp-content/themes/titan/images/home-hero.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 144px;
  padding-bottom: 129px;
}
.home-hero .subheader {
  font-size: 24px;
  font-weight: 500;
  line-height: 23.01px;
  text-transform: uppercase;
}

/*---
Home Content Blocks
---*/
.section-our-clients {
  padding-top: 55px;
  padding-bottom: 53px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.section-our-clients p, .section-our-clients .screen-reader-text, .section-our-clients input[type=search] {
  font-size: 24px;
}

.section-contact-info {
  background-image: url("/wp-content/themes/titan/images/contact-info-background.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 79px;
  padding-bottom: 99px;
}
.section-contact-info .title-contact {
  font-size: 24px;
  font-weight: 600;
}
.section-contact-info .line {
  border-top: 2px solid #ffffff;
  max-width: 463px;
  margin-left: 0;
}
.section-contact-info .text-contact {
  font-size: 18px;
}
.section-contact-info .text-contact a:hover {
  color: #ffffff;
}
.section-contact-info iframe {
  border-radius: 8px;
}

.section-questions {
  padding-top: 53px;
  padding-bottom: 42px;
}
.section-questions p, .section-questions .screen-reader-text, .section-questions input[type=search] {
  font-size: 18px;
}

/* Internal hero - Page */
.hero {
  padding-top: 128px;
  padding-bottom: 113px;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero.services-hero {
  background-image: url("/wp-content/themes/titan/images/services-hero.jpg");
}
.hero.about-us-hero {
  background-image: url("/wp-content/themes/titan/images/about-us-hero.jpg");
}
.hero.careers-hero {
  background-image: url("/wp-content/themes/titan/images/careers-hero.jpg");
}
.hero.contact-hero {
  background-image: url("/wp-content/themes/titan/images/contact-us-hero.jpg");
}

/* Services - Page */
.section-services {
  padding-top: 60px;
}
.section-services .list-services {
  padding-bottom: 54px;
}
.section-services .list-services h3 {
  text-transform: uppercase;
}
.section-services .list-services ul {
  padding-left: 25px;
}
.section-services .list-services ul li {
  line-height: 25.65px;
}

.section-aditional-services {
  padding-bottom: 85px;
}

/* About Us - Page */
.section-about-us {
  padding-top: 44px;
  padding-bottom: 106px;
}
.section-about-us ul {
  padding-left: 25px;
}
.section-about-us .about-text {
  padding-top: 53px;
}
.section-about-us .about-text .line {
  border-top: 3px solid #B7B7B7;
  width: 119px;
}

/* Careers */
.section-careers {
  padding-top: 55px;
  padding-bottom: 55px;
}

.section-requirements {
  padding-top: 54px;
  padding-bottom: 93px;
}
.section-requirements h3 {
  text-transform: uppercase;
}
.section-requirements ul li {
  line-height: 25.65px;
}

.section-positions {
  padding-top: 54px;
  padding-bottom: 140px;
}
.section-positions .white-box {
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0px 24px 48px 0px rgba(0, 0, 0, 0.1);
  padding: 40px 44px;
  height: 229px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
}
.section-positions .white-box h3 {
  text-transform: uppercase;
}
.section-positions .available-positions {
  padding-top: 83px;
}
.section-positions .available-positions h3 {
  text-transform: uppercase;
}
.section-positions .available-positions .list-positions {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-positions .available-positions .list-positions .box-position {
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0px 24px 48px 0px rgba(0, 0, 0, 0.08);
  padding: 19px 22px;
  width: 712px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-positions .available-positions .list-positions .box-position .position-title {
  width: 50%;
}
.section-positions .available-positions .list-positions .box-position .position-title .position-name {
  padding-left: 28px;
}
.section-positions .available-positions .list-positions .box-position .position-title .position-name .title {
  font-size: 24px;
  font-weight: 700;
}
.section-positions .available-positions .list-positions .box-position .position-title .position-name .description {
  font-size: 14px;
  font-weight: 300;
}
.section-positions .available-positions .list-positions .box-position .more-information-button {
  width: 50%;
}

/* Contact Us - Page */
.section-contact {
  padding-top: 72px;
  padding-bottom: 72px;
}
.section-contact .contact-form {
  padding: 53px 60px;
  border-radius: 8px;
  box-shadow: 0px 24px 48px 0px rgba(0, 0, 0, 0.12);
}
.section-contact .contact-form .gform_wrapper .gform_body input {
  background: transparent;
  border: solid 1px #ffffff !important;
  border-radius: 8px !important;
  padding: 18px !important;
  color: #ffffff;
  font-size: 16px !important;
}
.section-contact .contact-form .gform_wrapper .gform_body input::-moz-placeholder {
  opacity: 1;
  color: #ffffff;
}
.section-contact .contact-form .gform_wrapper .gform_body input::placeholder {
  opacity: 1;
  color: #ffffff;
}
.section-contact .contact-form .gform_wrapper .gform_body input::-webkit-input-placeholder {
  opacity: 1;
  color: #ffffff;
}
.section-contact .contact-form .gform_wrapper .gform_body .textarea {
  background: transparent;
  border: solid 1px #ffffff;
  border-radius: 8px !important;
  padding: 18px !important;
  color: #ffffff;
  font-size: 16px !important;
}
.section-contact .contact-form .gform_wrapper .gform_body .textarea::-moz-placeholder {
  opacity: 1;
  color: #ffffff;
}
.section-contact .contact-form .gform_wrapper .gform_body .textarea::placeholder {
  opacity: 1;
  color: #ffffff;
}
.section-contact .contact-form .gform_wrapper .gform_body .textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #ffffff;
}
.section-contact .contact-form .gform_wrapper .gform_body .textarea.medium {
  height: 209px;
}
.section-contact .contact-form .gform_wrapper .gform_footer {
  justify-content: center;
  padding: 28px 0px;
}
.section-contact .contact-form .gform_wrapper .gform_footer .button {
  color: #0C7847;
  background-color: #ffffff;
  border: none;
  border-radius: 8px !important;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  padding: 14px 24px;
  margin-bottom: 0px;
  min-width: 126px;
}
.section-contact .contact-form .gform_wrapper .gform_footer .button:hover {
  color: #0C7847;
}

.section-social-networks {
  padding-bottom: 88px;
}
.section-social-networks .social-icons svg {
  font-size: 56px;
}

/* Terms of service - Page */
.terms-of-service {
  padding-top: 50px;
  padding-bottom: 50px;
}
.terms-of-service h1 {
  font-size: 48px;
  font-weight: 800;
}
.terms-of-service h2 {
  font-size: 32px;
  font-weight: 700;
}

.hp-icons {
  max-width: 135px;
}

.service-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 1.5px;
}
.service-bg.one {
  background-image: url("/wp-content/themes/titan/images/placeholder-1.jpg");
}
.service-bg.two {
  background-image: url("/wp-content/themes/titan/images/placeholder-1.jpg");
}
.service-bg.three {
  background-image: url("/wp-content/themes/titan/images/placeholder-1.jpg");
}

.color-overlay {
  min-height: 280px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(12, 120, 71, 0.7);
  transition: all 0.3s ease-in-out;
}
.color-overlay:hover {
  background-color: transparent;
  visibility: hidden;
}
.color-overlay:hover .service-box-text {
  display: none;
  visibility: hidden;
}

.swapping-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.swapping-wrapper.image-r {
  background-image: url("/wp-content/themes/titan/images/swap-image-r.png");
}
.swapping-wrapper.image-l {
  background-image: url("/wp-content/themes/titan/images/swap-image-l.png");
}
@media (max-width: 991px) {
  .swapping-wrapper.image-r, .swapping-wrapper.image-l {
    background-image: none;
  }
}
@media (min-width: 992px) {
  .swapping-wrapper img {
    display: none !important;
  }
}

/*---
Home Bottom Blocks
---*/
.home-bot {
  background-image: url("/wp-content/themes/titan/images/home-bot.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 240px;
  padding-top: 40px;
  padding-bottom: 40px;
}

/*---
Internal Hero Content Block
---*/
.internal-head {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 310px;
  padding-top: 40px;
  padding-bottom: 40px;
}

/*---
Internal Content Blocks
---*/
/*---
Internal Bottom Blocks
---*/
/*---
Gravity Forms
---*/
.gform_wrapper {
  margin: 0px 0px 5px !important;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper textarea {
  border-radius: 0;
  border: none;
}

body .gform_wrapper .top_label div.ginput_container {
  margin-top: 0px !important;
}

.gform_wrapper textarea {
  margin-top: 12px;
}

body .gform_wrapper ul li.gfield {
  margin-top: 7px !important;
}

.gform_wrapper .gform_footer {
  text-align: center;
  margin-top: 0px !important;
  padding-bottom: 0px !important;
}

.gform_wrapper .gform_footer input.button {
  font-size: 18px !important;
  font-weight: 500;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0px;
  border: none;
  white-space: normal;
  margin-right: 0px !important;
  transition: all 0.3s ease-in-out;
  background-color: #0C7847;
  color: #ffffff;
  padding: 10px 25px 8px;
}
.gform_wrapper .gform_footer input.button:hover {
  background-color: #ffffff;
  color: #0C7847;
}

/* Chrome Width Issue */
.gform_wrapper.gf_browser_chrome .gform_body {
  width: 100% !important;
}

@media (max-width: 640px) {
  .gform_wrapper select {
    min-height: 2.5rem !important;
    padding: 5px 4px !important;
  }
}
/*---
Custom Site Styles by Developer
---*/
/*--- Buttons ---*/
.btn {
  font-size: 20px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  background-color: transparent;
  border-radius: 8px;
  white-space: normal;
  padding: 14px 24px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.btn.primary-btn {
  color: #ffffff;
  background-color: #0C7847;
}
.btn.primary-btn:hover {
  background-color: #0C7847;
  color: #ffffff;
}
.btn.secondary-btn {
  color: #ffffff;
  background-color: #0C7847;
}
.btn.secondary-btn:hover {
  background-color: #ffffff;
  color: #0C7847;
}
.btn.white-btn {
  background-color: #ffffff;
  color: #0C7847;
}
.btn.white-btn:hover {
  color: #ffffff;
  background-color: #0C7847;
}
.btn.quaternary-btn {
  font-size: 10px;
  font-weight: 300;
  padding: 4px 10px;
  background-color: #17BB13;
  color: #ffffff;
}
.btn.quaternary-btn:hover {
  color: #ffffff;
  background-color: #17BB13;
}

/*--- Media Queries ---*/
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 60px;
    line-height: 56.66px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 26px;
  }
  /* Home - Page */
  .section-our-clients p, .section-our-clients .screen-reader-text, .section-our-clients input[type=search] {
    font-size: 22px;
  }
  /* Terms of service */
  .terms-of-service h1 {
    font-size: 32px;
  }
  .terms-of-service h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 991px) {
  h1 {
    font-size: 50px;
    line-height: 46.66px;
  }
  .btn {
    font-size: 18px;
  }
  /* Home - Page */
  .section-our-clients p, .section-our-clients .screen-reader-text, .section-our-clients input[type=search] {
    font-size: 20px;
  }
  .section-contact-info .line {
    margin-left: auto;
  }
  /* Services - Page */
  .section-services ul,
  .section-aditional-services ul,
  .section-about-us ul,
  .section-requirements ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  /* Home - Page */
  .section-our-clients {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-contact-info {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  /* Services - Page */
  .section-services {
    padding-top: 50px;
  }
  .section-services .list-services {
    padding-bottom: 40px;
  }
  .section-aditional-services {
    padding-bottom: 40px;
  }
  .section-questions {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  /* About Us - Page */
  .section-about-us {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .section-about-us .about-text {
    padding-top: 30px;
  }
  /* Careers - Page */
  .section-careers {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-requirements {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .section-positions {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .section-positions .available-positions {
    padding-top: 50px;
  }
  /* Contact Us - Page */
  .section-contact {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-social-networks {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
    line-height: 36.66px;
  }
  h2 {
    font-size: 28px;
  }
  /* Home - Page */
  .home-hero .subheader {
    font-size: 20px;
    line-height: 19.01px;
  }
  .section-our-clients p, .section-our-clients .screen-reader-text, .section-our-clients input[type=search] {
    font-size: 18px;
  }
  /* Careers - Page */
  .section-positions .white-box {
    height: 310px;
  }
}/*# sourceMappingURL=style.css.map */