/*
    Theme Name: Parmac-theme
    Theme URI: 
    Author: Ernesto D. Garcia Falcon
    Author URI: https://www.linkedin.com/in/ernesto-darge-garc%C3%ADa-falc%C3%B3n-09035814a/
    Description: Theme Diseñado para Parmac
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: Parmac 
    Text Domain: parmac
*/

/* --- Globals --- */
:root {
  /*Fonts*/
  --primaryFont: "Open Sans", sans-serif;
  --secondaryFont: "Ubuntu", sans-serif;
  --fontHeadersLight: Panton-Light;
  --fontHeadersBold: Panton-ExtraBold;
  --fontHeaderB: Panton-Bold;
  --fontText: "Nunito Sans", sans-serif;

  /*Colors*/
  --white: #ffffff;
  --black: #000000;
  --gray: #868383;
  --grayLigth: #f7f5ed;
  --grayDark: #777777;
  --grayFont: #444444;
  --blueColor: #171543;
  --blueColorLight: #434175;
  --firtColor: #007bff;
  --secondColor: #1d9d49;
  --thirdColor: #5bb847;
  --goldColor: #a09058;
}

html {
  box-sizing: border-box;
  font-size: 62.5%; /* 10px = 1rem! */
  /*--*/
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blueColor);
  font-family: var(--fontText);
  /*margin-top: 4rem;*/
  /*---*/
  margin: 4rem 0 0 0 ;
}

/*---*/
main {
  display: block;
}

h1,
h2,
h3,
h4 {
  margin: 1rem 0;
  line-height: 1.2;
  color: var(--blueColor);
}

h1 {
  font-family: var(--fontHeadersBold);
}

h2 {
  font-family: var(--fontHeaderB);
}

h3,
h4 {
  font-family: var(--fontHeadersLight);
}

/** Globales **/
a {
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.text-center {
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.site-header {
  background-color: var(--white);
  padding: 1rem 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/** Fixed bar **/
@media (min-width: 768px) {  
  /* body.ft-activo {
    margin-top: 4rem;
  }*/

  .fixed-top {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--white);
    padding: 1rem 0;
    height: 7rem;
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  .fixed-top img {
    height: 5rem;
  }
}

.logo {
  display: block;
  flex: 0.6;
	padding-top: 10px;
}

.logo img {
  height: 5rem;
}

.main_menu {
  display: none;
}

@media (min-width: 1024px) {
  .main_menu {
    display: block;
  }
}

.nav-bar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--white);
  z-index: 10000;
  padding: 1rem 1rem 0 1rem;
  display: flex;
  justify-content: space-between;
  /*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
}

.slicknav_menu .sub-menu a {
  font-size: 1.6rem;
  color: var(--secondColor);
}

@media (min-width: 1024px) {
  .nav-bar {
    z-index: 80;
    align-items: center;
    height: 7rem;
    padding: 1rem 10rem;
  }

  .menu {
    display: flex;
    justify-content: space-around;
  }

  .main-menu {
    width: 100%;
  }

  .main_menu li {
    margin-right: 2rem;
    position: relative;
	  text-transform: uppercase;
  }

  .main_menu li:last-of-type {
    margin-right: 0;
  }

  .menu-item-has-children::after {
    content: "»";
    display: inline-block;
    margin-left: -0.2rem;
    transform: rotate(90deg);
  }

  .menu-item-has-children ul {
    background-color: var(--white);
    position: absolute;
    left: 0;
    padding-left: 1.5rem;
    min-width: 32rem;
    transition: all ease 0.3s;
    opacity: 0;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    border-radius: 5%;
    z-index: 99;
  }

  .menu-item-has-children:hover ul {
    opacity: 1;
  }

  .menu-item-has-children ul li {
    line-height: 4rem;
  }

  .menu-item-has-children ul li a {
    color: var(--blueColorLight);
    padding: 2rem 1rem;
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}

.main_menu a {
  color: var(--blueColor);
  padding: 0.5rem 2rem;
  font-size: 1.5rem;
}

.main_menu a:hover {
  color: var(--thirdColor);
}

.main_menu .current_page_item a {
  color: var(--thirdColor);
}

/* Slicknav */
.slicknav_menu {
  background-color: transparent;
  z-index: 20;
  width: 100%;
  flex: 1;
  padding: 0;
}

@media (min-width: 1024px) {
  .slicknav_menu {
    display: none;
  }
}

.slicknav_btn {
  background-color: var(--blueColor);
  margin: 2rem;
}

.slicknav_nav a {
  font-size: 1.8rem;
  text-align: right;
  font-family: var(--primaryFont);
  color: var(--blueColor);
  padding-right: 2rem;
}

.slicknav_no-text {
  color: red;
}

.slicknav_icon {
  color: #171543;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(48, 47, 84, 0.6);
  overflow: hidden;
  /*transition: ease-in-out 0.2s;*/
}
/* --- Super Footer --- */

.home-superfooter {
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
  padding: 5rem 0;
}

.super-footer-container {
  font-family: var(--primaryFont);
  color: var(--grayDark);
  font-size: 1.4rem;
  text-align: center;
}

.logo-footer img {
  max-width: 5rem;
}

.footer-menu ul {
  display: flex;
  flex-direction: column;
}

.super-footer-container a {
  color: var(--grayDark);
}

.super-footer-container a:hover {
  color: var(--thirdColor);
}

.super-footer-container li {
  margin: 1rem 0;
  font-size: 1.4rem;
  font-family: var(--fontText);
}

.super-footer-container li::before {
  position: absolute;
  content: " ";
  margin-left: -2rem;
  margin-top: 0.6rem;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url(img/arrow.svg);
}

.super-footer-container h4 {
  font-family: var(--fontHeadersBold);
  font-size: 1.6rem;
  margin-left: -2rem;
  color: var(--blueColorLight);
}

@media (min-width: 768px) {
  .super-footer-container {
    display: flex;
    text-align: left;
  }

  .super-footer-address {
    flex: 0.2;
  }

  .super-footer-useful {
    flex: 0.18;
    margin-left: 13rem;
  }

  .super-footer-ourservices {
    flex: 0.2;
  }

  .super-footer-newsletter {
    flex: 0.4;
    margin-left: 2rem;
  }

  .super-footer-newsletter h4 {
    margin: 1rem 0;
  }
}

/* --- Footer ---  */

.real-footer {
  align-items: center;
  justify-content: space-between;
  background-color: #eeeef5;
  padding: 1.2rem 0;
}

.real-footer img {
  height: 6rem;
  margin-left: 2rem;
}

.footer-site-name {
  font-weight: 700;
}

@media (min-width: 768px) {
  .real-footer {
    display: flex;
  }

  .real-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.copyright {
  text-align: center;
  font-size: 1.5rem;
  color: var(--grayFont);
  padding-top: 1rem;
}

/* Social Media */
.social-media {
  margin-right: 5rem;
}

.sr-text {
  display: none;
}

.social {
  margin-top: 2rem;
}

.social ul {
  display: flex;
  justify-content: center;
}

.social a:before {
  content: "";
  display: inline-block;
  height: 3.5rem;
  width: 3.5rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 3.5rem;
  margin: 0 0.5rem;
}

.social a[href*="facebook.com"]:before {
  background-image: url(img/icons/facebook.svg);
  transition: all ease 0.3s;
}

.social a[href*="facebook.com"]:hover:before {
  background-image: url(img/icons/facebook-hover.svg);
}

.social a[href*="youtube.com"]:before {
  background-image: url(img/icons/youtube.svg);
  transition: all ease 0.3s;
}

.social a[href*="youtube.com"]:hover:before {
  background-image: url(img/icons/youtube-hover.svg);
}

.social a[href*="instagram.com"]:before {
  transition: all ease 0.3s;
  background-image: url(img/icons/instagram.svg);
}

.social a[href*="instagram.com"]:hover:before {
  background-image: url(img/icons/instagram-hover.svg);
}

.social a[href*="twitter.com"]:before {
  background-image: url(img/icons/twitter.svg);
  transition: all ease 0.3s;
}

.social a[href*="twitter.com"]:hover:before {
  background-image: url(img/icons/twitter-hover.svg);
}

.social a[href*="skype.com"]:before {
  background-image: url(img/icons/skype.svg);
  transition: all ease 0.3s;
}

.social a[href*="skype.com"]:hover:before {
  background-image: url(img/icons/skype-hover.svg);
  transition: all ease 0.3s;
}

.social a[href*="linkedin.com"]:before {
  background-image: url(img/icons/linkedin.svg);
  transition: all ease 0.3s;
}

.social a[href*="linkedin.com"]:hover:before {
  background-image: url(img/icons/linkedin-hover.svg);
  transition: all ease 0.3s;
}

.item-blog {
  display: flex;
}

.item-image-blog {
  flex: 0.3;
}

.item-image-blog img {
  border-radius: 2%;
}

.item-blog {
  margin: 2rem 0;
}

.list-blog hr:last-of-type {
  display: none;
}

.meta {
  margin: 0;
}

.content-blog {
  margin: 0 2rem;
  flex: 0.7;
}

.item-content-blog p {
  margin: 0;
}

.item-content-blog h3 {
  margin: 0;
}

/*--- Author --- */
.meta-author {
  color: var(--gray);
}

/** Contact Form **/

.wpcf7-form label {
  font-weight: 700;
}
.wpcf7-form .wpcf7-form-control {
  width: 100%;
  padding: 1rem;
  height: 4rem;
  border: 1px solid var(--gray);
}
.wpcf7-form .wpcf7-textarea {
  height: 20rem;
}
.wpcf7-form .wpcf7-submit {
  background-color: var(--thirdColor);
  font-size: 2rem;
  font-family: var(--primaryFont);
  padding: 1.2rem;
  height: auto;
  color: var(--firtColor);
  text-transform: uppercase;
  font-weight: 700;
}
.wpcf7-form .wpcf7-submit:hover {
  cursor: pointer;
}

div.wpcf7-validation-errors {
  background-color: #f7e700;
  text-align: center;
}
div.wpcf7 .ajax-loader {
  display: block;
  margin: 2rem auto 0 auto;
}
span.wpcf7-not-valid-tip {
  background-color: red;
  color: var(--blanco);
  padding-left: 1rem;
}
div.wpcf7-mail-sent-ok {
  background-color: #398f14;
  color: var(--blanco);
  text-align: center;
}

/* --- Map --- */

#map {
  height: 25rem;
}

@media (min-width: 768px) {
  #map {
    height: 40rem;
  }

}

.contact-us-block {
  text-align: center;
}

.contact-us-sec {
  background-color: var(--grayLigth);
  padding: 6rem 3rem 3rem 3rem;
}

.contact-us-sec .content p {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {

  .contact-us-sec .content p {
    width: 60%;
    
  }
}



.contact-us-sec .contact-card{
  background-color: var(--grayLigth);
  padding: 3rem;
  background-color: var(--white);
  width: 90%;
  margin: 2rem auto;
}

@media (min-width: 768px) {
  .contact-us-sec .contact-card{
    width: 40%;
    margin-top: 3rem;
  }
}

.contatc-form-inside {
  padding: 6rem 0;
}

.contatc-form-inside .home-contact-form {
  box-shadow: none;
  width: 100%;
  margin: 0;
}


@media (min-width: 768px) {
  .contact-us-block {
    display: flex;
    justify-content: space-between;
  }

  .contact-us-block div {
    flex: 0.5;
  }

  .contatc-form-inside .home-contact-form {
    width: 90%;
    margin: 0 auto;
  }
}




/*--- Front Page ---*/

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.section-title {
  text-align: center;
  /*padding-bottom: 3rem;*/
}

.section-title h2 {
  font-size: 3.2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5bb847;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/* Hero */
@media (min-width: 768px) {
  .hero_responsive_1,
  .hero_responsive_2 {
    display: none;
  }
}

.hero_responsive_1 {
  background-image: url(img/parmac-slider-01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 30rem;
}

.hero_responsive_2 {
  background-image: url(img/parmac-slider-02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 30rem;
}

.hero {
  min-width: 100%;
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .hero {
    /*height: 100vh;*/
    min-width: 100%;
    margin-top: 0;
  }
}

.hero-block {
  text-align: left;
  height: 30rem;
  width: 100%;
}

.hero-block h1 {
  font-family: var(--fontHeadersLight);
  line-height: 3.6rem;
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--thirdColor);
}

@media (min-width: 768px) {
  .hero-block h1 {
    font-size: 3.2rem;
  }
}

.hero-block p {
  font-size: 1.6rem;
  font-weight: 600;
}

.hero-block img {
  height: 10rem;
}

.hero-block .button-primary {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .bx-viewport {
    height: 100vh !important;
  }

  .hero {
    height: auto;
    padding: 0;
  }

  .hero-firt-item {
    background-image: url(img/parmac-slider-01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
  }

  .hero-second-item {
    background-image: url(img/parmac-slider-02.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
  }

  .hero-block {
    width: 40%;
    text-align: left;
    margin-top: 10rem;
    padding: 0 2rem;
  }

  .bx-wrapper {
    box-shadow: none;
    border: none 0;
    margin-bottom: 0;
  }
}

.bx-wrapper {
  box-shadow: none;
  border: none 0;
  margin-bottom: 0;
}

/*
@media (min-width: 768px) {
  .hero-container {
    display: flex;
    justify-content: space-between;
    padding: 0 10rem;
  }

  .hero-block {
    flex: 0.5;
  }

  .hero-block-logo-tagline {
    display: flex;
  }

  .hero-logo {
    flex: 0.4;
  }

  .hero-logo img {
    width: 90%;
  }

  .header-hero {
    display: flex;
    align-items: flex-end;
    flex: 0.5;
  }

  .header-hero h1 {
    font-weight: 300;
    font-size: 4.6rem;
    color: var(--thirdColor);
  }

  .tagline-hero {
    width: 80%;
  }

  .hero-image {
    flex: 0.5;
    margin-left: 2rem;
  }

  .hero-image img {
    width: 100%;
  }
}*/

/* About us */

.about-us-block {
  text-align: left;
}
.home-about-us {
  padding: 5rem 0;
  background-color: var(--grayLigth);
}

.about-us-header p {
  text-align: left;
}

.about-us-text h3 {
  text-align: left;
  font-size: 2.4rem;
  font-family: Panton-Light;
  font-weight: 300;
}

.about-us-text div:last-of-type {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .about-us-block {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .title-about-us h2 {
    font-size: 3.4rem;
  }

  .about-us-header {
    flex: 0.5;
    padding: 0 3rem;
  }

  .about-us-text {
    flex: 0.4;
    margin-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.button-primary a {
  padding: 0.8rem 3rem 0.9rem 3rem;
  width: 20%;
  text-align: center;
  background-color: var(--thirdColor);
  border-radius: 5%;
  transition: all 0.4s ease;
  color: var(--white);
  border-radius: 5rem;
  font-size: 1.6rem;
}

.button-primary a:hover {
  background-color: var(--firtColor);
}

/* Our Services */

.home-services {
  padding: 5rem 0;
}

.home-service-card {
  font-size: 1.4rem;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
  padding: 4rem 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .home-service-card {
    margin: 0;
  }
}


.home-service-card p {
  font-size: 1.6rem;
}

.home-service-card img {
  width: 10rem;
}

.home-services-container {
  margin: 3rem 0;
}


.home-services-container-list a{
  color: var(--blueColor);
}


@media (min-width: 768px) {
  .home-services-container {
    display: flex;
    align-items: center;
  }

  .home-services-container-img {
    flex: 0.45;
  }

  .home-services-container-img img {
    width: 85%;
  }

  .home-services-container-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
  }


}

.home-list-services {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .home-list-services {
    margin-top: 5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
}

.home-list-services a {
  padding: 1rem;
  flex: 0.2;
  box-shadow: 0.1rem 0.1rem 1rem #c5c5c5;
  border-radius: 1rem;
  color: #000000;
}

.services-second-block {
  padding-top: 5rem;
}

.services-second-block-firts {
  text-align: left;
}

.services-second-block-second {
  display: flex;
  justify-content: center;
}

.services-second-block-second img {
  width: 80%;
}

@media (min-width: 768px) {
  .services-second-block {
    display: flex;
    justify-content: space-between;
  }

  .services-second-block-firts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0.5;
  }

  .services-second-block-second {
    display: flex;
    justify-content: flex-end;
    flex: 0.5;
  }
}

/* From our Blog */

.home-blogs {
  padding: 3rem 0;
  background-color: var(--white);
}

.home-list-blog {
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
}

.our-blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.4rem;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.15);
  padding: 2rem 2rem 3rem 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .our-blog-card {
    flex: 0.3;
  }
}

.our-blog-card h2 {
  color: var(--blueColorLight);
  font-family: var(--secondaryFont);
  font-weight: 700;
  text-align: left;
}

.our-blog-card p {
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .home-list-blog {
    flex-direction: row;
    justify-content: space-around;
  }
}

/* Why us */

.home-why-us {
  padding: 6rem 0 0 0;
}

.why-us-block {
  text-align: left;
  margin: 5rem 0;
}

@media (min-width: 768px) {
  .why-us-block {
    display: flex;
    justify-content: space-between;
  }

  .why-us-block div {
    flex: 0.3;
  }
}

.why-us-block h2 {
  font-weight: 400;
  padding-left: 3rem;
}

.why-us-block li {
  margin: 4rem 0;
}

.why-us-block-firt li::before {
  position: absolute;
  content: " ";
  margin-left: -0.2rem;
  margin-top: 0.2rem;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: 2rem;
  background-image: url(img/checked-blue.svg);
}

.why-us-block-second {
  text-align: center;
}

.why-us-block-third li::before {
  position: absolute;
  content: " ";
  margin-left: -0.2rem;
  margin-top: 0.2rem;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: 2rem;
  background-image: url(img/checked-blue.svg);
}

@media (min-width: 768px) {
  .why-us-block-third li {
    text-align: right;
  }

  .why-us-block-third li::before {
    margin-left: -1.8rem;
  }

  .why-us-block-third li h2 {
    padding-right: 3rem;
  }
}

.why-us-lets-talk {
  background-color: var(--blueColor);
  text-align: center;
  padding: 4rem 1rem 4rem 1rem;
}

.why-us-lets-talk h1 {
  color: var(--white);
  font-family: var(--fontHeadersLight);
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: left;
  font-size: 3rem;
}

@media (min-width: 768px) {
  .why-us-lets-talk {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .why-us-lets-talk h1 {
    flex: 0.3;
    margin: 0 8rem 0 2rem;
  }
}

/* PARTNERS */

.home-partners {
  padding: 5rem 0;
  background-color: var(--grayLigth);
}

.logos-partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 4rem;
  border-bottom: solid 1px #c9c9c9;
  padding-bottom: 2rem;
}

.logos-partners div {
  display: flex;
  justify-content: center;
}

.logos-partners img {
  display: block;
  width: 17rem;
}

/* CERTIFICATIONS */
.home-certifications {
  background-color: var(--grayLigth);
  padding: 0 0 3rem 0;
}

.certifications-firts-block h1 {
  font-family: var(--fontHeadersLight);
  font-weight: 400;
  line-height: 1.2;
}

.certifications-firts-block ul {
  margin-left: 4rem;
}

.certifications-firts-block li {
  list-style: disc;
}

@media (min-width: 768px) {
  .certifications-blocks {
    display: flex;
    justify-content: space-between;
  }

  .certifications-blocks div {
    flex: 0.48;
  }

  .certifications-second-block {
    display: flex;
    align-items: center;
  }
}

/* CERTIFIED PARTNER */

.home-certified-partner {
  /*background-color: var(--goldColor);*/
	background-color: #e8e0ca;
  /*color: var(--white);*/
  margin: 0;
  padding: 0;
}

.certified {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .certified {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}

.certified h4 {
  text-transform: uppercase;
  color: var(--blueColor);
  font-weight: 400;
}

.certified-title {
  display: none;
}

@media (min-width: 768px) {
  .certified-title {
    display: block;
    flex: 0.1;
    padding: 3rem 5rem;
  }
}

.certified-title h3 {
  font-family: var(--secondaryFont);
  font-size: 2.4rem;
  font-weight: 400;
}

.certified-text {
  flex: 0.7;
  padding: 3rem 2rem;
  text-align: left;
}

@media (min-width: 768px) {
  .certified-text {
    flex: 0.7;
    padding: 3rem 2rem;
    text-align: left;
    border-right: solid 0.3rem var(--white);
  }
}

.certified-img {
  flex: 0.2;
  text-align: center;
  padding: 3rem 5rem;
}

.certified-img img {
  width: 100%;
}

@media (min-width: 768px) {
  .certified-img img {
    width: 16rem;
  }
}

/* Contact us*/

.home-contact {
  background-color: var(--grayLigth);
  padding: 5rem 0;
}


.home-contact-form {
  width: 100%;
  margin: 0 auto;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.15);
  background-color: var(--white);
  padding: 3rem;
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .home-contact-form {
    width: 50%;
  }
}

.home-contact-form .wpcf7-form .wpcf7-form-control {
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
}

.home-contact-form .wpcf7-form .wpcf7-form-control::placeholder {
  color: #c9c9c9;
  font-family: var(--secondaryFont);
  font-weight: 300;
  font-size: 1.5rem;
}

.home-contact-form .wpcf7-form .wpcf7-submit {
  display: inline-block;
  width: 80%;
  margin: 0 auto;
  background-color: var(--thirdColor);
  color: var(--white);
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: var(--secondaryFont);
  transition: all 0.4s ease;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .home-contact-form .wpcf7-form .wpcf7-submit {
    width: 50%;
  }
}

.home-contact-form .wpcf7-form .wpcf7-submit:hover {
  background-color: var(--secondColor);
}

/* --- Go top --- */

.go-top-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 4rem;
  height: 4rem;
  z-index: -1;
}

.go-top-button {
  width: 0rem;
  height: 0rem;
  background-color: var(--thirdColor);
  border-radius: 50%;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transition: 0.2s;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.go-top-button:hover {
  background-color: var(--firtColor);
}

.go-top-button img {
  position: absolute;
  width: 60%;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s;
}

.show {
  z-index: 10;
}

.show .go-top-button {
  animation: popup 0.3s ease-in-out;
  width: 4rem;
  height: 4rem;
  z-index: 11;
}

.show img {
  transform: translate(-50%, -50%) scale(1);
}

@keyframes popup {
  0% {
    width: 0rem;
    height: 0rem;
  }
  50% {
    width: 6rem;
    height: 6rem;
  }
  100% {
    width: 4rem;
    height: 4rem;
  }
}

/* NEWSLETTER */

.super-footer-newsletter p {
  color: var(--grayFont);
}

.hustle-layout-content {
  background-color: transparent !important;
}

.hustle-layout-form {
  padding: 3rem 0 !important;
  background-color: #ffffff !important;
}

.hustle-input {
  border: solid 1px #dad8d8 !important;
  border-top-left-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
  width: 80% !important;
  height: 4.5rem;
}

.hustle-button-submit {
  background-color: var(--thirdColor) !important;
  font-family: var(--fontText) !important;
  font-size: 1.6rem !important;
  font-weight: 100 !important;
  border-radius: 50px !important;
  z-index: 99;
  margin-left: -12rem;
  border: solid 1px #dad8d8 !important;
  height: 4.5rem;
  padding: 0 2rem !important;
}

.hustle-success {
  background-color: transparent !important;
}

/******* PAGES *******************/

.inside-page-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.inside-page-title h1 {
  font-size: 7.2rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
}

.inside-page-title p {
  margin: 0;
  font-weight: 400;
  width: 60%;
}

/* ---- COVID ---- */

.covid-hero {
  background-image: url(img/hero-covid.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-card {
  margin: 5rem 0;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.15);
  padding: 4rem 0;

}

.contact-card img{
  border-radius: 50%;

}

.contact-card h3{
  font-family: var(--fontHeaderB);
  font-weight: 400;
  margin: 1rem 0 0 0;
}

.covid-content p{
  position: relative;
  padding: 0.5rem 0;
  margin: 0;
}

.covid-content p::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5bb847;
  bottom: 0;
  left: calc(50% - 25px);
}

.covid-block-2 {
  margin: 5rem 0;
  text-align: left;
}


@media (min-width: 768px) {
  .covid-block-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .covid-block-2 div:first-of-type{
    flex: 0.5;
  }

  .contact-card {
    flex: 0.25;
  }
}


.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-datas {
  margin: 2rem 0;
  width: 90%;
}

.contact-datas div {
  text-align: left;
  margin: 0.3rem 0 0 5rem;
}

.contact-datas div:before {
  position: absolute;
  content: " ";
  margin-left: -2.8rem;
  margin-top: 0.6rem;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}

.contact-datas div[id*="contact-phone"]:before {
  background-image: url(img/icons/contact-phone.svg);
}

.contact-datas div[id*="contact-fax"]:before {
  background-image: url(img/icons/contact-fax.svg);
}

.contact-datas div[id*="contact-email"]:before {
  background-image: url(img/icons/contact-email.svg);
}



/* ---- About Us Page*/

.about-us-hero {
  background-image: url(img/hero-about-us.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .au-our-story-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .au-our-story-block div {
    flex: 0.48;
  }
}

.au-section-credentials {
  background-color: var(--grayLigth);
  padding: 6rem 0;
}

.au-credentials div {
  background-color: var(--white);
  padding: 2rem;
  height: auto;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.15);
  margin: 2rem 0;
  transition: all 0.4s ease;
}

.au-credentials-card:hover {
  background-color: var(--thirdColor);
  color: var(--white);
}

.au-credentials-card h2 {
  font-size: 1.6rem;
}

.au-credentials-card:hover h2 {
  color: var(--white);
}

.au-credentials div h4 {
  font-size: 1.6rem;
  font-family: var(--fontHeadersBold);
  font-weight: bolder;
}

.au-credentials div p {
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .au-credentials {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }

  .au-credentials div {
    flex: 0.3;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .au-block .why-us-block .why-us-block-firt {
    display: flex;
    flex: 1;
  }

  .au-block .why-us-block .why-us-block-firt ul {
    column-count: 2;
    column-gap: 5rem;
  }

  .au-block .why-us-block .why-us-block-firt ul li {
    break-inside: avoid;
    overflow: hidden;
    margin-top: 0;
  }

  .au-block .why-us-block h2 {
    margin: 0;
  }
  .au-block .why-us-block p {
    margin: 0;
  }
}

.au-section-bg-dark {
  background-color: var(--grayLigth);
}

.au-credentials-partners p {
  width: 60%;
  margin: 0 auto;
  padding: 1rem;
}

.au-credentials-partners img {
  margin: 2rem 0;
}

/* Esta clase hay que quitarla cuando tenga el tamaño real de los logos*/
.clients-block {
  padding: 3rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}

.clients-block img {
  width: 20rem;
  height: 10rem;
}

@media (min-width: 768px) {
  .clients-block {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 2rem;
  }
}

.team-block {
  padding: 4rem 0;
}

.card-member {
  background-color: #e0dede;
  margin: 2rem;
	padding-bottom: 10px;
}

.card-member h3 {
  font-weight: 800;
	margin-bottom: 4px;
}

.card-member-image{
    display: block;
    height: 20.4rem;
    width: auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media (min-width: 768px) {
  .team-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3rem;
  }

  .card-member {
    margin: 0rem;
  }
  
  .card-member-image:hover{
    background-image: none !important;
  }

  .card-member-image-container{
    display: block;
    height: 20.4rem;
    width: auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}

/* --- SERVICES PAGE --- */

.services-hero {
  background-image: url(img/hero-services.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-general-description p {
  width: 60%;
  text-align: center;
  margin: 0 auto;
  padding: 2rem 0;
  font-family: var(--fontText);
}

.service-description-block li {
  margin-left: 3rem;
  line-height: 2;
}
.service-description-block li::before {
  position: absolute;
  content: " ";
  margin-left: -2rem;
  margin-top: 1rem;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url(img/checked-blue.svg);
}

.services-image p {
  width: 100%;
}

.services-skill-card {
  padding: 1rem 2rem;
  margin: 1.5rem 0;
  /*box-shadow: 0px 3px 15px 0 rgba(0, 0, 0, 0.15);*/
  transition: all 0.4s ease;
}

.services-skill-card:hover {
 /* background-color: var(--thirdColor);
  color: var(--white);*/
}


.services-block-2 {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .services-block-2 {
    display: flex;
    justify-content: space-between;
  }

  .services-image {
    flex: 0.5;
  }

  .services-skills {
    flex: 0.3;
  }
}

.services-skill-card h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-left: 4rem;
  text-align: left;
}

.services-skill-card h2::before {
  position: absolute;
  content: " ";
  margin-left: -3.5rem;
  margin-top: -0.2rem;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: 2rem;
  background-image: url(img/checked-blue.svg);
}

.services-items .home-service-card {
  background-color: var(--white);
  margin: 2rem 0;
  
}
/* arrow */
.services-items .arrow {
  margin: 2rem 0 1rem 0;
  content: " ";
  width: 5rem;
  height: 5rem;
  background-repeat: no-repeat;
  background-size: 5rem;
  background-image: url(img/icons/next.svg);
}

.services-items .arrow:hover {
  margin: 2rem 0 1rem 0;
  content: " ";
  width: 5rem;
  height: 5rem;
  background-repeat: no-repeat;
  background-size: 5rem;
  background-image: url(img/icons/next-hover.svg);
}

@media (min-width: 768px) {
  .services-items .home-service-card {
    display: flex;
    justify-content: space-around;
    background-color: var(--white);
    margin: 2rem 0;
  }
}

.services-items .home-service-card .services-item-image {
  text-align: center;
}

.services-items .home-service-card .services-item-content h2 {
  font-weight: 400;
}

@media (min-width: 768px) {
  .services-items .home-service-card .services-item-image {
    flex: 0.2;
    text-align: right;
  }

  .services-items .home-service-card .services-item-content {
    flex: 0.7;
  }
}

.services-items .home-service-card .services-item-content p {
  margin: 0;
}

.services-items .home-service-card .services-item-content p:first-of-type {
  font-size: 1.8rem;
}

.services-items .home-service-card .services-item-content .button-primary {
  margin: 3rem 0 2rem 0;
}

/* PAGE SERVICE ITEM */

.page-item-service section {
  padding: 6rem 0;
}

.bg-hero-service-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.bg-hero-service-item h1 {
  font-size: 5rem;
}

.bg-hero-service-item p {
  font-family: var(--fontHeadersLight);
  font-size: 3rem;
  color: var(--white);
}

@media (min-width: 768px) {
  .bg-hero-service-item h1 {
    font-size: 7.2rem;
  }

  .bg-hero-service-item p {
    font-size: 3.2rem;
  }
}

.section-service-description {
  padding: 6rem 0 6rem 0 !important;
}

.service-description-block {
  padding: 1rem 0;
}

.service-description-block .button-primary {
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .service-description-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .service-description-block div:first-of-type {
    flex: 0.5;
    text-align: left;
  }

  .service-description-block div:last-of-type {
    flex: 0.35;
    margin-right: 2rem;
  }
}

/* BENEFITS */

.benefits-card {
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: 0px 3px 15px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.card-long {
  height: 28rem;
}

.benefits-card h2 {
  font-weight: 400;
  font-size: 2rem;
}

.benefits-card img {
  width: 8rem;
}

.service-benefits {
  padding: 0 0 2rem 0;
}

.service-benefits-4 {
  padding: 0 0 2rem 0;
}

@media (min-width: 768px) {
  .service-benefits-4,
  .service-benefits {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }


  .service-benefits div {
    flex: 0.3;
  }

  .service-benefits-4 div {
    flex: 0.24;
  }
}

.how-p {
  width: 65%;
  margin: 0 auto;
}

/* SKILLS */

.service-how-it-work {
  padding: 5rem 0;
}

.service-skills {
  margin-top: 5rem;
}

.service-skill-card img {
  width: 8rem;
}

.service-skill-card {
  margin: 2rem 0;
  padding: 1rem 2rem;
  /*box-shadow: 0px 3px 15px 0 rgba(0, 0, 0, 0.15);
  background-color: var(--white);*/
  display: flex;
  justify-content: start;
  align-items: start !important;
}

@media (min-width: 768px) {
  .service-skill-card {
    margin: 0;
  }
}

.service-skill-card h2 {
  font-weight: 400;
  font-size: 2rem;
  text-align: left;
  padding-left: 1.8rem;

}

.skill-description p {
	padding-left: 1.8rem;
}

@media (min-width: 768px) {
  .service-skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
    column-gap: 10rem;
  }
}

/* SERVICES PARTNERS */

.service-partners .home-partners {
  background-color: var(--white);
}

.service-partners .home-partners .logos-partners {
  border: none;
}

/* 404 */

.page-404 {
  text-align: center;
  padding: 6rem 0;
}

.page-404 h2   {
  padding: 3rem 0;
  font-weight: 400;
}

.page-404 img {
  width: 50%;
}


/* Products Page */

.products-hero {
  background-image: url(img/products-hero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-li li {
  margin-left: 3rem;
  line-height: 2;
}
.product-li li::before {
  position: absolute;
  content: " ";
  margin-left: -2rem;
  margin-top: 1rem;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url(img/checked-blue.svg);
}

.bb-block {
  padding: 6rem 0;
}

.product-section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .bb .home-services-container-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
    column-gap: 3rem;
    
  }

  .bb .home-services-container-list .home-service-card {
    margin: 0;
  }

.bb .bb-block .home-services-container-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 6rem;
}
}

/* Forms Style */
.forminator-ui#forminator-module-1442.forminator-design--default .forminator-input, .forminator-ui#forminator-module-1442.forminator-design--default .forminator-input:active, .forminator-ui#forminator-module-1442.forminator-design--default .forminator-input:focus, .forminator-ui#forminator-module-1442.forminator-design--default .forminator-input:hover {
	background-color: #fff !important;
}

/* ----------- Darlyn Styles ------ 2021-06-------------*/
@media (min-width: 1660px) {
.hero-header h1 {
	font-size: 42px;
	line-height: 50px;
}
	.hero-block p {
		font-size: 26px;
		line-height: 38px;
	}
	}
section.hero {
	padding-bottom: 0;
}
@media (max-width:768px) {
	.bg-hero-service-item h1 {
    font-size: 3rem;
}
	.card-long {
    height: 36rem;
}
	.contact-card {
    flex: 0.4;
	}
	.contact-us-sec .contact-card {
		width: 80%;
	}
	.inside-page-title h1 {
    font-size: 4rem;
	}
	.bg-hero-service-item p {
      font-size: 2rem;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
	.super-footer-useful {
    flex: 0.2;
    margin-left: 6rem;
}
}
@media (max-width: 450px) {
	.logo img {
  height: 3.4rem;
}
	.slicknav_nav a {
    font-size: 1.4rem;
	}
	.slicknav_nav .slicknav_row, .slicknav_nav a {
    padding: 10px 10px;
	}
	.services-second-block-second img {
    width: auto;
	}
}

.skill-description li {
    margin-left: 3rem;
    margin-bottom: 10px;
}
.skill-description li::before {
    position: absolute;
    content: " ";
    margin-left: -2rem;
    margin-top: 1rem;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-size: 1rem;
    background-image: url(img/checked-blue.svg);
}
.contact-datas {
	font-size: 18px;
	width: 100%;
	font-weight: 700;
}
.contact-datas div:before {
    position: absolute;
    content: " ";
    margin-left: -2.8rem;
    margin-top: 0rem;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-size: 2rem;
}
@media (min-width: 1280px) {
	.w-70 {
		width: 70%;
		margin: 0 auto;
	}
	div.services-second-block-firts > div > h1 {
		font-size: 3rem;
	}
}
.illustration-container {
	flex: 0.45;
}
/* ----------- About Us (IT Specialists) style-------------*/
.section-title h2.no-line::after {
	background: transparent !important;
}
ul.text-left {
	text-align: left !important;
}
.section-title li {
    margin-left: 3rem;
    margin-bottom: 10px;
}
.section-title li::before {
    position: absolute;
    content: " ";
    margin-left: -2rem;
    margin-top: 1rem;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-size: 1rem;
    background-image: url(img/checked-blue.svg);
}
.pt-5 {
	padding-top: 3rem;
}
h2.title-green {
	color: #5bb847;
}


/* -----------Disaster Recovery - Business Continuity Section-------------*/
.business-continuity {
	background-color: var(--grayLigth);
    padding: 6rem 0;
}
.services-business-continuity {
    padding: 0.5rem 3rem;
    margin: 0 !important;
    transition: all .4s ease;
}
.services-business-continuity h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-left: 4rem;
    text-align: left;
}
.services-business-continuity h2::before {
    position: absolute;
    content: " ";
    margin-left: -3.5rem;
    margin-top: -.2rem;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-size: 2rem;
    background-image: url(img/checked-blue.svg);
}
@media (min-width: 800px){
.business-continuity-services.service-skills {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 2rem;
    column-gap: 1rem;
    width: 768px;
    margin: auto;
}
	}
@media (max-width: 768px) {
	.services-business-continuity {
    padding: 0.5rem 1rem;
	}
}

/* -----------Industries section -------------*/
.industries ul {
	display: inline-flex;
	flex-wrap: wrap;
}
.industries ul li {
	padding: 8px;
	text-transform: uppercase;
	margin: 5px 8px;

}
@media (max-width: 768px) {
	.industries ul {
		flex-direction: column;
	}
}

.gray-bg {
	background-color: #fafafa;
}
/* -----------Solutions New Page-------------*/
.solution-hero h1 {
	color:#fff;
	text-transform: uppercase;
}
.page-list li {
	margin-left: 3rem;
    margin-bottom: 10px;
}
.page-list li::before {
    position: absolute;
    content: " ";
    margin-left: -2rem;
    margin-top: 1rem;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-size: 1rem;
    background-image: url(img/checked-blue.svg);
}
.solutions-last-section .section-title h2 {
	width: 70%;
	margin: auto;
}
.solutions-last-section {
	padding-top: 60px;
	padding-bottom: 60px;
}
@media (max-width: 450px) {
	.logo {
		position: absolute;
	}
}
.mt-5 {
	margin-top: 5rem;
}
.copyright a:active {
    color: #434175;
}

/* -----------Privacy Policy New Page-------------*/
.privacy-policy {
  background-image: url(img/privacy-policy.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
}