/*BARRA DE NAVEGACION*/
body {
  background-color: #ececec;
}

@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@100;200;300;600;700;900&family=Open+Sans:wght@300;400;500;600;700;800&family=Poppins:ital,wght@0,300;400;500;700;1,200&family=Raleway:wght@300;400;500;600;700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,500&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&display=swap');

.dropdown-toggle::after {
  content: none;
}

/* font-family: 'Barlow Semi Condensed', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Roboto', sans-serif; 
font-family: 'Oswald', sans-serif;
font-family: "Montserrat", sans-serif; */
@media (max-width: 575.98px) {
  .img-logo {
    width: 150px;
    height: 75px;
  }

  .navbar {
    background-color: #fff;
    padding-right: 40px;
  }

  .navbar-scrolled {
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .navbar a:hover {
    color: orangered;


  }

  .barra a {
    font-family: 'Poppins', sans-serif;
    position: relative;
    color: #2F2F2F;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 20px;
    letter-spacing: 1px;
    transition: 0.3s ease;
    padding-top: 20px;

  }

  .navbar li:hover>ul {
    display: block;
  }

  /*  .btn-2 {
    margin-top: 20px;
    margin-left: 18px;
    letter-spacing: 1px;
  } */


  .navbar-scrolled a {

    color: #2F2F2F;

  }

  .barra a:hover:before {
    width: 100%;
  }

  .dropdown li a {
    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 11.5px;
    font-weight: 600;
    padding-top: 8px;
    margin-left: 4px;
    color: #2F2F2F;

  }

  /* .dropdown-item:hover{
    background-color: grey;
  } */


  .menu2 {
    width: 30px;
    height: 20px;
    position: relative;
    margin-top: 3px;
    margin-bottom: 5px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;

  }

  .menu2 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;

  }

  .menu2 span {
    background: #2F2F2F;


  }

  .menu2 span:nth-child(1) {
    top: 0px;
  }

  .menu2 span:nth-child(2) {
    top: 10px;
  }

  .menu2 span:nth-child(3) {
    top: 20px;
  }

  .menu2.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .menu2.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }

  .menu2.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {

  .img-logo {
    width: 180px;
    height: 90px;
  }

  .navbar {
    background-color: #ececec;
    padding-right: 100px;
  }

  .navbar-scrolled {
    background-color: #ececec;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .navbar a:hover {
    color: orangered;

  }

  .barra a {
    font-family: 'Poppins', sans-serif;
    position: relative;
    color: orangered;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 12px;
    letter-spacing: 0px;
    transition: 0.3s ease;
    padding-top: 20px;

  }

  .navbar li:hover>ul {
    display: block;
  }

  .barra a:before {
    content: '';
    position: absolute;
    background: orangered;
    width: 0px;
    height: 2px;
    bottom: 0px;
    left: 0px;
    transition: 0.3s ease;
    color: #2F2F2F;

  }

  .navbar-scrolled a {

    color: #2F2F2F;

  }

  .barra a:hover:before {
    width: 100%;
  }

  .dropdown li a {
    font-family: 'Raleway', sans-serif;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    margin-left: 0px;
    color: #2F2F2F;

  }

}

/*-----------------------------------------------*/

@media (min-width: 1200px) {

  .img-logo {
    width: 200px;
    height: 100px;

  }

  .navbar {
    transition: all 0.5s;
  }

  .navbar-scrolled {
    background-color: #ececec;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .barra a {

    font-family: 'Poppins', sans-serif;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    letter-spacing: 1px;
    line-height: 1.5em;
    transition: 0.3s ease;
    color: orangered;
  }

  .barra a:hover {
    color: orangered;
  }

  .navbar-scrolled a {

    color: #2F2F2F;

  }

  .navbar li:hover>ul {
    display: block;

  }

  .btn-2 {
    margin-left: 30px;
    letter-spacing: 1px;
  }

  .barra a:before {
    content: '';
    position: absolute;
    background: orangered;
    /*color de barra*/
    width: 0px;
    height: 2px;
    bottom: 0px;
    left: 0px;
    transition: 0.3s ease;
    color: #2F2F2F;



  }

  .navbar-scrolled a {

    color: #2F2F2F;

  }

  .barra a:hover:before {
    width: 100%;

  }

  .dropdown li a {
    font-family: 'Poppins', sans-serif;
    position: relative;
    font-size: 16px;
    font-weight: 300;
    margin-left: 0px;
    color: #2F2F2F;
  }

  .dropdown-item:hover {
    background-color: #FFFFFF;

  }

  .link-contact {
    display: none;

  }


  .nav-link {
    color: #2F2F2F;
  }

  .d-inline-block {
    padding: auto;

  }


  .nav-link {
    color: #2F2F2F;
  }

  .d-inline-block {
    padding: auto;

  }

}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {

  .img-logo {
    width: 200px;
    height: 100px;
  }

  .navbar {
    transition: all 0.5s;
  }

  .navbar-scrolled {
    background-color: #ececec;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .barra a {

    font-family: 'Poppins', sans-serif;
    position: relative;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 40px;
    letter-spacing: 1px;
    transition: 0.3s ease;
    color: orangered;
  }

  .navbar-scrolled a {

    color: orangered;

  }

  .navbar li:hover>ul {
    display: block;
  }

  .btn-2 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    letter-spacing: 1px;
    width: 105%;
  }

  .barra a:before {
    content: '';
    position: absolute;
    background: orangered;
    width: 0px;
    height: 2px;
    bottom: 0px;
    left: 0px;
    transition: 0.3s ease;
    color: #2F2F2F;

  }

  .navbar-scrolled a {

    color: #2F2F2F;

  }

  .barra a:hover:before {
    width: 100%;
  }

  .dropdown li a {
    font-family: 'Poppins', sans-serif;
    position: relative;
    font-size: 16px;
    font-weight: 300;
    margin-left: 0px;
    color: #2F2F2F;
  }

  .dropdown-item:hover {
    background-color: #FFFFFF;
  }

  .link-contact {
    display: none;
  }
}

@media (min-width: 2560px) {

  .img-logo {
    width: 250px;
    height: 120px;

  }

  .navbar {
    transition: all 0.5s;
  }

  .navbar-scrolled {
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .barra a {
    font-family: 'Poppins', sans-serif;
    position: relative;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 80px;
    letter-spacing: 1px;
    transition: 0.3s ease;
    color: orangered;
  }

  .barra a:hover {
    color: orangered;
  }

  .navbar-scrolled a {
    color: #2F2F2F;
  }

  .navbar li:hover>ul {
    display: block;
  }


  .barra a:before {
    content: '';
    position: absolute;
    background: orangered;
    width: 0px;
    height: 3px;
    bottom: 0px;
    left: 0px;
    transition: 0.3s ease;
    color: orangered;

  }

  .navbar-scrolled a {

    color: #2F2F2F;

  }

  .barra a:hover:before {
    width: 100%;
  }

  .dropdown li a {
    font-family: 'Poppins', sans-serif;
    position: relative;
    font-size: 18px;
    font-weight: 300;
    margin-left: 0px;
    color: #2F2F2F;
  }

  .dropdown-item:hover {
    background-color: #FFFFFF;
  }

  .link-contact {
    display: none;
  }

  .btn-2 {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    height: 105%;
    width: 105%;
    font-size: 22px;
  }
}

/*===========================================================================================================================*/
/* 
/*CODIGO CSS PARA EL CAROUSEL*/
@media (max-width: 575.98px) {
  .carousel-item {
    height: 23rem;
    color: white;
    position: relative;
    top: 90px;
  }

  .carousel-inner {
    height: 19rem;
  }

  .carousel-indicators li::marker {
    font-size: 0;
  }

  .carousel .carousel-indicators li.active {
    background-color: #FFFFFF;
  }

  .carru-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    text-align: justify;
    font-weight: 600;
    color: #FFFFFF;
  }

  .carru-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-align: justify;
    font-weight: 600;
    color: #FFFFFF;
  }

  .carru-3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    text-align: justify;
    font-weight: 700;
    color: orangered;
  }

  .carru-4 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;

    font-weight: 600;
    color: #2A2A29;
  }

  .text-c1 {
    display: none;
  }

  .text-c2 {
    display: none;
  }

  .text-c3 {
    display: none;
  }

  .contenedor {

    position: absolute;
    bottom: 210px;
    left: 0;
    right: 0;
    margin-left: 10px;
  }

  .contenedor2 {
    position: absolute;
    bottom: 220px;
    left: 0;
    right: 0;
    margin-left: 10px;

  }

  .contenedor3 {
    position: absolute;
    bottom: 210px;
    left: 0;
    right: 0;
    margin-left: 10px;

  }

  .inicio {
    font-family: 'Poppins', sans-serif;
  }

  .btn {
    display: none;
  }

  .link2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    font-size: 12px;
    color: #FFFFFF;
    margin-left: 1px;

  }

  .link3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    font-size: 12px;
    color: orangered;
    margin-left: 1px;

  }

  .link4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    font-size: 12px;
    color: #191919;
    margin-left: 1px;
  }

  .link2:hover {

    border: #000;
    color: orangered;
  }

  .link3:hover {

    border: #000;
    color: #fff;
  }

  .link4:hover {

    border: #000;
    color: #fff;
  }


  .btn:hover {
    background-color: #FF5F1F;
    border: #FF5F1F;
    color: #fff;

  }

  .carousel-indicators {
    bottom: -10px;
  }
}


@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .carousel-item {

    height: 36rem;
    color: white;
    position: relative;
    top: 120px;
  }

  .carousel-inner {
    height: 34rem;
  }

  .carousel-item img {
    height: 360px;

  }

  .carousel-indicators li::marker {
    font-size: 0;

  }

  .carousel .carousel-indicators li.active {
    background-color: #FFFFFF;
  }

  .carru-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    text-align: justify;
    font-weight: 600;
    color: #FFFFFF;
  }

  .carru-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    text-align: justify;
    font-weight: 600;
    color: #FFFFFF;
  }

  .carru-3 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    text-align: justify;
    font-weight: 700;
    color: orangered;
  }

  .carru-4 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;

    font-weight: 600;
    color: #2A2A29;
  }

  .text-c1 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    text-align: justify;
    font-weight: 500;
    /* inline-size: 750px; */
    color: #FFFFFF;
  }

  .text-c2 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    text-align: justify;
    font-weight: 600;
    /* inline-size: 750px; */
    color: orangered;
  }

  .text-c3 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    text-align: justify;
    font-weight: 500;
    inline-size: 750px;
    color: #2A2A29;
  }

  .link2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    font-size: 17px;
    color: #FFFFFF;
    margin-left: 1px;

  }

  .link3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    font-size: 17px;
    color: orangered;
    margin-left: 1px;

  }

  .link4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    font-size: 17px;
    color: #191919;
    margin-left: 1px;
  }

  .contenedor {

    position: absolute;
    bottom: 210px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 150px;
  }

  .contenedor2 {

    position: absolute;
    bottom: 210px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 150px;
  }

  .contenedor3 {

    position: absolute;
    bottom: 190px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 150px;
  }

  .inicio {
    font-family: 'Open Sans', sans-serif;
  }


  .btn {
    display: none;

  }

  .carousel-indicators {
    bottom: -15px;
  }

  .link2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    position: relative;
    font-size: 16px;
    color: #FFFFFF;
    margin-left: 0px;
  }

  .link2:hover {

    border: #000;
    color: orangered;
  }

  .link3:hover {

    border: #000;
    color: #fff;
  }

  .link4:hover {

    border: #000;
    color: #fff;
  }

  .btn:hover {
    background-color: #FF5F1F;
    border: #FF5F1F;
    color: #fff;
  }
}

/* font-family: 'Barlow Semi Condensed', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Roboto', sans-serif; 
font-family: 'Oswald', sans-serif;
font-family: "Montserrat", sans-serif; */
@media (min-width: 1200px) {
  .carousel-item {

    height: 48rem;
    color: white;
    position: relative;

  }

  .carousel-inner {
    height: 58rem;

  }

  .carousel-indicators li::marker {
    font-size: 0;

  }

  .carousel .carousel-indicators li.active {
    background-color: #FFFFFF;
  }

  .carru-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 55px;
    text-align: justify;
    font-weight: 600;
    color: #FFFFFF;
  }

  .carru-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    text-align: justify;
    font-weight: 600;
    color: #FFFFFF;
  }

  .carru-3 {
    font-family: 'Poppins', sans-serif;
    font-size: 55px;
    text-align: justify;
    font-weight: 700;
    color: 		#ff5700;
    /* color: 	#fff4e6; */
  }

  .carru-4 {
    font-family: 'Poppins', sans-serif;
    font-size: 55px;
    text-align: justify;
    font-weight: 600;
    color: #2A2A29;
  }

  .text-c1 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    text-align: justify;
    font-weight: 500;
    /* inline-size: 750px; */
    color: #FFFFFF;
  }

  .text-c2 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    text-align: justify;
    font-weight: 500;
    /* inline-size: 750px; */
    color:	#ff5700;
  }

  .text-c3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    text-align: justify;
    font-weight: 500;
    /* inline-size: 750px; */
    color: #2A2A29;
  }

  .link2 {
    display: none;
  }

  .link3 {
    display: none;
  }

  .link4 {
    display: none;
  }

  .contenedor {

    position: absolute;
    bottom: 170px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 150px;
    padding-right: 150px;
  }

  .contenedor2 {

    position: absolute;
    bottom: 180px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 150px;
    padding-right: 150px;
  }

  .contenedor3 {

    position: absolute;
    bottom: 180px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 150px;
    padding-right: 150px;
  }

  .inicio {
    font-family: 'Open Sans', sans-serif;
  }

  .btn:hover {
    background-color: #FF5F1F;
    border: #FF5F1F;
    color: #fff;
  }
}


@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .carousel-item {
    height: 36rem;
    color: white;
    position: relative;
  }

  .carousel-inner {
    height: 36rem;
  }

  .carousel-indicators {
    bottom: 0px;

  }

  .carousel-indicators li::marker {
    font-size: 0;
  }


  .carru-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    text-align: justify;
    font-weight: 600;
    color: #FFFFFF;
  }

  .carru-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    text-align: justify;
    font-weight: 600;
    color: #FFFFFF;
  }

  .carru-3 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    text-align: justify;
    font-weight: 700;
    color: orangered;
  }

  .carru-4 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    text-align: justify;
    font-weight: 600;
    color: #2A2A29;
  }

  .text-c1 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    text-align: justify;
    font-weight: 500;
    /* inline-size: 750px; */
    color: #FFFFFF;
  }

  .text-c2 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    text-align: justify;
    font-weight: 600;
    /* inline-size: 750px; */
    color: orangered;
  }

  .text-c3 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    text-align: justify;
    font-weight: 500;
    /* inline-size: 750px; */
    color: #2A2A29;
  }


  .link2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    font-size: 17px;
    color: #FFFFFF;
    margin-left: 1px;

  }

  .link3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    font-size: 17px;
    color: orangered;
    margin-left: 1px;

  }

  .link4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    font-size: 17px;
    color: #191919;
    margin-left: 1px;
  }

  .link2:hover {

    border: #000;
    color: orangered;
  }

  .link3:hover {

    border: #000;
    color: #fff;
  }

  .link4:hover {

    border: #000;
    color: #fff;
  }

  .contenedor {

    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 150px;
  }

  .contenedor2 {

    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 150px;
  }

  .contenedor3 {

    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 150px;
  }

  .inicio {
    font-family: 'Open Sans', sans-serif;
  }

  .btn {
    display: none;
  }

  .btn:hover {
    display: none;
  }
}

@media (min-width: 2560px) {
  .carousel-item {

    height: 70em;
    color: white;
    position: relative;
  }

  .carousel-inner {
    height: 80rem;
  }

  .carousel-indicators li::marker {
    font-size: 0;
  }

  .carru-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 75px;
    text-align: justify;
    font-weight: 600;
    color: #FFFFFF;
  }

  .carru-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    text-align: justify;
    font-weight: 600;
    color: #FFFFFF;
  }

  .carru-3 {
    font-family: 'Poppins', sans-serif;
    font-size: 75px;
    text-align: justify;
    font-weight: 700;
    color: orangered;
  }

  .carru-4 {
    font-family: 'Poppins', sans-serif;
    font-size: 75px;
    text-align: justify;
    font-weight: 600;
    color: #2A2A29;
  }

  .text-c1 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    text-align: justify;
    font-weight: 500;
    /* inline-size: 750px; */
    color: #FFFFFF;
  }

  .text-c2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    text-align: justify;
    font-weight: 600;
    /* inline-size: 750px; */
    color: orangered;
  }

  .text-c3 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    text-align: justify;
    font-weight: 500;
    /* inline-size: 750px; */
    color: #2A2A29;
  }

  .contenedor {

    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 150px;
    padding-right: 150px;
  }

  .contenedor2 {

    position: absolute;
    bottom: 280px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 150px;
    padding-right: 150px;
  }

  .contenedor3 {

    position: absolute;
    bottom: 280px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 150px;
    padding-right: 150px;
  }

  .link2 {
    display: none;
  }

  .link3 {
    display: none;
  }

  .link4 {
    display: none;
  }

  .contenedor {

    position: absolute;
    bottom: 260px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    padding-left: 150px;
    padding-right: 150px;
  }

  .inicio {
    font-family: 'Poppins', sans-serif;
  }



  .btn:hover {
    background-color: #FF5F1F;
    border: #FF5F1F;
    color: #fff;
  }
}

@media (max-width: 375px) {
  .carousel-item {
    height: 22rem;
    color: white;
    position: relative;
    top: 90px;
  }

  .carousel-inner {
    height: 18rem;
  }

  .carousel-indicators li::marker {
    font-size: 0;
  }

  .carousel .carousel-indicators li.active {
    background-color: #FFFFFF;
  }

  .carru-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    text-align: justify;
    font-weight: 600;
    color: #FFFFFF;
  }

  .carru-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-align: justify;
    font-weight: 600;
    color: #FFFFFF;
  }

  .carru-3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    text-align: justify;
    font-weight: 700;
    color: orangered;
  }

  .carru-4 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;

    font-weight: 600;
    color: #2A2A29;
  }

  .text-c1 {
    display: none;
  }

  .text-c2 {
    display: none;
  }

  .text-c3 {
    display: none;
  }

  .contenedor {

    position: absolute;
    bottom: 210px;
    left: 0;
    right: 0;
    margin-left: 10px;
  }

  .contenedor2 {
    position: absolute;
    bottom: 220px;
    left: 0;
    right: 0;
    margin-left: 10px;

  }

  .contenedor3 {
    position: absolute;
    bottom: 210px;
    left: 0;
    right: 0;
    margin-left: 10px;

  }

  .inicio {
    font-family: 'Poppins', sans-serif;
  }

  .btn {
    display: none;
  }

  .link2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    font-size: 12px;
    color: #FFFFFF;
    margin-left: 1px;

  }

  .link3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    font-size: 12px;
    color: orangered;
    margin-left: 1px;

  }

  .link4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    position: relative;
    font-size: 12px;
    color: #191919;
    margin-left: 1px;
  }

  .link2:hover {

    border: #000;
    color: orangered;
  }

  .link3:hover {

    border: #000;
    color: #fff;
  }

  .link4:hover {

    border: #000;
    color: #fff;
  }


  .btn:hover {
    background-color: #FF5F1F;
    border: #FF5F1F;
    color: #fff;

  }

  .carousel-indicators {
    bottom: -10px;
  }
}

/*===========================================================================================================================*/

/*QUIENES SOMOS*/
/* Responsive Apertura */
/* @media only screen and (min-width: 768px) and (max-width: 1024px)  { */

@media (min-width: 1200px) {
  .apertura {
    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    inline-size: 1200px;
    overflow-wrap: break-word;
    margin-top: 18px;
    letter-spacing: 1px;
    font-style: italic;
    font-weight: 700;

  }

  .qsomos {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-top: 30px;
    margin-left: 30px;
    letter-spacing: 1px;
    line-height: 1.9em;

  }

  .mensaje {

    color: #cccaca;
    background: linear-gradient(-70deg, orangered, #2A2A29 90%);

  }

  .about1 {

    background: #2A2A29;
    color: #cccaca;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 1;

  }

  .text-s {
    font-family: 'Raleway', sans-serif;
    margin-left: 30px;
    text-align: justify;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
    letter-spacing: 0px;
    color: #8e8989;
  }

  .foto1 {
    opacity: 1;
    height: 600px;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  }
}


@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .apertura {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    inline-size: 1200px;
    overflow-wrap: break-word;
    margin-top: 18px;
    letter-spacing: 1px;
    font-style: italic;
    font-weight: 700;

  }

  .qsomos {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-top: 10px;
    margin-left: 30px;
    letter-spacing: 1px;
    line-height: 1.9em;

  }

  .mensaje {

    color: #cccaca;
    background: linear-gradient(-70deg, orangered, #2A2A29 90%);

  }

  .about1 {

    background: #2A2A29;
    color: #cccaca;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 1;

  }

  .text-s {
    font-family: 'Raleway', sans-serif;
    margin-left: 30px;
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: 0.5px;
    color: #8e8989;

  }

  .foto1 {
    opacity: 1;
    height: 100%;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .apertura {
    font-family: "Montserrat", sans-serif;
    font-size: 27px;
    inline-size: 1200px;
    overflow-wrap: break-word;
    margin-top: 18px;
    letter-spacing: 1px;
    font-style: italic;
    font-weight: 700;

  }

  .qsomos {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-top: 20px;
    margin-left: 10px;
    letter-spacing: 1px;
    line-height: 1.9em;

  }

  .mensaje {

    color: #cccaca;
    background: linear-gradient(-70deg, orangered, #2A2A29 90%);

  }

  .about1 {

    background: #2A2A29;
    color: #cccaca;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 1;

  }

  .text-s {
    font-family: 'Raleway', sans-serif;
    margin-left: 10px;
    text-align: justify;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0px;
    color: #8e8989;
  }

  .foto1 {
    opacity: 1;
    height: 350px;
    /*  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); */
  }
}



@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .apertura {
    font-family: "Montserrat", sans-serif;
    font-size: 27px;
    overflow-wrap: break-word;
    margin-top: 18px;
    letter-spacing: 1px;
    font-style: italic;
    font-weight: 700;
  }

  .qsomos {
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-top: 15px;
    margin-left: 10px;
    letter-spacing: 1px;
    line-height: 1.9em;

  }

  .mensaje {

    color: #cccaca;
    background: linear-gradient(-70deg, orangered, #2A2A29 90%);

  }

  .about1 {

    background: #2A2A29;
    color: #cccaca;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 1;


  }

  .text-s {
    font-family: 'Raleway', sans-serif;
    margin-left: 10px;
    margin-right: 10px;
    text-align: justify;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.8em;
    letter-spacing: 0px;
    color: #8e8989;
  }

  .foto1 {
    opacity: 1;
    height: 500px;
    margin-bottom: 0px;
  }
}

@media (min-width: 2000px) {
  .apertura {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    inline-size: 2000px;
    overflow-wrap: break-word;
    margin-top: 18px;
    letter-spacing: 1px;
    font-style: italic;
    font-weight: 800;

  }

  .qsomos {
    font-family: "Montserrat", sans-serif;
    font-size: 60px;
    font-weight: 700;
    margin-top: 30px;
    margin-left: 30px;
    letter-spacing: 1px;
    line-height: 1.9em;

  }

  .mensaje {

    color: #cccaca;
    background: linear-gradient(-70deg, orangered, #2A2A29 90%);

  }

  .about1 {

    background: #2A2A29;
    color: #cccaca;
  }

  .text-s {
    font-family: 'Raleway', sans-serif;
    margin-left: 30px;
    text-align: justify;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8em;
    letter-spacing: 0px;
    color: #8e8989;
  }

  .foto1 {
    opacity: 1;
    height: 600px;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  }
}



@media (max-width: 575.98px) {
  .apertura {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    inline-size: 500px;
    overflow-wrap: break-word;
    margin-top: 8px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-style: italic;
    font-weight: 600;

  }

  .qsomos {
    font-family: "Montserrat", sans-serif;
    font-size: 27px;
    font-weight: 700;
    margin-top: 8px;
    margin-left: 5px;
    letter-spacing: 1px;
    line-height: 1.9em;

  }

  .mensaje {

    color: #cccaca;
    background: linear-gradient(-70deg, orangered, #2A2A29 90%);

  }

  .about1 {

    background: #2A2A29;
    color: #cccaca;


  }

  .text-s {
    font-family: 'Raleway', sans-serif;
    padding-left: 5px;
    padding-right: 5px;
    text-align: justify;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6em;
    letter-spacing: 0px;
    color: #8e8989;
  }

  .foto1 {
    opacity: 1;
    height: 260px;

    /*  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); */
  }
}

@media (max-width: 375px) {
  .apertura {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    overflow-wrap: break-word;
    margin-top: 8px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-style: italic;
    font-weight: 600;

  }

  .qsomos {
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: 700;
    margin-top: 8px;
    margin-left: 5px;
    letter-spacing: 1px;
    line-height: 1.9em;

  }

  .mensaje {

    color: #cccaca;
    background: linear-gradient(-70deg, orangered, #2A2A29 90%);

  }

  .about1 {

    background: #2A2A29;
    color: #cccaca;


  }

  .text-s {
    font-family: 'Raleway', sans-serif;
    padding-left: 5px;
    padding-right: 5px;
    text-align: justify;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6em;
    letter-spacing: 0px;
    color: #8e8989;
  }

  .foto1 {
    opacity: 1;
    height: 260px;

    /*  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); */
  }
}


/*=======================================================================================================*/
/*SERVICIOS*/


@media (max-width: 575.98px) {
  .outservices {
    font-family: 'Raleway', sans-serif;
    padding-top: 10px;
    padding-bottom: 4px;
    text-align: center;

    background: linear-gradient(-70deg, #2A2A29 55%, orangered);
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;

    }

    50% {
      background-position: 100% 50%;

    }

    100% {
      background-position: 0% 50%;

    }

  }

  .outservices h2 {
    font-size: 27px;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    color: #FFFFFF;
  }


}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .outservices {
    font-family: 'Raleway', sans-serif;
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;

    background: linear-gradient(-70deg, #2A2A29 55%, orangered);
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;

    }

    50% {
      background-position: 100% 50%;

    }

    100% {
      background-position: 0% 50%;

    }

  }

  .outservices h2 {
    font-size: 44px;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    letter-spacing: 5px;
    color: #FFFFFF;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .outservices {
    font-family: 'Raleway', sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;

    background: linear-gradient(-70deg, #2A2A29 55%, orangered);
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;

    }

    50% {
      background-position: 100% 50%;

    }

    100% {
      background-position: 0% 50%;

    }

  }

  .outservices h2 {
    font-size: 30px;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    letter-spacing: 5px;
    color: #FFFFFF;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .outservices {
    font-family: 'Raleway', sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;

    background: linear-gradient(-70deg, #2A2A29 55%, orangered);
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;

    }

    50% {
      background-position: 100% 50%;

    }

    100% {
      background-position: 0% 50%;

    }

  }

  .outservices h2 {
    font-size: 30px;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    letter-spacing: 5px;
    color: #FFFFFF;
  }
}

@media (min-width: 1200px) {
  .outservices {
    font-family: 'Raleway', sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;

    background: linear-gradient(-70deg, #2A2A29 55%, orangered);
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;

    }

    50% {
      background-position: 100% 50%;

    }

    100% {
      background-position: 0% 50%;

    }

  }

  .outservices h2 {
    font-size: 44px;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    letter-spacing: 5px;
    color: #FFFFFF;
  }
}

@media (min-width: 2000px) {
  .outservices {
    font-family: 'Raleway', sans-serif;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;

    background: linear-gradient(-70deg, #2A2A29 55%, orangered);
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;

    }

    50% {
      background-position: 100% 50%;

    }

    100% {
      background-position: 0% 50%;

    }

  }

  .outservices h2 {
    font-size: 50px;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    letter-spacing: 5px;
    color: #FFFFFF;
  }
}

@media (max-width: 375px) {
  .outservices {
    font-family: 'Raleway', sans-serif;
    padding-top: 10px;
    padding-bottom: 4px;
    text-align: center;

    background: linear-gradient(-70deg, #2A2A29 55%, orangered);
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;

    }

    50% {
      background-position: 100% 50%;

    }

    100% {
      background-position: 0% 50%;

    }

  }

  .outservices h2 {
    font-size: 25px;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    color: #FFFFFF;
  }


}
/* ================================================================================================ */


/*==================================================================================================*/

/*TITULO DE SERVICIOS*/

/*=============================================================*/
@media  (min-width: 1300px) {

  .servicios {
    background-color: #ececec;
  }

  .service-a {
    display: none;
  }

  figure.servicio1 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 800px;
    height: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
    margin-bottom: 70px;
  }

  figure.servicio1 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  figure.servicio1 img {
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    height: 600px;
    width: 800px;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;

  }

  figure.servicio1 figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 3em;
    width: 100%;
    height: 100%;

  }

  figure.servicio1 figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 100%;
    border-left: 4px solid rgba(255, 255, 255, 0.8);
    content: '';
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }

  figure.servicio1 h2 {

    width: 100%;
    height: 50%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }

  figure.servicio1 p {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 105%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*   margin: 0 0 5px; */
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }


  figure.servicio1 h2 {
    font-family: 'Raleway' sans-serif;
    font-weight: 500;
    font-size: 40px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    -webkit-transform: translate3d(30%, 0%, 0);
    transform: translate3d(30%, 0%, 0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  figure.servicio1 h2 span {
    font-weight: 800;
  }

  figure.servicio1 p {
    font-family: 'Raleway' sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #ffffff;
    padding: 100px;
    text-align: justify;
    -webkit-transform: translate3d(0%, 30%, 0);
    transform: translate3d(0%, 30%, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;

  }

  figure.servicio1 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    color: #ffffff;

  }

  figure.servicio1:hover img {
    opacity: 0.3;
    /* transform: scale(1.2); */
  }

  figure.servicio1:hover figcaption h2 {
    opacity: 1;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 2s;
    transition-delay: 0.5s;
  }

  figure.servicio1:hover figcaption p {
    opacity: 0.9;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.8s;
  }

  figure.servicio1:hover figcaption::before {
    background: rgba(255, 255, 255, 0);
    left: 30px;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }


  /* =============================================================================================== */

  figure.servicio2 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 800px;
    height: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
    margin-bottom: 60px;
  }

  figure.servicio2 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  figure.servicio2 img {
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    height: 600px;
    width: 800px;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;

  }

  figure.servicio2 figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 3em;
    width: 100%;
    height: 100%;

  }

  figure.servicio2 figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 100%;
    border-left: 4px solid rgba(255, 255, 255, 0.8);
    content: '';
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }

  figure.servicio2 h2 {

    width: 100%;
    height: 50%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }

  figure.servicio2 p {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*   margin: 0 0 5px; */
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }


  figure.servicio2 h2 {
    font-family: 'Raleway' sans-serif;
    font-weight: 500;
    font-size: 40px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    -webkit-transform: translate3d(30%, 0%, 0);
    transform: translate3d(30%, 0%, 0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  figure.servicio2 h2 span {
    font-weight: 800;
  }

  figure.servicio2 p {
    font-family: 'Raleway' sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #ffffff;
    padding: 100px;
    text-align: justify;
    -webkit-transform: translate3d(0%, 30%, 0);
    transform: translate3d(0%, 30%, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;

  }

  figure.servicio2 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    color: #ffffff;

  }

  figure.servicio2:hover img {
    opacity: 0.3;
    /* transform: scale(1.2); */
  }

  figure.servicio2:hover figcaption h2 {
    opacity: 1;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 2s;
    transition-delay: 0.5s;
  }

  figure.servicio2:hover figcaption p {
    opacity: 0.9;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.8s;
  }

  figure.servicio2:hover figcaption::before {
    background: rgba(255, 255, 255, 0);
    left: 30px;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  /* ============================================================================ */

  figure.servicio3 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 800px;
    height: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 70px;
  }

  figure.servicio3 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  figure.servicio3 img {
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    height: 600px;
    width: 800px;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;

  }

  figure.servicio3 figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 3em;
    width: 100%;
    height: 100%;

  }

  figure.servicio3 figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 100%;
    border-left: 4px solid rgba(255, 255, 255, 0.8);
    content: '';
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }

  figure.servicio3 h2 {

    width: 100%;
    height: 50%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }

  figure.servicio3 p {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 105%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*   margin: 0 0 5px; */
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }


  figure.servicio3 h2 {
    font-family: 'Raleway' sans-serif;
    font-weight: 500;
    font-size: 40px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    -webkit-transform: translate3d(30%, 0%, 0);
    transform: translate3d(30%, 0%, 0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  figure.servicio3 h2 span {
    font-weight: 800;
  }

  figure.servicio3 p {
    font-family: 'Raleway' sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #ffffff;
    padding: 100px;
    text-align: justify;
    -webkit-transform: translate3d(0%, 30%, 0);
    transform: translate3d(0%, 30%, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;

  }

  figure.servicio3 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    color: #ffffff;

  }

  figure.servicio3:hover img {
    opacity: 0.3;
    /* transform: scale(1.2); */
  }

  figure.servicio3:hover figcaption h2 {
    opacity: 1;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 2s;
    transition-delay: 0.5s;
  }

  figure.servicio3:hover figcaption p {
    opacity: 0.9;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.8s;
  }

  figure.servicio3:hover figcaption::before {
    background: rgba(255, 255, 255, 0);
    left: 30px;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }



  /* ================================================================ */

  figure.servicio4 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 800px;
    height: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 70px;
  }

  figure.servicio4 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  figure.servicio4 img {
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    height: 600px;
    width: 800px;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;

  }

  figure.servicio4 figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 3em;
    width: 100%;
    height: 100%;

  }

  figure.servicio4 figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 100%;
    border-left: 4px solid rgba(255, 255, 255, 0.8);
    content: '';
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }

  figure.servicio4 h2 {

    width: 100%;
    height: 30%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }

  figure.servicio4 p {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 105%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*   margin: 0 0 5px; */
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }


  figure.servicio4 h2 {
    font-family: 'Raleway' sans-serif;
    font-weight: 500;
    font-size: 40px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    -webkit-transform: translate3d(30%, 0%, 0);
    transform: translate3d(30%, 0%, 0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  figure.servicio4 h2 span {
    font-weight: 800;
  }

  figure.servicio4 p {
    font-family: 'Raleway' sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #ffffff;
    padding: 100px;
    text-align: justify;
    -webkit-transform: translate3d(0%, 30%, 0);
    transform: translate3d(0%, 30%, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;

  }

  figure.servicio4 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    color: #ffffff;

  }

  figure.servicio4:hover img {
    opacity: 0.3;
    /* transform: scale(1.2); */
  }

  figure.servicio4:hover figcaption h2 {
    opacity: 1;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 2s;
    transition-delay: 0.5s;
  }

  figure.servicio4:hover figcaption p {
    opacity: 0.9;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.8s;
  }

  figure.servicio4:hover figcaption::before {
    background: rgba(255, 255, 255, 0);
    left: 30px;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  .text-m1 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: justify;
    width: 100%;
    /* margin-left: -50px; */
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    bottom: -10px;
    color: #FFFFFF;
    display: inline-flex;
    background: linear-gradient(-45deg, #7A7A7A, #222222 60%);
    opacity: 1;
  }

  .text-m2 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: justify;
    width: 100%;
    margin-left: 0px;
    padding-left: 20px;
    padding-top: 27px;
    padding-bottom: 27px;
    display: flex;
    bottom: -10px;
    color: #FFFFFF;
    display: inline-flex;
    background: linear-gradient(-45deg, #7A7A7A, #222222 60%);
    opacity: 1;
  }

}
@media only screen and (min-width: 768px) and (max-width: 1023px) {

  .servicios {
    background-color: #ececec;
  }

  figure.servicio1 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 100%;
    height: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  /*  */
  /* =============================================================================================== */

  figure.servicio2 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 100%;
    height: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }


  /* ============================================================================ */

  figure.servicio3 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 100%;
    height: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }


  /* ================================================================ */

  figure.servicio4 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 100%;
    height: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 20px;
  }


  .text-m1 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: justify;
    width: 100%;
    margin-left: 0px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    bottom: -10px;
    color: #FFFFFF;
    display: inline-flex;
    background: linear-gradient(-45deg, #7A7A7A, #222222 60%);
    opacity: 1;
  }

  .text-m2 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: justify;
    width: 100%;
    margin-left: 0px;
    padding-left: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    bottom: -10px;
    color: #FFFFFF;
    display: inline-flex;
    background: linear-gradient(-45deg, #7A7A7A, #222222 60%);
    opacity: 1;
  }

}



@media  (max-width: 1441px)  {
 

  .servicios {
    background-color: #ececec;
  }

  figure.servicio1 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 100%;
    height: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 10px;
  }


  figure.servicio2 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 100%;
    height: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 10px;
  }



  figure.servicio3 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 100%;
    height: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 10px;
  }


  figure.servicio4 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 100%;
    height: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }


  .text-m1 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: justify;
    width: 100%;
    margin-left: 0px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    bottom: -10px;
    color: #FFFFFF;
    display: inline-flex;
    background: linear-gradient(-45deg, #7A7A7A, #222222 60%);
    opacity: 1;
  }

  .text-m2 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: justify;
    width: 100%;
    margin-left: 0px;
    padding-left: 10px;
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    bottom: -10px;
    color: #FFFFFF;
    display: inline-flex;
    background: linear-gradient(-45deg, #7A7A7A, #222222 60%);
    opacity: 1;
  }
 
} 


@media only screen and (min-width: 1024px) and (max-width: 1199px) {


  .servicios {
    background-color: #ececec;
  }

  figure.servicio1 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 100%;
    height: 340px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  figure.servicio2 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 100%;
    height: 340px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 10px;
  }



  figure.servicio3 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 100%;
    height: 340px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 10px;
  }


  /* ================================================================ */

  figure.servicio4 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 100%;
    height: 340px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }


  .text-m1 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: justify;
    width: 100%;
    margin-left: 0px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    bottom: -10px;
    color: #FFFFFF;
    display: inline-flex;
    background: linear-gradient(-45deg, #7A7A7A, #222222 60%);
    opacity: 1;
  }

  .text-m2 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: justify;
    width: 100%;
    margin-left: 0px;
    padding-left: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    bottom: -10px;
    color: #FFFFFF;
    display: inline-flex;
    background: linear-gradient(-45deg, #7A7A7A, #222222 60%);
    opacity: 1;
  }

}

@media (min-width: 2000px) {

  .servicios {
    background-color: #ececec;
  }

  .service-a {
    display: none;
  }

  figure.servicio1 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 1100px;
    height: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-bottom: 80px;
  }

  figure.servicio1 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  figure.servicio1 img {
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    height: 750px;
    width: 1100px;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;

  }

  figure.servicio1 figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 3em;
    width: 100%;
    height: 100%;

  }

  figure.servicio1 figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 100%;
    border-left: 4px solid rgba(255, 255, 255, 0.8);
    content: '';
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }

  figure.servicio1 h2 {

    width: 100%;
    height: 50%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }

  figure.servicio1 p {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 110%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*   margin: 0 0 5px; */
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }


  figure.servicio1 h2 {
    font-family: 'Raleway' sans-serif;
    font-weight: 500;
    font-size: 48px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    -webkit-transform: translate3d(30%, 0%, 0);
    transform: translate3d(30%, 0%, 0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  figure.servicio1 h2 span {
    font-weight: 800;
  }

  figure.servicio1 p {
    font-family: 'Raleway' sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #ffffff;
    padding: 100px;
    text-align: justify;
    -webkit-transform: translate3d(0%, 30%, 0);
    transform: translate3d(0%, 30%, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;

  }

  figure.servicio1 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    color: #ffffff;

  }

  figure.servicio1:hover img {
    opacity: 0.3;
    /* transform: scale(1.2); */
  }

  figure.servicio1:hover figcaption h2 {
    opacity: 1;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 2s;
    transition-delay: 0.5s;
  }

  figure.servicio1:hover figcaption p {
    opacity: 0.9;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.8s;
  }

  figure.servicio1:hover figcaption::before {
    background: rgba(255, 255, 255, 0);
    left: 30px;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }


  /* =============================================================================================== */

  figure.servicio2 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 1100px;
    height: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
    margin-bottom: 60px;
  }

  figure.servicio2 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  figure.servicio2 img {
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    height: 750px;
    width: 1100px;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;

  }

  figure.servicio2 figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 3em;
    width: 100%;
    height: 100%;

  }

  figure.servicio2 figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 100%;
    border-left: 4px solid rgba(255, 255, 255, 0.8);
    content: '';
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }

  figure.servicio2 h2 {

    width: 100%;
    height: 50%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }

  figure.servicio2 p {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 95%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*   margin: 0 0 5px; */
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }


  figure.servicio2 h2 {
    font-family: 'Raleway' sans-serif;
    font-weight: 500;
    font-size: 48px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    -webkit-transform: translate3d(30%, 0%, 0);
    transform: translate3d(30%, 0%, 0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  figure.servicio2 h2 span {
    font-weight: 800;
  }

  figure.servicio2 p {
    font-family: 'Raleway' sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #ffffff;
    padding: 100px;
    text-align: justify;
    -webkit-transform: translate3d(0%, 30%, 0);
    transform: translate3d(0%, 30%, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;

  }

  figure.servicio2 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    color: #ffffff;

  }

  figure.servicio2:hover img {
    opacity: 0.3;
    /* transform: scale(1.2); */
  }

  figure.servicio2:hover figcaption h2 {
    opacity: 1;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 2s;
    transition-delay: 0.5s;
  }

  figure.servicio2:hover figcaption p {
    opacity: 0.9;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.8s;
  }

  figure.servicio2:hover figcaption::before {
    background: rgba(255, 255, 255, 0);
    left: 30px;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  /* ============================================================================ */

  figure.servicio3 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 1100px;
    height: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 70px;
  }

  figure.servicio3 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  figure.servicio3 img {
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    height: 750px;
    width: 1100px;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;

  }

  figure.servicio3 figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 3em;
    width: 100%;
    height: 100%;

  }

  figure.servicio3 figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 100%;
    border-left: 4px solid rgba(255, 255, 255, 0.8);
    content: '';
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }

  figure.servicio3 h2 {

    width: 100%;
    height: 50%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }

  figure.servicio3 p {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 110%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*   margin: 0 0 5px; */
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }


  figure.servicio3 h2 {
    font-family: 'Raleway' sans-serif;
    font-weight: 500;
    font-size: 48px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    -webkit-transform: translate3d(30%, 0%, 0);
    transform: translate3d(30%, 0%, 0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  figure.servicio3 h2 span {
    font-weight: 800;
  }

  figure.servicio3 p {
    font-family: 'Raleway' sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #ffffff;
    padding: 100px;
    text-align: justify;
    -webkit-transform: translate3d(0%, 30%, 0);
    transform: translate3d(0%, 30%, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;

  }

  figure.servicio3 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    color: #ffffff;

  }

  figure.servicio3:hover img {
    opacity: 0.3;
    /* transform: scale(1.2); */
  }

  figure.servicio3:hover figcaption h2 {
    opacity: 1;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 2s;
    transition-delay: 0.5s;
  }

  figure.servicio3:hover figcaption p {
    opacity: 0.9;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.8s;
  }

  figure.servicio3:hover figcaption::before {
    background: rgba(255, 255, 255, 0);
    left: 30px;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }



  /* ================================================================ */

  figure.servicio4 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 1100px;
    height: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 70px;
  }

  figure.servicio4 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  figure.servicio4 img {
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    height: 750px;
    width: 1100px;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;

  }

  figure.servicio4 figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 3em;
    width: 100%;
    height: 100%;

  }

  figure.servicio4 figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 100%;
    border-left: 4px solid rgba(255, 255, 255, 0.8);
    content: '';
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }

  figure.servicio4 h2 {

    width: 100%;
    height: 30%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }

  figure.servicio4 p {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 105%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*   margin: 0 0 5px; */
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;

  }


  figure.servicio4 h2 {
    font-family: 'Raleway' sans-serif;
    font-weight: 500;
    font-size: 48px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    -webkit-transform: translate3d(30%, 0%, 0);
    transform: translate3d(30%, 0%, 0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  figure.servicio4 h2 span {
    font-weight: 800;
  }

  figure.servicio4 p {
    font-family: 'Raleway' sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #ffffff;
    padding: 100px;
    text-align: justify;
    -webkit-transform: translate3d(0%, 30%, 0);
    transform: translate3d(0%, 30%, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;

  }

  figure.servicio4 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    color: #ffffff;

  }

  figure.servicio4:hover img {
    opacity: 0.3;
    /* transform: scale(1.2); */
  }

  figure.servicio4:hover figcaption h2 {
    opacity: 1;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 2s;
    transition-delay: 0.5s;
  }

  figure.servicio4:hover figcaption p {
    opacity: 0.9;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.8s;
  }

  figure.servicio4:hover figcaption::before {
    background: rgba(255, 255, 255, 0);
    left: 30px;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  .text-m1 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: justify;
    width: 100%;
    /* margin-left: -50px; */
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    bottom: -10px;
    color: #FFFFFF;
    display: inline-flex;
    background: linear-gradient(-45deg, #7A7A7A, #222222 60%);
    opacity: 1;
  }

  .text-m2 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: justify;
    width: 100%;
    margin-left: 0px;
    padding-left: 20px;
    padding-top: 27px;
    padding-bottom: 27px;
    display: flex;
    bottom: -10px;
    color: #FFFFFF;
    display: inline-flex;
    background: linear-gradient(-45deg, #7A7A7A, #222222 60%);
    opacity: 1;
  }


}
@media (max-width: 575.98px) {

  .servicios {
    background-color: #ececec;
  }

  figure.servicio1 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 370px;
    height: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /*  */
  /* =============================================================================================== */

  figure.servicio2 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 370px;
    height: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }


  /* ============================================================================ */

  figure.servicio3 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 370px;
    height: 310px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }


  /* ================================================================ */

  figure.servicio4 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 370px;
    height: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }


  .text-m1 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: justify;
    width: 100%;
    margin-left: 0px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    bottom: -10px;
    color: #FFFFFF;
    display: inline-flex;
    background: linear-gradient(-45deg, #7A7A7A, #222222 60%);
    opacity: 1;
  }

  .text-m2 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: justify;
    width: 100%;
    margin-left: 0px;
    padding-left: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    bottom: -10px;
    color: #FFFFFF;
    display: inline-flex;
    background: linear-gradient(-45deg, #7A7A7A, #222222 60%);
    opacity: 1;
  }
}
@media (max-width: 375px) {

  .servicios {
    background-color: #ececec;
  }

  figure.servicio1 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 355px;
    height: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  /*  */
  /* =============================================================================================== */

  figure.servicio2 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 355px;
    height: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 10px;
  }


  /* ============================================================================ */

  figure.servicio3 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 355px;
    height: 310px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 10px;
  }


  /* ================================================================ */

  figure.servicio4 {
    font-family: 'Raleway' sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-70deg, #444444, black 80%);
    text-align: left;
    width: 355px;
    height: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 10px;
  }


  .text-m1 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: justify;
    width: 100%;
    margin-left: 0px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    bottom: -10px;
    color: #FFFFFF;
    display: inline-flex;
    background: linear-gradient(-45deg, #7A7A7A, #222222 60%);
    opacity: 1;
  }

  .text-m2 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: justify;
    width: 100%;
    margin-left: 0px;
    padding-left: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    bottom: -10px;
    color: #FFFFFF;
    display: inline-flex;
    background: linear-gradient(-45deg, #7A7A7A, #222222 60%);
    opacity: 1;
  }
}
/*=========================================================================================================*/
/*MARKETING*/
/* Featurettes
------------------------- */

@media (min-width: 1300px) {
  .outservices2 {
    font-family: 'Raleway', sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    background: linear-gradient(-70deg, #2A2A29 20%, orangered);
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;

    }

    50% {
      background-position: 100% 50%;

    }

    100% {
      background-position: 0% 50%;

    }

  }

  .outservices2 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 30px;
    color: #FFFFFF;
  }

  .marketing {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #2A2A29;
    color: #cccaca;

  }

  .section-title .divider {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .section-title .divider:before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    border: 1px solid #f0f0f0;
    left: 50%;
    margin-left: -15px;
    top: 50%;
    background: #fff;
    margin-top: -15px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .section-title .divider:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #cccaca;
    left: 50%;
    margin-left: -10px;
    top: 50%;
    background: #cccaca;
    margin-top: -10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .marketing1 {
    margin-top: 120px;
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #cccaca;


  }

  .marketing2 {
    font-family: 'Raleway', sans-serif;
    margin-top: 10px;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #707070;

  }

  .marketing3 {
    font-family: 'Raleway', sans-serif;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #cccaca;
    text-align: justify;

  }


  .marketing4 {
    margin-top: 120px;
    font-family: 'Raleway', sans-serif;
    font-size: 45px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #cccaca;


  }

  .marketing5 {
    font-family: 'Raleway', sans-serif;
    margin-top: 15px;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #707070;

  }

  .marketing6 {
    font-family: 'Raleway', sans-serif;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0px;
    color: #cccaca;
    text-align: justify;
    inline-size: 700px;
  }

}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .outservices2 {
    font-family: 'Raleway', sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    background: linear-gradient(-70deg, #2A2A29 20%, orangered);
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;

    }

    50% {
      background-position: 100% 50%;

    }

    100% {
      background-position: 0% 50%;

    }

  }

  .outservices2 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 15px;
    color: #FFFFFF;
  }

  .marketing {
    margin-top: -80px;
    padding-top: 10px;
    padding-bottom: 60px;
    background-color: #FFFFFF;
    color: #cccaca;

  }

  .section-title .divider {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .section-title .divider:before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    border: 1px solid #f0f0f0;
    left: 50%;
    margin-left: -15px;
    top: 50%;
    background: #fff;
    margin-top: -15px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .section-title .divider:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #cccaca;
    left: 50%;
    margin-left: -10px;
    top: 50%;
    background: #cccaca;
    margin-top: -10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .marketing1 {
    margin-top: 10px;
    font-family: 'Raleway', sans-serif;
    font-size:33px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #cccaca;
  }

  .marketing2 {
    font-family: 'Raleway', sans-serif;
    margin-top: 10px;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #707070;

  }

  .marketing3 {
    font-family: 'Raleway', sans-serif;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #cccaca;
    text-align: justify;


  }


  .marketing4 {
    margin-top: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 33px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #cccaca;


  }

  .marketing5 {
    font-family: 'Raleway', sans-serif;
    margin-top: 15px;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #707070;

  }

  .marketing6 {
    font-family: 'Raleway', sans-serif;
    margin-top: 20px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0px;
    color: #cccaca;
    text-align: justify;
    inline-size: 700px;
  }

  .img-m2 {
    height: 450px;
  }
}
@media (max-width: 1440px) {
  .outservices2 {
    font-family: 'Raleway', sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    background: linear-gradient(-70deg, #2A2A29 20%, orangered);
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;

    }

    50% {
      background-position: 100% 50%;

    }

    100% {
      background-position: 0% 50%;

    }

  }

  .outservices2 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 30px;
    color: #FFFFFF;
  }

  .marketing {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #2A2A29;
    color: #cccaca;

  }

  .section-title .divider {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .section-title .divider:before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    border: 1px solid #f0f0f0;
    left: 50%;
    margin-left: -15px;
    top: 50%;
    background: #fff;
    margin-top: -15px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .section-title .divider:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #cccaca;
    left: 50%;
    margin-left: -10px;
    top: 50%;
    background: #cccaca;
    margin-top: -10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
 
  .marketing1 {
    margin-top: 60px;
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #cccaca;


  }

  .marketing2 {
    font-family: 'Raleway', sans-serif;
    margin-top: 10px;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #707070;

  }

  .marketing3 {
    font-family: 'Raleway', sans-serif;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #cccaca;
    text-align: justify;

  }


  .marketing4 {
    margin-top: 60px;
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #cccaca;


  }

  .marketing5 {
    font-family: 'Raleway', sans-serif;
    margin-top: 15px;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #707070;

  }

  .marketing6 {
    font-family: 'Raleway', sans-serif;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0px;
    color: #cccaca;
    text-align: justify;
    inline-size: 420px;
  }

}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .outservices2 {
    font-family: 'Raleway', sans-serif;
    padding-top: 10px;
    padding-bottom: 5px;
    text-align: left;
    background: linear-gradient(-70deg, #2A2A29 20%, orangered);
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;

    }

    50% {
      background-position: 100% 50%;

    }

    100% {
      background-position: 0% 50%;

    }

  }

  .outservices2 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 15px;
    color: #FFFFFF;
  }

  .marketing {
    padding-top: 40px;
    padding-bottom: 60px;
    background-color: #2A2A29;
    color: #cccaca;

  }

  .section-title .divider {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .section-title .divider:before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    border: 1px solid #f0f0f0;
    left: 50%;
    margin-left: -15px;
    top: 50%;
    background: #fff;
    margin-top: -15px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .section-title .divider:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #cccaca;
    left: 50%;
    margin-left: -10px;
    top: 50%;
    background: #cccaca;
    margin-top: -10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .marketing1 {
    margin-top: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #cccaca;


  }

  .marketing2 {
    font-family: 'Raleway', sans-serif;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #707070;

  }

  .marketing3 {
    font-family: 'Raleway', sans-serif;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #cccaca;
    text-align: justify;

  }


  .marketing4 {
    margin-top: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #cccaca;


  }

  .marketing5 {
    font-family: 'Raleway', sans-serif;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #707070;

  }

  .marketing6 {
    font-family: 'Raleway', sans-serif;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0px;
    color: #cccaca;
    text-align: justify;
    inline-size: 350px;
  }

  .img-m2 {
    height: 280px;
  }
}

@media (min-width: 2000px) {
  .outservices2 {
    font-family: 'Raleway', sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    background: linear-gradient(-70deg, #2A2A29 20%, orangered);
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;

    }

    50% {
      background-position: 100% 50%;

    }

    100% {
      background-position: 0% 50%;

    }

  }

  .outservices2 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 30px;
    color: #FFFFFF;
  }

  .marketing {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #2A2A29;
    color: #cccaca;

  }

  .section-title .divider {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .section-title .divider:before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    border: 1px solid #f0f0f0;
    left: 50%;
    margin-left: -15px;
    top: 50%;
    background: #fff;
    margin-top: -15px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .section-title .divider:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #cccaca;
    left: 50%;
    margin-left: -10px;
    top: 50%;
    background: #cccaca;
    margin-top: -10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
 
  .marketing1 {
    margin-top: 180px;
    font-family: 'Raleway', sans-serif;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #cccaca;


  }

  .marketing2 {
    font-family: 'Raleway', sans-serif;
    margin-top: 10px;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #707070;

  }

  .marketing3 {
    font-family: 'Raleway', sans-serif;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #cccaca;
    text-align: justify;

  }


  .marketing4 {
    margin-top: 200px;
    font-family: 'Raleway', sans-serif;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #cccaca;


  }

  .marketing5 {
    font-family: 'Raleway', sans-serif;
    margin-top: 15px;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #707070;

  }

  .marketing6 {
    font-family: 'Raleway', sans-serif;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0px;
    color: #cccaca;
    text-align: justify;
    inline-size: 700px;
  }

}
@media (max-width: 575.98px) {
  .outservices2 {
    font-family: 'Raleway', sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    background: linear-gradient(-70deg, #2A2A29 20%, orangered);
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;

    }

    50% {
      background-position: 100% 50%;

    }

    100% {
      background-position: 0% 50%;

    }

  }

  .outservices2 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 5px;
    color: #FFFFFF;
  }

  .marketing {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #2A2A29;
    color: #cccaca;

  }

  .marketing1 {
    margin-top: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #cccaca;


  }

  .marketing2 {
    font-family: 'Raleway', sans-serif;
    margin-top: 10px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #707070;

  }

  .marketing3 {
    font-family: 'Raleway', sans-serif;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #cccaca;
    text-align: justify;

  }


  .marketing4 {
    margin-top: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #cccaca;


  }

  .marketing5 {
    display: none;
    /* font-family: 'Raleway', sans-serif;
    margin-top: 15px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #707070; */

  }

  .marketing6 {
    font-family: 'Raleway', sans-serif;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #cccaca;
    text-align: justify;

  }
}
@media (max-width: 375px) {
  .outservices2 {
    font-family: 'Raleway', sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    background: linear-gradient(-70deg, #2A2A29 20%, orangered);
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;

    }

    50% {
      background-position: 100% 50%;

    }

    100% {
      background-position: 0% 50%;

    }

  }

  .outservices2 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 5px;
    color: #FFFFFF;
  }

  .marketing {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #2A2A29;
    color: #cccaca;

  }

  .marketing1 {
    margin-top: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #cccaca;


  }

  .marketing2 {
    font-family: 'Raleway', sans-serif;
    margin-top: 10px;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #707070;

  }

  .marketing3 {
    font-family: 'Raleway', sans-serif;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #cccaca;
    text-align: justify;

  }


  .marketing4 {
    margin-top: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #cccaca;


  }

  .marketing5 {
    display: none;
    /* font-family: 'Raleway', sans-serif;
    margin-top: 15px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #707070; */

  }

  .marketing6 {
    font-family: 'Raleway', sans-serif;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #cccaca;
    text-align: justify;

  }
}
/*============================================================================================================*/
/*CONTACTO*/

@media (min-width: 1300px) {

  .outservices3 {
    font-family: 'Raleway', sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    background: linear-gradient(-70deg, #2A2A29 20%, orangered);
  }

  .outservices3 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 30px;
    color: #FFFFFF;
  }


  .contactenos {

    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);

  }

  .contact {
    background-color: #ececec;
    /* background-image: url(/img/Untitled.png); */
    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;


  }

  .title-contact {

    font-family: 'Raleway', sans-serif;
    margin-left: 275px;
    margin-top: 30px;
    font-size: 34px;
    font-weight: 600;
    color: #2A2A29;
  }

  .title-contact2 {
    margin-top: 20px;
    margin-left: 280px;
    margin-bottom: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    color: #2A2A29;
    font-weight: 500;
  }

  .img-contact {
    /*     background: linear-gradient(-70deg, #0A5599 50%, #073763 50%); */
    /* background: linear-gradient(-70deg, #444444, black 80%); */
    background: #2A2A29;
    margin-top: 0px;
   margin-bottom: 50px;
  }


  .formulario img {
    width: 600px;
    height: 415px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }

  .iconos-form h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    color: #cccaca;
    font-weight: 500;

  }

  .iconos-form h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    color: #cccaca;
    font-weight: 500;

  }

  .praf {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #cccaca;
    font-weight: 500;

  }

  .info-icon {
    color: #cccaca;
    font-size: 24px;
    font-weight: 700;
  }


}
@media (max-width: 1440px) {

  .outservices3 {
    font-family: 'Raleway', sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
  /*   clip-path: polygon(20% 0%, 80% 0%, 100% 0, 100% 86%, 80% 100%, 20% 100%, 0 86%, 0 0); */
    background: linear-gradient(-70deg, #2A2A29 20%, orangered);
  }

  .outservices3 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 30px;
    color: #FFFFFF;
  }

  .contact {
    background-color: #ececec;
    /* background-image: url(/img/Untitled.png); */
    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;


  }

  .title-contact {

    font-family: 'Raleway', sans-serif;
    margin-left: 50px;
    margin-top: 30px;
    font-size: 30px;
    font-weight: 600;
    color: #2A2A29;
  }

  .title-contact2 {
    margin-top: 20px;
    margin-left: 50px;
    margin-bottom: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    color: #2A2A29;
    font-weight: 500;
  }

  .img-contact {
    /*     background: linear-gradient(-70deg, #0A5599 50%, #073763 50%); */
    /* background: linear-gradient(-70deg, #444444, black 80%); */
    background: #2A2A29;
    margin-top: 15px;
   
  }
  .formulario img {
    width: 550px;
    height: 415px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }

  .iconos-form h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    color: #cccaca;
    font-weight: 500;

  }

  .iconos-form h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    color: #cccaca;
    font-weight: 500;

  }

  .praf {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #cccaca;
    font-weight: 500;

  }

  .info-icon {
    color: #cccaca;
    font-size: 24px;
    font-weight: 700;
  }


}

@media only screen and (min-width: 1024px) and (max-width: 1299px) {

  .outservices3 {
    font-family: 'Raleway', sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    clip-path: polygon(20% 0%, 80% 0%, 100% 0, 100% 86%, 80% 100%, 20% 100%, 0 86%, 0 0);
    background: linear-gradient(-70deg, #2A2A29 20%, orangered);
  }

  .outservices3 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 30px;
    color: #FFFFFF;
  }


  .contact {
    background-color: #ececec;
    /* background-image: url(/img/Untitled.png); */
    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;


  }

  .title-contact {

    font-family: 'Raleway', sans-serif;
    margin-left: 20px;
    margin-top: 20px;
    font-size: 27px;
    font-weight: 600;
    color: #2A2A29;
  }

  .title-contact2 {
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    color: #2A2A29;
    font-weight: 500;
  }

  .img-contact {
    /*     background: linear-gradient(-70deg, #0A5599 50%, #073763 50%); */
    /* background: linear-gradient(-70deg, #444444, black 80%); */
    background: #2A2A29;
    margin-top: 0px;
    margin-bottom: 40px;
    margin-right: auto;

  }



  .formulario img {
    width: 520px;
    height: 415px;
    margin-top: 2px;
    margin-left: -60px;
    margin-right: auto;
    margin-bottom: 50px;
  }

  .iconos-form h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    color: #cccaca;
    font-weight: 500;

  }

  .iconos-form h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    color: #cccaca;
    font-weight: 500;

  }

  .praf {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #cccaca;
    font-weight: 500;

  }

  .info-icon {
    color: #cccaca;
    font-size: 18px;
    font-weight: 700;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {

  .outservices3 {
    font-family: 'Raleway', sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    background: linear-gradient(-70deg, #2A2A29 20%, orangered);
  }

  .outservices3 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 10px;
    color: #FFFFFF;
  }


  .contact {
    background-color: #ececec;
    /* background-image: url(/img/Untitled.png); */
    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;


  }

  .title-contact {

    font-family: 'Raleway', sans-serif;
    margin-left: 10px;
    margin-top: 30px;
    font-size: 30px;
    font-weight: 600;
    color: #2A2A29;
  }

  .title-contact2 {
    margin-top: 20px;
    margin-left: 10px;
    margin-bottom: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    color: #2A2A29;
    font-weight: 500;
  }

  .img-contact {
    /*     background: linear-gradient(-70deg, #0A5599 50%, #073763 50%); */
    background: linear-gradient(-70deg, #444444, black 80%); 
    background: #2A2A29;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;

  }



  .formulario img {

    width: 100%;
    height: 460px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  
  }

  .iconos-form h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    color: #cccaca;
    font-weight: 500;

  }

  .iconos-form h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    color: #cccaca;
    font-weight: 500;

  }

  .praf {
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    color: #cccaca;
    font-weight: 500;

  }

  .info-icon {
    color: #cccaca;
    font-size: 30px;
    font-weight: 700;
  }
}
@media (min-width: 2000px) {
  .outservices3 {
    font-family: 'Raleway', sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    background: linear-gradient(-70deg, #2A2A29 20%, orangered);
  }

  .outservices3 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 30px;
    color: #FFFFFF;
  }


  .contactenos {

    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
    color: #ffff;
    background: linear-gradient(-70deg, #0B5394 75%, #04213B 80%);

  }

  .contact {
    background-color: #ececec;
    /* background-image: url(/img/Untitled.png); */
    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;


  }

  .title-contact {

    font-family: 'Raleway', sans-serif;
    margin-left: 415px;
    margin-top: 40px;
    font-size: 42px;
    font-weight: 600;
    color: #2A2A29;
  }

  .title-contact2 {
    margin-top: 20px;
    margin-left: 415px;
    margin-bottom: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    color: #2A2A29;
    font-weight: 500;
  }

  .img-contact {
    /*     background: linear-gradient(-70deg, #0A5599 50%, #073763 50%); */
    /* background: linear-gradient(-70deg, #444444, black 80%); */
    background: #2A2A29;
    margin-top: 15px;
    margin-bottom: 70px;
    
  }


  .formulario img {
    width: 700px;
    height: 520px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }

  .iconos-form h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    color: #cccaca;
    font-weight: 500;

  }

  .iconos-form h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    color: #cccaca;
    font-weight: 500;

  }

  .praf {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    color: #cccaca;
    font-weight: 500;

  }

  .info-icon {
    color: #cccaca;
    font-size: 28px;
    font-weight: 700;
  }
}
@media (max-width: 575.98px) {
  .outservices3 {
    font-family: 'Raleway', sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    background: linear-gradient(-70deg, #2A2A29 20%, orangered);
  }

  .outservices3 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 10px;
    color: #FFFFFF;
  }



  .contact {
    background-color: #ececec;
    /* background-image: url(/img/Untitled.png); */
    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;


  }

  .title-contact {

    font-family: 'Raleway', sans-serif;
    margin-left: 0px;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #2A2A29;
  }

  .title-contact2 {
    margin-top: 20px;
    margin-left: 0px;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #2A2A29;
    font-weight: 500;
  }

  .img-contact {
    /*     background: linear-gradient(-70deg, #0A5599 50%, #073763 50%); */
    /* background: linear-gradient(-70deg, #444444, black 80%); */
    background: #2A2A29;
    margin-top: 15px;
    /*  margin-right: 150px; */
  }


  .formulario img {
    width: 370px;
    height: 270px;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .iconos-form h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    color: #cccaca;
    font-weight: 500;

  }

  .iconos-form h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #cccaca;
    font-weight: 500;

  }

  .praf {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #cccaca;
    font-weight: 500;

  }

  .info-icon {
    color: #cccaca;
    font-size: 20px;
    font-weight: 700;
  }


}
@media (max-width: 375px) {
  .outservices3 {
    font-family: 'Raleway', sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    background: linear-gradient(-70deg, #2A2A29 20%, orangered);
  }

  .outservices3 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 10px;
    color: #FFFFFF;
  }



  .contact {
    background-color: #ececec;
    /* background-image: url(/img/Untitled.png); */
    font-family: 'Raleway', sans-serif;
    color: #2F2F2F;


  }

  .title-contact {

    font-family: 'Raleway', sans-serif;
    margin-left: 0px;
    margin-top: 10px;
    font-size: 25px;
    font-weight: 600;
    color: #2A2A29;
  }

  .title-contact2 {
    margin-top: 20px;
    margin-left: 0px;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    color: #2A2A29;
    font-weight: 500;
  }

  .img-contact {
    /*     background: linear-gradient(-70deg, #0A5599 50%, #073763 50%); */
    /* background: linear-gradient(-70deg, #444444, black 80%); */
    background: #2A2A29;
    margin-top: 15px;
    /*  margin-right: 150px; */
  }


  .formulario img {
    width: 350px;
    height: 270px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }

  .iconos-form h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    color: #cccaca;
    font-weight: 500;

  }

  .iconos-form h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    color: #cccaca;
    font-weight: 500;

  }

  .praf {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #cccaca;
    font-weight: 500;

  }

  .info-icon {
    color: #cccaca;
    font-size: 24px;
    font-weight: 700;
  }


}
/*===============================================================================================================*/
/*FOOTER*/
@media (min-width: 1300px) {
  .footer {
    background: #ececec;
  }

  .barra-fot {
    background: linear-gradient(-70deg, orangered, #2A2A29 60%);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .barra-msj {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: #fff;
    overflow: hidden;
    border-right: .15em solid #FFFFFF;
    white-space: nowrap;
    margin: 10px;
    letter-spacing: .20em;

  }

  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes blink-caret {

    from,
    to {
      border-color: transparent
    }

    50% {
      border-color: transparent;
    }
  }

  .active5 {
    animation:
      typing 6.5s steps(100, end),
      blink-caret .75s step-end infinite;

  }

  .fot-icon {

    font-size: 28px;
    padding: 5px;
    margin-left: 20px;
    color: #fff;

  }

  .fot-icon2 {
    padding: 10px;
    font-size: 22px;
    line-height: 55px;
    background: #0df053;
    color: #FFFFFF;
    border-radius: 45px;
    text-align: center;
  }

  .fot-icon2:hover {
    text-decoration: none;
    color: #0df053;
    background: #FFFFFF;


  }

  .fot-1 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2F2F2F;
    inline-size: 280px;
  }

  .fot-2 h6 {
    font-family: 'Raleway', sans-serif;
    margin-left: 100px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: underline;
    color: #2F2F2F;
    padding: 0px;

  }

  .fot-2 p {
    font-family: 'Raleway', sans-serif;
    margin-left: 100px;
    font-size: 15px;
    font-weight: 600;
    color: #2F2F2F;


  }

  .fot-3 p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .cpyr-1 {

    font-family: 'Raleway', sans-serif;
    background-color: #282828;
    color: #FFFFFF;

  }

  .foot-servicios {
    margin-top: 20px;
  }

  .foot-contacto {
    margin-top: 24px;
    margin-left: 48px;
  }

  .icon-contacto {
    margin-left: 50px;
    font-size: 20px;
  }

  .fot-3 {
    margin-top: 20px;
  }

  .fot-4 h6 {
    font-family: 'Raleway', sans-serif;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
    letter-spacing: 1px;
    color: #2F2F2F;
  }

  .fot-4 p {
    font-family: 'Raleway', sans-serif;

    font-size: 15px;
    font-weight: 600;
    color: #2F2F2F;

  }
}

@media (max-width: 1440px) {
  .footer {
    background: #ececec;
  }

  .barra-fot {
    background: linear-gradient(-70deg, orangered, #2A2A29 60%);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .barra-msj {
    font-family: 'Raleway', sans-serif;
    font-size: 21px;
    color: #fff;
    overflow: hidden;
    border-right: .15em solid #FFFFFF;
    white-space: nowrap;
    margin: 10px;
    letter-spacing: .20em;

  }

  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes blink-caret {

    from,
    to {
      border-color: transparent
    }

    50% {
      border-color: transparent;
    }
  }

  .active5 {
    animation:
      typing 6.5s steps(100, end),
      blink-caret .75s step-end infinite;

  }

  .fot-icon {

    font-size: 33px;
    padding: 5px;
    margin-left: 10px;
    color: #fff;

  }

  .fot-icon2 {
    padding: 10px;
    font-size: 22px;
    line-height: 55px;
    background: #0df053;
    color: #FFFFFF;
    border-radius: 45px;
    text-align: center;
  }

  .fot-icon2:hover {
    text-decoration: none;
    color: #0df053;
    background: #FFFFFF;


  }

  .fot-1 {
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #2F2F2F;

  }

  .fot-2 h6 {
    font-family: 'Raleway', sans-serif;
    margin-left: 100px;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: underline;
    color: #2F2F2F;
    padding: 0px;

  }

  .fot-2 p {
    font-family: 'Raleway', sans-serif;
    margin-left: 100px;
    font-size: 17px;
    font-weight: 600;
    color: #2F2F2F;


  }

  .fot-3 p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .cpyr-1 {

    font-family: 'Raleway', sans-serif;
    background-color: #282828;
    color: #FFFFFF;

  }

  .foot-servicios {
    margin-top: 20px;
  }

  .foot-contacto {
    margin-top: 24px;
    margin-left: 48px;
  }

  .icon-contacto {
    margin-left: 50px;
    font-size: 20px;
  }

  .fot-3 {
    margin-top: 20px;
  }

  .fot-4 h6 {
    font-family: 'Raleway', sans-serif;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
    letter-spacing: 1px;
    color: #2F2F2F;
  }

  .fot-4 p {
    font-family: 'Raleway', sans-serif;

    font-size: 17px;
    font-weight: 600;
    color: #2F2F2F;

  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .footer {
    background: #ececec;
  }

  .barra-fot {
    background: linear-gradient(-70deg, orangered, #2A2A29 60%);
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .barra-msj {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #fff;
    overflow: hidden;
    border-right: .15em solid #FFFFFF;
    white-space: nowrap;
    margin: 10px;
    letter-spacing: .20em;

  }

  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes blink-caret {

    from,
    to {
      border-color: transparent
    }

    50% {
      border-color: transparent;
    }
  }

  .active5 {
    animation:
      typing 6.5s steps(100, end),
      blink-caret .75s step-end infinite;

  }

  .fot-icon {

    font-size: 19px;
    padding: 5px;
    margin-left: 10px;
    color: #fff;

  }

  .fot-icon2 {
    padding: 10px;
    font-size: 22px;
    line-height: 55px;
    background: #0df053;
    color: #FFFFFF;
    border-radius: 45px;
    text-align: center;
  }

  .fot-icon2:hover {
    text-decoration: none;
    color: #0df053;
    background: #FFFFFF;


  }

  .fot-1 {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #2F2F2F;

  }

  .fot-2 h6 {
    font-family: 'Raleway', sans-serif;
    margin-left: 40px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: underline;
    color: #2F2F2F;
    padding: 0px;

  }

  .fot-2 p {
    font-family: 'Raleway', sans-serif;
    margin-left: 40px;
    font-size: 15px;
    font-weight: 600;
    color: #2F2F2F;


  }

  .fot-3 p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .cpyr-1 {

    font-family: 'Raleway', sans-serif;
    background-color: #282828;
    color: #FFFFFF;

  }

  .foot-servicios {
    margin-top: 20px;
  }

  .foot-contacto {
    margin-top: 24px;
    margin-left: 48px;
  }

  .icon-contacto {
    margin-left: 50px;
    font-size: 20px;
  }

  .fot-3 {
    margin-top: 20px;
  }

  .fot-4 h6 {
    font-family: 'Raleway', sans-serif;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
    letter-spacing: 1px;
    color: #2F2F2F;
  }

  .fot-4 p {
    font-family: 'Raleway', sans-serif;

    font-size: 15px;
    font-weight: 600;
    color: #2F2F2F;

  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .footer {
    background: #ececec;
  }

  .barra-fot {
    background: linear-gradient(-70deg, orangered, #2A2A29 60%);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .barra-msj {
    font-family: 'Raleway', sans-serif;
    font-size: 21px;
    color: #fff;
    overflow: hidden;
    border-right: .15em solid #FFFFFF;
    white-space: nowrap;
    margin: 10px;
    letter-spacing: .20em;

  }

  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes blink-caret {

    from,
    to {
      border-color: transparent
    }

    50% {
      border-color: transparent;
    }
  }

  .active5 {
    animation:
      typing 6.5s steps(100, end),
      blink-caret .75s step-end infinite;

  }

  .fot-icon {

    font-size: 32px;
    padding: 5px;
    margin-left: 20px;
    color: #fff;

  }

  .fot-icon2 {
    padding: 10px;
    font-size: 22px;
    line-height: 55px;
    background: #0df053;
    color: #FFFFFF;
    border-radius: 45px;
    text-align: center;
  }

  .fot-icon2:hover {
    text-decoration: none;
    color: #0df053;
    background: #FFFFFF;


  }

  .fot-1 {
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #2F2F2F;

  }

  .fot-2 h6 {
    font-family: 'Raleway', sans-serif;
    margin-left: 10px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: underline;
    color: #2F2F2F;
    padding: 0px;

  }

  .fot-2 p {
    font-family: 'Raleway', sans-serif;
    margin-left: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #2F2F2F;


  }

  .fot-3 p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .cpyr-1 {

    font-family: 'Raleway', sans-serif;
    background-color: #282828;
    color: #FFFFFF;

  }

  .foot-servicios {
    margin-top: 20px;
  }

  .foot-contacto {
    margin-top: 24px;
    margin-left: 48px;
  }

  .icon-contacto {
    margin-left: 50px;
    font-size: 20px;
  }

  .fot-3 {
    margin-top: 20px;
  }

  .fot-4 h6 {
    font-family: 'Raleway', sans-serif;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
    letter-spacing: 1px;
    color: #2F2F2F;
  }

  .fot-4 p {
    font-family: 'Raleway', sans-serif;

    font-size: 17px;
    font-weight: 600;
    color: #2F2F2F;

  }
}

@media (min-width: 2000px) {
  .barra-fot {
    background: linear-gradient(-70deg, orangered, #2A2A29 60%);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .barra-msj {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    color: #fff;
    overflow: hidden;
    border-right: .15em solid #FFFFFF;
    white-space: nowrap;
    margin: 10px;
    letter-spacing: .20em;

  }

  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes blink-caret {

    from,
    to {
      border-color: transparent
    }

    50% {
      border-color: transparent;
    }
  }

  .active5 {
    animation:
      typing 6.5s steps(100, end),
      blink-caret .75s step-end infinite;

  }

  .fot-icon {

    font-size: 36px;
    padding: 15px;
    color: #fff;

  }

  .fot-icon2 {
    padding: 10px;
    font-size: 32px;
    line-height: 55px;
    background: #0df053;
    color: #FFFFFF;
    border-radius: 45px;
    text-align: center;
  }

  .fot-icon2:hover {
    text-decoration: none;
    color: #0df053;
    background: #FFFFFF;


  }

  .fot-1 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #2F2F2F;
    inline-size: 280px;
  }

  .fot-2 h6 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: underline;
    color: #2F2F2F;
  }

  .fot-2 p {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .fot-3 p {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2F2F2F;

  }

  .cpyr-1 {

    font-family: 'Raleway', sans-serif;
    background-color: #282828;
    font-size: 18px;
    color: #FFFFFF;

  }

  .foot-servicios {
    margin-top: 20px;
  }

  .foot-contacto {
    margin-top: 20px;
    margin-left: 20px;
  }

  .icon-contacto {
    margin-left: 20px;
    font-size: 24px;
  }

  .fot-3 {
    margin-top: 20px;
  }

  .fot-4 h6 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2F2F2F;
  }

  .fot-4 p {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2F2F2F;

  }

}

@media (max-width: 575.98px) {
  .footer {
    background: #ececec;
  }

  .barra-msj {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: #fff;
    overflow: hidden;
    border-right: .15em solid #FFFFFF;
    white-space: nowrap;
    letter-spacing: .15em;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: 2px;

  }

  .barra-fot {
    background: linear-gradient(-70deg, orangered, #2A2A29 60%);
    padding-top: 2px;
    padding-bottom: 2px;
  }

  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes blink-caret {

    from,
    to {
      border-color: transparent
    }

    50% {
      border-color: transparent;
    }
  }

  .active5 {
    animation:
      typing 5.5s steps(100, end),
      blink-caret .75s step-end infinite;

  }

  .icon-logo {
    padding-bottom: 12px;

  }

  .fot-icon {
    font-size: 22px;
    color: #fff;
    margin-left: 22px;

  }

  .fot-icon2 {
    padding: 5px;
    font-size: 20px;
    line-height: 55px;
    background: #0df053;
    color: #FFFFFF;
    border-radius: 45px;
    text-align: center;
  }

  .fot-icon2:hover {
    text-decoration: none;
    color: #0df053;
    background: #FFFFFF;


  }

  .logo2 {

    width: 150px;
    height: 75px;

    margin-left: auto;
    margin-right: auto;
  }

  .fot-1 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2F2F2F;
    text-align: justify;

  }

  .fot-2 h6 {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2F2F2F;
    margin-left: 10px;
  
  }

  .fot-2 p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2F2F2F;
    margin-left: 10px;
  }

  .cpyr-1 {

    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    background-color: #282828;
    color: #FFFFFF;

  }

  

  .fot-4 h6 {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2F2F2F;
    margin-left: 10px;
  }

  .fot-4 p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2F2F2F;
    margin-left: -40px;
  }
}
@media (max-width: 375px) {
  .footer {
    background: #ececec;
  }

  .barra-msj {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    color: #fff;
    overflow: hidden;
    border-right: .15em solid #FFFFFF;
    white-space: nowrap;
    letter-spacing: .15em;
    padding-top: 5px;
    padding-bottom: 5px;

  }

  .barra-fot {
    background: linear-gradient(-70deg, orangered, #2A2A29 60%);
    padding-top: 2px;
    padding-bottom: 2px;
  }

  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes blink-caret {

    from,
    to {
      border-color: transparent
    }

    50% {
      border-color: transparent;
    }
  }

  .active5 {
    animation:
      typing 5.5s steps(100, end),
      blink-caret .75s step-end infinite;

  }

  .icon-logo {
    padding-bottom: 10px;

  }

  .fot-icon {
    font-size: 20px;
    color: #fff;
    margin-left: 15px;

  }

  .fot-icon2 {
    padding: 5px;
    font-size: 20px;
    line-height: 55px;
    background: #0df053;
    color: #FFFFFF;
    border-radius: 45px;
    text-align: center;
  }

  .fot-icon2:hover {
    text-decoration: none;
    color: #0df053;
    background: #FFFFFF;


  }

  .logo2 {

    width: 150px;
    height: 75px;

    margin-left: auto;
    margin-right: auto;
  }

  .fot-1 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2F2F2F;
    text-align: justify;

  }

  .fot-2 h6 {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2F2F2F;
    margin-left: 10px;
  
  }

  .fot-2 p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2F2F2F;
    margin-left: 10px;
  }

  .cpyr-1 {

    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    background-color: #282828;
    color: #FFFFFF;

  }

  

  .fot-4 h6 {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2F2F2F;
    margin-left: 10px;
  }

  .fot-4 p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2F2F2F;
    margin-left: -40px;
  }
}



/*============================================================*/