/* Font */
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap');
@import url('http://fonts.cdnfonts.com/css/georgia');

html {
  overflow-x: hidden;
  height: 100%;
}

/* Variables */
:root {
  --c-brand: #0e954b;
  --c-brand-rgb: 248, 54, 145;
  --c-dark: #272830;
  --c-body: #636383;
  --c-light: #f6f6f6;
  --f-main: "Bai Jamjuree", sans-serif;
  --transition: all .4s cubic-bezier(.165, .84, .44, 1);
  --shadow: 0px 15px 40px rgba(247, 232, 232, 0.1);
}

.text-primary {
  color: var(--c-brand) !important;
}
a[href="https://elfsight.com/google-reviews-widget/?utm_source=websites&utm_medium=clients&utm_content=google-reviews&utm_term=localhost&utm_campaign=free-widget"] {

  display: none !important;
  
}

.eapps-widget-toolbar{
  display: none !important;
}

#navbar {
  transition: all 0.3s ease-in-out; /* Ajusta la velocidad según lo que prefieras */
  will-change: transform, opacity;
}


#btnabout {
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#btnabout:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
/* Reset & Helpers */
body {
  font-family: var(--f-main);
  color: var(--c-body);
  line-height: 1.7;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 700;
  color: var(--c-brand);

}

.galeria-item img,
.galeria-item video {
    width: 100%;
    height: 150px; /* Puedes ajustar la altura a tu preferencia */
    object-fit: cover; /* Mantiene las proporciones de la imagen o video */
    border-radius: 5px; /* Añade un pequeño redondeo a las esquinas */
}

/* Contenedor del ícono de Play */
.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centra el ícono */
  font-size: 3rem; /* Tamaño del ícono */
  color: rgba(255, 255, 255, 0.8); /* Color del ícono */
  z-index: 10; /* Asegura que el ícono esté por encima del video */
  pointer-events: none; /* El ícono no interfiere con la interacción del video */
}

/* Cambiar color del ícono al pasar el mouse */
.galeria-item:hover .video-play-icon {
  color: rgba(255, 255, 255, 1); /* Se hace más visible al pasar el mouse */
}


.recent-articles .recent-wrapper {
  border-bottom: 1px solid #ddd;
  margin-bottom: 23px
}

.recent-articles .single-recent {
  position: relative;
  margin-left: 15px;
  margin-right: 15px
}

.recent-articles .single-recent .what-img img {
  border-radius: 6px;
  width: 100%
}

.recent-articles .single-recent .what-cap {
  background: #fff;
  position: absolute;
  bottom: -63px;
  left: 0;
  border-radius: 0 7px 0 0;
  -webkit-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  -ms-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s
}

.recent-articles .single-recent .what-cap span {
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  padding: 10px 15px;
  line-height: 1;
  margin-bottom: 15px;
  display: inline-block
}

.recent-articles .single-recent .what-cap h4 {
  font-size: 18px
}

@media (max-width: 767px) {
  .recent-articles .single-recent .what-cap h4 {
      font-size:13px
  }
}

.recent-articles .single-recent .what-cap h4 a {
  font-weight: 700;
  line-height: 1.4
}

.recent-articles .single-recent .what-cap h4 a:hover {
  color: #0e7323
}

.recent-articles .single-recent:hover .what-cap {
  bottom: -70px
}

.recent-articles .slick-arrow {
  background: none;
  border: none;
  position: absolute;
  bottom: -87px;
  text-align: center;
  left: 0;
  right: -85px;
  margin: auto;
  font-size: 46px;
  cursor: pointer;
  color: #ff0b0b;
  -webkit-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  -ms-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s
}

.recent-articles .slick-prev.slick-arrow {
  transform: rotate(180deg);
  left: -172px;
  color: #ddd
}

.recent-articles .slick-prev.slick-arrow:hover {
  color: red
}


/*** Img Border ***/
.img-border {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.img-border::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 3rem;
  bottom: 3rem;
  border: 5px solid var(--c-brand);
  border-radius: 6px;
}

.img-border img {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  border-radius: 6px;
}

a {
  text-decoration: none;
  color: var(--c-dark);
  transition: var(--transition);
}

/* Estilo del preloader */
#preloader {
  background-color: #fff; /* Fondo blanco */
  height: 100vh; /* Asegura que cubra toda la altura de la ventana */
  width: 100vw;  /* Asegura que cubra todo el ancho de la ventana */
  position: fixed; /* Fijado para permanecer mientras se carga */
  top: 0;
  left: 0;
  z-index: 1100; /* Coloca el preloader sobre todo el contenido */
  display: flex; /* Usamos flexbox para centrar el contenido */
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
}

/* Imagen dentro del preloader */
#preloader img {
  width: 10vw; /* Ajusta el tamaño de la imagen según sea necesario */
}


.dark-bg {
  background: #073a12;
  color: #fff;

}

.counter {
  width: 25%;
  margin-bottom: 10px;
}

@media (min-width: 300px) and (max-width: 992px) {
  #preloader {
    background-color: #fff;
    height: 100vh; /* Ajuste para que sea toda la pantalla */
    position: fixed;
    width: 100vw; /* Asegura que cubra todo el ancho */
    z-index: 1100;
    display: flex; /* Usa flexbox para centrar el contenido */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
  }

  #preloader img {
    width: 50vw; /* Mantén la imagen al 50% del ancho disponible */
    max-width: 300px; /* Evita que crezca demasiado en pantallas medianas */
    height: auto; /* Mantén la proporción de la imagen */
  }
}


a:hover {
  color: var(--c-brand);
}

img {
  width: 100%;
}

.content-whatsapp img {
  width: 50px;
  border-radius: 50%;
  float: left;

}

.logo {
  width: 300px;
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 10px;
}

#containerpolitica {
  padding-top: 120px;
  padding-bottom: 10px;
}

.text-brand {
  color: var(--c-brand);
}

.setion-title {
  max-width: 560px;
  margin: 0 auto 60px auto;
}

.setion-title .line {
  width: 60px;
  height: 2px;
  background-color: var(--c-brand);
  display: inline-block;
}

.section-connector {
  position: none;
}

#swiper {
  width: 90%;
  height: 500px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seguros {
  height: min-content;
  width: 70%;
  padding: 20px;
  border-radius: 12px;
  background: #e9eeeb;

}

.imgasociados {
  margin-left: 8px;
  margin-bottom: 30px;
}

.imgasociados img {
  width: 250px;
}

@media (min-width: 300px) and (max-width: 992px) {

  #swiper {
    width: 100%;
    height: 520px;
  }


  .seguros {
    height: min-content;
    width: 100%;
    padding: 2px;
    border-radius: 12px;
    background: #e9eeeb;

  }


}

@media (min-width: 300px) and (max-width: 576px) {


  .counter {
    width: 11%;
    margin-bottom: 10px;
  }

}



@media (min-width: 768px) and (max-width: 992px) {
  .col-md-2 {
    flex: 0 0 auto;
    width: 50%;
  }

}






#imgvalores {
  width: 80%;

}

.section-connector::after {
  content: '';
  width: 2px;
  height: 100px;
  background-color: var(--c-brand);
  position: none;
  top: -50px;
  left: 50%;
}

#wrapper {
  position: relative;
  height: 100vh;
}

#slider-area {
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

#slider-area::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(hsla(125, 96%, 19%, 0.395), hsla(125, 92%, 24%, 0.395));
}

#slider-area .owl-item div {
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;

}

#wrapper #nav-area {
  position: absolute;
  top: 5%;
  left: 50%;
  text-align: center;
  z-index: 1;
}

.nav-area {
  text-align: center;
  padding: 26px 0;
}

.nav a {
  font-family: montserrat;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  margin: 0 15px;
  padding: 10px;
  transition: all .6s ease;
}

.nav a:hover {
  background: rgb(28, 207, 67);
}

.slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.slider-text h1 {
  font-family: var(--f-main);
  font-size: 40px;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}

.slider-text h2 span {
  color: rgb(39, 138, 26);
}

.slider-text p {
  font-size: 18px;
  color: #fff;
}

.slider-text a {
  text-decoration: none;
  background: rgb(4, 107, 4);
  color: #fff;
  display: inline-block;
  padding: 12px 45px;
  margin: 15px;
  text-transform: uppercase;
  font-family: montserrat;
  font-weight: 500;
  border: 2px solid #fff;


}

.slider-text a.btn {
  background-color: transparent;
}

.slider-text a#btn1 {
  background-color: transparent;
}

.container-portada {
  width: 100%;
  height: 900px;
  position: absolute;
  background-image: url(../images/portada.jpg);
  background-size: 150%;
  animation: movimiento 20s infinite linear alternate;
}

.container-portada2 {
  width: 100%;
  height: 900px;
  position: absolute;
  background-image: url(../images/portada2.jpg);
  background-size: 150%;
  animation: movimiento 10s infinite linear alternate;
}

.container-portada3 {
  width: 100%;
  height: 900px;
  position: absolute;
  background-image: url(../images/portada.jpg);
  background-size: 150%;
  animation: movimiento 20s infinite linear alternate;
}

@keyframes movimiento {
  from {
    background-position: bottom left;
  }

  to {
    background-position: top right;
  }
}


.capa-gradient {
  width: 100%;
  height: 900px;
  position: absolute;
  background: linear-gradient(hsla(125, 96%, 19%, 0.395), hsla(125, 92%, 24%, 0.395));
  opacity: 0.5;
}

.capa-gradient::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(hsla(125, 96%, 19%, 0.395), hsla(125, 92%, 24%, 0.395));
}



@media (min-width: 300px) and (max-width: 992px) {

  #imgvalores {
    width: 100%;

  }

  .container-portada {
    width: 100%;
    height: 900px;
    position: absolute;
    background-image: url(../images/portada.jpg);
    background-size: 400%;
    animation: movimiento 30s infinite linear alternate;
  }

  .container-portada2 {
    width: 100%;
    height: 900px;
    position: absolute;
    background-image: url(../images/portada2\ -movil.jpg);
    background-size: 310%;
    animation: movimiento 30s infinite linear alternate;
  }

  .container-portada3 {
    width: 100%;
    height: 900px;
    position: absolute;
    background-image: url(../images/portada.jpg);
    background-size: 400%;
    animation: movimiento 30s infinite linear alternate;
  }

  .logo {
    width: 200px;
  }

  #btnabout {
    width: 150px;
    font-size: 13px;
  }




}



.container-details {
  width: 100%;
  max-width: 1200px;
  position: relative;
  margin: auto;
}


.details {
  width: 100%;
  max-width: 500px;
  position: relative;
  top: 20px;
  color: white;
}

.details h1 {
  font-size: 40px;
  font-weight: 100;
  margin-left: 10px;
}

.details p {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 100;
  margin-left: 10px;
}

.details button {
  padding: 10px 20px;
  font-size: 16px;
  background: none;
  border-style: none;
  border: 1px solid white;
  color: white;
  margin-top: 20px;
  transition: background 300ms;
  cursor: pointer;
  margin-left: 10px;
}

.details button:hover {
  background: white;
  color: black;
}


/*Articulo*/
article h1 {
  font-size: 40px;
  font-weight: 100;
  margin-left: 10px;
}

article hr {
  max-width: 500px;
  height: 4px;
  border-style: none;
  background: -webkit-linear-gradient(left, black, #0672d0);
  margin-top: 10px;
  margin-left: 10px;
}

article p {
  font-size: 20px;
  margin-top: 20px;
  font-weight: 100;
  margin-left: 10px;
}



@media screen and (max-width: 500px) {
  .details p {
    font-size: 18px;
  }
}

#btnabout:hover {
  transform: scale(1.05);
  background-color: #0a753b;
}

#btnabout:hover .fa-play {
  transform: translateY(0);
}

.col-lg-5 img:hover {
  transform: scale(1.05);
}
/* .carousel {
  height: 100vh;
}

#carouselExampleDark {
  height: 115vh;
}

.carousel-inner {
  height: 110vh;
} */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 5px; /* Ajusta el espacio entre las imágenes */
}

.gallery-grid a {
  display: block;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

@media (min-width: 340px) and (max-width: 992px) {

  .slider-text h1 {
    font-family: var(--f-main);
    font-size: 58px;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
  }

  /* .carousel {
    height: 80vh;
  }
  .carousel-inner {
    height: 80vh;
  }

  #carouselExampleDark {
    height: 1300px;
  } */

}

.fw-bolderr {
  font-weight: bolder !important;
}

@media (min-width: 320px) and (max-width: 450px) {

  .btn {
    width: 90px;
    font-size: 10px;
  }

  .fw-bolder {
    font-size: 13px;
  }

  .textservi {
    font-size: 13px;
  }

  .fw-bolderr {
    font-weight: bolder !important;
  }


}

@media (min-width: 325px) and (max-width: 340px) {
  .slider-text h1 {
    font-family: var(--f-main);
    font-size: 49px;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
  }

}

.ratio {
  margin-bottom: 40px;
}

.ratio iframe {
  margin-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}


/* Navbar */
.navbar {
  transition: var(--transition);
  padding-top: 7px;
  padding-bottom: 7px;

}


#navbarcontacto {
  padding-top: 7px;
  padding-bottom: 7px;
  transition: var(--transition);
  background-color: rgba(10, 117, 19, 0.527);
}

.navbar.scrolled {
  padding-top: 7px;
  padding-bottom: 7px;
  background-color: rgba(10, 117, 19, 0.527);
  box-shadow: var(--shadow);
}


.navbar-toggler {
  border: 1px solid rgba(187, 185, 185, 0.452);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar movil */
@media (min-width: 991px) and (max-width: 992px) {
  .navbar:not(.top-nav-collapse) {
    background: #1C2331 !important;
    padding-top: 7px;
    padding-bottom: 7px
  }

  .navbar {
    transition: var(--transition);
    padding-top: 7px;
    padding-bottom: 7px;

  }

}

.view,
body,
html {
  height: 100%
}

.page-footer,
.top-nav-collapse {
  background-color: #eceef1;
  padding-top: 7px;
  padding-bottom: 7px
}

@media only screen and (max-width:900px) {
  .navbar {
    background-color: #1C2331;
    padding-top: 7px;
    padding-bottom: 7px
  }
}

/* end Navbar movil */
.navbar-toggler {
  border-radius: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 16px;
    padding-left: 16px;

  }

}

.navbar .navbar-nav .nav-link {
  font-weight: 700;
  color: var(--c-light);

}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--c-brand);
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--c-light);
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: var(--c-brand);
  color: white;
  border: 2px solid var(--c-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  border-radius: 50%;
}

.social-icon:hover {
  background-color: transparent;
}

/* Btn */
.btn {
  border-radius: 0;
  border-width: 2px;
  font-weight: 500;
}

.btn-brand,
.btn-brand:focus {
  background-color: var(--c-brand);
  color: white;
  border-color: var(--c-brand);
}

.btn-brand:hover {
  background-color: transparent;
  color: var(--c-brand);
  border-color: var(--c-brand);
}

.btn1 {
  padding: 10px 24px;
  border-radius: 0;
  border-width: 2px;
  font-weight: 500;
}

.btn1-brand,
.btn1-brand:focus {
  background-color: var(--c-brand);
  color: white;
  border-color: var(--c-brand);
}

.btn1-brand:hover {
  background-color: transparent;
  color: var(--c-brand);
  border-color: var(--c-brand);
}


/* Home */
#home {
  background-image: url(../images/hero.jpg);
  background-position: center;
  background-size: cover;
}

#homer {
  padding-top: 10rem !important;
  padding-bottom: 3rem !important;
}

/* Services */
.service-icon {
  width: 170px;
  height: 200px;
  background-color: var(--c-brand);
  color: white;
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.custom-link {
  display: inline-flex;
  align-items: center;
}

.custom-link span {
  font-weight: 700;
}

.custom-link i {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-brand);
  border-radius: 100px;
  color: white;
  margin-left: 6px;
  transition: var(--transition);
}

.custom-link:hover i {
  transform: translateX(6px);
}

/* Project */
.project {
  overflow: hidden;
  position: relative;
}

.project .content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--c-brand);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project img,
.project .content {
  transition: var(--transition);
}

.project:hover .content {
  top: 0;
}

.project:hover img {
  transform: translateY(-100%);
}

/* Client */
.client {
  margin-top: -1px;
  margin-left: -1px;
}

.client img {
  opacity: 0.7;
  height: 30px;
}

/* Resume */
.eduexp {
  position: relative;
}


.eduexp::after {
  content: '';
  width: 14px;
  height: 14px;
  background-color: var(--c-brand);
  position: absolute;
  left: -7px;
  top: 0;
}

#contact .form-control {
  border-radius: 0;
}

#contact .form-control:focus {
  box-shadow: none;
  border-color: var(--c-brand);
}

/* testimonio */
#testimonio {
  float: left;
  position: relative;
  padding: 30px 0;
  background: #fcfcfd;
  z-index: 1;
  width: 100%;
}

.section-title {
  float: left;
  position: relative;
  width: 100%;
  padding-bottom: 40px;
}

.section-title p {
  color: #7d93b2;
  font-size: 13px;
  line-height: 20px;
  max-width: 550px;
  margin: 0 auto;
}

.section-title h2 {
  float: left;
  width: 100%;
  text-align: center;
  color: var(--c-brand);
  font-size: 34px;
  font-weight: 800;
  position: relative;
}

.section-separator {
  float: left;
  width: 100%;
  position: relative;
  margin: 20px 0;
}

.section-separator:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  height: 3px;
  width: 50px;
  border-radius: 3px;
  z-index: 2;
  color: var(--c-brand);
  margin-left: -25px;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.listing-carousel-button {
  position: absolute;
  top: 50%;
  width: 80px;
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
  z-index: 100;
  cursor: pointer;
  background: var(--c-brand);
  box-shadow: 0 9px 26px rgba(58, 87, 135, 0.45);
  transition: all 200ms linear;
  outline: none;
}

.listing-carousel-button.listing-carousel-button-next {
  right: -30px;
  padding-right: 20px;
  border-radius: 60px 0 0 60px;
}

.listing-carousel-button.listing-carousel-button-prev {
  left: -30px;
  padding-left: 20px;
  border-radius: 0 60px 60px 0;
}

.listing-carousel-button.listing-carousel-button-next:hover {
  right: -15px;
  background: rgba(6, 27, 65, 0.4);
}

.listing-carousel-button.listing-carousel-button-prev:hover {
  left: -15px;
  background: rgba(6, 27, 65, 0.4);
}

.testi-item {
  transition: all .3s ease-in-out;
  transform: scale(0.9);
  opacity: 0.9;
}

.testimonials-text {
  padding: 75px 50px 75px;
  overflow: hidden;
  background: #f5f6fa;
  border: 1ps solid #f1f1f1;
  border-radius: 10px;
  transition: all .3s ease-in-out;
}

.testimonials-text-after {
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  color: #ccc;
  opacity: .3;
  font-size: 35px;
  transition: all 400ms linear;
  bottom: 25px;
  right: 30px;
}

.testimonials-text-before {
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  color: #ccc;
  opacity: .3;
  font-size: 35px;
  transition: all 400ms linear;
  top: 25px;
  left: 30px;
}

.testimonials-text .listing-rating {
  float: none;
  display: inline-block;
  margin-bottom: 12px;
}

.listing-rating i {
  color: var(--c-brand);
}

.testimonials-avatar h3 {
  font-weight: 600;
  color: #7d93b2;
  font-size: 18px;
}

.testimonials-avatar h4 {
  font-weight: 400;
  font-size: 12px;
  padding-top: 6px;
  color: var(--c-brand);
}

.testimonials-carousel .swiper-slide {
  padding: 30px 0;
}

.testi-avatar {
  position: absolute;
  left: 50%;
  top: -30px;
  width: 90px;
  height: 90px;
  margin-left: -45px;
  z-index: 20;
}

.testi-avatar img {
  width: 90px;
  height: 90px;
  float: left;
  border-radius: 100%;
  border: 6px solid #fff;
  box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}

.swiper-slide-active .testimonials-text {
  background: #fff;
  box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}

.testimonials-text p {
  color: #878c9f;
  font-size: 14px;
  font-family: var(--f-main);
  line-height: 24px;
  padding-bottom: 10px;
  font-weight: 500;
}

.text-link {
  position: absolute;
  bottom: 0;
  padding: 15px 0;
  border-radius: 10px 10px 0 0;
  background: #f9f9f9;
  border: 1px solid #eee;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.03);
  left: 50%;
  width: 200px;
  margin-left: -100px;
}

.swiper-slide-active .testi-item {
  opacity: 1;
  transform: scale(1.0);
}

.tc-pagination {
  float: left;
  margin-top: 10px;
  text-align: center;
  width: 100% !important;
}

.tc-pagination_wrap {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
}

.tc-pagination2 {
  float: none;
  display: inline-block;
  padding: 14px 0;
  background: #fff;
  border-radius: 30px;
  min-width: 250px;
  border-bottom: 0;
}

.tc-pagination .swiper-pagination-bullet,
.tc-pagination2.swiper-pagination-bullet {
  opacity: 1;
  background: var(--c-brand);
  margin: 0 2px;
  width: 10px;
  height: 10px;
  transition: all 300ms ease-in-out;
}

/* Footer */
footer {
  padding-top: 80px;
  background: linear-gradient(0deg, rgba(8, 32, 50, 0.9), rgba(8, 32, 50, 0.9)), url(../images/portada2.jpg), #082032;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

footer h4 {
  color: white;
  margin-bottom: 24px;
}

footer p,
footer li,
footer li a {
  color: rgba(255, 255, 255, 0.7);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-top: 6px;
}

.text-logo {
  width: 180px;
  border-radius: 30%;
  float: left;
  background: linear-gradient(0deg, rgba(8, 32, 50, 0.9), rgba(8, 32, 50, 0.9));
}

.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-bottom a {
  color: var(--c-brand);
}

/* ---------------------------------------------------------------- */
/* 05.Contact Form                                                   
/* ---------------------------------------------------------------- */


.sectionn {
  padding: 110px 0
}

.contact-form-wrap {
  padding: 30px;
  border-radius: 10px;

}

.contact-form-wrap .contact-form-group {
  position: relative;
  margin-bottom: 30px;
}

.contact-form-wrap .contact-form-group>i {
  left: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  position: absolute;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  display: inline-block;
  pointer-events: none;
  color: #40b922b7;
  background: rgb(192 102 10 / 20%);
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.contact-form-wrap .contact-form-group .form-control {
  height: 60px;
  color: #000;
  outline: none;
  font-size: 15px;
  border-radius: 5px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-shadow: 0 5px 20px 0 rgba(61, 82, 96, 0.15);
  box-shadow: 0 5px 20px 0 rgba(61, 82, 96, 0.15);
}

@media screen and (max-width: 576px) {
  .contact-form-wrap .contact-form-group .form-control {
    font-size: 14px;
  }
}

.contact-form-wrap .contact-form-group .form-control:focus {
  outline: none;
  border: none;
  color: #000;
  -webkit-box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
  box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
}

.contact-form-wrap .contact-form-group #txtInput {
  padding-left: 90px;
}

.contact-form-wrap .contact-form-group #txtCaptchaSpan {
  position: absolute;
  top: 50%;
  height: 60px;
  padding-left: 14px;
  padding-right: 14px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #40b922b7;
  color: #fff;
  border-radius: 5px 0 0 5px;
}

.contact-form-wrap .contact-form-group textarea.form-control {
  height: auto;
  padding-top: 20px;
}

.contact-form-wrap .empty-form span,
.contact-form-wrap .email-invalid span,
.contact-form-wrap .phone-invalid span,
.contact-form-wrap .terms-alert span,
.contact-form-wrap .subject-alert span,
.contact-form-wrap .security-alert span {
  display: block;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #721c24;
  background: rgba(242, 116, 116, 0.2);
}

#error_message {
  margin-top: 30px;
  display: block;
  padding: 20px;
  border-radius: 5px;
  word-break: break-word;
  background: rgba(242, 116, 116, 0.2);
  color: #721c24;
}

.custom-modal .modal-header {
  text-align: center;
  padding: 20px;
}

.custom-modal .modal-header h5,
.custom-modal .modal-header button {
  color: #fff;
}

.custom-modal .modal-header.danger {
  background: #f27474;
  color: #fff;
}

.custom-modal .modal-header.success {
  background: #40b922b7;
  color: #fff;
}

.custom-modal .modal-header.terms {
  background: #07f;
  color: #fff;
}

.custom-modal .modal-body {
  padding: 20px;
}

.custom-modal .modal-body .form-popup-inner {
  text-align: center;
}

.custom-modal .modal-body .form-popup-inner .form-icon {
  margin-bottom: 30px;
}

.custom-modal .modal-body .form-popup-inner .form-icon svg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.custom-modal .modal-body .form-popup-inner .form-icon.danger svg {
  fill: #f27474;
  stroke: #f27474;
  background: rgba(242, 116, 116, 0.1);
}

.custom-modal .modal-body .form-popup-inner .form-icon.success svg {
  fill: #fb3535;
  stroke: #85fb35;
  background: rgba(10, 192, 131, 0.1);
}

.custom-modal .modal-footer {
  padding: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}

.path.circle {
  -webkit-animation: dash 0.9s ease-in-out;
  animation: dash 0.9s ease-in-out;
}

.path.line {
  stroke-dashoffset: 1000;
  -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
  animation: dash 0.9s 0.35s ease-in-out forwards;
}

.path.check {
  stroke-dashoffset: -100;
  -webkit-animation: dashCheck 0.9s 0.35s ease-in-out forwards;
  animation: dashCheck 0.9s 0.35s ease-in-out forwards;
}


@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes dashCheck {
  0% {
    stroke-dashoffset: -100;
  }

  100% {
    stroke-dashoffset: 900;
  }
}

@keyframes dashCheck {
  0% {
    stroke-dashoffset: -100;
  }

  100% {
    stroke-dashoffset: 900;
  }
}

.custom-control {
  padding: 0;
}

.custom-control .custom-control-input {
  position: relative;
}

.custom-control span {
  vertical-align: middle;
  margin-left: 14px;
  color: #000;
}

.custom-control span a {
  color: #fb3535;
}

@media screen and (max-width: 576px) {
  .custom-control span {
    font-size: 14px;
  }
}

.custom-control .custom-control-label {
  margin-left: 0;
  width: 32px;
  height: 32px;
  outline: none;
  text-align: center;
  line-height: 32px;
}

.custom-control .custom-control-label::before {
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
  text-align: center;
  line-height: 32px;
  position: absolute;
  border: none !important;
  pointer-events: initial;
  border-radius: 50% !important;
  display: inline-block;
  color: #fb3535;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: rgb(192 102 10 / 20%);
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.custom-control-input:checked~.custom-control-label::before,
.custom-control-label:active::before,
.custom-control-input:not(:disabled):active~.custom-control-label::before {
  border: none;
  content: "\f00c";
  color: #fb3535;
  background: rgb(192 102 10 / 20%);
}

.custom-control-label::after {
  display: none;
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
  border: none;
}

.form-validate-icons {
  top: 0;
  right: 14px;
  height: 60px;
  position: absolute;
  line-height: 60px;
}

.form-validate-icons span {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.form-validate-icons span:before {
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.form-validate-icons span.error {
  opacity: 1;
  visibility: visible;
}

.form-validate-icons span.error:before {
  content: "\f00d";
  color: #f27474;
  background: rgba(242, 116, 116, 0.2);
}

.form-validate-icons span.success {
  opacity: 1;
  visibility: visible;
}

.form-validate-icons span.success:before {
  content: "\f00c";
  color: #32b354;
  background: rgb(10 192 24 / 20%);
}

.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper select,
.custom-select-wrapper .select-hide {
  display: none;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card>hr {
  margin-right: 0;
  margin-left: 0;
}

.card>.list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card>.list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card>.list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card>.card-header+.list-group,
.card>.list-group+.card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link+.card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  height: 150px;
}

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

.social-iconss a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.social-iconss a:hover {
  background-color: #fff;
  color: var(--brand);
}

.team-member .image {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.team-member .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -10%;
  background-color: rgba(49, 155, 89, 0.7);
  opacity: 0;
  transition: all 0.4s ease;
}

.team-member h5 {
  margin-top: 16px;
  margin-bottom: 4px;
}

.team-member .social-iconss {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: all 0.4s ease;
}

.team-member .social-iconss a {
  width: 40px;
  height: 40px;
}

.team-member:hover .social-iconss {
  top: 50%;
  opacity: 1;
}

.team-member:hover .overlay {
  top: 0%;
  opacity: 1;
}

.custom-select-wrapper .select-selected {
  border-radius: 5px;
  outline: none;
  padding: 18px 15px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: #fff;
  color: #677294 !important;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(61, 82, 96, 0.15);
  box-shadow: 0px 5px 20px 0px rgba(61, 82, 96, 0.15);
}

.custom-select-wrapper .select-selected:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
  box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
}

.custom-select-wrapper .select-selected:after {
  right: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  content: "\f078";
  position: absolute;
  pointer-events: none;
  display: inline-block;
  color: #40b922b7;
  background: rgb(192 102 10 / 20%);
  font-size: 14px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.custom-select-wrapper .select-selected.select-arrow-active:after {
  content: "\f077";
}

.custom-select-wrapper .select-items {
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  margin-top: 10px;
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
  box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
}

.custom-select-wrapper .select-items .same-as-selected {
  background-color: #40b922b7;
  border-bottom-color: #40b922b7;
  color: #fff !important;
}

.custom-select-wrapper .select-items .same-as-selected:after {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.custom-select-wrapper .select-items div {
  color: #000;
  outline: none;
  width: 100%;
  display: block;
  padding: 18px 60px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 576px) {
  .custom-select-wrapper .select-items div {
    font-size: 14px;
  }
}

.custom-select-wrapper .select-items div:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
  box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
}

.custom-select-wrapper .select-items div:last-child {
  border-bottom: 0;
}

.custom-select-wrapper .select-items div:after {
  content: "\f041";
  left: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  z-index: 14;
  position: absolute;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  display: inline-block;
  color: #40b922b7;
  background: rgb(192 102 10 / 20%);
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.custom-select-wrapper .select-items div:hover {
  background-color: #40b922b7;
  border-bottom-color: #40b922b7;
  color: #fff;
}

.custom-select-wrapper .select-items div:hover:after {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ---------------------------------------------------------------- */
/* 06.Features                                                   
  /* ---------------------------------------------------------------- */
.features-box {
  padding: 30px;
  overflow: hidden;
  margin-bottom: 30px;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 6px 10px 0 rgba(61, 82, 96, 0.15);
  box-shadow: 0 6px 10px 0 rgba(61, 82, 96, 0.15);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.features-box:hover {
  -webkit-box-shadow: 0 22px 49px 0 rgba(61, 82, 96, 0.15);
  box-shadow: 0 22px 49px 0 rgba(61, 82, 96, 0.15);
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.features-box .features-icon i {
  color: #fff;
  font-size: 40px;
  margin-left: 0;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 90px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fb3535;
}

/* ---------------------------------------------------------------- */
/* 06.noticias                                                
  /* ---------------------------------------------------------------- */

.sectionn1 {
  padding: 90px 0;
}

.news .blog-post {
  transition: 0.2s ease;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .news .blog-post .post-thumb img {
    width: 100%;
  }
}

.news .blog-post .post-content {
  position: relative;
  padding: 30px 30px 25px 30px;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: #e5e5e5;
}

.news .blog-post .post-content .date {
  position: absolute;
  top: -32px;
  left: 30px;
  width: 65px;
  height: 65px;
  text-align: center;
  background: var(--c-brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news .blog-post .post-content .date h4 {
  color: #fff;
}

.news .blog-post .post-content .date h4 span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
}

.news .blog-post .post-content .post-title {
  padding-bottom: 5px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 15px;
}

.news .blog-post .post-content .post-title h2 {
  margin-top: 10px;
}

.news .blog-post .post-content .post-title h2 a {
  font-weight: 400;
  color: #222222;
}

.news .blog-post .post-content .post-title h2 a:hover {
  color: #ff6600;
}

.news .blog-post .post-content .post-meta ul {
  margin-bottom: 0;
}

.news .blog-post .post-content .post-meta ul li i {
  margin-right: 7px;
}

.news .blog-post .post-content .post-meta ul li a {
  display: inline-block;
  padding-right: 25px;
  font-size: 0.875rem;
}

.news .blog-post:hover {
  box-shadow: 0px 0px 30px 0px rgba(11, 29, 66, 0.15);
}



.single-recent {
  flex: 1 1 calc(33.333% - 16px); /* Para que cada tarjeta ocupe 1/3 del contenedor */
}

@media (max-width: 768px) {
  .single-recent {
      flex: 1 1 100%; /* En dispositivos móviles, ocupa el 100% */
  }
}


.news .blog-post.single {
  margin-bottom: 100px;
}

.news .blog-post.single .post-title {
  padding-top: 35px;
  padding-bottom: 0;
  border: none;
  margin-bottom: 10px;
}

.news .blog-post.single .post-title h1 {
  font-weight: 400;
}

.news .blog-post.single .post-meta {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 10px;
}

.news .blog-post.single .post-details p {
  font-size: 15px;
}

.news .blog-post.single .post-details .quotes {
  background: #f5f5f8;
  padding: 30px;
  border-left: 3px solid var(--c-brand);
  margin: 15px 0;
}

.news .blog-post.single .post-details .quotes blockquote {
  font-size: 15px;
  font-style: italic;
}

.news .blog-post.single .post-details .share-block {
  display: flex;
  padding-top: 20px;
  padding-bottom: 25px;
}

@media (max-width: 991px) {
  .news .blog-post.single .post-details .share-block {
    flex-wrap: wrap;
  }
}

.news .blog-post.single .post-details .share-block p {
  padding: 0;
}

.news .blog-post.single .post-details .share-block .tag {
  flex-basis: 50%;
  align-self: center;
}

@media (max-width: 991px) {
  .news .blog-post.single .post-details .share-block .tag {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 30px;
    flex-grow: 1;
  }
}

.news .blog-post.single .post-details .share-block .tag p,
.news .blog-post.single .post-details .share-block .tag ul {
  display: inline;
  font-family: "Montserrat", sans-serif;
}

.news .blog-post.single .post-details .share-block .tag p {
  color: #222222;
}

.news .blog-post.single .post-details .share-block .tag ul li a {
  color: #848484;
  font-size: 15px;
}

.news .blog-post.single .post-details .share-block .tag ul li a:hover {
  color: #ff6600;
}

.news .blog-post.single .post-details .share-block .share {
  flex-basis: 50%;
  text-align: right;
}

@media (max-width: 991px) {
  .news .blog-post.single .post-details .share-block .share {
    flex-basis: 100%;
    flex-grow: 1;
    text-align: center;
  }
}

.news .blog-post.single .post-details .share-block .share p,
.news .blog-post.single .post-details .share-block .share ul {
  display: inline;
  font-family: "Montserrat", sans-serif;
}

.news .blog-post.single .post-details .share-block .share p {
  margin-right: 18px;
}

@media (max-width: 400px) {
  .news .blog-post.single .post-details .share-block .share p {
    display: block;
    margin-bottom: 10px;
  }
}

.news .blog-post.single .post-details .share-block .share ul.social-links-share {
  margin-bottom: 0;
}

@media (max-width: 400px) {
  .news .blog-post.single .post-details .share-block .share ul.social-links-share {
    text-align: left;
  }
}

.news .blog-post.single .post-details .share-block .share ul.social-links-share .list-inline-item:not(:last-child) {
  margin-right: 7px;
}

@media (max-width: 400px) {
  .news .blog-post.single .post-details .share-block .share ul.social-links-share .list-inline-item:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 5px;
  }
}

.news .blog-post.single .post-details .share-block .share ul.social-links-share li a {
  display: block;
  height: 38px;
  width: 38px;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e5e5;
}

.news .blog-post.single .post-details .share-block .share ul.social-links-share li a i {
  line-height: 38px;
}

.news .blog-post.single .post-details .share-block .share ul.social-links-share li a:hover {
  background: var(--c-brand);
  border-color: var(--c-brand);
}

.news .blog-post.single .post-details .share-block .share ul.social-links-share li a:hover i {
  color: #fff;
}

.news .blog-post.single:hover {
  box-shadow: none;
}

.news .comments {
  padding-bottom: 80px;
}

.news .comments h5 {
  font-weight: 400;
  margin-bottom: 10px;
}

.news .comments .comment {
  padding-top: 14px;
}

.news .comments .comment img {
  margin-right: 30px;
}

.news .comments .comment .media-body h6 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.news .comments .comment .media-body p,
.news .comments .comment .media-body ul {
  font-size: 15px;
}

.news .comments .comment .media-body p {
  margin-bottom: 14px;
}

.news .comments .comment .media-body ul {
  margin-bottom: 10px;
}

.news .comments .comment .media-body ul li span {
  margin-right: 7px;
}

.news .comments .comment .media-body ul li a {
  color: #ff6600;
}

.news .comment-form h5 {
  font-weight: 400;
  margin-bottom: 30px;
}

.news .comment-form .form-control,
.news .comment-form button {
  margin-bottom: 30px;
}