/*-------------------------------------------------------
[Table of contents]

1. Header
	+ logo
	+ navigation

2. Content
	+ feature sections
	+ page title
	+ parallax backgrounds
	+ video backgrounds

3. Typography
	+ lists
	+ buttons
	+ styled boxes
	+ dropcaps
	+ highlight colors
	+ tables
	+ pricing tables
	+ framed boxes
	+ pagination

4. Footer
	+ copyrights
	+ google map

--------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  background: #f5f5f5;
}

header {
  height: 100px;
}

.container__header {
  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding: 40px;
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 180px;
}

.menu nav ul {
  display: flex;
}

.menu nav ul li {
  list-style: none;
  padding: 0px 20px;
}

.menu nav ul li a {
  font-size: 16px;
  text-decoration: none;
  color: #000;
  transition: opacity 300ms;
}

.menu nav ul li a:hover {
  opacity: 0.6;
}

.btn__header-register,
.btn__register-cover {
  padding: 14px 50px;
  border: none;
  background: #000;
  color: white;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: background, color, 300ms;
}

.btn__header-register:hover,
.btn__register-cover:hover {
  background: #69f1a1;
  color: #000;
}

#icon_menu {
  display: none;
}

/*PORTADA - COVER*/

main {
  max-width: 1200px;
  height: calc(100vh + 800px);
  padding: 40px;
  margin: auto;
}

.cover {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.text__information-cover {
  width: 50%;
  margin-left: 50px;
  margin-top: 50px;
}

.text__information-cover h2 {
  font-weight: 900;
  font-size: 50px;
  background: linear-gradient(90deg, #007cf0, #00dfd8);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.text__information-cover p {
  text-align: justify;
  font-size: 18px;
  margin-top: 40px;
}

.buttons__cover {
  display: flex;
  margin-top: 40px;
}

.btn__readMore-cover {
  padding: 14px 40px;
  border: none;
  color: black;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  margin-left: 10px;
  transition: background 300ms;
}

.btn__readMore-cover:hover {
  background: #e8e8e8;
}

.media__cover {
  width: 50%;
}

.media__cover video {
  width: 100%;
  margin-top: -40px;
}

/*BANNER*/

.container__banner {
  margin-top: 80px;
}

.banner {
  height: 300px;
  display: flex;
  align-items: center;
  background: #121214;
  position: relative;
}

.banner__icon-heart {
  width: 35%;
  height: 100%;
}

#icon_heart {
  width: 400px;
  margin-top: -20px;
  position: relative;
  filter: drop-shadow(-40px 0px 30px rgba(0, 0, 0, 0.5));
}

.banner__text {
  width: 60%;
  position: relative;
  padding: 40px;
}

.banner__text h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
}

.banner__text a {
  text-decoration: none;
  display: block;
  margin-top: 20px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  transition: color 300ms;
}

.banner__text a:hover {
  color: #69f1a1;
}

.banner__icon-fire {
  height: 100%;
  position: absolute;
  right: 10px;
  overflow: hidden;
}

#icon_fire {
  width: 300px;
  position: relative;
  margin-top: -100px;
  opacity: 0.6;
}

.experience_column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.botton_init {
  display: flex;
}

.botton_banner {
  display: flex;
}

@media (max-width: 1024px) {
  .container__header,
  main {
    padding: 20px;
  }

  #icon_menu {
    display: block;
    cursor: pointer;
    font-size: 24px;
  }

  .header__register {
    display: none;
  }

  .menu {
    height: 0px;
    position: absolute;
    right: 20px;
    top: 70px;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0px 0px 30px -20px rgba(0, 0, 0, 0.5);
    transition: all 300ms;
  }

  .menu nav ul {
    padding: 20px 0px;
    flex-direction: column;
    background: #fff;
  }

  .menu nav ul li {
    padding: 10px 40px;
  }

  .mostrar_menu {
    /*CLASE MANIPULADA POR JS*/
    height: 235px;
  }

  .text__information-cover h1 {
    font-size: 40px;
  }

  .text__information-cover p {
    font-size: 16px;
  }

  .banner__text h2 {
    font-size: 22px;
  }

  #icon_heart {
    left: -60px;
  }

  .banner__icon-fire {
    right: -20px;
  }
  .botton_init {
    display: flex;
    justify-content: center;
    align-items: center;
  }

}

@media (max-width: 920px) {
  .text__information-cover {
    width: 100%;
    margin-right: 50px;
    padding: 50px;
  }

  .media__cover {
    display: none;
  }

  .banner {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
  }

  #icon_fire {
    display: none;
  }

  #icon_heart {
    left: 0;
    width: 320px;
  }

  .banner__text {
    width: 100%;
    margin-top: -50px;
  }

  .skill-top {
    margin: 60px 0 20px 0;
  }

  .skill-botton {
    margin: 60px 0 20px 0;
  }
  
  .experience_column {
    display:block
  }
  .botton_init {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .botton_banner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.title h2 {
  background: linear-gradient(90deg, #007cf0, #00dfd8);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin: 0px;
  font-weight: 600;
  text-transform: none;
  font-size: 35px;
}

.specialty_title {
  margin-top: 80px;
  text-align: center;
  font-weight: 700;
  background: linear-gradient(90deg, #007cf0, #00dfd8);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.contact_title {
  text-align: center;
  font-weight: 700;
  background: linear-gradient(90deg, #007cf0, #00dfd8);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.support_title {
  text-align: center;
  font-weight: 600;
  color: white;
  margin-top: 80px;
  text-shadow: 2px 5px 12px #000;
}

.services_title {
  text-align: center;
  font-weight: 600;
  color: white;
  text-shadow: 2px 5px 10px #1470d8;
}


.client_title {
  text-align: center;
  font-weight: 600;
  background: linear-gradient(90deg, #007cf0, #00dfd8);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.grafica_cifras {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text_services {
  margin-left: 20px;
}


/*------------------*/
/*	SHAPE DIVIDER
/*----------------------*/

.custom-shape-divider-bottom-1708780297 {
  margin-top: 50px;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1708780297 svg {
  position: relative;
  display: block;
  width: calc(153% + 1.3px);
  height: 127px;
}

.custom-shape-divider-bottom-1708780297 .shape-fill {
  fill: #ffffff;
}

/*----------------------------------------------------*/

.custom-shape-divider-bottom-1708779969 {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1708779969 svg {
  position: relative;
  display: block;
  width: calc(190% + 1.3px);
  height: 104px;
}

.custom-shape-divider-bottom-1708779969 .shape-fill {
  fill: #ffffff;
}

/*----------------------------------------------------*/

.custom-shape-divider-top-1708817415 {
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1708817415 svg {
  position: relative;
  display: block;
  width: calc(192% + 1.3px);
  height: 150px;
}

.custom-shape-divider-top-1708817415 .shape-fill {
  fill: #ffffff;
}

/*----------------------------------------------------*/

.custom-shape-divider-top-1708817816 {
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1708817816 svg {
  position: relative;
  display: block;
  width: calc(138% + 1.3px);
  height: 150px;
}

.custom-shape-divider-top-1708817816 .shape-fill {
  fill: #ffffff;
}

/*------------------*/
/*	HEADER AREA CLASSES
/*------------------------------------------------------*/

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-thumb {
  background-image: linear-gradient(135deg, #007cf0 0%, #00dfd8 100%);
  border-radius: 5px;
}

/* Logo */
#trueHeader #logo {
  float: left;
  display: block;
  width: 100%;
  min-height: 45px;
  margin-top: 50px;
  position: relative;
  text-indent: -999em;
  background: url(../images/logo.png) no-repeat left bottom;
}

/* header area adinationals */
.logo {
  float: left;
}
.menu_main {
  float: right;
  width: 90%;
  z-index: 9999;
  position: relative;
}

.headerLine {
  background: #13afeb;
}

/*------------------*/
/*	SITE STRUCTURE
/*------------------------------------------------------*/

.site_wrapper {
  width: 100%;
  margin: 0 auto 0 auto;
}
.container_full {
  width: 100%;
  float: left;
  margin: auto auto auto auto;
}

.container {
  width: 1170px;
  margin: auto auto auto auto;
}

.content_fullwidth {
  float: left;
  width: 100%;
  padding: 50px 0px 0px 0px;
}
.content_left {
  float: left;
  width: 71%;
  padding: 50px 0px 0px 0px;
}
.right_sidebar {
  float: right;
  width: 25%;
  padding: 50px 0px 0px 0px;
}
.left_sidebar {
  float: left;
  width: 25%;
  padding: 50px 0px 0px 0px;
}
.content_right {
  float: right;
  width: 71%;
  padding: 50px 0px 0px 0px;
}

/* columns */
.one_half,
.one_third,
.one_fourth,
.two_third,
.three_fourth,
.one_fifth {
  position: relative;
  margin-right: 4%;
  float: left;
}
.one_full {
  width: 100%;
}
.one_half {
  width: 48%;
  text-align: justify;
}
.one_experience {
  width: 100%;
  text-align: justify;
}

.initial_text {
  margin-left: 30px;
  margin-right: 30px;
  text-align: justify;
}

.one_third_info {
  width: 47.65%;
}
.one_fourth {
  width: 22%;
}
.one_fifth {
  width: 16.8%;
}
.two_third {
  width: 65.35%;
}

.two_fourth {
  width: 15%;
}
.three_fourth {
  width: 74%;
}

.last {
  margin-right: 0 !important;
  clear: right;
}
.last p {
  text-align: justify;
}

/*-------------- CARTAS VERTICALES ----------------*/

.container__cards {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 60px 0 100px 0;
}

.card {
  width: 350px;
  margin: 10px;
  padding: 20px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 300ms;
}

.card:hover {
  transform: translateY(-10px);
}

.card:hover .cover__card img {
  transform: scale(1.1);
}

.cover__card {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
}

.cover__card img {
  width: 100%;
  transition: all 300ms;
}

.card h2 {
  font-size: 25px;
  font-weight: 400;
  margin-top: 25px;
  color: #fff;
}

.card h6 {
  font-weight: 400;
  margin: 30px 0 30px 0;
  color: #fff;
  justify-content: center;
}

.card p {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.5px;
}

.card hr {
  margin-top: 30px;
  border: none;
  height: 0.2px;
  background: #41414138;
}

.footer__card {
  margin-top: 10px;
  display: flex;
  color: #fff;
  justify-content: space-between;
}

.footer__card h3 {
  font-size: 15px;
  font-weight: 500;
}

@media screen and (max-width: 1200px) {
  .container__cards {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 480px) {
  .cover__card {
    width: 100%;
    height: 150px;
    border-radius: 14px;
    overflow: hidden;
  }
}

/*------------------*/
/*  PAGE SECTIONS
/*------------------------------------------------------*/

/* about section */
.section1 {
  float: left;
  width: 100%;
  padding: 90px 0px 90px 0px;
}
.section1 .one_fourth {
  text-align: center;
  background: url(../images/v-line.png) no-repeat right bottom;
  padding-right: 1.5%;
  padding-left: 1.5%;
  margin: 0;
  padding-bottom: 10px;
}
.section1 .one_fourth.last {
  background: none;
  margin: 0;
}

.section1 .circle {
  margin: 0 auto;
  width: 160px;
  height: 160px;
  border: 5px solid #f3f3f3;
  border-radius: 100%;
  text-align: center;
  margin-bottom: 40px;
  color: #1da4dd;
  font-size: 57px;
  line-height: 148px;
  vertical-align: middle;
  -webkit-transform: scale(1, 1);
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 250ms;
  -moz-transform: scale(1, 1);
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 250ms;
}
.section1 .circle:hover {
  -webkit-transform: scale(1.05, 1.07);
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 250ms;
  -moz-transform: scale(1.05, 1.07);
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 250ms;
  background-color: #1da4dd;
  color: #fff;
}
.section1 strong {
  color: #272727;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}

.funfacts {
  float: left;
  width: 100%;
  padding: 80px 0px 70px 0px;
  background-color: #f3f3f3;
  text-align: center;
}
.funfacts span {
  font-family: "Montserrat", sans-serif;
  font-size: 65px;
  color: #272727;
}
.funfacts h4 {
  font-size: 21px;
  color: #727272;
  text-transform: uppercase;
  margin: 13px 0px 0px 0px;
}

/* portfolio section */
.section2 {
  float: left;
  width: 100%;
}

/* services section */
.section3 {
  float: left;
  width: 100%;
  margin: 0;
  --x: calc(var(--posX, 0) * 1px);
  --y: calc(var(--posY, 0) * 1px);
  background: #272727;

}

.section3 .one_fourth {
  text-align: center;
  color: #fff;
  padding: 30px 0px;
  border-radius: 2px;
}

.section3 .one_title {
  font-size: 22px;
  color: #404040;
  font-style: inherit;
  font-family: "Montserrat", sans-serif;
}

.section3 .one_sub_title {
  font-size: 18px;
  margin-left: 20px;
  color: #404040;
}

.section3 .two_sub_title {
  font-size: 15px;
  margin-left: 50px;
  color: #404040;
}

.section3 .one_fourth:hover,
.section3 .one_fourth.active {
  background-color: #1da4dd;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.section3 .one_fourth:hover strong,
.section3 .one_fourth.active strong {
  color: #fff;
}
.section3 strong {
  color: #1da4dd;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 13px;
  margin-top: 20px;
}

.peosec {
  float: left;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 25px;
  background: url(../images/h-line.png) no-repeat left bottom;
}
.peosec img {
  float: left;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  margin-right: 20px;
}
.peosec strong {
  float: left;
  color: #1da4dd;
  font-size: 16px;
  font-weight: normal;
  margin-top: 13px;
}
.peosec strong i {
  font-size: 12px;
  color: #999;
  font-style: normal;
  display: block;
}

/*----------- Section Proyects ------------*/

.section9 {
  float: left;
  width: 100%;
  margin: 0;
  --x: calc(var(--posX, 0) * 1px);
  --y: calc(var(--posY, 0) * 1px);
  background-image: 
    linear-gradient(115deg, rgb(211 255 215), rgb(0, 0, 0)), 
    radial-gradient( 90% 100% at calc( 50% + var(--x)) calc( 0% + var(--y)), rgb(88, 168, 243), rgb(7, 25, 70)), 
    radial-gradient(100% 100% at calc( 80% - var(--x)) calc( 0% - var(--y)), rgb(66, 138, 221), rgb(0, 13, 61)), 
    radial-gradient(150% 210% at calc(100% + var(--x)) calc( 0% + var(--y)), rgb(56, 116, 184), rgb(0, 110, 255)), 
    radial-gradient(100% 100% at calc(100% - var(--x)) calc(30% - var(--y)), rgb(48, 135, 216), rgb(000 200 255)), 
    linear-gradient(60deg, rgb(149, 199, 251), rgb(41, 105, 231));
  background-blend-mode: overlay, overlay, difference, difference, difference, normal;
  /* background-image: linear-gradient(
    135deg,
    rgb(99, 168, 247) 0%,
    rgb(33, 84, 212) 100%
  ); */
}
.section9 .one_fourth {
  text-align: center;
  color: #fff;
  padding: 30px 0px;
  border-radius: 2px;
}

.section9 .one_title {
  font-size: 22px;
  color: #404040;
  font-style: inherit;
  font-family: "Montserrat", sans-serif;
}

.section9 .one_sub_title {
  font-size: 18px;
  margin-left: 20px;
  color: #404040;
}

.section9 .two_sub_title {
  font-size: 15px;
  margin-left: 50px;
  color: #404040;
}

.section9 .one_fourth:hover,
.section9 .one_fourth.active {
  background-color: #1da4dd;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.section9 .one_fourth:hover strong,
.section9 .one_fourth.active strong {
  color: #fff;
}
.section9 strong {
  color: #1da4dd;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 13px;
  margin-top: 20px;
}



/* pricing section */
.section4 {
  float: left;
  width: 100%;
  padding: 90px 0px 100px 0px;
  background-color: transparent;
  background: #ffffff;
}

.section4 h5 b {
  color: #376092;
  font-size: 22px;
}

.sub-title {
  padding-left: 30px;
}

.section4 .one_sub_title {
  font-size: 18px;
  margin-left: 100px;
  color: #404040;
}

.section4 .packagesinfo {
  margin-top: 90px;
}
.section4 .packagesinfo ul {
  float: left;
  width: 107%;
  padding: 0px;
  margin: 0px;
}
.section4 .packagesinfo li {
  width: 100%;
  padding: 10px 0px;
  margin: 0px;
  text-align: center;
  background-color: #f3f3f3;
  border-bottom: 2px solid #eee;
}
.section4 .packagesinfo li.title {
  padding: 25px 0px;
  background-color: #f3f3f3;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.section4 .packagesinfo li.title h4 {
  font-weight: 300;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
.section4 .packagesinfo li.title h2 {
  font-weight: bold;
  margin-bottom: 0px;
  font-family: "Montserrat", sans-serif;
  margin: 0px;
  background: none;
}
.section4 .packagesinfo li.title h2 em {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
}
.section4 .packagesinfo li.planbut {
  padding: 35px 0px;
  background-color: #f3f3f3;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.section4 .packagesinfo li.planbut a {
  color: #fff;
  font-size: 16px;
  padding: 12px 28px;
  background-color: #b1b1b1;
  border-radius: 4px;
}
.section4 .packagesinfo li.planbut a:hover {
  color: #fff;
  background-color: #1da4dd;
}
.section4 .packagesinfo ul.active li.planbut a {
  color: #fff;
  background-color: #1da4dd;
}
.section4 .packagesinfo ul.active li.title h4 {
  color: #1da4dd;
}
.section4 .packagesinfo ul.active li.title h2 {
  color: #1da4dd;
}
.section4 .packagesinfo ul.active li.title {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.section4 .packagesinfo ul.active li.mostp {
  color: #fff;
  padding: 5px 0px;
  background-color: #1da4dd;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.section4 .packagesinfo ul.active {
  margin-top: -34px;
}
.section4 .packagesinfo ul:hover {
  box-shadow: 0px 0px 5px #bbb;
}
/* pricing section */
.section5 {
  float: left;
  width: 100%;
  background-image: linear-gradient(135deg, rgb(0 200 255) 0%, rgb(0, 4, 255) 100%);
}
  
.section5 h5 b {
  color: #376092;
  font-size: 22px;
}

.sub-title {
  padding-left: 30px;
}

.section5 .one_sub_title {
  font-size: 18px;
  margin-left: 100px;
  color: #404040;
}

.section5 .packagesinfo {
  margin-top: 90px;
}
.section5 .packagesinfo ul {
  float: left;
  width: 107%;
  padding: 0px;
  margin: 0px;
}
.section5 .packagesinfo li {
  width: 100%;
  padding: 10px 0px;
  margin: 0px;
  text-align: center;
  background-color: #f3f3f3;
  border-bottom: 2px solid #eee;
}
.section5 .packagesinfo li.title {
  padding: 25px 0px;
  background-color: #f3f3f3;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.section5 .packagesinfo li.title h4 {
  font-weight: 300;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
.section5 .packagesinfo li.title h2 {
  font-weight: bold;
  margin-bottom: 0px;
  font-family: "Montserrat", sans-serif;
  margin: 0px;
  background: none;
}
.section5 .packagesinfo li.title h2 em {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
}
.section5 .packagesinfo li.planbut {
  padding: 35px 0px;
  background-color: #f3f3f3;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.section5 .packagesinfo li.planbut a {
  color: #fff;
  font-size: 16px;
  padding: 12px 28px;
  background-color: #b1b1b1;
  border-radius: 4px;
}
.section5 .packagesinfo li.planbut a:hover {
  color: #fff;
  background-color: #1da4dd;
}
.section5 .packagesinfo ul.active li.planbut a {
  color: #fff;
  background-color: #1da4dd;
}
.section5 .packagesinfo ul.active li.title h4 {
  color: #1da4dd;
}
.section5 .packagesinfo ul.active li.title h2 {
  color: #1da4dd;
}
.section5 .packagesinfo ul.active li.title {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.section5 .packagesinfo ul.active li.mostp {
  color: #fff;
  padding: 5px 0px;
  background-color: #1da4dd;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.section5 .packagesinfo ul.active {
  margin-top: -34px;
}
.section5 .packagesinfo ul:hover {
  box-shadow: 0px 0px 5px #bbb;
}

/* parallax 1 */
.parallax_sec1 {
  float: left;
  width: 100%;
  text-align: center;
  padding: 100px 0px 100px 0px;
  background: #272727 url("../images/para-bg3.jpg");
  background-attachment: fixed;
  background-origin: initial;
  background-clip: initial;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-position: center;
}
.parallax_sec1 h1 {
  color: #fff;
  line-height: 62px;
  font-weight: 200;
  padding: 0px;
}
.parallax_sec1 h1 strong {
  font-weight: 400;
}
.parallax_sec1 h5 {
  color: #fff;
}
.parallax_sec1 a {
  color: #fff;
  font-size: 16px;
  border: 1px solid #fff;
  padding: 13px 30px;
  text-transform: uppercase;
  border-radius: 4px;
}
.parallax_sec1 a:hover {
  color: #272727;
  background-color: #fff;
}

/* parallax 2 */
.parallax_sec2 {
  float: left;
  width: 100%;
  text-align: center;
  padding: 100px 0px 130px 0px;
  background: url("../images/para-bg3.jpg");
  background-attachment: fixed;
  background-origin: initial;
  background-clip: initial;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-position: center;
}

/* parallax 3 */
.parallax_sec3 {
  float: left;
  width: 100%;
  text-align: center;
  padding: 100px 0px 140px 0px;
  background: #eee url("../images/para-bg4.jpg");
  background-attachment: fixed;
  background-origin: initial;
  background-clip: initial;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-position: center;
}
.parallax_sec3 i {
  width: 106px;
  height: 106px;
  background: #1da4dd url(../images/site-img5.png) no-repeat center top;
  color: #fff;
  font-size: 35px;
  line-height: 106px;
  vertical-align: middle;
  border-radius: 100%;
}
.parallax_sec3 a.morelink {
  color: #272727;
  font-weight: 600;
  background-color: #fff;
  padding: 4px 13px 0px 13px;
  text-transform: uppercase;
}

/* blogs section */
.section5 {
  float: left;
  width: 100%;
}
.section5 .one_third {
  background-color: #f3f3f3;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.section5 .one_third:hover {
  background-color: #272727;
}
.section5 .one_third:hover h4 {
  color: #fff;
}
.section5 .one_third img {
  float: left;
}
.section5 .one_third .cont {
  float: left;
  padding: 30px 0px 40px 30px;
}
.section5 .one_third a {
  color: #727272;
  font-size: 12px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 5px 13px;
}
.section5 .one_third a i {
  color: #999;
  margin-right: 4px;
}
.section5 .one_third a:hover {
  background: none;
}

.punchtext {
  float: left;
  width: 100%;
  padding: 60px 0px 50px 0px;
}
.punchtext h3 {
  float: left;
  margin-top: 10px;
  color: #1da4dd;
}
.punchtext a {
  float: right;
  color: #fff;
  font-size: 16px;
  padding: 16px 40px;
  background-color: #1da4dd;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.punchtext a:hover {
  background-color: #454545;
}

/* contact section */
.section6 {
  float: left;
  width: 100%;
  padding: 90px 0px 65px 0px;
  background: white;
}
.section6 .container .content_fullwidth .lessmar .title h1 {
  margin: 0px;
  font-weight: 600;
  color: #13afeb;
  text-transform: none;
  font-size: 35px;
}
.cforms {
  float: left;
  width: 100%;
  margin-top: -20px;
}
.addressinfo {
  font-size: 16px;
  line-height: 27px;
}
.addressinfo a {
  color: #999;
}
.addressinfo a:hover {
  color: #fff;
}
.googglemap {
  float: left;
}
.google-map {
  width: 99%;
}
a.glink {
  font-size: 12px;
  color: #727272;
}
a.glink:hover {
  color: #999;
}

/* copyrights section */
.copyrights {
  float: left;
  width: 100%;
  text-align: center;
  padding: 62px 0px 50px 0px;
  background-color: #f9f9f9;
}
.copyrights ul {
  width: 27%;
  padding: 0px;
  margin: 0 auto;
}
.copyrights li {
  float: left;
  padding: 0px;
  margin: 0px 7px;
}
.copyrights li a {
  float: left;
  color: #4c4c4c;
  font-size: 16px;
  width: 46px;
  height: 46px;
  vertical-align: middle;
  line-height: 46px;
  background-color: #f3f3f3;
  border: 1px solid #d9d9d9;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.copyrights li a:hover {
  background-color: #d9d9d9;
}

/* scroll up */
.scrollup {
  width: 40px;
  height: 40px;
  opacity: 1;
  position: fixed;
  bottom: 80px;
  right: 28px;
  display: none;
  text-indent: -9999px;
  background: url(../images/scroll-top-arrow.png) no-repeat left top;
  z-index: 999;
}

/*------------------*/
/* FOOTER STYLES
/*------------------------------------------------------*/
/* Address */
.footer1 {
  float: left;
  width: 100%;
  padding: 18px 0px 40px 0px;
  background: #262626 url(../images/footer-graph2.jpg) no-repeat center bottom;
}
.footer1 h4 {
  color: #fff;
  margin-bottom: 25px;
}
.footer1 h4.lmb {
  color: #fff;
  margin-bottom: 20px;
}

.footer1.three {
  float: left;
  width: 100%;
  padding: 57px 0px;
  background-color: #eee;
}
.footer1.three h4 {
  color: #272727;
  margin-bottom: 30px;
}
.footer1.three h4.lmb {
  color: #272727;
  margin-bottom: 20px;
}

.footer1.bggraph {
  background: #181818 url(../images/footer-bg.jpg) no-repeat center top;
}

.footer1 a {
  color: #646464;
}

ul.faddress {
  float: left;
  width: 100%;
  padding: 0px;
  margin: 0px;
}
.faddress li {
  padding: 3px 0px;
  margin: 0px;
}
.faddress li a {
  color: #727272;
}
.faddress li a:hover {
  color: #fff;
}

/* Tags */
.ftags {
  float: left;
  width: 100%;
}
.ftags ul {
  float: left;
  width: 100%;
  padding: 0px;
  margin: 0px;
}
.ftags li {
  float: left;
  padding: 0px;
  margin: 0px 8px 14px 0px;
}
.ftags li a {
  color: #727272;
  padding: 5px 10px;
  background-color: #303030;
}
.ftags li a:hover {
  color: #fff;
  background-color: #484848;
}

.ftags.three li a {
  color: #fff;
  padding: 5px 10px;
  background-color: #999;
}
.ftags.three li a:hover {
  color: #fff;
  background-color: #484848;
}

/* Tweets */
.twitter_feed {
  float: left;
  padding: 0px;
  margin: 0px;
  width: 100%;
}
.twitter_feed .left {
  float: left;
  padding: 0px;
  margin: -7px 0px 0px 0px;
  width: 20px;
}
.twitter_feed .right {
  float: right;
  padding: 0px;
  margin: -10px 0px 0px 0px;
  width: 89%;
}
.twitter_feed a {
  color: #999;
}
.twitter_feed a:hover {
  color: #fff;
}
.twitter_feed a.small {
  font-size: 9px;
  color: #727272;
}
.twitter_feed a.small:hover {
  font-size: 9px;
  color: #999;
}

.twitter_feeds_two {
  float: left;
}
.twitter_feeds_two .left {
  float: left;
  width: 100px;
  height: 133px;
  padding-top: 25px;
  margin-right: 20px;
  color: #fff;
  text-align: center;
}
.twitter_feeds_two i {
  color: #fff;
  font-size: 40px;
  margin-bottom: 5px;
}
.twitter_feeds_two .right {
  padding-top: 30px;
}
.twitter_feeds_two .right em {
  display: block;
  font-size: 12px;
  font-style: normal;
  color: #585858;
}
.twitter_feeds_two .right em a {
  color: #585858;
}
.twitter_feeds_two .right em a:hover {
  color: #999;
}

/* footer graph @new */
.footer_graph {
  float: left;
  width: 100%;
  height: 61px;
  background: url(../images/footer-graph.png) no-repeat 120px top;
}

/* footer social links */
ul.footer_social_links {
  float: right;
  padding: 0px;
  margin: 0px 0px 0px 0px;
}
.footer_social_links li {
  float: left;
  padding: 0px;
  margin: 0px 0px 0px 5px;
  width: 24px;
  height: 24px;
  text-align: center;
  border-radius: 24px;
  line-height: 22px;
  vertical-align: middle;
  background-color: #252525;
  color: #999;
}
.footer_social_links li:hover {
  background-color: #454545;
}
.footer_social_links li i {
  color: #999;
}

.footer_social_links.four li {
  margin: 0px 0px 0px 13px;
  width: auto;
  height: auto;
  background: none;
}
.footer_social_links.four li:hover {
  background: none;
}

.footer_social_links.three li {
  background-color: #d3d3d3;
}
.footer_social_links.three li:hover {
  background-color: #999;
}
.footer_social_links.three li i {
  color: #fff;
}

.contactform_footer {
  float: left;
}
.contactform_footer h3 {
  margin-bottom: 10px;
}
.contactform_footer .sky-form .button {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  width: 90.5%;
  height: 50px;
  opacity: 1;
  background-color: #13afeb;
  margin-top: -20px;
}
.contactform_footer .sky-form .button:hover {
  color: #272727;
  background-color: #eee;
}

ul.fsocials {
  float: left;
  width: 100%;
  margin-top: -11px;
  padding-bottom: 22px;
  border-bottom: 1px solid #252525;
}
.fsocials li {
  float: left;
  width: 100%;
  padding: 16px 0px 4px 0px;
  margin: 0px;
}
.fsocials li i {
  float: left;
  width: 30px;
  height: 30px;
  margin-right: 13px;
  margin-top: -3px;
  font-size: 16px;
  color: #151515;
  background-color: #fff;
  border-radius: 100%;
  text-align: center;
  vertical-align: middle;
  line-height: 30px;
}
.fsocials li a {
  color: #727272;
}
.fsocials li a:hover i {
  background-color: #13afeb;
}
.fsocials li a:hover {
  color: #fff;
}

.fnewsletter {
  float: left;
}
.fnewsletter input.enter_email_input {
  float: left;
  padding: 3px 0px 2px 10px;
  height: 34px;
  width: 200px;
  margin: 5px 0 0 0px;
  background-color: #fff;
  border: 1px solid #fff;
  color: #727272;
  font-size: 13px;
}
.fnewsletter .input_submit {
  float: left;
  padding: 11px 10px;
  margin: 5px 0 0 0px;
  background-color: #13afeb;
  border: 0px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
.fnewsletter .input_submit:hover {
  color: #272727;
  cursor: pointer;
  background-color: #eee;
}

/**********************************************************/

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 10% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 40%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.myBtn-modal {
  cursor: pointer;
}

.section2 {
  display: flex;
  flex-wrap: wrap;
}

.text-column {
  flex: 1;
  padding: 20px;
}

.carousel-column {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.specialty_title {
  font-size: 2em;
  text-align: center;
}

.initial_text p {
  margin: 15px 0;
  line-height: 1.6;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 600px;
}

.carousel ul {
  display: flex;
  animation: slide 15s infinite;
  padding: 0;
  margin: 0;
  list-style: none;
}

.carousel li {
  min-width: 100%;
}

.carousel img {
  width: 100%;
  display: block;
}

@keyframes slide {
  0% {
      transform: translateX(0);
  }

  33% {
      transform: translateX(-100%);
  }

  66% {
      transform: translateX(-200%);
  }

  100% {
      transform: translateX(0);
  }
}


.section10 {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.rating {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.star {
  font-size: 2em;
  cursor: pointer;
  color: #ccc;
}

.star.selected,
.star:hover,
.star:hover {
  color: gold;
}

textarea {
  width: 100%;
  height: 100px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  font-size: 1em;
}



button:hover {
  background-color: #0056b3;
}

.reviews {
  margin-top: 20px;
}

.review-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.review-stars {
  color: gold;
}

.carousel-container {
  position: relative;
  max-width: 100%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-card {
  min-width: 100%;
  box-sizing: border-box;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2em;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

#prevBtn {
  left: 10px;
}

#nextBtn {
  right: 10px;
}

.carousel-btn:hover {
  color: rgba(0, 0, 0, 0.8);
}

.lmtWIHO_gkbTeeyuvoJC.mOUYF5ZmuNL6I7t0mSFg {
  background-color: #ffffff !important;
}
textarea {
  resize: none; /* Deshabilitar el redimensionamiento manual */
  overflow: hidden; /* Evitar barras de desplazamiento */
}

/* Grafico de Habilidades */

.skill-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skill-botton {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.outer {
  height: 160px;
  width: 160px;
  border-radius: 50%;
  box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.15),
              -6px -6px 10px -1px rgba(255,255,255,0.7);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.inner {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
              inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7),
              -0.5px -0.5px 0px rgba(255, 255, 255, 1),
              0.5px 0.5px 0px rgba(0,0,0,0.15),
              0px 12px 10px -10px rgba(0, 0, 0, 0.05);
}

#number {
  font-weight: 700;
  font-size: 25px;
  color: #ffffff;
}

.circle-service {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 20px;
  stroke-dasharray: 472;
  stroke-dashoffset: 472;
  animation: anim1 3.5s linear forwards
}

@keyframes anim1 {
  100% {
    stroke-dashoffset: 60;
  }
}

.circle-client {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 20px;
  stroke-dasharray: 472;
  stroke-dashoffset: 472;
  animation: anim2 3s linear forwards
}

@keyframes anim2 {
  100% {
    /* 80% = 472 - 472*(0.8) */
    stroke-dashoffset: 95;
  }
}

.svg-graph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.label-graph {
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(90deg, #ff0000, #fff700);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-weight: 700;
  text-shadow: 2px 5px 18px #ffffff9c;
}

.label-graph-2 {
  font-size: 20px;
  color: #ffffff;
  text-align: center;
}

.grid-container-graph {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.row-graph {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 20px;
}

.counter-container {
  text-align: center;
}

.counter {
  font-size: 70px;
  color: whitesmoke;
  margin: 60px 0;
  font-family: 'Montserrat',sans-serif;
}

.graph_title {
  text-align: center;
  font-weight: 600;
  color: white;
  text-shadow: 2px 5px 12px #000;
  margin-top: 80px;
}

.colorIcono {
  background: linear-gradient(45deg, #fbff00, #ff8800);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-weight: 700;
  font-size: 80px;
}

.graph_text {
  font-size: medium;
  font-weight: 400;
  color: #ffffff;
  text-align: justify;
  margin: 15px;
}

