@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@100; 200; 300; 400; 500; 600&display=swap");
:root {
  --yellow:#f5bf23;
  --black:#111;
  --white:#fff;
  --ligth-color:#666;
  --light-bg:#eee;
  --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  --border: .1rem solid rgba(0,0,0,.3);
  --blue:#0000CD;
  --blue1: #3b83bd;
  --c-bazzier: cubic-bazier(.1, .22,.8,1.13);
  --aliceblue:#B9D9EB;
  --cyan:#E0FFFF;
  --light-green: #f0fdfa;
  --hex-color: #AED6F1 rgba(174, 214, 241);
  --overlay: rgba(0,0,0,0.8);
  --green: #219150;
  --ligth-color: rgb(14, 13 13);
  --bg-color:#222;
  --black-bg:rgba(17, 17, 17, .7);
}

* {
  font-family: "poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: none;
  transition: 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: var(--blue1);
}

section {
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: none;
  padding-left: 1rem;
  border-left: 1.5rem solid var(--blue1);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--blue1);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  text-transform: capitalize;
  transition: 0.2s linear;
}
.btn:hover {
  background: var(--yellow);
  color: var(--black);
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}
/**header section start**/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem 9%;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: var(--white);
}
.header .logo {
  margin-right: auto;
  font-size: 2.6rem;
  font-weight: bolder;
}
.header .navbar a {
  margin-left: 2rem;
  font-size: 1.8rem;
  color: var(--blue);
  font-weight: bolder;
}
.header .navbar a:hover {
  color: var(--green);
}
.header .navbar #nav-close {
  font-size: 5rem;
  cursor: pointer;
  color: var(--blue1);
  display: none;
}
.header .icons a,
.header .icons div {
  font-size: 2.5rem;
  margin-left: 2rem;
  cursor: pointer;
  color: var(--blue1);
}
.header .icons a:hover,
.header .icons div:hover {
  color: var(--green);
}
.header #menu-btn {
  display: none;
}

/**header section ends**/
/**infocontac**/
.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 36rem;
  background: var(--aliceblue);
  height: 100%;
  text-align: center;
  z-index: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  display: none;
}
.contact-info.active {
  display: block;
}
.contact-info #close-contact-info {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 4rem;
  color: var(--black);
}
.contact-info #close-contact-info:hover {
  transform: rotate(90deg);
}
.contact-info .info {
  padding: 2rem 0;
}
.contact-info .info i {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}
.contact-info .info h3 {
  padding: 1rem 0;
  font-size: 2rem;
}
.contact-info .info p {
  text-align: center;
  color: var(--blue);
  font-size: 1.9rem;
}
.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}
.contact-info .share a {
  margin: 0 0.3rem;
  font-size: 2.5rem;
  color: var(--blue);
}
.contact-info .share a:hover {
  color: var(--white);
}

/**infocontac**/
/**home section start**/
.home {
  padding: 0;
  background-color: var(--overlay);
}
.home .slide {
  min-height: 55rem;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  box-shadow: var(--box-shadow);
  justify-content: flex-end;
}
.home .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--white), transparent);
}
.home .slide .content {
  width: 50rem;
}
.home .slide .content h3 {
  text-transform: none;
  font-family: inherit;
  font-size: 5rem;
  color: var(--black);
  font-weight: bold;
  text-align: center;
  justify-content: center;
}
.home .slide .content p {
  font-size: 1.5rem;
  color: var(--black);
  text-transform: none;
  line-height: 1.5;
  text-align: justify;
  padding: 1rem 0;
  font-weight: 700;
}
.home .swiper-button-next,
.home .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  background: var(--white);
}
.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: var(--blue1);
}
.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 2rem;
  color: var(--black);
}
.home .swiper-button-prev {
  right: 7rem;
}

/**header section ends**/
.overlay-section {
  background-image: url(/images/banner20.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.overlay-section .overlay {
  height: 60vh;
  background-color: var(--overlay);
}
.overlay-section .overlay .container-overlay {
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.overlay-section .overlay .container-overlay h2 {
  font-size: 2.9rem;
  font-weight: 500;
  text-align: center;
  justify-content: center;
}
.overlay-section .overlay .container-overlay h3 {
  font-size: 2.9rem;
  font-weight: bold;
  text-align: center;
  justify-content: center;
}

.overlay-section1 {
  background-image: url(/images/banner17.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.overlay-section1 .overlay {
  height: 60vh;
  background-color: var(--overlay);
}
.overlay-section1 .overlay .container-overlay {
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.overlay-section1 .overlay .container-overlay h2 {
  font-size: 2.9rem;
  font-weight: 500;
  text-align: center;
  justify-content: center;
}
.overlay-section1 .overlay .container-overlay h3 {
  font-size: 2.9rem;
  font-weight: bold;
  text-align: center;
  justify-content: center;
}

.overlay-section3 {
  background-image: url(/images/banner23.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.overlay-section3 .overlay {
  height: 60vh;
  background-color: rgba(0, 0, 0, 0.5);
}
.overlay-section3 .overlay .container-overlay {
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.overlay-section3 .overlay .container-overlay h2 {
  font-size: 2.9rem;
  font-weight: 500;
  text-align: center;
  justify-content: center;
}
.overlay-section3 .overlay .container-overlay h3 {
  font-size: 2.9rem;
  font-weight: bold;
  text-align: center;
  justify-content: center;
}

.overlay-section4 {
  background-image: url(/images/banner26.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.overlay-section4 .overlay {
  height: 60vh;
  background-color: rgba(0, 0, 0, 0.5);
}
.overlay-section4 .overlay .container-overlay {
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.overlay-section4 .overlay .container-overlay h2 {
  font-size: 2.9rem;
  font-weight: 500;
  text-align: center;
  justify-content: center;
}
.overlay-section4 .overlay .container-overlay h3 {
  font-size: 2.9rem;
  font-weight: bold;
  text-align: center;
  justify-content: center;
}

.overlay-section5 {
  background-image: url(/images/banner26.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.overlay-section5 .overlay {
  height: 60vh;
  background-color: rgba(0, 0, 0, 0.5);
}
.overlay-section5 .overlay .container-overlay {
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.overlay-section5 .overlay .container-overlay h2 {
  font-size: 2.9rem;
  font-weight: 500;
  text-align: center;
  justify-content: center;
}
.overlay-section5 .overlay .container-overlay h3 {
  font-size: 2.9rem;
  font-weight: bold;
  text-align: center;
  justify-content: center;
}

/**about section start**/
.about {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url(/images/aboutImage.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.about h1 {
  color: var(--black);
}
.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.about .row .video {
  flex: 1 1 41rem;
}
.about .row .video img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: 3s;
}
.about .row .video img:hover {
  transform: scale(1.1);
  transition: 3s;
}
.about .row .content {
  flex: 1 1 41rem;
}
.about .row .content h1 {
  text-align: justify;
  font-size: 25px;
  text-align: center;
  color: var(--blue);
  font-weight: bolder;
}
.about .row .content p {
  font-size: 1.6rem;
  color: var(--black);
  text-transform: none;
  line-height: 1.5;
  text-align: justify;
  padding-left: 1rem 0;
  line-height: 1.3;
}
.about .row .content p span {
  color: var(--blue);
  font-size: 20px;
  font-weight: bolder;
}
.about .caracteristicas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.about .caracteristicas .card {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
  border-radius: 15px;
  cursor: pointer;
  display: grid;
}
.about .caracteristicas .card h2 {
  font-size: 25px;
  margin-bottom: 10px;
  color: var(--blue);
}
.about .caracteristicas .card p {
  font-size: 15px;
  color: #080000;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about .caracteristicas .card:hover {
  background-color: #b8d4de;
  transition: 0.4s ease;
}
.about .caracteristicas .card .icon {
  font-size: 35px;
  margin-bottom: 10px;
  color: var(--blue1);
}
.about .box-container {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
  border-radius: 15px;
  cursor: pointer;
}
.about .box-container .box:hover {
  transform: scale(1.1);
  background-color: var(--light-green);
}
.about .box-container .box h3 {
  font-size: 3rem;
  color: var(--black);
  text-transform: none;
}
.about .box-container .box p {
  text-align: center;
  padding-top: 1.5rem;
  color: var(--blue1);
  font-size: medium;
}

/**about section ends**/
/**services section start**/
.services {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/images/quienesSomos.jpg);
  background-size: cover;
  background-position: center;
}
.services h1 {
  font-size: 3rem;
  color: var(--black);
  text-transform: none;
  color: var(--white);
}
.services .load-more {
  text-align: center;
  margin-top: 2rem;
}
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1rem;
}
.services .box-container .box {
  border: var(--border);
  box-shadow: var(--box-shadow);
  background: var(--white);
  border-radius: 15px;
}
.services .box-container .image {
  height: 25rem;
  overflow: hidden;
  border-radius: 15px;
}
.services .box-container .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s linear;
}
.services .box-container .image img:hover {
  transform: scale(1.1);
}
.services .box-container .content {
  padding: 2rem;
  text-align: center;
}
.services .box-container .content h3 {
  font-size: 2.5rem;
  color: var(--black);
}
.services .box-container .content p {
  font-size: 1.5rem;
  color: #080000;
  line-height: 1.5;
  padding: 1rem 0;
}
.services .box-container .content .btn {
  margin-bottom: 20px;
}

/**services section ends**/
.ousorcing {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/fondo4.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.ousorcing h1 {
  font-size: 3rem;
  color: var(--black);
  text-transform: none;
  color: var(--white);
}
.ousorcing .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.ousorcing .row .video {
  flex: 1 1 41rem;
}
.ousorcing .row .video img {
  width: 100%;
  border-radius: 15px;
}
.ousorcing .row .video img:hover {
  transform: scale(1.1);
  transition: 3s;
}
.ousorcing .row .content {
  flex: 1 1 41rem;
}
.ousorcing .row .content h3 {
  color: var(--white);
  text-align: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
}
.ousorcing .row .content p {
  font-size: 1.5rem;
  color: var(--black);
  text-transform: none;
  line-height: 1.5;
  text-align: justify;
  padding-left: 1rem 0;
  color: var(--white);
}

.services1 {
  background-image: linear-gradient(rgba(118, 174, 247, 0.1), rgba(117, 167, 243, 0.1)), url(/images/mazo.jpg);
  background-size: cover;
  background-position: center;
}
.services1 h1 {
  font-size: 3rem;
  color: var(--black);
  text-transform: none;
  color: var(--blue1);
}
.services1 .load-more {
  text-align: center;
  margin-top: 2rem;
}
.services1 .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1rem;
}
.services1 .box-container .box {
  border: var(--border);
  box-shadow: var(--box-shadow);
  background: var(--white);
  border-radius: 15px;
}
.services1 .box-container .image {
  height: 25rem;
  overflow: hidden;
  border-radius: 15px;
}
.services1 .box-container .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s linear;
}
.services1 .box-container .image img:hover {
  transform: scale(1.1);
}
.services1 .box-container .content {
  padding: 2rem;
  text-align: center;
}
.services1 .box-container .content h3 {
  font-size: 2.5rem;
  color: var(--black);
}
.services1 .box-container .content p {
  font-size: 1.5rem;
  color: #080000;
  line-height: 1.3;
  padding: 1rem 0;
}
.services1 .box-container .content .btn {
  margin-bottom: 20px;
}

.cita {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(/images/asesoriaJuridica.jpg);
  background-size: cover;
  background-position: center;
}
.cita h1 {
  color: var(--white);
  text-align: center;
  justify-content: center;
  font-size: 2.5rem;
}
.cita form {
  text-align: center;
}
.cita form textarea {
  height: 20rem;
  resize: none;
  padding: 1rem;
  font-size: 1.5rem;
  width: 100%;
}
.cita form input[type=submit] {
  width: 20rem;
  height: 3rem;
  font-size: 1.5rem;
  color: var(--white);
  border-radius: 15px;
  background: var(--blue1);
  margin-top: 2rem;
}
.cita form input[type=submit]:hover {
  background: var(--green);
}
.cita form .inputBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cita form .inputBox input, .cita form .inputBox select {
  height: 4rem;
  width: 49%;
  padding: 0 1rem;
  margin: 1rem 0;
  font-size: 1.7rem;
  color: var(--black);
}

.contable {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/fondo4.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.contable h1 {
  font-size: 3rem;
  color: var(--black);
  text-transform: none;
  color: var(--white);
}
.contable .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.contable .row .video {
  flex: 1 1 41rem;
}
.contable .row .video img {
  width: 100%;
  border-radius: 15px;
}
.contable .row .video img:hover {
  transform: scale(1.1);
  transition: 3s;
}
.contable .row .content {
  flex: 1 1 41rem;
}
.contable .row .content h3 {
  color: var(--white);
  text-align: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
}
.contable .row .content p {
  font-size: 1.5rem;
  color: var(--black);
  text-transform: none;
  line-height: 1.5;
  text-align: justify;
  padding-left: 1rem 0;
  color: var(--white);
}

/**Team section start**/
.Team {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/fondo4.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.Team h1 {
  font-size: 3rem;
  color: var(--black);
  text-transform: none;
  color: var(--white);
}
.Team .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.Team .row .video {
  flex: 1 1 41rem;
}
.Team .row .video img {
  width: 100%;
  border-radius: 15px;
}
.Team .row .video img:hover {
  transform: scale(1.1);
  transition: 3s;
}
.Team .row .content {
  flex: 1 1 41rem;
}
.Team .row .content h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: none;
  color: var(--white);
  text-shadow: -1px -1px 1px #aaa, 0px 3px 1px rgba(0, 0, 0, 0.5), 3px 3px 5px rgba(0, 0, 0, 0.7), 0px 0px 7px rgba(0, 0, 0, 0.4);
  font-size: 2.7rem;
  text-align: center;
}
.Team .row .content h2 {
  color: var(--white);
  text-align: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
}
.Team .row .content p {
  font-size: 1.5rem;
  color: var(--black);
  text-transform: none;
  line-height: 1.5;
  text-align: justify;
  padding-left: 1rem 0;
  color: var(--white);
}
.Team .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}
.Team .share a {
  margin: 0 0.3rem;
  font-size: 2.5rem;
  color: var(--white);
}
.Team .share a:hover {
  color: var(--blue);
}

/**Team section ends**/
/**our-teams section start**/
.Team1 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/fondo4.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.Team1 h1 {
  font-size: 3rem;
  color: var(--black);
  text-transform: none;
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
}
.Team1 .expert-box {
  margin-top: 3rem;
  text-align: center;
  padding: 3rem;
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.Team1 .expert-box .profile {
  background: #fafaf1;
  padding: 30px 10px;
  border-radius: 15px;
  text-align: center;
  justify-content: center;
  border: 5px solid #4291f8;
}
.Team1 .expert-box .profile img {
  border-radius: 50%;
  margin-bottom: 1rem;
  height: 18rem;
  width: 18rem;
  justify-content: center;
}
.Team1 .expert-box .profile img:hover {
  -webkit-transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  transform: rotateY(180deg);
  transform-style: preserve-3d;
  transition: 0.2s linear;
}
.Team1 .expert-box .profile h3 {
  font-size: 1.5rem;
  color: var(--black);
  text-transform: none;
  text-align: center;
  color: var(--blue1);
}
.Team1 .expert-box .profile p {
  font-size: 1.4rem;
  color: var(--black);
  text-transform: none;
  line-height: 1.5;
  text-align: justify;
  padding: 1rem 0;
  line-height: 1.5;
  text-align: center;
}
.Team1 .expert-box .profile .pro-links {
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}
.Team1 .expert-box .profile .pro-links i {
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  justify-content: center;
  position: relative;
}
.Team1 .expert-box .profile .pro-links i:hover {
  background: var(--blue1);
  color: var(--white);
}
.Team1 .expert-box .profile .pro-links i:hover {
  background: rgb(21, 21, 100);
  color: #fff;
  cursor: pointer;
  transition: 0.2s linear;
}

/**our-teams section ends**/
/**reviws section start**/
.reviews {
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.reviews .slide p {
  padding: 1.5rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.3rem;
  color: var(--black);
  text-transform: none;
  line-height: 1.5;
  text-align: justify;
}
.reviews .slide p::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  height: 2rem;
  width: 2rem;
  background: var(--light-bg);
  transform: rotate(45deg);
}
.reviews .slide .user {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.reviews .slide .user img {
  height: 9rem;
  width: 9rem;
}
.reviews .slide .user h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: none;
}
.reviews .slide .user .stars {
  padding-top: 0.5rem;
}
.reviews .slide .user .stars i {
  font-size: 1.4rem;
  color: var(--yellow);
}

/**reviws section ends**/
/**contac section ends**/
.contact {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/images/bussines.jpg);
  width: 100%;
  background-size: cover;
  background-position: center;
}
.contact .heading {
  color: var(--white);
}
.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact .row .map {
  flex: 1 1 41rem;
  width: 100%;
}
.contact .row form {
  flex: 1 1 41rem;
  background: var(--white);
  padding: 2rem;
}
.contact .row form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: none;
}
.contact .row form .box {
  margin: 0.7rem 0;
  width: 100%;
  padding: 1.5rem 0;
  border-bottom: var(--border);
  font-size: 1.6rem;
  color: var(--ligth-color);
}
.contact .row form .box:focus {
  border-color: var(--blue1);
}
.contact .row form textarea {
  height: 15rem;
  resize: none;
}

/**contact section ends**/
/**blog section start**/
.blogs {
  background: var(--light-bg);
}
.blogs .slide {
  text-align: center;
}
.blogs .slide:hover .image img {
  transform: scale(1.1);
}
.blogs .slide .image {
  height: 25rem;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}
.blogs .slide .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s linear;
}
.blogs .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  background: var(--white);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
}
.blogs .slide .content h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: none;
}
.blogs .slide .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--black);
  text-transform: none;
  line-height: 1.5;
  text-align: justify;
}

/**blog section ends**/
.blog1 {
  background-color: var(--cyan);
}
.blog1 h1 {
  font-size: 2.2rem;
  color: var(--black);
  text-transform: none;
  color: var(--blue1);
}
.blog1 .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.blog1 .row .video {
  flex: 1 1 41rem;
}
.blog1 .row .video img {
  width: 100%;
  height: 120%;
  border-radius: 15px;
}
.blog1 .row .video img:hover {
  transform: scale(1.1);
  transition: 3s;
}
.blog1 .row .content {
  flex: 1 1 41rem;
}
.blog1 .row .content h3 {
  color: var(--white);
  text-align: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
}
.blog1 .row .content p {
  font-size: 1.5rem;
  color: var(--black);
  text-transform: none;
  line-height: 1.5;
  text-align: justify;
  padding-left: 1rem 0;
  color: var(--black);
  font-weight: bold;
  line-height: 1.2;
}

.blog2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/images/quienesSomos.jpg);
  background-size: cover;
  background-position: center;
}
.blog2 h1 {
  font-size: 2.2rem;
  color: var(--black);
  text-transform: none;
  color: var(--white);
}
.blog2 .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.blog2 .row .video {
  flex: 1 1 41rem;
}
.blog2 .row .video img {
  width: 100%;
  height: 120%;
  border-radius: 15px;
}
.blog2 .row .video img:hover {
  transform: scale(1.1);
  transition: 3s;
}
.blog2 .row .content {
  flex: 1 1 41rem;
}
.blog2 .row .content h3 {
  color: var(--white);
  text-align: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
}
.blog2 .row .content p {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: none;
  line-height: 1.5;
  text-align: justify;
  padding-left: 1rem 0;
  color: var(--white);
  font-weight: bold;
  line-height: 1.2;
}

.blog3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/images/mazo.jpg);
  background-size: cover;
  background-position: center;
}
.blog3 h1 {
  font-size: 2.2rem;
  color: var(--black);
  text-transform: none;
  color: var(--white);
}
.blog3 .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.blog3 .row .video {
  flex: 1 1 41rem;
}
.blog3 .row .video img {
  width: 100%;
  height: 120%;
  border-radius: 15px;
}
.blog3 .row .video img:hover {
  transform: scale(1.1);
  transition: 3s;
}
.blog3 .row .content {
  flex: 1 1 41rem;
}
.blog3 .row .content h3 {
  color: var(--white);
  text-align: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
}
.blog3 .row .content p {
  font-size: 1.5rem;
  color: var(--black);
  text-transform: none;
  line-height: 1.5;
  text-align: justify;
  padding-left: 1rem 0;
  color: var(--white);
  font-weight: bold;
  line-height: 1.2;
}

/**logos section start**/
.logos {
  background: var(--white);
}
.logos .silde {
  text-align: center;
}
.logos .silde img {
  height: 8rem;
}

/**logos section ends**/
/**suscribete section start**/
.newsletter {
  background: var(--light-bg);
}
.newsletter .content {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
}
.newsletter .content p {
  font-size: 1.6rem;
  line-height: 2;
  color: var(--black);
}
.newsletter .content form {
  margin-top: 2rem;
  background: var(--white);
  border-radius: 5rem;
  border: var(--border);
  padding: 0.7rem;
  display: flex;
}
.newsletter .content form .email {
  width: 100%;
  background: none;
  text-transform: none;
  font-size: 1.5rem;
  color: var(--black);
  padding: 0 1.3rem;
}
.newsletter .content form .btn {
  margin-top: 0;
  border-radius: 5rem;
  background: var(--black);
  color: var(--white);
}
.newsletter .content form .btn:hover {
  background: none;
  color: var(--black);
}

/**suscribete section ends**/
/**footer section start**/
.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/footer3.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}
.footer .box-container .box h3 {
  font-size: 2rem;
  padding: 1.5rem 0;
  color: var(--white);
}
.footer .box-container .box a {
  display: block;
  font-size: 1.4rem;
  color: var(--white);
  padding: 1rem 0;
}
.footer .box-container .box a i {
  color: var(--blue1);
  padding-right: 0.5rem;
}
.footer .box-container .box a:hover {
  color: var(--blue1);
}
.footer .box-container .box a:hover i {
  padding-right: 2rem;
}
.footer .credit {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1rem;
  padding-top: 2.5rem;
  font-size: 2rem;
  color: var(--white);
}
.footer .credit span {
  color: var(--blue1);
}

/**footer section ends**/
/**whatssapp start**/
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  background: #25d366;
  bottom: 40px;
  right: 40px;
  color: var(--white);
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 999;
}
.float:hover {
  background-color: #28e7e6;
}

.fa-whatsapp {
  font-size: 58px;
}

/**whatssapp ends**/
@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }
  section {
    padding: 3rem 5%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 2rem;
  }
}
@media (max-width: 768px) {
  .header #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: fixed;
    top: 0;
    left: -110%;
    background: var(--white);
    z-index: 10000;
    width: 35rem;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
  .header .navbar.active {
    left: 0;
    box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
  }
  .header .navbar a {
    margin: 1rem 0;
    font-size: 3rem;
  }
  .header .navbar #nav-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 2rem;
  }
  .header .contactForm .info {
    height: 300px;
    padding: 20px;
  }
  .home .slide {
    justify-content: center;
  }
  .home .slide .content {
    text-align: center;
  }
  .home .slide .content h3 {
    font-size: 3rem;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}/*# sourceMappingURL=style.css.map */