/* --------------------

--- Variables

-------------------- */
/* --------------------

--- Mixins

-------------------- */
/*------------------------------------------
	1. Mixins --- Media Query Management
------------------------------------------*/
/*------------------------------------------
	2. center vertically and/or horizontally an absolute positioned element
------------------------------------------*/
/*------------------------------------------
    3. antialiasing mode font rendering
------------------------------------------*/
/*------------------------------------------
	  4. Click Effect
------------------------------------------*/
/* --------------------

--- Reset

-------------------- */
.ty-blue-mid-color {
  color: #2E3192; }

.ty-blue-light-color {
  color: #0071BC; }

.ty-page-title {
  text-align: center;
  font-size: clamp(2rem, 2vw, 4rem); }

h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 1rem; }

p {
  color: #989898; }

/* --------------------

--- Layout

-------------------- */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.1; }

/* Disable all transitions and animations while loading */
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important; }

body {
  overflow-x: hidden;
  margin-bottom: 0 !important; }
  body main {
    padding-top: calc( 70px + 1rem );
    min-height: calc( 100vh - 300px ); }

.ty-container {
  margin-bottom: 5rem; }
  .ty-container:last-of-type {
    margin-bottom: 0; }
  .ty-container .ty-row {
    padding: 0 1rem; }
    @media (min-width: 1140px) {
      .ty-container .ty-row {
        margin: 0 auto;
        max-width: 80vw; } }
  .ty-container.ty-service-title, .ty-container.ty-projects-title {
    margin-bottom: 0; }

.ty-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden; }
  .preload .ty-page-loader {
    opacity: 1;
    visibility: visible; }

/* --------------------

--- BTN

-------------------- */
.ty-btn {
  text-decoration: none;
  background: #800000;
  border: 1px solid #800000;
  color: white !important;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
  text-transform: uppercase;
  cursor: pointer; }
  .ty-btn i {
    margin-right: 5px; }
  .ty-btn.ty-blue-mid-btn {
    background: #2E3192;
    border: 1px solid #2E3192; }
  .ty-btn.ty-blue-light-btn {
    background: #0071BC;
    border: 1px solid #0071BC; }
  .ty-btn.ty-white-btn {
    background: #fff;
    border: 1px solid #fff;
    color: #2E3192 !important; }
  .ty-btn.ty-outline-blue-mid-btn {
    background: none;
    color: #2E3192 !important;
    border: 1px solid #2E3192; }
  .ty-btn.ty-outline-blue-light-btn {
    background: none;
    color: #0071BC !important;
    border: 1px solid #0071BC; }
  .ty-btn.ty-outline-white-btn {
    background: none;
    color: #fff !important;
    border: 1px solid #fff; }

/* --------------------

--- CTA

-------------------- */
.ty-cta {
  margin-bottom: -20px !important;
  margin-top: 2rem !important; }
  .ty-cta .ty-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(152, 152, 152, 0.2);
    border-radius: 20px 20px 0 0;
    padding: 6rem 0;
    padding-bottom: calc( 6rem + 20px ); }
    @media (min-width: 960px) {
      .ty-cta .ty-row {
        padding: 10rem 0;
        padding-bottom: calc( 10rem + 20px ); } }
  .ty-cta h5 {
    color: #0071BC;
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(3rem, 5vw, 5rem); }
    .ty-cta h5 span {
      color: #2E3192; }
  .home .ty-cta {
    margin-top: 0 !important; }

/* --------------------

--- Nav Trigger

-------------------- */
.ty-nav-trigger {
  width: 30px;
  height: 70px;
  position: relative; }
  @media (min-width: 960px) {
    .ty-nav-trigger {
      display: none; } }
  .ty-nav-trigger span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #800000;
    transform: translateY(-50%); }
    .ty-nav-trigger span:after, .ty-nav-trigger span:before {
      content: '';
      width: 100%;
      height: 2px;
      position: absolute;
      right: 0;
      background: #800000; }
    .ty-nav-trigger span:after {
      top: -.5rem; }
    .ty-nav-trigger span:before {
      bottom: -.5rem; }

/* --------------------

--- Info Title

-------------------- */
.ty-info-title {
  margin-bottom: .5rem;
  display: flex;
  gap: 5px;
  align-items: center; }
  .ty-info-title i {
    width: 20px;
    height: 20px;
    display: inline-block; }
    .ty-info-title i svg {
      width: 100%;
      height: 100%; }
      .ty-info-title i svg path {
        fill: #800000; }
  .ty-info-title span {
    font-weight: bold;
    position: relative;
    text-transform: uppercase;
    color: #800000; }
    .ty-info-title span:after {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: calc( 100% + .5rem );
      height: 2px;
      width: 50px;
      display: block;
      background: #800000; }
  .ty-info-title.center {
    justify-content: center; }
  .ty-info-title.no-line span:after {
    display: none; }
  .ty-info-title.white i svg path {
    fill: white; }
  .ty-info-title.white span {
    color: white; }
    .ty-info-title.white span:after {
      background: white; }

/* --------------------

--- Sect Title

-------------------- */
.ty-sect-title {
  margin-bottom: 1rem; }
  .ty-sect-title h5 {
    font-size: clamp(2rem, 2vw, 4rem); }

/* --------------------

--- Image Block

-------------------- */
.ty-image-block {
  padding: 1rem !important;
  padding-bottom: 100% !important;
  border-radius: 20px;
  background-color: red;
  position: relative;
  overflow: hidden;
  background: url("../imgs/home/home-about-img.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  @media (min-width: 768px) {
    .ty-image-block {
      padding-bottom: 50% !important; } }
  @media (min-width: 960px) {
    .ty-image-block {
      padding-bottom: 1rem !important;
      display: flex;
      justify-content: flex-end; } }
  .ty-image-block .ty-image-block-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2; }
    @media (min-width: 960px) {
      .ty-image-block .ty-image-block-content {
        width: 50%; } }
    @media (min-width: 1140px) {
      .ty-image-block .ty-image-block-content {
        width: 40%; } }
    .ty-image-block .ty-image-block-content .ty-info-title {
      margin-bottom: 0; }
    .ty-image-block .ty-image-block-content h5 {
      font-size: clamp(2rem, 2vw, 4rem);
      margin-bottom: 0; }
    .ty-image-block .ty-image-block-content p {
      text-align: justify;
      margin-bottom: 0; }

/* --------------------

--- Input Holder

-------------------- */
.ty-input-holder {
  position: relative; }
  .ty-input-holder input,
  .ty-input-holder textarea {
    padding: 10px 15px;
    width: 100%;
    border-radius: 20px;
    color: #2E3192;
    resize: none; }
  .ty-input-holder textarea {
    height: 150px; }
  .ty-input-holder:after {
    content: '\f058';
    font-family: 'FontAwesome';
    position: absolute;
    top: 15px;
    right: 15px;
    color: #2E3192;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease; }
  .ty-input-holder.full input,
  .ty-input-holder.full textarea {
    border: 1px solid #2E3192;
    color: #2E3192; }
  .ty-input-holder.full:after {
    opacity: 1;
    visibility: visible; }
  .ty-input-holder.verify input,
  .ty-input-holder.verify textarea {
    border: 1px solid #800000;
    color: #800000; }
  .ty-input-holder.verify:after {
    content: '\f06a';
    font-family: 'FontAwesome';
    opacity: 1;
    visibility: visible;
    color: #800000; }

/* --------------------

--- Breadcrumbs

-------------------- */
.ty-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px; }
  .ty-breadcrumbs a {
    color: #800000 !important;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    white-space: nowrap;
    /* Forces text to stay on a single line */
    overflow: hidden;
    /* Hides the text that breaks out of the box */
    text-overflow: ellipsis;
    /* Appends the "..." at the cut-off point */
    transition: all .3s ease; }
    .ty-breadcrumbs a:after {
      content: '>'; }
    .ty-breadcrumbs a:last-of-type {
      pointer-events: none;
      opacity: 1 !important; }
      .ty-breadcrumbs a:last-of-type:after {
        display: none; }
    .ty-breadcrumbs a:hover {
      opacity: .2; }
    .ty-breadcrumbs a i {
      width: 20px;
      height: 20px;
      display: inline-block; }
      .ty-breadcrumbs a i svg {
        width: 100%;
        height: 100%; }
        .ty-breadcrumbs a i svg path {
          fill: #800000; }

/* --------------------

--- Check List

-------------------- */
ul.ty-check-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 0;
  list-style: none; }
  ul.ty-check-list li {
    display: flex;
    gap: 5px;
    align-items: center; }
    ul.ty-check-list li i {
      font-size: x-large; }
    ul.ty-check-list li span {
      font-weight: bold; }

/* --------------------

--- Team List

-------------------- */
ul.ty-team-list {
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem; }
  @media (min-width: 768px) {
    ul.ty-team-list {
      flex-direction: row; } }
  ul.ty-team-list li {
    display: flex;
    flex-direction: column;
    gap: 1rem; }
    @media (min-width: 768px) {
      ul.ty-team-list li {
        width: calc( 50% - 1rem ); } }
    @media (min-width: 960px) {
      ul.ty-team-list li {
        width: calc( 33.33% - 1rem ); } }
    @media (min-width: 1140px) {
      ul.ty-team-list li {
        width: calc( 20% - 1rem ); } }
    ul.ty-team-list li .ty-img-holder {
      aspect-ratio: 1; }
      ul.ty-team-list li .ty-img-holder img {
        border-radius: 20px; }
    ul.ty-team-list li .ty-content {
      display: flex;
      flex-direction: column;
      gap: 5px; }
      ul.ty-team-list li .ty-content h5 {
        font-weight: bold;
        text-transform: uppercase;
        font-size: clamp(1.5rem, 1vw, 4rem);
        margin-bottom: 0; }

/* --------------------

--- 404 Error

-------------------- */
.ty-404-error .ty-row {
  text-align: center; }
.ty-404-error h1 {
  font-size: clamp(5rem, 10vw, 10rem);
  margin-bottom: 0;
  color: #800000; }

/* --------------------

--- Loader

-------------------- */
.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #2E3192 #2E3192 transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite; }

.loader::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent #800000 #800000;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  animation: rotationBack 0.5s 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); } }
/* --------------------

--- SINGLE PAGE IMAGE SLIDER

-------------------- */
#single-page-image-slider {
  position: relative; }
  #single-page-image-slider .splide__track {
    border-radius: 20px; }
  #single-page-image-slider .splide__slide img {
    width: 100%; }
  #single-page-image-slider .splide__arrows {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem; }
    #single-page-image-slider .splide__arrows .splide__arrow {
      background: none;
      border-radius: 100%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0;
      border: 2px solid white;
      cursor: pointer;
      opacity: .6;
      transition: all .3s ease; }
      #single-page-image-slider .splide__arrows .splide__arrow:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 0.5); }
      #single-page-image-slider .splide__arrows .splide__arrow svg {
        width: 20px; }
        #single-page-image-slider .splide__arrows .splide__arrow svg path {
          fill: white; }
    #single-page-image-slider .splide__arrows .splide__arrow--prev {
      transform: rotate(180deg); }
  #single-page-image-slider .splide__pagination {
    margin-top: 1rem; }
    #single-page-image-slider .splide__pagination .splide__pagination__page {
      margin: 0 .3rem;
      border-radius: 100%;
      width: 15px;
      height: 15px;
      padding: 0;
      background: none;
      border: 2px solid #1B1464;
      cursor: pointer; }
      #single-page-image-slider .splide__pagination .splide__pagination__page.is-active {
        background: #1B1464; }

/* --------------------

--- Pagination

-------------------- */
.ty-pagination {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 5px; }
  .ty-pagination .page-numbers {
    width: 25px;
    height: 25px;
    background: #cbcbcb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: white;
    text-decoration: none; }
    .ty-pagination .page-numbers.current {
      background-color: #0071BC; }

/* --------------------

--- Off Canvas

-------------------- */
.ty-off-canvas {
  position: fixed;
  z-index: 888;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  overflow-y: scroll;
  background-color: #2E3192;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1); }
  @media (min-width: 960px) {
    .ty-off-canvas {
      transform: translateX(-100%) !important;
      opacity: 0 !important;
      visibility: visible !important; } }
  .nav-open .ty-off-canvas {
    transform: translateX(0);
    opacity: 1;
    visibility: visible; }
  .ty-off-canvas .ty-close-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 30px;
    height: 30px; }
    .ty-off-canvas .ty-close-x button.close {
      background: none;
      border: none; }
      .ty-off-canvas .ty-close-x button.close:after, .ty-off-canvas .ty-close-x button.close:before {
        content: ' ';
        position: absolute;
        top: 50%;
        left: 0;
        height: 3px;
        width: 100%;
        background-color: white; }
      .ty-off-canvas .ty-close-x button.close:after {
        transform: translateY(-50%) rotate(45deg); }
      .ty-off-canvas .ty-close-x button.close:before {
        transform: translateY(-50%) rotate(-45deg); }
  .ty-off-canvas .ty-logo-holder {
    height: 70px;
    padding: 5px; }
    .ty-off-canvas .ty-logo-holder img {
      height: 100%;
      width: auto; }
  .ty-off-canvas .ty-off-canvas-cta {
    padding: 1rem;
    margin-top: 2rem; }
    .ty-off-canvas .ty-off-canvas-cta h5 {
      color: white;
      font-size: 4rem; }
      .ty-off-canvas .ty-off-canvas-cta h5 span {
        opacity: .6; }

/* Header */
/* --------------------

--- Header

-------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: white;
  z-index: 777; }
  .admin-bar header {
    top: 46px; }
    @media (min-width: 960px) {
      .admin-bar header {
        top: 32px; } }
  header .ty-row {
    display: flex;
    justify-content: space-between; }
  header .ty-logo-holder {
    height: 70px;
    padding: 5px; }
    header .ty-logo-holder img {
      height: 100%;
      width: auto; }

/* --------------------

--- Headroom

-------------------- */
.headroom {
  will-change: transform;
  transition: all .3s ease; }
  .headroom.headroom--unpinned {
    transform: translateY(-100%); }
  .headroom.headroom--pinned {
    transform: translateY(0); }
  .headroom.headroom--not-top {
    box-shadow: 0 0 20px rgba(46, 49, 146, 0.2); }

/* --------------------

--- Header CTA

-------------------- */
.ty-header-cta {
  display: flex;
  align-items: center;
  gap: 1rem; }

/* Footer */
/* --------------------

--- Footer

-------------------- */
footer .ty-footer-content {
  background-color: #2E3192;
  padding: 1rem !important;
  color: white;
  border-radius: 20px; }
  @media (min-width: 768px) {
    footer .ty-footer-content {
      display: flex;
      flex-wrap: wrap; } }
  @media (min-width: 1140px) {
    footer .ty-footer-content {
      gap: 10px; } }
  footer .ty-footer-content > div {
    margin-bottom: 1rem; }
    @media (min-width: 1140px) {
      footer .ty-footer-content > div {
        padding: 10px;
        margin-bottom: 0; } }
  footer .ty-footer-content .ty-footer-brand {
    text-align: center; }
    @media (min-width: 1140px) {
      footer .ty-footer-content .ty-footer-brand {
        text-align: left; } }
    footer .ty-footer-content .ty-footer-brand .ty-logo-holder {
      text-align: center;
      margin-bottom: 1rem; }
      @media (min-width: 1140px) {
        footer .ty-footer-content .ty-footer-brand .ty-logo-holder {
          text-align: left; } }
      footer .ty-footer-content .ty-footer-brand .ty-logo-holder img {
        width: 50%;
        max-width: 150px; }
    @media (min-width: 1140px) {
      footer .ty-footer-content .ty-footer-brand {
        width: calc( 30% - 10px ); } }
    footer .ty-footer-content .ty-footer-brand p {
      color: white; }
  footer .ty-footer-content .ty-footer-title {
    margin-bottom: 1rem; }
    footer .ty-footer-content .ty-footer-title span {
      font-weight: bold;
      text-transform: uppercase;
      position: relative; }
      footer .ty-footer-content .ty-footer-title span:after {
        content: '';
        position: absolute;
        top: 50%;
        left: calc( 100% + 10px );
        transform: translateY(-50%);
        width: 50px;
        height: 2px;
        background: white;
        display: block; }

/* --------------------

--- Footer Quick Links

-------------------- */
@media (min-width: 768px) {
  .ty-footer-quick-links {
    width: 50%; } }
@media (min-width: 1140px) {
  .ty-footer-quick-links {
    width: calc( 50% - 10px ); } }
.ty-footer-quick-links nav.menu-footer-services-menu-container ul {
  display: flex;
  gap: 8px;
  margin: 0;
  list-style: none; }
  .ty-footer-quick-links nav.menu-footer-services-menu-container ul li a {
    border: 1px solid white;
    font-weight: 400;
    border-radius: 20px;
    padding: 5px 10px;
    display: inline-block;
    color: white !important;
    text-decoration: none;
    will-change: back;
    transition: all .3s ease; }
    .ty-footer-quick-links nav.menu-footer-services-menu-container ul li a:hover {
      background: white;
      color: #2E3192 !important; }

/* --------------------

--- Footer Socials

-------------------- */
@media (min-width: 768px) {
  footer .ty-footer-socials {
    width: 50%; } }
@media (min-width: 1140px) {
  footer .ty-footer-socials {
    width: calc( 20% - 10px ); } }
.ty-footer-socials .ty-footer-title {
  margin-bottom: .5rem; }
  .ty-footer-socials .ty-footer-title span {
    color: white;
    position: relative;
    font-weight: bold;
    text-transform: uppercase; }
    .ty-footer-socials .ty-footer-title span:after {
      content: '';
      position: absolute;
      top: 50%;
      left: calc(100% + 10px);
      transform: translateY(-50%);
      width: 50px;
      height: 2px;
      background: white;
      display: block; }
.ty-footer-socials ul {
  margin: 0;
  display: flex;
  gap: 10px;
  list-style: none; }
  .ty-footer-socials ul li a {
    text-decoration: none;
    background: white;
    color: #2E3192;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: large;
    border-radius: 20px; }

/* --------------------

--- Footer Copyright

-------------------- */
.ty-footer-copyright {
  padding: 5px 1rem !important; }
  @media (min-width: 960px) {
    .ty-footer-copyright {
      display: flex;
      justify-content: space-between; } }
  .ty-footer-copyright p {
    margin-bottom: .5rem;
    text-align: center;
    color: #2E3192; }

/* Nav */
/* --------------------

--- Nav Header

-------------------- */
nav#ty-nav-header {
  display: none; }
  @media (min-width: 960px) {
    nav#ty-nav-header {
      display: block; } }
  nav#ty-nav-header ul {
    list-style: none;
    display: flex;
    margin: 0; }
    nav#ty-nav-header ul li a {
      text-decoration: none;
      line-height: 70px;
      text-transform: uppercase;
      font-weight: 500;
      color: #2E3192;
      padding: 1rem; }
    nav#ty-nav-header ul li.menu-item-has-children {
      position: relative;
      top: -1px; }
      nav#ty-nav-header ul li.menu-item-has-children > a:after {
        content: '\f107';
        font-family: 'FontAwesome';
        margin-left: 5px; }
      nav#ty-nav-header ul li.menu-item-has-children:hover ul.sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0); }
      nav#ty-nav-header ul li.menu-item-has-children ul.sub-menu {
        position: absolute;
        top: calc( 100% - 2px );
        left: 0;
        width: 200%;
        background: #fff;
        z-index: 2;
        box-shadow: 0 20px 20px rgba(46, 49, 146, 0.2);
        display: flex;
        flex-direction: column;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease;
        overflow: hidden;
        border-radius: 0 0 20px 20px; }
        nav#ty-nav-header ul li.menu-item-has-children ul.sub-menu li {
          z-index: 2;
          position: relative; }
          nav#ty-nav-header ul li.menu-item-has-children ul.sub-menu li a {
            display: inline-block;
            line-height: 1;
            width: 100%; }

/* --------------------

--- Off Canvas Nav

-------------------- */
nav#ty-off-canvas-nav {
  margin-top: calc( 70px / 2 ); }
  nav#ty-off-canvas-nav ul {
    margin: 0; }
    nav#ty-off-canvas-nav ul li a {
      color: #fff;
      text-decoration: none;
      text-transform: uppercase;
      padding: 1rem;
      display: inline-block;
      width: 100%;
      font-weight: bold;
      border-top: 1px solid #5b5ecb; }
    nav#ty-off-canvas-nav ul li:last-of-type {
      border-bottom: 1px solid #5b5ecb; }
    nav#ty-off-canvas-nav ul li.menu-item-has-children > a {
      position: relative; }
      nav#ty-off-canvas-nav ul li.menu-item-has-children > a:after {
        content: '\f107';
        font-family: 'FontAwesome';
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        transition: all .2s ease; }
    nav#ty-off-canvas-nav ul li.menu-item-has-children.nav-open > a:after {
      transform: translateY(-50%) rotate(180deg); }
  nav#ty-off-canvas-nav ul.sub-menu {
    background: #5b5ecb;
    display: none; }
    nav#ty-off-canvas-nav ul.sub-menu li a {
      border: 1px solid #2E3192;
      font-weight: normal; }

/* Home */
/* --------------------

--- Home Hero Banner

-------------------- */
.ty-home-hero-banner .ty-row {
  display: flex;
  flex-direction: column;
  gap: .5rem; }
  @media (min-width: 768px) {
    .ty-home-hero-banner .ty-row {
      flex-direction: row;
      justify-content: space-between; } }
.ty-home-hero-banner .ty-home-hero-content {
  background: #2E3192;
  padding: 2rem;
  border-radius: 20px; }
  @media (min-width: 768px) {
    .ty-home-hero-banner .ty-home-hero-content {
      width: calc( 50% - .5rem ); } }
  @media (min-width: 960px) {
    .ty-home-hero-banner .ty-home-hero-content {
      width: calc( 40% - .5rem ); } }
  .ty-home-hero-banner .ty-home-hero-content h1 {
    color: white;
    font-size: clamp(2rem, 2vw, 4rem); }
  .ty-home-hero-banner .ty-home-hero-content p {
    color: white; }
  .ty-home-hero-banner .ty-home-hero-content .ty-btn-holder {
    display: flex;
    flex-direction: column;
    gap: 10px; }
    @media (min-width: 768px) {
      .ty-home-hero-banner .ty-home-hero-content .ty-btn-holder {
        flex-direction: row; } }
    .ty-home-hero-banner .ty-home-hero-content .ty-btn-holder a {
      align-self: flex-start; }
.ty-home-hero-banner .ty-img-holder {
  overflow: hidden;
  border-radius: 20px; }
  @media (min-width: 768px) {
    .ty-home-hero-banner .ty-img-holder {
      width: calc( 50% - .5rem ); } }
  @media (min-width: 960px) {
    .ty-home-hero-banner .ty-img-holder {
      width: calc( 60% - .5rem ); } }
  .ty-home-hero-banner .ty-img-holder img {
    margin-bottom: -5px; }
    @media (min-width: 768px) {
      .ty-home-hero-banner .ty-img-holder img {
        width: 100%;
        height: 100%;
        object-fit: cover; } }

/* --------------------

--- Home Why Intro

-------------------- */
.ty-home-why-intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem; }
  @media (min-width: 768px) {
    .ty-home-why-intro {
      flex-direction: row; } }
  .ty-home-why-intro .ty-img-holder {
    overflow: hidden;
    border-radius: 20px; }
    @media (min-width: 768px) {
      .ty-home-why-intro .ty-img-holder {
        width: calc( 50% - 1rem ); } }
    @media (min-width: 1140px) {
      .ty-home-why-intro .ty-img-holder {
        width: calc( 70% - 1rem );
        justify-content: center; } }
    .ty-home-why-intro .ty-img-holder img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .ty-home-why-intro .ty-contxt {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem; }
    @media (min-width: 768px) {
      .ty-home-why-intro .ty-contxt {
        width: calc( 50% - 1rem );
        justify-content: center; } }
    @media (min-width: 1140px) {
      .ty-home-why-intro .ty-contxt {
        width: calc( 30% - 1rem );
        justify-content: center; } }
  .ty-home-why-intro h5 {
    font-size: clamp(2rem, 2vw, 4rem);
    margin-bottom: 0; }
  .ty-home-why-intro p {
    margin-bottom: 0; }

/* --------------------

--- Home Why List Items

-------------------- */
.ty-home-why-list-items {
  display: flex;
  flex-direction: column;
  gap: 1rem; }
  @media (min-width: 768px) {
    .ty-home-why-list-items {
      flex-direction: row;
      flex-wrap: wrap; } }
  .ty-home-why-list-items .ty-home-why-list-item {
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white; }
    @media (min-width: 768px) {
      .ty-home-why-list-items .ty-home-why-list-item {
        width: calc( 50% - 1rem ); } }
    @media (min-width: 960px) {
      .ty-home-why-list-items .ty-home-why-list-item {
        width: calc( 25% - 1rem ); } }
    .ty-home-why-list-items .ty-home-why-list-item:nth-of-type(odd) {
      box-shadow: 0 5px 0 rgba(0, 113, 188, 0.2);
      border: 1px solid rgba(0, 113, 188, 0.2); }
    .ty-home-why-list-items .ty-home-why-list-item:nth-of-type(even) {
      box-shadow: 0 5px 0 rgba(46, 49, 146, 0.2);
      border: 1px solid rgba(46, 49, 146, 0.2); }
    .ty-home-why-list-items .ty-home-why-list-item i {
      font-size: 3rem; }
    .ty-home-why-list-items .ty-home-why-list-item h6 {
      font-size: clamp(1.5rem, 1vw, 2rem);
      font-size: 1.5rem; }
    .ty-home-why-list-items .ty-home-why-list-item p {
      margin-bottom: 0; }

/* --------------------

--- Home Projects

-------------------- */
.ty-home-projects .ty-btn-holder {
  text-align: center;
  padding: 1rem; }

/* About */
/* --------------------

--- About Company

-------------------- */
@media (min-width: 960px) {
  .ty-about-company .ty-row {
    display: flex;
    gap: 1rem; } }
@media (min-width: 1140px) {
  .ty-about-company .ty-row {
    gap: 2rem; } }
@media (min-width: 960px) {
  .ty-about-company .ty-img-holder,
  .ty-about-company .ty-content {
    width: calc( 50% - 1rem ); } }
.ty-about-company .ty-content > div {
  position: sticky;
  top: calc( 70px + 2.5rem ); }
.ty-about-company h5 {
  font-size: clamp(2rem, 2vw, 4rem); }
.ty-about-company p {
  text-align: justify; }
.ty-about-company img {
  border-radius: 20px; }

/* --------------------

--- About VISION MISSION

-------------------- */
.ty-about-vision-mission .ty-row {
  display: flex;
  flex-direction: column;
  gap: 1rem; }
  @media (min-width: 768px) {
    .ty-about-vision-mission .ty-row {
      flex-direction: row; } }
.ty-about-vision-mission .ty-vision-mission-block {
  background-color: #2E3192;
  padding: 2rem;
  border-radius: 20px; }
  .ty-about-vision-mission .ty-vision-mission-block:last-of-type {
    background: #0071BC; }
  .ty-about-vision-mission .ty-vision-mission-block .ty-info-title {
    opacity: .6; }
    .ty-about-vision-mission .ty-vision-mission-block .ty-info-title span,
    .ty-about-vision-mission .ty-vision-mission-block .ty-info-title i {
      color: white;
      font-weight: normal; }
      .ty-about-vision-mission .ty-vision-mission-block .ty-info-title span:after,
      .ty-about-vision-mission .ty-vision-mission-block .ty-info-title i:after {
        background: white; }
  .ty-about-vision-mission .ty-vision-mission-block p {
    color: white;
    font-weight: bold;
    font-size: clamp(1.5rem, 1.5vw, 4rem);
    margin-bottom: 0; }

/* Services */
/* --------------------

--- Services Single Hero Banner

-------------------- */
@media (min-width: 960px) {
  .ty-service-single-hero-banner .ty-row {
    display: flex;
    gap: 1rem; } }
@media (min-width: 960px) {
  .ty-service-single-hero-banner .ty-service-single-slider {
    width: calc( 50% - 1rem ); } }
@media (min-width: 1140px) {
  .ty-service-single-hero-banner .ty-service-single-slider {
    width: calc( 60% - 1rem ); } }
.ty-service-single-hero-banner .ty-service-single-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 0 rgba(0, 113, 188, 0.2);
  border: 1px solid rgba(0, 113, 188, 0.2); }
  @media (min-width: 960px) {
    .ty-service-single-hero-banner .ty-service-single-content {
      width: calc( 50% - 1rem ); } }
  @media (min-width: 1140px) {
    .ty-service-single-hero-banner .ty-service-single-content {
      width: calc( 40% - 1rem ); } }
  .ty-service-single-hero-banner .ty-service-single-content h1,
  .ty-service-single-hero-banner .ty-service-single-content p {
    margin: 0; }

/* --------------------

--- Service Block List

-------------------- */
ul.ty-service-block-list {
  margin: 0;
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-direction: column; }
  @media (min-width: 960px) {
    ul.ty-service-block-list {
      flex-direction: row;
      flex-wrap: wrap; } }
  ul.ty-service-block-list li {
    border-radius: 20px;
    border: 1px solid rgba(152, 152, 152, 0.2);
    transition: all .3s ease;
    box-shadow: 0 0 20px rgba(46, 49, 146, 0); }
    @media (min-width: 960px) {
      ul.ty-service-block-list li {
        width: calc( 50% - 1rem ); } }
    ul.ty-service-block-list li:hover {
      border: 1px solid rgba(152, 152, 152, 0.7);
      box-shadow: 0 0 20px rgba(46, 49, 146, 0.2);
      transform: scale(1.015); }
    ul.ty-service-block-list li a {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      text-decoration: none; }
      @media (min-width: 768px) {
        ul.ty-service-block-list li a {
          flex-direction: row;
          align-items: center; } }
    ul.ty-service-block-list li .ty-img-holder {
      overflow: hidden;
      border-radius: calc( 20px - .5rem ); }
      @media (min-width: 768px) {
        ul.ty-service-block-list li .ty-img-holder {
          width: 40%;
          height: 100%; } }
      ul.ty-service-block-list li .ty-img-holder img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    ul.ty-service-block-list li .ty-contxt {
      display: flex;
      flex-direction: column;
      gap: 1rem; }
      @media (min-width: 768px) {
        ul.ty-service-block-list li .ty-contxt {
          width: 60%; } }
      ul.ty-service-block-list li .ty-contxt h5 {
        font-size: x-large;
        margin-bottom: 0; }
      ul.ty-service-block-list li .ty-contxt p {
        margin-bottom: 0; }
      ul.ty-service-block-list li .ty-contxt button {
        align-self: flex-start; }

/* Projects */
/* --------------------

--- project Block List

-------------------- */
ul.ty-project-block-list {
  margin: 0;
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-direction: column; }
  @media (min-width: 768px) {
    ul.ty-project-block-list {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center; } }
  ul.ty-project-block-list > li {
    padding: 1rem;
    border-radius: 20px;
    will-change: transform;
    transition: all .3s ease; }
    ul.ty-project-block-list > li:nth-of-type(odd) {
      box-shadow: 0 5px 0 rgba(0, 113, 188, 0.2);
      border: 1px solid rgba(0, 113, 188, 0.2); }
    ul.ty-project-block-list > li:nth-of-type(even) {
      box-shadow: 0 5px 0 rgba(46, 49, 146, 0.2);
      border: 1px solid rgba(46, 49, 146, 0.2); }
    ul.ty-project-block-list > li:hover {
      transform: scale(1.015); }
      ul.ty-project-block-list > li:hover:nth-of-type(odd) {
        box-shadow: 0 5px 20px rgba(0, 113, 188, 0.2);
        border: 1px solid rgba(0, 113, 188, 0.2); }
      ul.ty-project-block-list > li:hover:nth-of-type(even) {
        box-shadow: 0 5px 20px rgba(46, 49, 146, 0.2);
        border: 1px solid rgba(46, 49, 146, 0.2); }
    @media (min-width: 768px) {
      ul.ty-project-block-list > li {
        width: calc( 50% - 1rem ); } }
    @media (min-width: 1140px) {
      ul.ty-project-block-list > li {
        width: calc( 25% - 1rem ); } }
    ul.ty-project-block-list > li a {
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      position: relative;
      height: 100%; }
    ul.ty-project-block-list > li .ty-img-holder {
      overflow: hidden;
      border-radius: calc( 20px - .5rem ); }
      ul.ty-project-block-list > li .ty-img-holder img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    ul.ty-project-block-list > li .ty-contxt {
      display: flex;
      flex-direction: column;
      gap: 1rem; }
      ul.ty-project-block-list > li .ty-contxt h5 {
        font-size: x-large;
        margin-bottom: 0; }
    ul.ty-project-block-list > li .ty-btn-holder {
      margin-top: auto; }
  @media (min-width: 768px) {
    .home ul.ty-project-block-list {
      justify-content: flex-start; } }

/* --------------------

--- Project Nav

-------------------- */
.ty-project-nav {
  margin-bottom: 0 !important; }
  .ty-project-nav ul.ty-cat-nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; }
    .ty-project-nav ul.ty-cat-nav li a {
      text-decoration: none;
      padding: 5px 10px;
      display: inline-block;
      border: 1px solid #800000;
      color: #800000 !important;
      border-radius: 20px;
      transition: all .3s ease; }
      .ty-project-nav ul.ty-cat-nav li a:hover {
        color: #fff !important;
        background: #800000; }
      .ty-project-nav ul.ty-cat-nav li a.active {
        color: #fff !important;
        background: #800000; }

/* --------------------

--- Projects Single Hero Banner

-------------------- */
@media (min-width: 960px) {
  .ty-project-single-hero-banner .ty-row {
    display: flex;
    gap: 1rem; } }
.ty-project-single-hero-banner .ty-project-single-slider {
  margin-bottom: 1rem; }
  @media (min-width: 960px) {
    .ty-project-single-hero-banner .ty-project-single-slider {
      width: calc( 50% - 1rem ); } }
  @media (min-width: 1140px) {
    .ty-project-single-hero-banner .ty-project-single-slider {
      width: calc( 60% - 1rem ); } }
.ty-project-single-hero-banner .ty-project-single-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 0 rgba(0, 113, 188, 0.2);
  border: 1px solid rgba(0, 113, 188, 0.2); }
  @media (min-width: 960px) {
    .ty-project-single-hero-banner .ty-project-single-content {
      width: calc( 50% - 1rem ); } }
  @media (min-width: 1140px) {
    .ty-project-single-hero-banner .ty-project-single-content {
      width: calc( 40% - 1rem ); } }
  .ty-project-single-hero-banner .ty-project-single-content h1,
  .ty-project-single-hero-banner .ty-project-single-content p {
    margin: 0; }

/* --------------------

--- Project Cat List

-------------------- */
ul.ty-project-cat-list {
  margin: 0;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  list-style: none; }
  ul.ty-project-cat-list li a,
  ul.ty-project-cat-list li span {
    text-decoration: none;
    color: #0071BC;
    border-radius: 20px;
    border: 1px solid #0071BC;
    padding: 5px 10px;
    display: inline-block;
    font-size: small;
    font-weight: bold;
    transition: all .3s ease; }
    @media (min-width: 1140px) {
      ul.ty-project-cat-list li a,
      ul.ty-project-cat-list li span {
        font-size: x-small; } }

/* --------------------

--- Project Single Details List

-------------------- */
.ty-project-single-details-list {
  display: flex;
  flex-direction: column;
  gap: 10px; }
  .ty-project-single-details-list > div {
    background: #f9f9f9;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: flex; }
    .ty-project-single-details-list > div span {
      display: inline-block;
      width: 50%;
      font-weight: bold;
      color: #989898; }
      .ty-project-single-details-list > div span:last-of-type {
        color: #2E3192;
        text-align: right; }

/* Contact */
/* --------------------

--- Contact Hero

-------------------- */
.ty-contact-hero .ty-row {
  display: flex;
  flex-direction: column;
  gap: 1rem; }
  @media (min-width: 960px) {
    .ty-contact-hero .ty-row {
      flex-direction: row; } }

/* --------------------

--- Contact Details

-------------------- */
.ty-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #2E3192;
  padding: 1.5rem;
  border-radius: 20px; }
  @media (min-width: 960px) {
    .ty-contact-details {
      width: calc( 50% - 1rem ); } }
  @media (min-width: 1140px) {
    .ty-contact-details {
      width: calc( 40% - 1rem ); } }
  .ty-contact-details .ty-info-title {
    margin-bottom: 0; }
  .ty-contact-details h1 {
    color: #fff;
    font-size: clamp(2rem, 2vw, 4rem);
    margin: 0; }
  .ty-contact-details p {
    color: #fff;
    margin: 0; }
  .ty-contact-details .ty-contact-details-content {
    display: flex;
    flex-direction: column;
    gap: 1rem; }
  .ty-contact-details .ty-btn-holder {
    display: flex;
    flex-direction: column;
    gap: 10px; }
    .ty-contact-details .ty-btn-holder a {
      align-self: flex-start;
      text-transform: none !important; }
  .ty-contact-details .ty-footer-socials {
    margin-top: 1rem; }

/* --------------------

--- Contact Form

-------------------- */
.ty-contact-form {
  background: #F3F3FF;
  padding: 1.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden; }
  @media (min-width: 960px) {
    .ty-contact-form {
      width: calc( 50% - 1rem ); } }
  @media (min-width: 1140px) {
    .ty-contact-form {
      width: calc( 60% - 1rem ); } }
  .ty-contact-form .ty-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 113, 188, 0.7);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden; }
  .ty-contact-form .ty-info-title {
    margin-bottom: 1rem; }
  .ty-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1; }
    @media (min-width: 1140px) {
      .ty-contact-form form {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between; } }
    @media (min-width: 1140px) {
      .ty-contact-form form .ty-input-holder {
        width: calc( 50% - 10px ); } }
    .ty-contact-form form .ty-input-holder.full-width {
      width: 100% !important; }
  .ty-contact-form.loading .ty-loader {
    opacity: 1;
    visibility: visible; }
  .ty-contact-form.loading form {
    pointer-events: none;
    opacity: .4; }
    .ty-contact-form.loading form .ty-input-holder input,
    .ty-contact-form.loading form .ty-input-holder textarea {
      pointer-events: none; }

/* --------------------

--- Contact Map

-------------------- */
.ty-contact-map {
  margin-bottom: 2rem !important; }
  .ty-contact-map .ty-contact-map-content {
    position: relative; }
  .ty-contact-map .ty-google-map {
    overflow: hidden;
    border-radius: 20px;
    height: 500px; }
    .ty-contact-map .ty-google-map img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .ty-contact-map .ty-contact-location {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.2); }
    @media (min-width: 960px) {
      .ty-contact-map .ty-contact-location {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%); } }
    .ty-contact-map .ty-contact-location .ty-info-title {
      margin-bottom: 0; }
    .ty-contact-map .ty-contact-location h3 {
      font-size: clamp(2rem, 2vw, 4rem);
      margin-bottom: 0; }
    .ty-contact-map .ty-contact-location p {
      margin-bottom: 0; }
    .ty-contact-map .ty-contact-location a {
      align-self: flex-start; }

/*# sourceMappingURL=main.css.map */
