@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
@import url("slick.css");
@import url("slick-theme.css");
@import url("gallery.css");
@import url("aos.css");
/*-- font style --*/
/*-- media query --*/
* {
  outline: none;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  color: #F8B630;
  transition: all 0.2s ease;
}

a:hover,
a:active,
a:focus {
  transition: all ease-in-out 0.3s;
  color: #F8B630;
}

:focus-visible {
  outline: none;
}

button:focus:not(:focus-visible) {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

a,
a:hover {
  text-decoration: none;
}

a {
  transition: all 0.3s ease 0s;
}

.custum-input {
  border-radius: 0.8rem;
  min-height: 50px;
}
.custum-input:focus {
  background-color: transparent;
}

::-webkit-input-placeholder {
  color: #202C45 !important;
}

:focus::-webkit-input-placeholder {
  opacity: 0.5;
  color: #F8B630;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #ffffff;
  background-color: #F8B630;
  border-color: transparent;
  opacity: 0.5;
}

.btn-wrapper {
  height: auto;
}
.btn-wrapper .menu-toggle {
  min-height: 40px;
}
.btn-wrapper .menu-toggle .icon-bars {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  transition: transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before, .btn-wrapper .menu-toggle .icon-bars::after {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #ffffff;
  content: "";
  position: absolute;
  left: 0;
  transition: top 0.3s 0.3s ease-in, transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before {
  top: 0.5em;
}
.btn-wrapper .menu-toggle .icon-bars::after {
  top: -0.5em;
}
.btn-wrapper .menu-toggle:active .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.btn-wrapper .menu-toggle:active .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.btn-wrapper .menu-toggle:active .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

.menu--is-revealed .menu-toggle .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.menu--is-revealed .menu-toggle .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.menu--is-revealed .menu-toggle .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Merriweather", serif;
}

.font-small {
  font-size: 0.875rem;
}

.font-extra-small {
  font-size: 0.75rem;
}

/*-- background color css --*/
.theme-bg-primary {
  background-color: #F8B630;
}

.theme-bg-secondary {
  background-color: #202C45;
}

.theme-bg-accent-one {
  background-color: #000000;
}

.theme-bg-accent-two {
  background-color: #878A9B;
}

/*-- text css --*/
.theme-text-white {
  color: #ffffff;
}

.theme-text-primary {
  color: #F8B630;
}

.theme-text-secondary {
  color: #202C45;
}

.theme-text-accent-one {
  color: #000000;
}

.theme-text-accent-two {
  color: #878A9B;
}

.extra-text-color {
  color: #ffc107;
}

/*-- shadow css --*/
.theme-box-shadow {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

.theme-text-shadow {
  text-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

/*-- custom button css*/
.custom-btn-primary {
  background-color: #F8B630;
  color: #ffffff;
  min-width: 140px;
  min-height: 50px;
  border: 0;
  border-radius: 0.8rem;
}

.custom-btn-secondary {
  background-color: #202C45;
  color: #ffffff;
  min-width: 140px;
  min-height: 50px;
  border: 0;
  border-radius: 0.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.custom-link {
  background-color: #878A9B;
  color: #F8B630;
  min-width: 120px;
  min-height: 40px;
}
.custom-link:hover {
  background-color: transparent;
  color: #202C45;
  border: 2px solid #F8B630;
}

.theme-border-radius {
  border-radius: 0.8rem;
}

.theme-border {
  border: 1px solid #F8B630;
}

/*-- primary button effect css --*/
.btn-effect {
  position: relative;
  overflow: hidden;
  z-index: 10;
  transition: all 0.3s;
}
.btn-effect::after {
  background: #000000;
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
  height: 0;
  left: 50%;
  top: 50%;
  width: 0;
}
.btn-effect::after {
  background: #000000;
  content: "";
  position: absolute;
  z-index: -1;
}
.btn-effect:hover {
  color: #ffffff;
  background-color: #F8B630;
  transition: all 0.2s ease;
}
.btn-effect:hover::after {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

/*-- secondary button css --*/
.icon-wrapper {
  box-shadow: 0 0 0px 0px rgba(32, 44, 69, 0.5);
  cursor: pointer;
  border-radius: 50%;
}

/*-- stroke button css --*/
.stroke-btn {
  background-color: #ffffff;
  border: 1px solid #F8B630;
  color: #F8B630;
}

/*-- image hover effect --*/
.img-effect img {
  transition: all 0.4s ease-in-out;
}
.img-effect:hover img {
  transform: scale(1.5);
}

/*-- slick slider custom dots --*/
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
  box-shadow: none;
}

.slick-dots li button:before {
  color: #F8B630;
  font-size: 10px;
}

.slick-dots li.slick-active button::before {
  color: #F8B630;
}

/*-- highlight para css --*/
.para-highlight {
  position: relative;
  color: #000000;
  font-weight: 700;
}
.para-highlight::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 5px;
  background-color: #F8B630;
  margin-right: 15px;
}

/* pulseBig */
@keyframes pulseBig {
  0% {
    box-shadow: 0 0 0 0 #ffffff;
  }
  50% {
    box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
/* icons float css*/
.box-icon-float {
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
/* perfect center element css */
.ele-center {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

/* anchor button effect */
a.effect {
  color: #878A9B;
}
a.effect:hover {
  color: #F8B630;
}
a.effect:hover i {
  color: #F8B630;
}
a.effect:hover i:before {
  transform: translateX(5px);
  transition: all 0.2s ease;
}
a.effect .bi:before {
  transition: all 0.2s ease;
}

/* image opacity light */
.img-lt {
  /* filter: opacity(0.5); */
  transition: 0.5s ease-in-out;
  padding: 3em;
}
.img-lt:hover {
  /* filter: opacity(1); */
}

.cuadro2{
  padding-top: 30px;
}

/* video */
.about-pic1 {
  position: relative;
  
}
.fs-2video {
  font-size: calc(5.325rem + .9vw)!important;  
  animation: pulsate-border 3s linear infinite;
}

.img-video {
  width: 75%;
  display: block;
  margin: 0 auto; /* Esto centrará la imagen horizontalmente */
  box-shadow: 10px -20px 5px rgba(202, 167, 8, 0.233); /* Agregamos un borde negro semi-transparente */
  border-radius: 30px;
  
}

.image-container {
  position: relative;
}

.video1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #00000031;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid transparent;
  border-radius: 20px; /* Puedes ajustar el valor para cambiar el radio del borde */
  animation: pulsate-border 1.5s linear infinite;
}

.video1 span {
  color: #fff;
  text-align: center;
}

@keyframes pulsate-border {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
  100% {
    border-color: transparent;
  }
}









/*-- preloader css --*/
.page-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #ffffff;
  z-index: 9999;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-loader #loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid #F8B630;
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

/*-- header css part --*/
.header {
  background-color: #ffffff;
}
.header .navbar-nav .nav-item .nav-link {
  color: #202C45;
  padding: 1.2rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .header .navbar-nav .nav-item .nav-link {
    padding: 0.8rem 0rem;
    border-bottom: 1px solid #878A9B;
  }
}
.header .navbar-nav .nav-item .dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  color: #000000;
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background-color: #F8B630;
  color: #ffffff;
}
.header .navbar-nav .active a {
  color: #F8B630 !important;
}
.header .navbar-nav .active a::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: #F8B630;
  position: absolute;
  bottom: 0;
  display: block;
  left: 0;
  top: 0;
  border-radius: 3rem;
}
@media screen and (max-width: 992px) {
  .header .navbar-nav .active a::before {
    left: 0;
  }
}
.header .navbar-nav .active .dropdown-item {
  color: #202C45 !important;
}

/*-- nav button effect css --*/
.nav-effect {
  position: relative;
}
.nav-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 4px;
  background: #F8B630;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  border-radius: 3rem;
}
@media screen and (max-width: 992px) {
  .nav-effect::before {
    left: 0%;
  }
}
.nav-effect:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}

/*-- header fixed animation --*/
.smooth {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/*-- hero slider css --*/
.hero {
  position: relative;
  background: linear-gradient(to bottom right, rgba(72, 72, 212, 0), rgba(241, 104, 104, 0)), url(../images/hero/shap-bg.png) center center no-repeat;
  background-size: contain;
  background-position: right top;
}
.hero .item {
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .item .hero-pic {
  position: relative;
}
.hero .item .hero-pic:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  background: url("../images/hero/Polygon-shap.svg") no-repeat;
  width: 180px;
  height: 180px;
}
.hero .item .hero-pic .circle-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(32, 44, 69, 0.5);
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.hero .item .text {
  color: #F8B630;
}

/*-- about section css --*/
.about-company .about-pic {
  position: relative;
  width: 80%;
  margin: 0 auto;
}
.about-company .about-pic .experience-box {
  position: absolute;
  top: 0;
  left: -20px;
  background-color: #F8B630;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.8rem;
}
.about-company .about-pic .experience-box p {
  color: #ffffff;
}
.about-company .about-pic .video-box {
  position: absolute;
  bottom: 0;
  right: -20px;
  background-color: #202C45;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.8rem;
}
.about-company .about-pic .video-box span {
  color: #ffffff;
}
.about-company .action {
  width: 3.75rem;
  height: 3.75rem;
  padding: 1.4rem;
  justify-content: center;
  align-items: center;
  display: flex;
  animation: pulseBig infinite 4s linear;
}
.about-company .action:hover {
  background-color: #202C45;
}
.about-company .about-list {
  padding: 1rem 0;
}
.about-company .about-list li {
  font-size: 0.875rem;
  line-height: 2rem;
}
.about-company .about-list li i {
  color: #202C45;
  margin-right: 0.8rem;
}

/*-- core services --*/
.core-services {
  background-color: rgba(242, 24, 79, 0.05);
}
.core-services .icon-wrap {
  width: 5rem;
  height: 5rem;
  background-color: #202C45;
  border-radius: 50%;
  display: inline-block;
  line-height: 5rem;
}

.feature-list {
  list-style: none;
}
.feature-list li {
  color: #878A9B;
  line-height: 2.5rem;
}
.feature-list li i {
  color: #202C45;
}

/*-- card effect --*/
.cardeffect {
  text-align: center;
  background-color: #ffffff;
  transition: all 500ms ease-in-out;
}
.cardeffect:hover {
  transform: translateY(-10px);
  cursor: pointer;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

/*-- our courses css --*/
.courses-sec .nav-pills li .nav-link {
  border: 0px solid transparent;
  color: #202C45;
  font-weight: bold;
}
.courses-sec .nav-pills li .active {
  background-color: transparent;
  color: #F8B630;
}
.courses-sec .card-wrap {
  background-color: #ffffff;
}
.courses-sec .card-wrap .con-img-wrap {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
}
.courses-sec .card-wrap .con-img-wrap img {
  transition: all 0.2s ease;
}
.courses-sec .card-wrap .con-img-wrap img:hover {
  transform: scale(1.1);
}
.courses-sec .card-wrap .con-img-wrap .offer-tag {
  background-color: #F8B630;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: block;
  position: absolute;
  right: 10px;
  bottom: 20px;
  text-align: center;
  line-height: 50px;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}
.courses-sec .card-wrap .con-wrap .rating-cover {
  color: #878A9B;
}
.courses-sec .card-wrap .con-wrap .rating-cover i {
  color: #ffc107;
}
.courses-sec .card-wrap .con-wrap .timing {
  color: #878A9B;
}
.courses-sec .card-wrap .con-wrap .timing i {
  color: #F8B630;
}

/*-- class gallery css --*/
.gallery-sec {
  background-color: rgba(242, 24, 79, 0.1);
  background-image: url(../images/section/gallery-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 750px;
  background-position: center center;
}
.gallery-sec .project-card {
  position: relative;
  width: 100%;
}
.gallery-sec .project-card figure {
  position: relative;
  overflow: hidden;
  margin: 0px;
  width: 100%;
  height: auto;
  cursor: pointer;
  min-height: 300px;
  border-radius: 0.8rem;
  background: #F8B630;
  background: linear-gradient(0deg, #F8B630 0%, rgba(242, 24, 79, 0) 100%);
}
@media screen and (max-width: 992px) {
  .gallery-sec .project-card figure {
    height: 300px;
  }
}
.gallery-sec .project-card figure img {
  position: relative;
  display: block;
  min-height: 100%;
  min-width: 100%;
  opacity: 0.8;
}
.gallery-sec .project-card .content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

/*-- price plan css --*/
.price-sec {
  padding: 4rem 0;
}
.price-sec .price-box {
  text-align: center;
  position: relative;
  transition: all 0.2s ease-out;
}
.price-sec .price-box:hover {
  transform: translateY(-10px);
}
.price-sec .price-box .top-sec {
  margin-top: 1rem;
}
.price-sec .price-box .pricing-rate {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.price-sec .price-box .pricing-rate .price {
  font-weight: 900;
  margin: 1rem 0;
}
.price-sec .price-box .pricing-rate .supper {
  vertical-align: super;
  font-size: 1.5rem;
}
.price-sec .price-box .list ul li {
  line-height: 2rem;
}
.price-sec .price-box .list ul li i {
  color: #878A9B;
}
.price-sec .price-box .tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 12px;
  background-color: #F8B630;
  color: #ffffff;
  min-width: 66px;
}
.price-sec .price-box .tag:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 38px;
  border-left: 33px solid #F8B630;
  border-right: 33px solid #F8B630;
  border-bottom: 20px solid transparent;
}

/*-- free consultations css --*/
.free-consult {
  background-color: rgba(242, 24, 79, 0.1);
  background-image: url(../images/section/consult-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 6rem 0;
  position: relative;
  text-align: center;
  max-height: 350px;
}

.free-consult::before {
  content: '';
  display: block;
  padding-top: 100%; /* Mantener relación de aspecto 1:1 para la imagen */
}

.consul {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consult1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0000007e;
  width: 100%;
  height: 350px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid transparent;
  border-radius: 20px; /* Puedes ajustar el valor para cambiar el radio del borde */
  animation: pulsate-border 1.5s linear infinite;
  
}

.consult-letra {
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
}




@media (max-width: 767px) {
  .free-consult::before {
    padding-top: 50%; /* Ajusta el tamaño de la imagen de fondo en dispositivos pequeños */
  }

  .consult1 {
    max-width: 100%; /* Ocupa todo el ancho en dispositivos pequeños */
    padding: 0 15px; /* Agrega espaciado lateral en dispositivos pequeños */
  }
}



/*-- testimonials css --*/
.testimonials {
  position: relative;
  background-color: rgba(242, 24, 79, 0.05);
}
.testimonials .slick-track {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.testimonials .pic-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials .pic-wrap .avatar {
  overflow: hidden;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #F8B630;
  border: 1px solid #F8B630;
}
.testimonials .client-con {
  text-align: justify;
  background-color: #ffffff;
  border-radius: 0.8rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.testimonials .client-con .circle {
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #F8B630;
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  padding: 1rem;
  top: -20px;
}
.testimonials .client-con .qotes-img {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.testimonials .carouselTestimonials {
  position: relative;
}
.testimonials .carouselTestimonials .slick-slide {
  display: flex;
}

/*-- latest news css --*/
.news .news-card {
  background-color: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}
.news .news-card a {
  color: #202C45;
}
.news .news-card a:hover {
  color: #F8B630;
}
.news .date-tag {
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 0.8rem;
  color: #ffffff;
  background-color: #202C45;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*-- contact form css --*/
.contact-sec {
  background-color: rgba(0, 0, 0, 0.04);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.contact-sec .contact-form {
  position: relative;
}
.contact-sec .icons {
  background-color: #202C45;
  width: 5rem;
  height: 5rem;
  display: inline-block;
  border-radius: 50%;
  line-height: 5rem;
  text-align: center;
  transition-duration: 0.3s;
}
.contact-sec .icons:hover {
  background-color: #202C45;
  transform: translateY(-5px);
  cursor: pointer;
}
.contact-sec .icons:hover i {
  color: #F8B630;
}
.contact-sec .icons i {
  font-size: 2.5rem;
  color: #ffffff;
}
.contact-sec .content-box {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.contact-sec .content-box h3 {
  font-weight: 700;
}

/*-- partner css --*/
.partner {
  position: relative;
}

/*-- subscribe section --*/
.subscribe .box {
  background-color: rgba(242, 24, 79, 0.05);
  border-radius: 0.8rem;
  padding: 4rem;
}
@media screen and (max-width: 575px) {
  .subscribe .box {
    padding: 2rem;
  }
}
.subscribe .box .input-group {
  background-color: #ffffff;
  padding: 0.5rem;
  border-radius: 0.8rem;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .subscribe .box .input-group {
    flex-direction: column;
  }
}
.subscribe .box .input-group::before {
  content: "\f32f";
  position: absolute;
  display: block;
  font-family: "bootstrap-icons";
  color: #878A9B;
  z-index: 10;
  top: 20px;
  left: 16px;
}
.subscribe .box .input-group input {
  padding-left: 2.2rem !important;
}
@media screen and (max-width: 767px) {
  .subscribe .box .input-group input {
    width: 100%;
  }
}
.subscribe .box .input-group button {
  border-radius: 0.8rem !important;
}

/*-- footer section --*/

.dev-footer {
  /* Centra horizontalmente el contenido en el div */
  display: flex;
  justify-content: center;
}

.dev-footer p {
  /* Agrega un margen derecho al párrafo para crear espacio entre el texto y el enlace */
  margin-right: 10px; /* Puedes ajustar este valor según tus preferencias */
}

.dev-footer > a {
  color: #276cff;
}

.img-footer {
  /* Centra horizontalmente el contenido en el div */
  display: flex;
  justify-content: center;
}

.img-footer img {
  /* Establece el ancho máximo de la imagen para hacerla responsive */
  max-width: 100%; /* La imagen ocupará el ancho máximo del contenedor */
  height: auto; /* Asegura que la imagen se ajuste automáticamente a su contenedor */

  /* Establece un tamaño máximo para la imagen */
  max-width: 250px; /* Puedes ajustar este valor según tus preferencias */
}


.footer {
  background-color: #21252912;
}
.footer p {
  color: #060607;
  line-height: 1.5;
}
.footer .footer-link li {
  line-height: 2.5rem;
  padding: 0 1rem;
}
.footer .footer-link li a {
  color: #878A9B;
  font-size: 0.875rem;
  padding: 0 0 0.5rem 0;
}
.footer .footer-link li a:hover {
  color: #F8B630;
}
.footer .social a,
.footer .social .botom-link {
  color: #878A9B;
}
.footer .social a:hover,
.footer .social .botom-link:hover {
  color: #F8B630;
}

/*-- back to top button css --*/
.scrollup {
  overflow: hidden;
  position: fixed;
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  bottom: -5rem;
  right: 10px;
  text-align: center;
  z-index: 1;
  /* background-color: rgba(242, 24, 79, 0.8); */
  display: block;
  color: #f8b630;
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
.scrollup i {
  font-size: 2.5rem;
  display: inline-block;
  transition: all 0.5s ease-out;
  /* transform: rotate(135deg); */
}
.scrollup:hover, .scrollup:focus {
  color: #202C45;
}

.scrollup.back-top {
  bottom: 20px;
}/*# sourceMappingURL=main.css.map */

/* Whatsapp */
.whatsapp {
  position:fixed;
  width:60px;
  height:60px;
  bottom:120px;
  right:40px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;
}

.whatsapp-icon {
  margin-top:13px;
}