/* Base */
/* ----------------------
    
---- Variables 

---------------------- */
/*------------------------------------------
	1. Colors
------------------------------------------*/
/*------------------------------------------
	2. Heights
------------------------------------------*/
/* ----------------------
    
---- Mixins 

---------------------- */
/*------------------------------------------
	1. Mixins --- Media Query Management
------------------------------------------*/
/*------------------------------------------
	2. Mixins --- Click Effect
------------------------------------------*/
/*------------------------------------------
	3. center vertically and/or horizontally an absolute positioned element
------------------------------------------*/
/*------------------------------------------
	3. antialiasing mode font rendering
------------------------------------------*/
/* ----------------------
    
---- Reset 

---------------------- */
.ty-content-title {
  margin-bottom: 0.5rem;
  font-weight: normal; }

.blue {
  color: #0071BC; }

.white {
  color: white; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

.preload * {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important; }

body {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.2; }

.ty-content-container .ty-content {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: 1rem; }
  @media (min-width: 1140px) {
    .ty-content-container .ty-content {
      padding: 4rem 2rem; } }

/* Header */
/* ----------------------
    
---- Header 

---------------------- */
.ty-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
  .ty-header .ty-content {
    padding: 0; }
    @media (min-width: 1140px) {
      .ty-header .ty-content {
        padding: 0 2rem; } }
  .ty-header .ty-top-bar {
    height: 60px;
    background-color: #0071BC; }
    .ty-header .ty-top-bar .ty-content .ty-top-bar-contact {
      text-align: left;
      display: none; }
      @media (min-width: 960px) {
        .ty-header .ty-top-bar .ty-content .ty-top-bar-contact {
          display: block;
          float: left; } }
    .ty-header .ty-top-bar .ty-content .ty-top-bar-headliner {
      text-align: center; }
      @media (min-width: 960px) {
        .ty-header .ty-top-bar .ty-content .ty-top-bar-headliner {
          float: right;
          display: block; } }
    .ty-header .ty-top-bar a,
    .ty-header .ty-top-bar p {
      color: white;
      text-decoration: none;
      line-height: 60px;
      margin: 0 1rem; }
      @media (min-width: 960px) {
        .ty-header .ty-top-bar a,
        .ty-header .ty-top-bar p {
          font-size: clamp(1.2rem, 1.2vw, 2rem); } }
  .ty-header .ty-header-content {
    height: 100px;
    transition: all .3s ease; }
    @media (min-width: 960px) {
      .ty-header .ty-header-content {
        height: 150px; } }
    .ty-header .ty-header-content .ty-logo-holder {
      height: 100px;
      padding: 10px;
      float: left; }
      @media (min-width: 960px) {
        .ty-header .ty-header-content .ty-logo-holder {
          height: 150px; } }
      .ty-header .ty-header-content .ty-logo-holder img {
        width: auto;
        height: 100%;
        display: none; }
        @media (min-width: 960px) {
          .ty-header .ty-header-content .ty-logo-holder img {
            padding: 1rem 0; } }
        .ty-header .ty-header-content .ty-logo-holder img.top-logo {
          display: block; }
  .admin-bar .ty-header {
    top: 46px; }
    @media (min-width: 960px) {
      .admin-bar .ty-header {
        top: 32px; } }

/* ----------------------
    
---- Headroom 

---------------------- */
.headroom {
  transition: top .1s ease; }
  .headroom.headroom--not-top .ty-header-content {
    background: white;
    box-shadow: 0 0 20px rgba(0, 113, 188, 0.2); }
    .headroom.headroom--not-top .ty-header-content .ty-logo-holder img.pinned-logo {
      display: block; }
    .headroom.headroom--not-top .ty-header-content .ty-logo-holder img.top-logo {
      display: none; }
  .admin-bar .headroom.headroom--not-top {
    top: 0; }
  @media (min-width: 768px) {
    .admin-bar .headroom.headroom--not-top {
      top: 46px; } }
  @media (min-width: 960px) {
    .admin-bar .headroom.headroom--not-top {
      top: 32px; } }

/* Components */
/* ----------------------
    
---- Nav Trigger

---------------------- */
.ty-nav-trigger {
  float: right;
  line-height: 100px; }
  @media (min-width: 960px) {
    .ty-nav-trigger {
      display: none; } }
  .ty-nav-trigger i {
    color: white;
    font-size: 2rem;
    padding: 0 1rem; }
  .headroom--not-top .ty-nav-trigger i {
    color: #0071BC; }

/* ----------------------
    
---- Off Canvas

---------------------- */
.ty-off-canvas {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #0071BC;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all .3s ease; }
  .ty-off-canvas .ty-close-x {
    position: absolute;
    right: 0;
    top: 0;
    padding: 1rem; }
    .ty-off-canvas .ty-close-x i {
      color: white;
      font-size: 3rem; }
  .nav-open .ty-off-canvas {
    opacity: 1;
    visibility: visible;
    transform: translateX(0); }
  .ty-off-canvas nav.ty-main-nav {
    display: block;
    float: left; }
    .ty-off-canvas nav.ty-main-nav ul {
      padding-top: 5rem; }
      .ty-off-canvas nav.ty-main-nav ul li {
        width: 100%; }
        .ty-off-canvas nav.ty-main-nav ul li a {
          display: inline-block;
          width: 100%;
          line-height: 1;
          padding: 1rem;
          font-size: 2rem; }

/* ----------------------
    
---- Header Nav

---------------------- */
nav.ty-main-nav {
  float: right;
  display: none; }
  @media (min-width: 960px) {
    nav.ty-main-nav {
      display: block; } }
  nav.ty-main-nav ul {
    list-style: none;
    margin: 0; }
    nav.ty-main-nav ul li {
      display: inline-block;
      padding: 0 1rem; }
      nav.ty-main-nav ul li a {
        line-height: 150px;
        color: white;
        text-decoration: none;
        font-weight: bold;
        font-size: clamp(1rem, 1vw, 2rem); }
  .headroom--not-top nav.ty-main-nav ul li a {
    color: #0071BC; }

/* ----------------------
    
---- Nav Trigger

---------------------- */
.ty-loader {
  display: flex;
  justify-content: center;
  align-items: center; }
  .ty-loader .loader {
    width: 80px;
    height: 80px;
    border: 5px dotted #0071BC;
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite; }
    .ty-loader .loader:after {
      content: '';
      box-sizing: border-box;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      border: 5px dotted #b6adad;
      border-style: solid dotted dotted dotted;
      width: calc( 80px / 2 );
      height: calc( 80px / 2 );
      border-radius: 50%;
      animation: rotationBack 1s linear infinite;
      transform-origin: center center; }

@keyframes rotation {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
@keyframes rotationBack {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(-360deg); } }
/* ----------------------
    
---- Section Title 

---------------------- */
.ty-section-title {
  text-align: center;
  margin: 0;
  margin-bottom: 1rem; }
  @media (min-width: 960px) {
    .ty-section-title {
      margin-bottom: 2rem; } }

/* ----------------------
    
---- BTN

---------------------- */
.ty-btn {
  display: inline-block;
  border: 2px solid #0071BC !important;
  color: #0071BC !important;
  padding: 1rem 2rem;
  font-weight: bold;
  transition: all .3s ease;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer; }
  @media (min-width: 960px) {
    .ty-btn {
      font-size: 1.2rem; } }
  .ty-btn i {
    margin-right: .5rem; }
  .ty-btn:hover {
    background-color: #0071BC;
    color: white !important; }
  .ty-btn.ty-blue-btn {
    border-color: #0071BC !important;
    background: #0071BC;
    color: white !important; }
    .ty-btn.ty-blue-btn:hover {
      background: #23a7ff !important; }
  .ty-btn.ty-white-btn {
    border-color: white !important;
    color: white !important; }
    .ty-btn.ty-white-btn:hover {
      background-color: white !important;
      color: #0071BC !important; }

/* ----------------------
    
---- Page Hero Banner

---------------------- */
.ty-page-hero-banner {
  background: url("../imgs/prefooter-bkg.jpg") no-repeat;
  background-size: cover !important;
  background-attachment: fixed !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  background-color: #000; }
  .ty-page-hero-banner:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, #0071bc 0%, rgba(0, 0, 0, 0) 100%); }
  .ty-page-hero-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); }
  .ty-page-hero-banner .ty-content {
    max-width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0;
    padding-top: calc( 150px + 60px ); }
    .ty-page-hero-banner .ty-content .ty-title {
      padding: 2rem; }
      @media (min-width: 960px) {
        .ty-page-hero-banner .ty-content .ty-title {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center; } }
      .ty-page-hero-banner .ty-content .ty-title h1 {
        font-size: clamp(2rem, 4vw, 4rem);
        display: inline-block;
        max-width: 1400px; }

/* ----------------------
    
---- Breadcrumbs

---------------------- */
.ty-breadcrumbs {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1rem; }
  .ty-breadcrumbs .ty-breadcrumb-item {
    display: inline-block; }
    .ty-breadcrumbs .ty-breadcrumb-item:after {
      content: '>';
      margin: 0 .5rem;
      vertical-align: middle;
      color: white; }
    .ty-breadcrumbs .ty-breadcrumb-item:last-of-type:after {
      display: none; }
  .ty-breadcrumbs a {
    color: white !important; }
  .ty-breadcrumbs-case-studies .ty-breadcrumbs {
    border: none;
    border-bottom: 1px solid #0071bc;
    text-align: center; }
    .ty-breadcrumbs-case-studies .ty-breadcrumbs .ty-breadcrumb-item:after {
      color: #0071BC; }
    .ty-breadcrumbs-case-studies .ty-breadcrumbs a {
      color: #0071BC !important; }

/* ----------------------
    
---- Prev Next Nav Sect

---------------------- */
.ty-prev-next-nav-sect {
  background-color: #e6e3e3; }
  .ty-prev-next-nav-sect .ty-content {
    padding: 1rem; }
    .ty-prev-next-nav-sect .ty-content nav {
      margin: 0; }
      .ty-prev-next-nav-sect .ty-content nav a {
        text-decoration: none;
        color: #000;
        transition: all .3s ease; }
        .ty-prev-next-nav-sect .ty-content nav a:hover {
          font-weight: bold; }
      .ty-prev-next-nav-sect .ty-content nav .nav-previous a:before {
        content: '< '; }
      .ty-prev-next-nav-sect .ty-content nav .nav-next a:after {
        content: ' >'; }

/* ----------------------
    
---- Page Content

---------------------- */
.page .ty-page-content .ty-content {
  display: block; }
@media (min-width: 768px) {
  .ty-page-content .ty-content {
    display: flex;
    gap: 1rem; } }
@media (min-width: 960px) {
  .ty-page-content .ty-content {
    gap: 4rem; } }
@media (min-width: 768px) {
  .ty-page-content .ty-content .ty-word-editor {
    width: 50%; } }
@media (min-width: 960px) {
  .ty-page-content .ty-content .ty-img-wrapper {
    width: 50%; } }
.ty-page-content .ty-content .ty-img-holder {
  min-height: 300px;
  background-color: #e6e3e3;
  display: flex;
  justify-content: center;
  align-items: center; }
  .ty-page-content .ty-content .ty-img-holder i {
    color: rgba(0, 0, 0, 0.2);
    font-size: 5rem; }
  .ty-page-content .ty-content .ty-img-holder img {
    width: 100%;
    height: auto; }

/* ----------------------
    
---- Input Holder

---------------------- */
.ty-input-holder {
  position: relative;
  margin-bottom: 1rem; }
  .ty-input-holder:not(.ty-submit-holder):after {
    content: '\f00c';
    font-family: 'FontAwesome';
    color: green;
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0;
    visibility: hidden; }
    @media (min-width: 960px) {
      .ty-input-holder:not(.ty-submit-holder):after {
        top: 20px;
        right: 18px; } }
  @media (min-width: 960px) {
    .ty-input-holder {
      width: 50%;
      padding: .5rem; } }
  .ty-input-holder.ty-textarea {
    width: 100%; }
  .ty-input-holder p.ty-verify-text {
    color: red;
    margin-bottom: 0; }
  .ty-input-holder input,
  .ty-input-holder textarea {
    width: 100%;
    margin-bottom: .5rem;
    background-color: #e6e3e3;
    padding: .5rem 1rem;
    resize: none;
    border: 2px solid rgba(0, 0, 0, 0.5); }
  .ty-input-holder.focus input,
  .ty-input-holder.focus textarea {
    border: 1px solid #0071BC; }
  .ty-input-holder.full input,
  .ty-input-holder.full textarea {
    border: 2px solid green; }
  .ty-input-holder.full:after {
    opacity: 1;
    visibility: visible; }
  .ty-input-holder.verify input,
  .ty-input-holder.verify textarea {
    border: 2px solid red; }
  .ty-input-holder.verify:after {
    content: '\f12a';
    font-family: 'FontAwesome';
    color: red; }

/* ----------------------
    
---- Prefooter

---------------------- */
.ty-prefooter {
  background: url("../imgs/prefooter-bkg.jpg") no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  position: relative; }
  .ty-prefooter:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
    background-color: #003456;
    box-shadow: inset 0 0 100px black; }
  .ty-prefooter .ty-content {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem; }
    @media (min-width: 960px) {
      .ty-prefooter .ty-content {
        padding: 8rem 0; } }
    .ty-prefooter .ty-content h2 {
      text-align: center;
      margin-bottom: 1rem;
      font-size: clamp(2rem, 4vw, 4rem); }
      @media (min-width: 768px) {
        .ty-prefooter .ty-content h2 {
          margin-bottom: 2rem; } }
  .ty-prefooter .button-wrap {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem; }
    @media (min-width: 768px) {
      .ty-prefooter .button-wrap {
        display: flex;
        flex-direction: row;
        justify-content: center; } }
    .ty-prefooter .button-wrap .ty-btn {
      padding: 1rem; }
      @media (min-width: 768px) {
        .ty-prefooter .button-wrap .ty-btn {
          padding: 1rem 2rem; } }

/* ----------------------
    
---- Flex Slider

---------------------- */
.flexslider {
  width: 100%;
  background: none !important;
  border: none !important; }
  .flexslider ul.slides li .ty-slide-content {
    padding: 0 2rem;
    text-align: center;
    height: calc( 80vh - 30vh );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    @media (min-width: 960px) {
      .flexslider ul.slides li .ty-slide-content {
        padding: 0 10rem; } }
    .flexslider ul.slides li .ty-slide-content h1 {
      text-align: center;
      font-size: clamp(2rem, 3vw, 3rem) !important; }
  .flexslider .flex-direction-nav a:before {
    color: white; }
  .flexslider ol.flex-control-paging li a {
    border-radius: 0 !important;
    background: transparent;
    border: 1px solid white; }
    .flexslider ol.flex-control-paging li a.flex-active {
      background: white; }

/* ----------------------
    
---- Word Editor

---------------------- */
.ty-word-editor h1, .ty-word-editor h2, .ty-word-editor h3, .ty-word-editor h4, .ty-word-editor h5 {
  margin-bottom: 1rem; }

.entry-content img {
  margin: 0 0 1.5em 0; }

.alignleft, img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left; }

.alignright, img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right; }

.aligncenter, img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both; }

.alignnone, img.alignnone {
  /* not sure about this one */ }

.wp-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px; }

.wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0; }

.wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0; }

.wp-smiley {
  margin: 0 !important;
  max-height: 1em; }

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left; }

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right; }

/* ----------------------
    
---- Error 404

---------------------- */
.error-404 .ty-page-error-404-content .ty-content {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .error-404 .ty-page-error-404-content .ty-content h2 {
    font-size: 4rem;
    color: #0071BC; }
    @media (min-width: 960px) {
      .error-404 .ty-page-error-404-content .ty-content h2 {
        font-size: 10vw; } }

/* Home */
/* ----------------------
    
---- Home Hero Banner 

---------------------- */
#ty-home-hero-banner {
  height: 80vh;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem; }
  #ty-home-hero-banner:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #0071BC;
    background: linear-gradient(0deg, #0071bc 0%, rgba(0, 0, 0, 0) 100%); }
  #ty-home-hero-banner .ty-banner-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    #ty-home-hero-banner .ty-banner-holder:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); }
    #ty-home-hero-banner .ty-banner-holder video {
      object-fit: cover;
      object-position: top center;
      height: 100%;
      width: 100%; }
  #ty-home-hero-banner .ty-hero-content-wrap {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 150px; }
    #ty-home-hero-banner .ty-hero-content-wrap .ty-hero-content {
      text-align: center;
      padding: 1rem;
      max-width: 1000px; }
    #ty-home-hero-banner .ty-hero-content-wrap h1 {
      width: 100%;
      color: white;
      font-size: clamp(2.5rem, 4vw, 4rem); }
    #ty-home-hero-banner .ty-hero-content-wrap .ty-btn {
      min-width: 165px; }

/* ----------------------
    
---- Home Services 

---------------------- */
/* ----------------------
    
---- Home Industries 

---------------------- */
.ty-home-industries {
  background: #f2f0f0; }

/* ----------------------
    
---- Home Case Studies 

---------------------- */
#ty-home-case-studies {
  background-color: #0071BC; }
  #ty-home-case-studies .ty-button-wrap {
    text-align: center; }

/* ----------------------
    
---- Home Case Studies List 

---------------------- */
ul.ty-home-case-studies-list {
  list-style: none;
  margin: 0;
  margin-bottom: 1rem; }
  @media (min-width: 768px) {
    ul.ty-home-case-studies-list {
      display: flex;
      flex-wrap: wrap; } }
  ul.ty-home-case-studies-list li {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0);
    transition: all .3s ease;
    margin-bottom: 1rem; }
    @media (min-width: 768px) {
      ul.ty-home-case-studies-list li {
        width: 50%; } }
    @media (min-width: 1140px) {
      ul.ty-home-case-studies-list li {
        width: 25%; } }
    ul.ty-home-case-studies-list li:hover {
      border: 1px solid white;
      transform: scale(1.02); }
    ul.ty-home-case-studies-list li a {
      text-decoration: none !important; }
    ul.ty-home-case-studies-list li .ty-img-holder {
      width: 100%;
      overflow: hidden;
      aspect-ratio: 1;
      margin-bottom: 1rem;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #0090ef; }
      ul.ty-home-case-studies-list li .ty-img-holder i {
        font-size: 5rem;
        color: rgba(0, 0, 0, 0.2); }
      ul.ty-home-case-studies-list li .ty-img-holder img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    ul.ty-home-case-studies-list li h2 {
      color: white;
      text-align: center;
      font-weight: normal;
      font-size: 1rem;
      font-size: clamp(1rem, 2vw, 1.5rem); }

/* Services */
/* ----------------------
    
---- Services List

---------------------- */
ul.ty-services-list {
  margin: 0;
  list-style: none; }
  @media (min-width: 768px) {
    ul.ty-services-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center; } }
  ul.ty-services-list li {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all .3s ease; }
    ul.ty-services-list li:hover {
      transform: scale(1.02);
      box-shadow: 0 0 50px rgba(0, 0, 0, 0.1); }
      ul.ty-services-list li:hover h1 {
        opacity: 1; }
    ul.ty-services-list li a {
      text-decoration: none !important; }
    @media (min-width: 768px) {
      ul.ty-services-list li {
        width: 50%; } }
    @media (min-width: 960px) {
      ul.ty-services-list li {
        width: 25%; } }
    @media (min-width: 1140px) {
      ul.ty-services-list li {
        width: 20%; } }
    ul.ty-services-list li div.ty-img-holder {
      width: 100%;
      aspect-ratio: 1;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #e6e3e3; }
      ul.ty-services-list li div.ty-img-holder i {
        font-size: 5rem;
        color: rgba(0, 0, 0, 0.2); }
      ul.ty-services-list li div.ty-img-holder img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    ul.ty-services-list li h1 {
      font-size: clamp(1rem, 2vw, 1.5rem);
      text-align: center;
      color: #000;
      font-weight: bold;
      opacity: .5;
      transition: all .3s ease;
      padding: 0 .5rem; }

/* Industries */
/* ----------------------
    
---- Industries List

---------------------- */
ul.ty-industries-list {
  margin: 0;
  list-style: none; }
  @media (min-width: 768px) {
    ul.ty-industries-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center; } }
  ul.ty-industries-list li {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all .3s ease; }
    ul.ty-industries-list li a {
      text-decoration: none !important; }
    @media (min-width: 768px) {
      ul.ty-industries-list li {
        width: 50%; } }
    @media (min-width: 960px) {
      ul.ty-industries-list li {
        width: 25%; } }
    ul.ty-industries-list li div.ty-img-holder {
      width: 100%;
      aspect-ratio: 1;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #e6e3e3; }
      ul.ty-industries-list li div.ty-img-holder i {
        font-size: 5rem;
        color: rgba(0, 0, 0, 0.2); }
      ul.ty-industries-list li div.ty-img-holder img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    ul.ty-industries-list li h1 {
      font-size: clamp(1rem, 2vw, 1.5rem);
      text-align: center;
      color: #000;
      font-weight: bold;
      transition: all .3s ease;
      padding: 0 .5rem; }

/* Case Studies */
/* ----------------------
    
---- Case Studies List

---------------------- */
#ty-case-studies-list li {
  text-align: center; }
  #ty-case-studies-list li:hover {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1); }
  #ty-case-studies-list li a .ty-img-holder {
    background-color: #e6e3e3;
    position: relative; }
    #ty-case-studies-list li a .ty-img-holder:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 70%;
      opacity: .5;
      background: transparent;
      background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%); }
    #ty-case-studies-list li a .ty-img-holder .ty-date {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      background-color: #0071BC;
      padding: 1rem; }
      #ty-case-studies-list li a .ty-img-holder .ty-date span {
        color: white; }
  #ty-case-studies-list li a h2 {
    color: #000; }
  #ty-case-studies-list li a.ty-btn {
    margin-top: 1rem; }

/* ----------------------
    
---- Case Studies Single

---------------------- */
.ty-case-studies-single .ty-case-studies-title {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem; }
  .ty-case-studies-single .ty-case-studies-title span.ty-case-studies-post-date {
    color: white;
    display: inline-block;
    padding: 1rem;
    font-weight: bold;
    background: #0071BC; }
  .ty-case-studies-single .ty-case-studies-title h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    width: 100%;
    display: inline-block;
    text-align: center; }

/* About */
/* ----------------------
    
---- About Sect

---------------------- */
.ty-about-sect {
  background-color: #e6e3e3; }
  @media (min-width: 768px) {
    .ty-about-sect .ty-content {
      display: flex; } }
  @media (min-width: 768px) {
    .ty-about-sect .ty-content .ty-img-holder {
      width: 50%;
      padding: 0 1rem; } }
  .ty-about-sect .ty-content .ty-img-holder img {
    width: 100%;
    position: relative;
    height: 100%;
    object-fit: cover; }
  .ty-about-sect .ty-content .ty-about-content {
    padding: 1rem; }
    @media (min-width: 768px) {
      .ty-about-sect .ty-content .ty-about-content {
        width: 50%;
        padding: 0 1rem; } }
    @media (min-width: 960px) {
      .ty-about-sect .ty-content .ty-about-content {
        display: flex;
        flex-direction: column;
        justify-content: center; } }
    .ty-about-sect .ty-content .ty-about-content h2 {
      margin-bottom: 1rem; }
      @media (min-width: 1140px) {
        .ty-about-sect .ty-content .ty-about-content h2 {
          font-size: 2rem;
          font-size: 2vw; } }
    .ty-about-sect .ty-content .ty-about-content h2,
    .ty-about-sect .ty-content .ty-about-content p {
      margin-bottom: 1rem; }
    .ty-about-sect .ty-content .ty-about-content .ty-btn {
      align-self: flex-start; }

/* Contact */
/* ----------------------
    
---- Contact Page

---------------------- */
@media (min-width: 960px) {
  .ty-contact-page .ty-content {
    display: flex !important; } }
.ty-contact-page .ty-content .ty-contact-form-wrap,
.ty-contact-page .ty-content .ty-contact-details-wrap {
  margin-bottom: 1rem; }
  @media (min-width: 960px) {
    .ty-contact-page .ty-content .ty-contact-form-wrap,
    .ty-contact-page .ty-content .ty-contact-details-wrap {
      width: 50%; } }
@media (min-width: 1140px) {
  .ty-contact-page .ty-content .ty-contact-form-wrap {
    width: 70%; } }
@media (min-width: 1140px) {
  .ty-contact-page .ty-content .ty-contact-details-wrap {
    width: 30%; } }
.ty-contact-page h2.ty-contact-title {
  font-size: 2rem; }

/* ----------------------
    
---- Contact Details Wrap

---------------------- */
.ty-contact-details-wrap {
  padding: 1rem; }
  .ty-contact-details-wrap h2 {
    margin-bottom: 2rem; }
  .ty-contact-details-wrap .ty-contact-details-list .ty-contact-details-list-item {
    padding: 1rem 0;
    font-size: 1.5rem;
    color: #0071BC; }
    .ty-contact-details-wrap .ty-contact-details-list .ty-contact-details-list-item i {
      margin-right: .5rem;
      vertical-align: top;
      margin-top: 5px; }
    .ty-contact-details-wrap .ty-contact-details-list .ty-contact-details-list-item i,
    .ty-contact-details-wrap .ty-contact-details-list .ty-contact-details-list-item a {
      display: inline-block; }

/* ----------------------
    
---- Contact Form

---------------------- */
.ty-contact-form {
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding: 1rem;
  position: relative; }
  @media (min-width: 960px) {
    .ty-contact-form {
      padding: 2rem; } }
  .ty-contact-form.loading .ty-loader {
    opacity: 1;
    visibility: visible; }
  .ty-contact-form.loading input,
  .ty-contact-form.loading textarea {
    pointer-events: none !important; }
  @media (min-width: 960px) {
    .ty-contact-form .ty-form-block {
      display: flex;
      flex-wrap: wrap; } }
  .ty-contact-form .ty-form-title {
    margin-bottom: 1rem; }
    @media (min-width: 960px) {
      .ty-contact-form .ty-form-title {
        padding: 0 .5rem; } }
    .ty-contact-form .ty-form-title h2 {
      margin-bottom: 1rem; }
    .ty-contact-form .ty-form-title .ty-form-msg {
      color: green;
      display: none; }
      .ty-contact-form .ty-form-title .ty-form-msg span:before {
        content: '\f14a';
        font-family: 'FontAwesome';
        margin-right: .5rem; }
  .ty-contact-form.show-msg .ty-form-msg {
    display: block; }
  .ty-contact-form.error .ty-form-msg {
    color: red; }
    .ty-contact-form.error .ty-form-msg span:before {
      content: '\f06a';
      font-family: 'FontAwesome'; }
  .ty-contact-form .ty-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden; }

/* Footer */
/* ----------------------
    
---- Footer 

---------------------- */
@media (min-width: 960px) {
  footer .ty-content {
    display: flex; } }
footer .ty-footer-sect {
  width: 100%;
  padding: 2rem 0;
  border-bottom: 1px solid #0071BC; }
  @media (min-width: 960px) {
    footer .ty-footer-sect {
      width: 25%;
      border: none;
      padding: 1rem;
      padding-right: 3rem; } }
  footer .ty-footer-sect h4 {
    color: #0071BC;
    margin-bottom: 1rem; }
  footer .ty-footer-sect.ty-footer-brand img {
    width: 70%; }
    @media (min-width: 768px) {
      footer .ty-footer-sect.ty-footer-brand img {
        width: 200px; } }

/* ----------------------
    
---- Footer  Nav

---------------------- */
nav.ty-footer-nav ul {
  margin: 0;
  list-style: none; }
  nav.ty-footer-nav ul li {
    margin-bottom: 1rem; }
    nav.ty-footer-nav ul li:last-of-type {
      margin-bottom: 0; }
    nav.ty-footer-nav ul li a {
      text-decoration: none;
      color: #000; }

/* ----------------------
    
---- Footer Contact Details

---------------------- */
.ty-footer-contact-details .ty-contact-details-list-item {
  margin-bottom: 1rem; }
  .ty-footer-contact-details .ty-contact-details-list-item i {
    vertical-align: top; }
  .ty-footer-contact-details .ty-contact-details-list-item a {
    color: #000;
    display: inline-block;
    position: relative;
    padding-left: .5rem; }

/* ----------------------
    
---- Footer Social List

---------------------- */
.ty-footer-social-list a {
  font-size: 2rem;
  color: #000;
  text-decoration: none !important; }
  .ty-footer-social-list a:hover {
    color: #0071BC; }

/*# sourceMappingURL=main.css.map */
