body {
  font-family: "Source Sans 3", sans-serif;
  color: #292B33;
  font-size: 12px;
  font-weight: normal;
  background: #fff;
  line-height: 120%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow: hidden;
  position: relative;
}
html {
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 20px 0;
}
h1, .h1 {
  font-size: 47px;
  color: white;
}
h2, .h2 {
  font-size: 40px;
  color: #2f6c85;
}
h3, .h3 {
  font-size: 34px;
  color: #01a4b7;
}
h4, .h4 {
  font-size: 24px;
  color: #01a4b7;
  line-height: 130%;	
}
h5, .h5 {}
h6, .h6 {}
ul, ol {
  list-style: none;
  padding-left: 0;
}
ul li,
ol li,
p {
  font-size: 20px;
  color: #333333;
  line-height: 140%;
  margin-bottom: 20px;
}
.intro p {
  font-size: 16px;
  font-weight: 600;
  color: #4b4b4b;
}
a {
  color: #1B4381;
  text-decoration: none;
  -webkit-transition: all 300ms;
     -moz-transition: all 300ms;
       -o-transition: all 300ms;
          transition: all 300ms;
}
a:hover {
  text-decoration: none;
}
a:hover, a:focus {
  color: gray;
}
b, strong {
  font-weight: 700;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  margin-top: 0px;
  margin-bottom: 0px;
  border-top: 1px solid #e6e6e6;
}
.oh {
  overflow: hidden;
}
.right {
  float: right;
}
.center {
  text-align: center;
}
.relative {
  position: relative;
}
.clear {
  clear: both;
}
.txt-right {
  text-align: right;
}
.txt-left {
  text-align: left;
}
.left {
  float: left;
}
.cover { 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}
ul.bullets li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
ul.bullets li:before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 7px;
  background: #1B4381;
}
/*////////////////////////
///       Header      ////
////////////////////////*/
header {
  position: absolute;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  z-index: 999;
  background: transparent;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-top: 25px;	
/*  box-shadow: 0px 1px 8px rgba(0,0,0,.4);*/
}
header.smaller {
  animation: .8s ease 0s normal none 1 running fadeInDown;
  position: fixed;
  background: #006c86;
  height: 90px;
  padding-top: 0;  
}
header.smaller .language {
	display: none;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-75px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.header-navigation {
  text-align: right;
}
/*////////////////////////
///       Footer      ////
////////////////////////*/
footer {
	position: relative;
	z-index: 9;
	margin-bottom: -20px;
}
footer .bg-dark-gray p,
footer .bg-dark-gray a {
  color: white;
}
footer a:hover {
  color: #f1ffb6;
}
.copyright p {
  font-size: 11px;
}
/*///////////////////////
///        Menu       ///
///////////////////////*/
nav {
  display: inline-block;
  vertical-align: top;
}
nav ul {
  margin: 0;
}
nav ul li {
  display: inline;
  margin-right: 35px;
  position: relative;
}
nav ul li a {
  font-size: 17px;
  color: white;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0;
  padding-top: 5px;
  padding-bottom: 7px;
  display: inline-block;
  -webkit-transition: all 300ms;
     -moz-transition: all 300ms;
       -o-transition: all 300ms;
          transition: all 300ms;
}
nav ul li a:after {
  content: "";
  display: block;
  width: 17px;
  height: 2px;
  width: 0;
  top: 5px;
  background: transparent;
  transition: all 0.3s;
  position: relative;
}
nav ul li a:hover:after,
nav ul li.current-menu-item a:after,
nav ul li.current-page-ancestor a:after {
  width: 26px;
  background: #f1ffb6;
}
nav ul li a:hover,
nav ul li.current-menu-item a,
nav ul li.current-page-ancestor a {
  color: white;
} 
nav ul li:last-child { margin-right: 0; }
nav ul li:last-child a {
  border: 1px solid white;
  padding: 11px 32px;
  border-radius: 40px;
  text-transform: capitalize;
  font-size: 19px;
  letter-spacing: 0;
}
nav ul li:last-child a:after {
  content: none;
}
nav ul li:last-child a:hover,
nav ul li.current-menu-item:last-child a {
  border-color: #f1ffb6;
  color: #f1ffb6;
}
ul.translate li {
	border-right: 2px solid white;
	padding-right: 15px;
	margin-right: 15px;
	display: inline-block;
}
ul.translate li a {
	font-size: 17px;
    color: white;
    font-weight: 600;
	padding: 0;
	line-height: 100%;
	text-transform: uppercase;
}
ul.translate li a:hover {
	color: #f1ffb6;
}
ul.translate li:last-child a {
	border: none;
    padding: 0;
    border-radius: 40px;
    text-transform: uppercase;
    font-size: 17px;
}
ul.translate li a:after {
	content: none;
}
ul.translate li:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;	
}
.language ul {
	margin-bottom: 10px;
}
.language ul li {
	border-right: 2px solid white;
    padding-right: 15px;
    margin-right: 15px;
    line-height: 99%;
    display: inline-block;
    height: 19px;
    margin-bottom: 5px;
}
.language ul li:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;	
}
.language ul li:last-child a {
	border: 0;
	padding: 0;
	border-radius: 0;
	text-transform: capitalize;
	font-size: 19px;
}
.language ul li a:after {
	content: none;
}
/*///////////////////////
///    Mobile Menu    ///
///////////////////////*/
#mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  padding: 25px 20px;
  width: 350px;
  height: 100%;
  right: -350px;
  box-sizing: border-box;
  z-index: 9999;
  overflow: hidden;
  background: #2f6c85;
}
#mobile-menu nav {
  float: none;
}
#mobile-menu  ul li:last-child a {
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 17px;
}
.cerrar-menu {
  cursor: pointer;
}
#mobile-menu .icon-close {
  cursor: pointer;
  font-size: 35px;
  color: #f1ffb6;
  margin-bottom: 40px;
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  padding: 4px;
  text-align: center;
  transition: all 300ms;
  border: 1px solid #f1ffb6;
}
#mobile-menu .icon-close:hover {
  border-color: white;
}
.hamburger {
  color: #f1ffb6;
  float: right;
  font-size: 25px;
  width: 45px;
  height: 45px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  transition: all 300ms;
  background: transparent;
  border: 1px solid #f1ffb6;
}
.hamburger:hover {
  background: rgba(255,255,255,.3);
}
.cerrar-menu img:hover {
  opacity: 0.7;
}
#mobile-menu nav {
  display: block;
}
#mobile-menu nav ul {
  margin-bottom: 40px;
}
#mobile-menu nav ul li a {
  color: white;
  font-weight: 600;
  padding: 15px 10px;
  display: block;
}
#mobile-menu nav ul li a:hover,
#mobile-menu nav ul li.current-menu-item a,
#mobile-menu nav ul li.current-page-ancestor a  {
  color: #ffffff;
  background: #ffffff1f;
}
#mobile-menu nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 0;
  margin-right: 0;
}
#mobile-menu nav ul li a:hover:after, 
#mobile-menu nav ul li.current-menu-item a:after,
#mobile-menu nav ul li.current-page-ancestor a:after {
  background: transparent;
}
body.open-menu {
  height: 100vh;
  overflow-y: hidden;
}
body.open-menu .mask {
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 98;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
}
body.open-menu #mobile-menu {
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}
/*///////////////////////
///       Layout      ///
///////////// /////////*/
.mt40 { margin-top: 40px; }
.pr5 { padding-right: 5px; }
.pl5 { padding-left: 5px;}
.h5px  { height: 5px;  }
.h10px { height: 10px; }
.h15px { height: 15px; }
.h20px { height: 20px; }
.h30px { height: 30px; }
.h40px { height: 40px; }
.h50px { height: 50px; }
.h60px { height: 60px; }
.h70px { height: 70px; }
.h80px { height: 80px; }
.p0    { padding: 0; }
.m0    { margin: 0; }
.pt5   { padding-top: 5px;  }
.pt10  { padding-top: 10px; }
.pt15  { padding-top: 15px; }
.pt20  { padding-top: 20px; }
.pt30  { padding-top: 30px; }
.pt40  { padding-top: 40px; }
.pt50  { padding-top: 50px; }
.pt60  { padding-top: 60px; }
.pt70  { padding-top: 70px; }
.pt80  { padding-top: 80px; }
.pt90  { padding-top: 90px; }
.pt100 { padding-top: 100px; }
.pt120 { padding-top: 120px; }
.pt140 { padding-top: 140px; }
.pt150 { padding-top: 150px; }
.pt160 { padding-top: 160px; }
.pt180 { padding-top: 180px; }
.pt200 { padding-top: 200px; }
.pb10  { padding-bottom: 10px; }
.pb15  { padding-bottom: 15px; }
.pb20  { padding-bottom: 20px; }
.pb30  { padding-bottom: 30px; }
.pb40  { padding-bottom: 40px; }
.pb50  { padding-bottom: 50px; }
.pb60  { padding-bottom: 60px; }
.pb70  { padding-bottom: 70px; }
.pb80  { padding-bottom: 80px; }
.pb90  { padding-bottom: 90px; }
.pb100 { padding-bottom: 100px; }
.pb110 { padding-bottom: 110px; }
.pb120 { padding-bottom: 120px; }
.pb130 { padding-bottom: 130px; }
.pb140 { padding-bottom: 140px; }
.pb150 { padding-bottom: 150px; }
.pb160 { padding-bottom: 160px; }
.pb180 { padding-bottom: 180px; }
.pb190 { padding-bottom: 190px; }
.pb200 { padding-bottom: 200px; }
.mb0   { margin-bottom: 0;    }
.mb10  { margin-bottom: 10px; }
.mb20  { margin-bottom: 20px; }
.mb25  { margin-bottom: 25px; }
.mb30  { margin-bottom: 30px; }
.mb35  { margin-bottom: 35px; }
.mb40  { margin-bottom: 40px; }
.mb50  { margin-bottom: 50px; }
.mt-site { margin-top: 100px; }
.show-md,
.show-xl,
.display-none { display: none; }
.img-cover {
  position: relative;
  height: 100%;
}
.img-cover > img {
  object-fit: cover;
  position: absolute;
  bottom: 0;
  top: 0;
  height: 100%;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
/*////////////////////////
///      Sections     ////
////////////////////////*/
.btn {
  font-size: 18px;
  color: #006c86;
  background: white;
  font-weight: 700;
  border-radius: 50px;
  height: 50px;
  border: none;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8px 8px 8px 25px;
  width: fit-content;
  z-index: 0;
  overflow: hidden;
  gap: 10px;
  transition: 0.4s;
  min-width: 270px;
  justify-content: space-between;
  box-shadow: 0px 9px 36px rgba(0, 0, 0, .2);
}
.btn::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 100%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1ffb6;
  transform-origin: 100% 50%;
  transform: scale3d(1, 2, 1);
  transition: transform 0.4s, opacity 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
}
.btn:hover {
  color: #006c86;
}
.btn:hover::before {
  transform: scale3d(11, 18, 9);
  transform-origin: 110% 55%;
}
.btn i {
  color: white;
  background: #01a4b7;
  font-size: 33px;
  border-radius: 50px 50px 50px 50px;
  position: relative;
  z-index: 2;
  transition: 0.4s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transform: rotate(-45deg);
}
.btn:hover i {
  transform: rotate(0deg);
}
.btn span {
  display: block;
  width: 180px;
}
.btn.big span {
  width: 245px;
}
.bg-g-green {
  background: linear-gradient(0deg,rgba(247, 255, 211, 1) 0%, rgba(247, 255, 211, .1) 70%);
}
.bg-g-green-2 {
  background: linear-gradient(0deg,rgba(247, 255, 211, 1) 0%, rgba(247, 255, 211, .1) 40%);
}
.bg-light-bue {
  background: #e4f8f7;
}
.bg-dark-gray {
  background: #888a8d;
}
.sol-txt {
  width: 100%;
  max-width: 510px;
  margin: 0 auto;
}
.solutions-img {
  width: 100%;
}
.item-sol {
  padding-left: 80px;
  position: relative;
  margin-bottom: 40px;
}
.item-sol h3 {
  font-size: 30px;
}
.item-sol p {
  color: #2f6c85;
}
.item-sol .item-sol-ico {
  background: white;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: -10px;
}
.avalados img {
  display: block;
  margin: 0 auto;
}
.slick-slider button {
  width: 42px;
  height: 42px;
  background: #f1f1f1;
  border: none;
  border-radius: 100px;
  font-size: 30px;
  color: #0d0d0d;
  top: 20px;
  position: absolute;
  z-index: 9;
}
.bi-arrow-right-short {
  right: 0;
}
.testimonials {
  background: url(../img/bg-testimonios.jpg) no-repeat center;
  background-size: cover;
  padding: 100px 0;
}
.card-testimonial {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.card-testimonial p {
  font-size: 25px;
  color: white;
  font-style: italic;
  font-weight: 600;
}
.card-testimonial p.title {
  font-size: 22px;
  font-style: normal;
}
.slick-dots li {
  margin: 0 10px;
}
.slick-dots li button {
  width: 25px;
  height: 5px;
  background: white;
  padding: 0;
}
.slick-dots li button:before {
  content: none;
}
.slick-dots li.slick-active button{
  background: #888a8d;
}
.stage-med {
    height: 380px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 30px;
}
.stage-med .caption {
  position: relative;
}
.stage-med .caption h1 {
  color: #f1ffb6;
  font-size: 44px;
  margin-bottom: 40px;
}
.stage-med .caption h1 strong {
  color: white;
}
.about-txt img {
  display: block;
  margin: 50px auto 0 auto;
  width: 100%;
  max-width: 400px !important;
}
.about-txt strong {
  color: #2f6c85;
}
.intro-s h3 {
  margin-bottom: 3px;
}
.card-brand img {
  display: block;
  margin: 0 auto 20px auto;
  width: 100%;
  max-width: 300px;
}
.card-brand h4 {
  margin-bottom: 5px;
}
.card-brand p {
  color: #2f6c85;
}
.title-s h4 {
  margin-bottom: 5px;
}
.car-contact {
  margin-top: 20px;
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 9px 9px 36px rgba(0, 0, 0, .2);
}
.map iframe {
  width: 100%;
  height: 500px;
}
ul.values li {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
  min-height: 80px;
}
ul.values li img {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  margin: 0;
}
ul.values li h5 {
  color: #2f6c85;
  margin-bottom: 10px;
}
ul.values li p {
  color: #2f6c85;
}
ul.values li:before {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #77dcd5;
  position: absolute;
  left: 0;
  bottom: 0;
}
.card-white {
  position: relative;
  background: white;
  border-radius: 30px;
  padding: 100px 30px 30px 30px;
  box-shadow: 9px 9px 36px rgba(0, 0, 0, .2);
  margin-right: 15px;
}
.card-white img {
  position: absolute;
  top: -50px;
  right: -45px;
  width: 180px;
}
.card-white ul li {
  color: #2f6c85;
  border-bottom: 1px solid #99dbe2;
  padding-bottom: 20px;
  margin-bottom: 20px;
  margin-right: -30px;
  margin-left: -30px;
  padding-right: 30px;
  padding-left: 30px;
}
.card-white ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.card-srvic {
	background: white;
	border: 3px solid #e3e8e4;
	border-radius: 30px;
	padding: 30px;
	width: 100%;
	max-width: 500px;
	position: relative;
}
.card-srvic:before {
	content: '';
	display: block;
	width: 100px;
	height: 2px;
	background: #77dcd5;
	position: absolute;
	top: 66px;
}
.card-srvic:after {
	content:'';
	display: block;
	width: 1px;
	height: 80px;
	background: #e3e3e3;
	position: absolute;
}
.card-srvic.rr:after {
	left: -80px;
    top: 68px;
}
.card-srvic.ll:after {
	right: -80px;
    top: 68px;
}
.card-srvic img {
	width: 60px;
	position: absolute;
	top: 0;
}
.card-srvic.rr {
	float: right;
	margin-left: 100px;
}
.card-srvic.rr img {
	left: -110px;
}
.card-srvic.rr:before {
	left: -100px;
}
.card-srvic.ll {
	margin-right: 100px;
}
.card-srvic.ll img {
	right: -110px;
}
.card-srvic.ll:before {
	right: -100px;
}

.card-srvic ul li {
	padding-left: 30px;
	color: #2f6c85;
	position: relative;
	margin-bottom: 5px;
}
.card-srvic ul li:before {
	content: "\f26b";
	display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: text-bottom;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	position: absolute;
	left: 0;
	font-size: 16px;
	top: 5px;
}
ul.srvics {
	display: block;
    margin: 0 auto;
    width: 1150px;
}
ul.srvics > li {
	display: flow-root;
	margin-bottom: -40px;
}
ul.srvics > li:last-child .card-srvic:after {
	content: none;
}
.mask-b {
	position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99;
    background: url(../img/mask-b.png) no-repeat center;
    height: 40px;
    background-size: cover;
}
.mask-t {
	position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    background: url(../img/mask-t.png) no-repeat center;
    height: 40px;
    background-size: cover;
}
.effe {
	border-radius: 60em / 2em;
    overflow: hidden;
}
.solution-h {
	margin-top: -30px;
}
.foo {
	background: white;
	margin-top: -25px;
    margin-bottom: -25px;
    z-index: 5;
    position: relative;
    background: white;
}
.mt-25 {
	margin-top: -25px;
	z-index: 6;
    position: relative;
}
.main-line-area {
	pointer-events: none;
	display: table;
	table-layout: fixed;
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 3.125%;
	right: 3.125%;
	width: 93.75%;
	height: 0;
	-webkit-transition: height 1s ease-out;
	-o-transition: height 1s ease-out;
	transition: height 1s ease-out;
}
.main-line-area.down {
    height: 100%;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin-right: auto;
    margin-left: auto;
	z-index: 9;
}
.main-line-area .line02 {
	display: table-cell;
	width: -webkit-calc(100% / 6);
	width: calc(100% / 6);
	width: -webkit-calc(100% / 6rem);
	width: calc(100% / 6rem);
	height: 100%;
	border-left: 2px solid #000;
	border-color: rgba(255, 255, 255, 0.04);
}
.line02.last {
	border-right: 2px solid #000;
    border-color: rgba(255, 255, 255, 0.04);
}
.m5 {
	margin-bottom: 5px;
}
.single-p-box {
	background: white;
	padding: 20px;
	border-radius: 30px;
	display: inline-block;
	width: 100%;
}
.singlep h1,
.singlep h2,
.singlep .product_meta,
.singlep .price, 
.singlep .wpo-totals-container,
.singlep .quantity,
.singlep .single_add_to_cart_button {
	display: none !important;
}
.singlep label {
	font-size: 18px !important;
    margin-bottom: 20px !important;
}
.singlep p {
	padding-top: 20px;
}
.sspp header,
.sspp footer {
	height: 0;
	opacity: 0;
}
.wpo-field {
	padding-top: 13%;
}
/*////////////////////////
///      Counter       ///
////////////////////////*/
@property --num {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}
.count {
  counter-reset: num var(--tonum);
}
.count::after {
  content: counter(num);
}
.zero {
  counter-reset: num var(--num);
}
.anim {
  animation: counter 1s forwards ease-out 0.5s;
}
@keyframes counter {
  from {
    --num: 0;
  }
  to {
    --num: var(--tonum);
  }
}
@media (prefers-reduced-motion: reduce) {
  div {
    animation: none !important;
  }
}
.item-num .year-numb {
  font-family: "Inter", sans-serif;
  font-size: 70px;
  font-weight: 600;
  color: #006c86;
  padding-left: 45px;
  margin-bottom: 25px;
}
.item-num .year-numb:before {
  content: '+ ';
  position: relative;
  left: -50px;
  top: 16px;
}
.year-txt {
  padding-top: 10px;
  padding-left: 40px;
}
.year-txt p {
  color: #006c86;
  font-weight: 600;
}
/*////////////////////////
///       Slick       ////
////////////////////////*/
.herobanner .img-cover {
  height: 100vh;
  display: flex !important;
  align-items: center;
}
.herobanner .img-cover:before {
  content: '';
  display: block;
  background: rgba(0,0,0,.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.herobanner .slick-slide {
 height:100vh;
}
.herobanner .caption {
  position: relative;
  z-index: 1;
  width: 100%;
}
.herobanner .caption h1 {
  color: #f1ffb6;
}
.herobanner .caption h1 strong {
  color: white;
}
.herobanner .caption p {
  font-size: 29px;
  color: white;
}
.hero-txt {
	width: 100%;
	max-width: 590px;
}
/*////////////////////////
///        Forms       ///
////////////////////////*/
label { margin-bottom: 10px; }
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  font-size: 16px;
  color: #222222;
  background: #f5f5f5;
  border: none;
  border-bottom: 1px solid #adadad;
  width: 100%;
  height: 50px;
  padding: 15px 25px;
  margin-bottom: 0px;
  border-radius: 5px 5px 0 0;
}
textarea {
  height: 170px;
}
select {
  font-size: 16px;
  color: #777777;
  font-weight: 600;
  background: url(../img/select-arrow.svg) no-repeat right #F8F8F8;
  -webkit-appearance: none;
  background-position-x: calc(100% - 25px);
}
input[type=submit] {
  width: 140px;
  height: 55px;
  background: #2f6c85;
  font-size: 18px;
  font-weight: 600;
  color: white;
  border: none;
  border-radius: 15px;
  text-transform: uppercase;  
  transition: all 300ms;     
}
input[type=submit]:hover {
  background: #888a8d;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: transparent;
}
input[type="checkbox"] { 
  margin-right: 10px;
}
::-webkit-input-placeholder { 
  font-size: 16px;
  color: #666666;
}
:-moz-placeholder { 
  font-size: 16px;
  color: #666666;
}
::-moz-placeholder { 
  font-size: 16px;
  color: #666666;
}
:-ms-input-placeholder { 
  font-size: 16px;
  color: #666666;
}
.politics {
  font-size: 16px;
  color: #666666;
}
/*////////////////////////
///       Fonts        ///
////////////////////////*/


/*////////////////////////
///   Media Queries    ///
////////////////////////*/
@media (min-width: 1200px) {  }
@media screen and (max-width: 1290px) {}
@media screen and (max-width: 1199px) {
	.card-srvic.rr { 
		float: none; 
	}
	.card-srvic.ll { 
		margin-left: 100px;
		margin-right: 0;
	}
	ul.srvics > li { 
		margin-bottom: 20px; 
		display: flex;
        justify-content: center;
	}
	.card-srvic.ll img {
    	left: -110px;
	}
	.card-srvic.ll:before {
    	left: -100px;
	}
	.card-srvic.ll:after {
		left: -80px;
		top: 68px;
	}
	.card-srvic:after { content: none; }
	ul.srvics { width: auto; }
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 991px) {
  .show-xl { display: inline-block !important; }
  .hide-xl { display: none !important; }
  nav ul li { margin-right:15px; }
	.single-p-box iframe {
		height: 570px;
	}
}
@media screen and (max-width: 767px) {
  h1, .h1 { font-size: 28px; }
  h2, .h2 { font-size: 27px; }
  h3, .h3 { font-size: 20px; }
  h4, .h4 { font-size: 18px; }
  h5, .h5 { }
  h6, .h6 { }
  ul li, ol li, p {
    font-size: 18px;
  }
  .hide-md { display: none !important; }
  .show-md { display: block; }
  .hide-xs { display: none !important; }
  .reverse-md .col-a { order: 2; }
  .reverse-md .col-b { order: 1; }
  .stage-med .caption h1 { font-size: 27px; }
  .herobanner .caption p {
    font-size: 20px;
  }
  .item-num .year-numb { 
    font-size:60px; 
    margin-bottom: 10px;
  }
  .item-num .year-numb:before {
    left: -35px;
    top: 10px;
  }
  .year-txt p { margin-bottom: 0; }
  .item-sol h3 { font-size: 20px; }
  .card-testimonial {
    padding: 0 45px;
  }
  .card-testimonial p { font-size: 18px; }
  .card-testimonial p.title { 
    font-size: 20px; 
    padding-top: 0;
  }
  .car-contact {
    padding: 20px;
    border-radius: 15px;
  }
	.card-srvic {
		max-width: 100%;
		padding: 20px;
	}
	.hero-txt {
		width: 100%;
		max-width: 100%;
	}
}
@media screen and (max-width: 425px) {
	.wpo-file-dropzone.dropzone {
		min-width: 100% !important;
	}
	.single-p-box iframe {
        height: 450px;
    }
}
@media screen and (max-width: 400px) {}
@media screen and (max-width: 430px) {
	.single-p-box iframe {
        height: 460px;
    }
}
@media screen and (max-width: 375px) {}
@media screen and (max-width: 320px) {}