body {
  font-family: "Open Sans", sans-serif;
  color: #2C2926;
  background-color: #fdffff;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'PT Sans Narrow', sans-serif;
}
p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #2c2926;
}

/* moved from on page */
#header {
    transition: all 0.5s ease-in-out;
} 
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #37517e;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo_loader {
    display: block; /* Initially set the display to "block" */
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/*#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}
*/

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
*/
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 35px 0;
  background: #192d61;
  width: 95%;
  border-radius: 3.375rem;
  margin: 25px auto 0 auto;
  /*position: absolute;*/
}
@media (max-width: 576px) {
#header {
  padding: 35px 0;
  width: 100%;
  border-radius: 0;
  margin: 0;
  /*position: absolute;*/
  }
.fixed-top {
  top: 0;
  }  
}  

#header.header-scrolled,
#header.header-inner-pages {
  background: #192d61;
}

/*
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}
*/

#header .logo img { /* TC round logo */
  z-index: 1;
  position: absolute;
  top: 17.5%;
  left: 4%;
  width: 350px;
}
.company-name {
  color: rgb(255 255 255);
  font-size: 1rem; 
  font-weight: 700; 
  position: absolute; 
  left: 12%;
  top: 45%; 
  display: none;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-right: 155px;
}
.fixed-top {
  position: sticky;
  top: 10px;
  /*right: 50px;
  left: 50px;
   z-index: 1030; */
}
@media (max-width: 576px) {
.fixed-top {
  top: 0;
  }  
#header .logo img {
  top: 15.5%;
  width: 275px;
  } 
#header {
    padding: 25px 0;
  }   
}
@media (max-width: 390px) {  
#header .logo img {
  width: 245px;
  }  
}
@media (max-width: 360px) {  
#header .logo img {
  width: 225px;
  top: 17.5%;
  }  
}
@media (max-width: 280px) {  
#header .logo img {
  width: 205px;
  }  
}
.navbar ul {
  margin: 0 -75px 0 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar .active, navbar .active:focus { /* white btn */
  display: block;
  background-color: #fff;
  border-radius: 4em;
  padding: 10px 20px 10px 20px;
  margin: 0 7px 0 7px;
}
.navbar .bubble, navbar a:hover {
  color: #192d61!important;
  margin: unset;
}
.navbar a:hover,
.navbar li:hover>a {
  color: rgb(255 255 255);
}

/*
.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}
*/

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 1rem;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 1rem;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #386869;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}
.bubble { /* hide chevron */
  display: none;
}
@media (max-width: 1200px) {
  #header{
  height: 100px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-nav-toggle {
  display: block;
}
.bubble { /* show chevron */
  display: inline-block;
}
.navbar-mobile-hide {
  transition: 0.3s;
  animation: slideUp 0.8s forwards;
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #e74c3c;
  transition: 0.3s;
  z-index: 999;
}
.navbar.navbar-mobile {
    animation: slideDown 0.8s forwards;
}
.navbar-mobile-hide {
  transition:0.3s;
  animation:slideUp 0.8s forwards;
  position:fixed;
  overflow:hidden;
  top:0;
  right:0;
  left:0;
  bottom:0;
  background:#e74c3c;
  transition:0.3s;
  z-index:999;
}
.navbar ul {
  display: none;
  }

.navbar {
  margin-right: 45px;
  }
.navbar .active, navbar .active:focus {
    background-color: unset; 
    color: #fff!important; 
  }
}  
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp { 
  from {
    opacity:1;
    transform:translateY(0);
    }
    to {
      opacity:0;
      transform:translateY(-100%);
      }
}
@media (max-width: 576px) {
.navbar {
  margin-right: 20px;
  }  
#header{
   height: 80px !important;
  }  
}
@media (max-width: 390px) {
.navbar {
  margin-right: 0;
  }  
}  
/*  
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}
*/

.navbar-mobile {
    margin: 0 !important;
    border-radius: 0 !important;
}
.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #192d61;
    transition: 0.3s;
    /*z-index: 999;*/
    margin: 0 0 0 65%;
    border-radius: 0 25px 0 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  padding: 25px;
  background-color: transparent;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 1.8em;
  color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  /*margin: 10px 20px;*/
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.mobile {
  display: none!important;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #fff!important;
  color: #192d61!important;
    /* margin: auto 0; */
  text-align: center;
  border-radius: 10px;
  margin: 0 25px 25px 25px;
}
.menu {
  justify-content: center;
  display: flex;
  width: 100%;
}
.mobile-only {
  display: none;
}


@media (max-width: 1200px) {
.mobile { 
  display: block!important; 
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
}
.no-mobile {
  display: none!important;
}
.mobile-only {
  display: block;
}
.navbar a, .navbar a:focus {
  display: block;
}
.navbar ul {
  margin: 0;
  text-align: center;
}
.navbar-mobile .dropdown ul {
  background: #192d61;
  box-shadow: none;
} 
.navbar .dropdown ul a {
  font-size: 1.8em;  
  color: #fff;
  }
.mm { /*Removes margin set by the bubble in desktop ver */
  margin-left: 34px;
}  
}   
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
@media (max-width: 360px) {
.navbar-mobile a, .navbar-mobile a:focus, .navbar .dropdown ul a {
    font-size: 1.5em;
  }
}      
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero { 
  background-image: url("../img/port.jpg");
  background-image: -webkit-image-set(url("../img/port.webp"));
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  height: 100vh;
  position: relative;
  top: -150px;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 0.8;
  color: #fff;
  text-shadow: 0 0 1em rgb(0 0 0 / 19%);
}
#hero h1 span {
  margin: 0 0 10px 0;
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 1em rgb(0 0 0 / 19%);
}

#hero h2 {
  color: #fff;
  margin-top: 20px;
  font-size: 2.5rem;
  line-height: 1.1;
  text-shadow: 0 0 1em rgb(0 0 0 / 19%);
  width: 85%;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
/* Index */
.intro {
  padding: 100px 0 75px 0; 
  background-color: #1f1d1d;
  margin-top: -150px;
}
.intro h3 {
  font-size: 10vw; 
  color: #fff; 
  font-weight: 700;
  line-height: 1;
}
.intro h4 {
  font-size: 43px; 
  font-weight: 400; 
  line-height: 1.5; 
  color: rgb(255 255 255 / 87%); 
  text-wrap: balance; 
  padding-bottom: 60px;
}
.tresamigos {
  padding-bottom: 0;
}
.illustrations {
  padding: 0;
}
.tresamigos p {
  font-size: 1.8rem; 
  line-height: 1.4; 
  width: 90%; 
  margin: auto; 
  padding: 18px 0 75px 0; 
  color: rgb(44 41 38 / 68%);
} 
.tresamigos h5 {
  font-size: 6.8rem; 
  line-height: 1; 
  font-weight: 700; 
  color: #192d61;
}
.tresamigos h5 span {
  font-size: 2.8rem; 
  font-weight: 400;
  color: #192d61;
  margin: 0 0 4rem 0;
}
.tresamigos h6 span {
  font-size: 12vw;
  color: #192d61;
}
.tresamigos h6 {
  font-size: 6.8rem;
  line-height: 1;
  font-weight: 700;
  color: #192d61;
}
.value-pills p {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 1.3em;
  font-weight: 600;
  padding: 20px 10px 20px 10px;
  background-color: #192d61;
  border-radius: 0 0 0.5em 0;
  color: rgb(255 255 255 / 93%);
  margin-bottom: 5rem;
}
/*
@media (max-width: 1400px) {
  .value-pills p {
  font-size: 1.2rem;
  }
} 
*/ 
.value-pills a {
  color: rgb(255 255 255 / 93%);
}
.ill {
  /*margin-bottom: 1.5rem;*/
  border-radius: 15px 15px 0 0;
}
.ill-container {
  padding: 0 60px 0 60px
}
.bs-icon {
  margin-left: 8px;
  margin-bottom: 5px;
}
.hero {
  margin-top: 8rem;
}
@media (max-width: 1400px) {
 .value-pills p {
  font-size: 1.1em
  }
} 
@media (max-width: 1200px) {
 #hero h2 {
    width: unset;
    font-size: 1.7rem;
  }
 .value-pills p {
  font-size: 0.9em
  }  
.ill-container {
  padding: 0 20px 0 20px
}  
.intro h4 {
  font-size: 28px;
  }
}   
@media (max-width: 991px) {
#hero h1 {
  font-size: 4rem;
}
#hero h1 span {
  font-size: 9rem;
  }
.value-pills p {
  font-size: 1.4em;
  }  
.tresamigos p {
  font-size: 1.5rem;
  }
}  
@media (max-width: 540px) {
#hero {
  background-position: bottom;  
}
#hero h1 {
    font-size: 3rem;
}  
#hero h1 span {
  font-size: 6rem;
}
.intro h3 {
  font-size: 13vw; 
}   
.tresamigos h6 {
  font-size: 4.8rem;   
}
.tresamigos h5 span {
  font-size: 2.3rem;  
}
.intro h4 {
  font-size: 23px;
} 
.tresamigos p {
  font-size: 1.3rem;
  }
.tresamigos h6 {
  font-size: 3.8rem;
  } 
.value-pills p {
  font-size: 1.1em;
  }     
} 
@media (max-width: 390px) {
.value-pills p {
  font-size: 0.9em;
  }
}   
@media (max-width: 360px) {  
#hero h1 {
  font-size: 2.5rem;
}
#hero h1 span {
  font-size: 4.5rem;
}
#hero h2 {
  font-size: 1.3rem;
}
.intro h4 {
  font-size: 20px;
}
.tresamigos p {
  font-size: 1.1rem;
}
.tresamigos h5 span {
  font-size: 2rem;
}
.tresamigos h6 {
  font-size: 3.3rem;
  }  
}  
@media (max-width: 320px) { 
.value-pills p {
  font-size: 0.8em;
  }
} 
@media (max-width: 280px) { 
.bs-icon {
  display: none;
  }
.tresamigos h5 span {
  font-size: 1.8rem;
  }
.tresamigos h6 {
    font-size: 2.7rem;
  }    
}  
/* Contact */
/*
.git {
  padding-bottom: 20px;
  background: #fdffff;
  border-radius: 2rem 2rem 0 0;
  margin: -200px 25px 0 25px
}
*/
.git h1 {
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
}
.git h1 span {
  color:#192d61;
}
.details p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 75px;
}
.hero-contact {
  width: 100%;
  background-image: url(../img/contact-bg.jpg);
  background-image: -webkit-image-set(url("../img/contact-bg.webp"));
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  background-position: center center;
  height: 70vh;
  position: absolute;
  top: -150px;
}
.details h2 {
  font-weight: 700;
}
input::placeholder, textarea::placeholder {
  font-size: 1rem;
}
/* Custom Modal Stuff Below */
.msg h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
}
.msg p {
  color: #fff;
  font-size: 1.4rem;
  white-space: nowrap;
}
.btn-close-modal {
  display: inline-block;
  padding: 18px 20px;
  border-radius: 2rem 0 2rem 2rem;
  color: #1c3063;
  font-size: 1rem;
  background-color: #fff;
  border: 2px solid #fff;
  font-weight: 600;
  text-decoration: none;
}
.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
}
.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  background: rgba(143,27,15,0.8);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.md-show.md-effect-12 ~ .md-overlay {
  background: #e74c3c;
}
.md-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 630px;
  min-width: 320px;
  height: auto;
  z-index: 2000;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.show {
  visibility: visible;
}
.modal-backdrop {
  --bs-backdrop-bg: #192d61!important;
  --bs-backdrop-opacity: 0.99!important;
} 
/* End modal 
@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}
*/
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
.generic {
  margin-top: 6.5rem;
}
@media (max-width: 576px) {
.generic {
  margin-top: 3.5rem;
  }
} 
.section-bg {
  background-color: #f3f5fa;
}

/* Buttons */

.cta-main {
    display: inline-block;
    padding: 18px 20px;
    border-radius: 2rem 0 2rem 2rem;
    color: #fff;
    font-size: 1rem;
    background-color: #324472;
    border: 2px solid #324472;
    font-weight: 600;
    text-decoration: none;
}
.cta-main:hover {
    text-decoration: none;
    color: #fff;
}
.cta-blanco {
    display: inline-block;
    padding: 18px 20px;
    border-radius: 2rem 0 2rem 2rem;
    color: #fff;
    font-size: 1.2rem;
    background-color: transparent;
    border: 3px solid #fff;
    font-weight: 600;
    text-decoration: none;
}
.cta-blanco:hover {
    text-decoration: none;
    color: #fff;
}
@media (max-width: 540px) { 
.cta-blanco {
    font-size: 1rem;
    border: 2px solid #fff   
  }
}  
.cta-read-article {
    display: inline-block;
    padding: 18px 20px;
    border-radius: 5rem;
    color: #386869;
    font-size: 1rem;
    background-color: #ffffff;
    border: 2px solid #444444;
    font-weight: 600;
    text-decoration: none;
}
.cta-read-article:hover {
  color: #386869;
}
@keyframes buttonHover{0%{transform:scaleX(1) scaleY(1);}40%{transform:scaleX(1.1) scaleY(0.9);}80%{transform:scaleX(0.95) scaleY(1.05);}100%{transform:scaleX(1) scaleY(1)!important;}}


.button:hover {
    animation: buttonHover 0.5s ease forwards !important;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: #192d61; 
  margin-top: 100px; 
  border-radius: 24px 24px 0 0;
  padding-top: 200px;
}
.footer p {
  font-size: 9vw; 
  color: rgb(255 255 255 / 88%); 
  font-weight: 800;
}
.colophon p {
  font-size: 1rem;
  font-weight: 400;
}
.colophon a {
  color: #fff
}
.colophon a:hover {
  color: #e5e5e5;
}
.colophon p span {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
}
.icons-footer {
    display: inline-block;
}

.btn-social {
    width: 45px;
    height: 45px;
    margin-top: 15px;
    margin: 3px;
    border-radius: 100%;
    text-align: center;
    font-size: 2rem;
    line-height: 42px;
    background-color: transparent;
    transition: all .1s ease-in-out;
    color: #fff;
}
.btn-social-pad {
  padding-left: 0;
}

.btn-social:hover {
  color: #e5e5e5;
}
.mini-logo {
  padding-top: 25px; 
  opacity: 0.7
}

/* Forms */
.contact-form h3 {
  margin-bottom: 35px; 
  font-size: 3.5rem; 
  font-weight: 700;
}
.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -24px;
}
.form-control-input-form-main {
    display: block;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
    padding-left: 1.625rem;
    border-bottom: 2rem;
    border: 1px solid #ececec;
    border-radius: 10px 0 10px 10px;
    background-color: #ffffff;
    color: #515867;
    font-size: 1.2rem;
    /* line-height: 3.875rem; */
    transition: all 0.2s;
}
form textarea {
    display: block;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.625rem;
    border-bottom: 2rem;
    border: 1px solid #ececec;
    border-radius: 10px 0 10px 10px;
    background-color: #ffffff;
    color: #515867;
    font-size: 1.2rem;
    line-height: 1.575rem;
    transition: all 0.2s;
    -webkit-appearance: none;
}
.sec-col {
  padding-left: 20px;
}
.h-line {
  width: 100px;
  height: 5px;
  display: inline-block;
  background-color: #314e9e;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
.sec-col {
  padding-left: unset;
  }
.form-row {
  margin-bottom: unset;
  }     
}
@media (max-width: 576px) {
.details p {
  font-size: 1.19rem;
  }   
}  
@media (max-width: 425px) { 
.about-us h1 {
  font-size: 4rem;
  }
.details p {
  font-size: 1rem;
  margin-bottom: 30px;
  } 
.contact-form h3 {
  font-size: 2rem;
  }    
.bi-box-arrow-up-right {
  display: none;
  }  
}  
/* Team pg */
.team-photos {
  background-color: #FDFFFF;
}
.team {
  margin-top: 6.5rem;
  padding-bottom: 0;
}
.team h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color:#2c2926;
}
.team h1 span {
  color:#192d61;
}
.team h2 {
  font-size: 2.9rem; 
  font-weight: 400; 
  font-family: "Open Sans", sans-serif;
  line-height: 4.0625rem; 
  /*width: 80%;*/
}
.team-cards p {
  font-size: 1.1rem;
  line-height: 1.6;
  /*font-weight: 600;*/
  color: rgb(68 68 68 / 77%);
  margin-bottom: 0.9rem;
}
.li-logo {
  margin-left: 7px;
}
.team-cards span {
  font-size: 1.48rem; 
  color: #444; 
  margin-bottom: 0.5rem; 
  line-height: 1; 
  font-weight: 600; 
  font-family: "Open Sans", sans-serif;
}
.photo-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px 25px 50px 25px;
  margin: 30px 35px 30px 35px;
  flex-grow: 1;
  flex-basis: 0;
}
.box-shadow {
  --tw-shadow: 10px 13px 36px 24px rgba(0,0,0, 3%);
  --tw-shadow-colored: 10px 13px 36px 24px var(--tw-shadow-color);
   box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow); 
}
.photo-container {
  display: flex; 
  flex-direction: row;
  padding: 0 75px 0 75px;
}
.card-photo {
  border-radius: 10px; 
  /* padding-bottom: 25px; */
  margin-bottom: 25px;
  /* max-width: 500px; */
}
@media (max-width: 1199px) {
.team-cards p {
  font-size: 1rem;
  }
.team h2 {
  font-size: 2.4rem; 
  line-height: 1.5
  }  
.team-cards span {
  font-size: 1.28rem;  
  }
}   
@media (max-width: 767px) {
.photo-card {
  margin: 30px 0 30px 0;
  }
.team h2 {
  font-size: 1.46rem;
  line-height: 1.55;
}
.team h1 {
  font-size: 4rem
  }  
}
@media (max-width: 576px) {
.team {
  margin-top: 3.5rem;
  }
}
@media (max-width: 425px) {
.team h1 {
  font-size: 3rem
  }
.team h2 {
  font-size: 1.36rem;
  }   
}
@media (max-width: 320px) {
.team h2 {
  font-size: 1.26rem;
  }   
}
/* Services  */
.h-services-tags-wrapper {
  grid-column-gap: 0.75em;
  grid-row-gap: 0.75em;
  flex-flow: wrap;
  align-content: flex-start;
  margin: 2.5rem 0 4.25rem 0;
  display: flex;
}


/* Careers */
.jobs {
  background-color: rgb(155 176 195 / 5%);
  border-radius: 50px;
  margin: auto;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  padding: 75px 25px 75px 25px; 
  width: 80%
}
.jobs h3 {
  color: #324472;
  font-weight: 700;
  line-height: 1;
  font-size: 4rem;
}
/*
.jobs h4 {
  font-size: 2.1rem;
  line-height: 1.3;
  font-family: "Open Sans", sans-serif;
  color: #192d61;
  margin: 0 0 40px 0;
}
*/
.benefits p {
  font-size: 1.5rem;
  line-height: 1.55;
}
.disclaimer p {
  padding-top: 75px;
  font-size: 1rem!important;
  line-height: 1.6!important; 
}
.benefits h4 {
  color: #324472;
  font-weight: 700;
  line-height: 1;
  font-size: 3rem;
}  
.job-tag {
  border: 2px solid rgb(25 45 97);
  padding: 0.8em;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.325em;
  font-weight: 600;
  line-height: 1.2;
  background: rgb(25 45 97 / 15%);
  color: #192d61;
}
.careers {
  width: 100%;
  height: 80vh; 
  background-image: url("../img/careers-bg.jpg");
  background-image: -webkit-image-set(url("../img/careers-bg.webp"));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 70vh;
  position: absolute;
  top: -150px;
}
.benefits ul {
  margin: 20px 0 50px 0;
}
.benefits li {
  font-size: 1.3rem;
  padding: 0 0 8px 0;
}


@media (max-width: 767px) {
.jobs h3 {
  font-size: 3rem;
  }
} 

@media (max-width: 576px) {
.jobs {  
  background-color: unset;
  box-shadow: none;
  padding: 15px 0 0 0;
  }  
.job-tag {
  padding: 0.3em;
  font-weight: unset;
  font-size: 1rem;
  }  
.benefits p {
  font-size: 1.2rem;
  line-height: 1.55;
  }  
.benefits li {
  font-size: 1.2rem;  
  } 
}    
@media (max-width: 425px) {
.jobs h3, .benefits h4 {
  font-size: 2.5rem;
  } 
}  
/* About */ 
.about {
  width: 100%;
  height: 70vh; 
  background-image: url("../img/drone-view.jpg");
  background-image: -webkit-image-set(url("../img/drone-view.webp"));
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: -150px;
}
.about-us {
  margin-bottom: 79px; 
  /*padding-top: 75px;*/
}
.about-us h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color:#2c2926;
}
.about-us h1 span {
  color:#192d61;
}
.about-us h2 {
  font-size: 2.4rem;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 3.5rem;
}
.our-services {
  padding-top: 0; 
  position: relative;
}
.paper {
   /*padding-bottom: 20px;*/
   border-radius: 2rem 2rem 0 0;
   margin: 270px 25px 0 25px;
   background-color: #fdffff; 
   position: relative;
}
.values h2 {
  font-size: 4rem;
  line-height: 1;
  color: #192d61;
  padding: 75px 0 40px 0;
  font-weight: 700;
}
.values h3 {
  font-size: 2rem;
  line-height: 1;
  color: #2c2926;
  font-weight: 600;
}
.values p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0 0 50px 0;
}
.dark { /* hr */
  overflow: visible;
  text-align: inherit;
  margin: 0 0 20px 0;
  border: 0;
  border-top: 1px solid #000;
  margin: 50px 0 50px 0
}
.light { /* hr */
  overflow: visible;
  text-align: inherit;
  margin: 0 0 20px 0;
  border: 0;
  border-top: 1px solid rgb(43 53 55 / 47%);
  opacity: 0.25;
  margin: 50px 0 50px 0
}
.value p{
  font-size: 1.46rem;
  line-height: 1.6;
}
.value p span {
  font-size: 4rem;
  line-height: 1;
  color: #192d61; 
  font-weight: 700;
  font-family: 'PT Sans Narrow', sans-serif;
}
.pl-75 {
  padding-left: 75px;
}
.show-md {
  display: none
}

@media (max-width: 1199px) { 
 .value p, .values p {
  font-size: 1.2rem;
} 
.about-us h2 {
  font-size: 2rem;
  line-height: 3rem;
  }
}
@media (max-width: 991px) { 
.hide-md {
  display: none
  }
.pl-75 {
  padding-left: unset;
  }
.show-md {
  display: inline-block;
  }
.chart {
  margin-top: 50px
  }      
} 
@media (max-width: 767px) { 
.about-us {
  padding-top: 0; 
  margin-bottom: 0;
} 
.about-us h2 {
  font-size: 1.7rem;
  line-height: 1.7;
  }
.about-us h1 {
  font-size: 4rem;
  } 
.value p span {
  font-size: 3rem;   
  }
.values h3 {
  font-size: 1.75rem;  
  }
.values h2 {
  font-size: 3rem;
  padding: 0 0 40px 0;  
  }
} 
@media (max-width: 576px) {
.about-us h2 {
  font-size: 1.46rem;
  line-height: 1.55;
  }
.paper {
  margin: 100px 10px 0 10px;    
  }
.hero-contact, .hero-faqs {
  height: 70vh;
  top: -150px;
  }  
}  
@media (max-width: 425px) {
.about-us h1 {
  font-size: 3rem;
}   
.about-us h2 {
  font-size: 1.36rem;     
  }
.value p span, .values h2 {
  font-size: 2.5rem;  
  }
.values h3 {
  font-size: 1.55rem;
  }
}
@media (max-width: 320px) {
.about-us h2 {
  font-size: 1.26rem;
  line-height: 1.4;
  }    
}
@media (max-width: 280px) {
.value p span, .values h2, .jobs h3, .benefits h4 {
    font-size: 2.2rem;
  }
.paper {
  margin: 100px 5px 0 5px;
  }  
.about-us h1 {
    font-size: 2.5rem;
  } 
.contact-form h3 {
    font-size: 1.8rem;
  }    
}  

/* Index Pg 
.value-pills h4 {
    display: block;
    font-family: "Open Sans", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 20px;
    background-color: #192d61;
    border-radius: 0.5em 0 0.5em 0;
    color: #fff;
    margin-bottom: 5rem;
}
.ill {
    margin-bottom: 1.5rem;
    border-radius: 15px;
}
.bs-icon {
    margin-left: 8px;
    margin-bottom: 5px;
}
/* FAQs */
.faqs {    
    padding-bottom: 0;
    background: #fdffff;
    border-radius: 2rem 2rem 0 0;
    margin: -200px 25px 0 25px;
}

.hero-faqs {
    width: 100%;
    background-image: url("../img/faqs-bg.jpg");
    background-image: -webkit-image-set(url("../img/faqs-bg.webp"));
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-position: center center;
    height: 70vh;
    position: absolute;
    top: -150px;
}
@media (max-width: 576px) {
.faqs {
  margin: 100px 10px 0 10px;    
  }
}
/*  
.faq h1 {
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 700;
    margin: 75px 0 10px 0;
    color: #2c2926;
}
.faq h1 span {
  color: #192d61;
}
*/
.faq h3 {
    font-size: 1.7rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 75px 0 50px 0;
    color: #15264c;
    font-family: "Open Sans", sans-serif;
}
.accordion-button, .accordion-body {
    background-color: #fdffff;
    font-size: 1.4rem; 
}
.accordion-header {
    padding: 20px 0 20px 0;
    font-family: "Open Sans", sans-serif;
}
.accordion-item {
  background-color: #fdffff;
}

@media (max-width: 767px) {
  .accordian-sec {
    padding: 75px 0 0 0;
  }
} 
@media (max-width: 430px) {
.faq h3 {
  font-size: 1.5rem;    
}
.faq-end {
  text-align: center;
  margin: auto;
  width: 85%;
}  
.accordion-button {
  font-size: 1.2rem;
  }  
.accordian-sec {
    padding: 25px 0 0 0;
  }  
}

/* PP & Misc */
.pp h1 {
  font-size: 5rem;
  font-weight: 700;
  font-weight: 700;
  line-height: 1;
  color:#2c2926;
}
.pp h2 {
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  color: #444;
  margin-top: 50px;
}
.pp p {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .pp h1 {
  font-size: 4rem;
  }
} 
@media (max-width: 425px) {
  .pp h1 {
  font-size: 3rem;
  }
  .pp h2 {
    font-size: 1.7rem;
  }
  .pp p {
    font-size: 1.2rem;
  }
} 
@media (max-width: 320px) {
  .pp h1 {
  font-size: 2.3rem;
  }
  .pp h2 {
    font-size: 1.5rem;
  }
}
.pr p {
  font-size: 1.46rem;
  line-height: 1.8;
  color: #2c2926;
} 
.pr h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: #2c2926;
} 
.pr h2 {
  font-size: 2.9rem;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 4.0625rem;
}
.pr {
  margin-top: 6.5rem;
  padding-bottom: 0;
}
@media (max-width: 767px) { 
.pr h2 {
    font-size: 1.46rem;
    line-height: 1.55;
  }
}  
@media (max-width: 430px) {   
.pr h1 {
  font-size: 2.9rem
  }
.pr p {
  font-size: 1.26rem; 
  }  
} 
@media (max-width: 390px) { 
.pr h2 {
    font-size: 1.3rem;
  }
}   