/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html{
  width: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
  background-image: url();
  width: 100%;
  overflow: auto;
}

a {
  color: #149ddd;
  text-decoration: none;
}

a:hover {
  color: #37b3ed;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

.c-b{
  color: #000;
  font-size: 1.1rem;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #149ddd;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #2eafec;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background: #040b14;
  overflow-y: auto;
}
#header .profile img {
  margin: 15px auto;
  display: block;
  width: 7.5rem;
  border: 8px solid #2c2f3f;

}
#header .profile h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}
#header .profile h1 a, #header .profile h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .profile .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #212431;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#header .profile .social-links a:hover {
  background: #149ddd;
  color: #fff;
  text-decoration: none;
}

#main {
  margin-left: 300px;
}

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }

  #main {
    margin-left: 0;
  }

  #hero .hero-container {
    position: relative;
    z-index: 2;
    min-width: 300px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding: 30px 0 0 0;
}
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}
.nav-menu a, .nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #a8a9b4;
  padding: 12px 15px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
}
.nav-menu a i, .nav-menu a:focus i {
  font-size: 24px;
  padding-right: 8px;
  color: #6f7180;
}
.nav-menu a:hover, .nav-menu .active, .nav-menu .active:focus, .nav-menu li:hover > a {
  text-decoration: none;
  color: #fff;
}
.nav-menu a:hover i, .nav-menu .active i, .nav-menu .active:focus i, .nav-menu li:hover > a i {
  color: #149ddd;
}
.list-enabled{
  /*list-style: circle !important;*/ 
  margin: -15px 0 -15px 0;
  padding: 0 0 0 4%;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 2rem;
  font-weight: 500;
  transition: all 0.4s;
  outline: none !important;
  /* background-color: #149ddd; */
  color: #082938;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}

.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active #header {
  left: 0;
}

@media screen and (max-width: 760px){
  .mySwiper .swiper-button-next,
  .mySwiper .swiper-button-prev,
  .mySwiper .swiper-pagination
  {
    display: none;
  }
  .mySwiper .about-data {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Carrucel
--------------------------------------------------------------*/
.swiper {
  width: 100%;
  height: 100%;
}
.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;
}
section .mySwiper .swiper-button-next,
section .mySwiper .swiper-button-prev{
  top: unset;
  bottom: 140px;
  height: 50px;
  width: 50px;
  color: #fff;
  background-color: #1e1f24;
  border-radius: 50%;
  margin: 0 2rem 0 2rem
    ;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  border: 1px solid #149ddd;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 85vh;
  object-fit: cover;
}
.home__v {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

@media (min-width: 765px) {
  .v-home2{
    display: none;
  }
}

@media (max-width: 764px) {
  .v-home{
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
#hero .hero-container {
  height: 90vh;
  position: relative;
  z-index: 2;
  min-width: 300px;
}
#hero h1{
  padding-top: 17rem;
}
#hero h1, h2 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
#hero p {
  color: #fff;
  margin-bottom: 50px;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}
#hero p span {
  color: #fff;
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid #149ddd;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background: #f5f8fd;
}

.section-title {
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #173b6c;
}
.title-contact {

  color: #173b6c!important
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #149ddd;
  bottom: 0;
  left: 0;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about{
  padding-top: 5rem;
}
.about-data{
  position: absolute;
  margin-top: 12rem;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  z-index: 9999;
}

.about-data h2 {
  font-size: 3rem;
}

.aboout-data-button{
  padding: .9rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10%;
  border: none;
  background-color: rgba(0, 0, 0, 0.4);
  color: rgb(255, 255, 255);
  z-index: 9999;
}

.aboout-data-button:hover{
  background-color: #858585;
  color: #000;
  font-weight: 700;
}


.img-bg::after {
  min-height: 100vh;
  width: 100%;
  position: absolute;
  content: '';
  top:0;
  background-color: rgba(0, 0, 0, 0);
}

img.div-video{
  width: 100%;
}

/*--------------------------------------------------------------
# Resumen
--------------------------------------------------------------*/
.resume{
  padding-top: 0;
}
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #050d18;
}
.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #1f5297;
  position: relative;
}
.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #050d18;
  margin-bottom: 10px;
}
.resume .resume-item h5 {
  font-size: 16px;
  background: #e4edf9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}
.resume .resume-item ul {
  padding-left: 20px;
}
.resume .resume-item ul li {
  padding-bottom: 10px;
}
.resume .resume-item:last-child {
  padding-bottom: 0;
}
.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #1f5297;
}

/*--------------------------------------------------------------
# PARALLAX
--------------------------------------------------------------*/


.parallax-img{
  background-image: url(/assets/img/parallax/img3.jpg);
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.parallax-img-fibro{
  background-image: url(/assets/img/parallax/Imagen20.jpg);
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.parallax-img-ost{
  background-image: url(/assets/img/parallax/Imagen2.jpg);
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.parallax-img-art{
  background-image: url(/assets/img/parallax/Imagen4.jpg);
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-img-lup{
  background-image: url(/assets/img/parallax/Imagen5.jpg);
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-img-gota{
  background-image: url(/assets/img/parallax/Imagen7.jpg);
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-img-espon{
  background-image: url(/assets/img/parallax/Imagen10.jpg);
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-img-oste{
  background-image: url(/assets/img/parallax/Imagen14.jpg);
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


/*--------------------------------------------------------------
# SERVICE-CARD
--------------------------------------------------------------*/

.service{
  padding: 0 1rem 0 1rem;
}

.service-content h2{
  text-align: center;
  font-size: 2rem;
  color: #050505;
  margin-bottom: 2rem;
  text-transform: uppercase;

}

.section-service{
  justify-content: center;
  display: flex;
  gap: 1rem;
  margin: 0 1rem 0 1rem;
}

/* .card{
  position: relative;
  width: 20rem;
  height: 25rem;
  margin-bottom: 2rem;
  border: none;
} */

/* .card .face{
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1rem;
  overflow: hidden;
  transition: .5s;
} */

.front-img{
  background-image: url(/assets/img/galery/AnyConv.com__g-3.webp);
}

.front-img2{
  background-image: url(/assets/img/galery/AnyConv.com__g-4.webp);
}

.front-img3{
  background-image: url(/assets/img/galery/AnyConv.com__g-5.webp);
}

.front-img4{
  background-image: url(/assets/img/galery/AnyConv.com__g-3.webp);
}

.front-img,
.front-img2,
.front-img3,
.front-img4{
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* .card .front{
  transform: perspective(60rem) rotateY(0deg);
  box-shadow: 0 5px 10px #000;
} */

/* .card .from img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/* .crad .from h3 {
  position: absolute;
  bottom: 0;
  width: 100%;
  line-height: 45px;
  color: #fff;
  background: rgba(0,0,0,0.4);
  text-align: center;
}

.card .back {
  transform: perspective(600px) rotateY(180deg);
  background-color: #149ddd;
  padding: 15px;
  color: #f3f3f3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.card .back .link {
  border-top: solid 1px #f3f3f3;
  height: 50px;
  line-height: 50px;
} */

/* .card .back .link a{
  color: #f3f3f3;
}

.card .back h3{
  font-size: 30px;
  margin-top: 20px;
  letter-spacing: 2px;
}

.card .back p{
  letter-spacing: 1px;
}

.card:hover .front {
transform: perspective(600px) rotateY(180deg);
}

.card:hover .back{
transform: perspective(600px) rotateY(360deg);

} */

@media screen and (max-width: 912px){
  .section-service{
    flex-wrap: wrap;
  }

}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #9fddfc;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: rgb(143, 7, 7);
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #149ddd;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #149ddd;
}

/*--------------------------------------------------------------
# Galeria
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #149ddd;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(20, 157, 221, 0.75);
  transition: 0.3s;
  width: 50%;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(20, 157, 221, 0.95);
}
.portfolio .portfolio-wrap .portfolio-links a + a {
  border-left: 1px solid #37b3ed;
}
.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 130px;
}
.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .info i {
  font-size: 20px;
  color: #149ddd;
  float: left;
  width: 44px;
  height: 44px;
  background: #dff3fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #050d18;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #173b6c;
  margin-top: 0;
}
.contact .info .email p {
  padding-top: 5px;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: #149ddd;
  color: #fff;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #149ddd;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 15px;
}
.contact .php-email-form label {
  padding-bottom: 8px;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #149ddd;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #37b3ed;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f9f9f9;
}
.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0e2442;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 15px;
  color: #f4f6fd;
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background: #040b14;
}
#footer .copyright {
  text-align: center;
}
#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #eaebf0;
}
@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}

#main .img {
  width: 100%;
  height: 90vh;
  background: url("/assets/img/galery/AnyConv.com__g-1.webp") top center;
  background-size: cover;
  background-attachment: fixed;
}

/*=============== about.html ===============*/
.bg-section{
  background-image: url(/assets/img/service/fondo.webp);
}

.section-about{
  padding-top: 3rem;
  padding-bottom: 0;
}

.bg-section h2{
  font-size: 2rem;
  text-align: center;
  padding: 1rem 0 0 0;
}

.img-abut-1 {
  width: 100%;
  height: 90vh;
  background: url("../img/about1/AnyConv.com__home2.webp")  center;
  background-size: cover;
}
.breadcrumbs{
  padding: 0;
}

.circle{
  position: relative;
  overflow: hidden;
}

.circle1{
  background-image: url(../img/about1/about1.jpeg);
  background-size: cover;
  background-position: center center;
}


.circle1{
  width: 400px;
  height: 400px;
  float: left;
  border-radius: 50%;
  margin: 20px;
  shape-outside: circle();
}

.mobile-nav-toggle{
  color: rgb(20, 157, 221);
  background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 450px){
  .circle1{
    width: 300px;
    height: 300px;
  }
}


.about-mi-data p{
  color: rgb(255, 255, 255);
  text-align: justify;
}

.about-mi-data h2{
  font-size: 2.5em;
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
}

.circle2{
  background-image: url(../img/about1/about1.jpeg);
  background-size: cover;
  background-position: center center;
}

.circle2{
  width: 300px;
  height: 300px;
  float: right;
  border-radius: 50%;
  margin: 20px;
  shape-outside: circle();
}

.about-contact h2, p{
  color: #fff;
}

.parallax{
  padding: 0;
}

.parallax-img-2{
  background-image: linear-gradient(to right, rgb(0 0 0/.40), rgb(0 0 0 / .4)),
    url(/assets/img/parallax/img-3.jpg);
  max-height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-img-3{
  background-image: linear-gradient(to right, rgb(0 0 0/.40), rgb(0 0 0 / .4)),
    url(/assets/img/parallax/img-4.jpg);
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-img-4{
  background-image: linear-gradient(to right, rgb(0 0 0/.40), rgb(0 0 0 / .4)),
    url(/assets/img/parallax/img-1.jpg);
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


/*=============== about2.html ===============*/

.circle3{
  background-image: url(../img/about2/about1.jpeg);
  background-size: cover;
  background-position: center center;
}


.circle3{
  width: 300px;
  height: 300px;
  float: left;
  border-radius: 50%;
  margin: 20px;
  shape-outside: circle();
}

.circle4{
  background-image: url(../img/about2/about1.jpeg);
  background-size: cover;
  background-position: center center;
}

.circle4{
  width: 250px;
  height: 250px;
  float: right;
  border-radius: 50%;
  margin: 20px;
  shape-outside: circle();
}

@media (max-width: 450px){
  .circle4{
    width: 300px;
    height: 300px;
  }
}

/*=============== about3.html ===============*/


.circle5{
  background-image: url(../img/about3/about1.jpeg);
  background-size: cover;
  background-position: center center;
}


.circle5{
  width: 300px;
  height: 300px;
  float: left;
  border-radius: 50%;
  margin: 20px;
  shape-outside: circle();
}

.circle6{
  background-image: url(../img/about3/about1.jpeg);
  background-size: cover;
  background-position: center center;
}

.circle6{
  width: 250px;
  height: 250px;
  float: right;
  border-radius: 50%;
  margin: 20px;
  shape-outside: circle();
}

@media (max-width: 450px){
  .circle4{
    width: 300px;
    height: 300px;
  }
}

/* modal videos */

.video__button {
  margin: auto;
  position: absolute;
  top: 15rem;
  left: 12rem;
  bottom: 0;
  right: 0;
  height: 8rem;
  width: 8rem;
  font-size: 4rem;
  padding: 0px 3px;
  border-radius: 50%;
  background-color: #1e1f24;
  border: 8px solid rgba(256, 256, 256, .3);
  background-clip: padding-box;
  -webkit-appearance: none;
  transition: all .5s;
}

.video__button:hover {
  transform: scale(1.1);
  transition: all .5s;
}

button,
input {
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}

button {
  cursor: pointer;
}

.video__button-icon {
  color: #b9200f;
}

.img-v{
  background-image: url(../img/about1/about1.jpeg);
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.modal{
  background-color: rgba(0, 0, 0, 0.5);
  min-width: 100%;
  height: 100vh;
}

.v-modal iframe{
  max-width: 100%;
  height: 90vh;
}

@media screen and (max-width: 768px) {
  .video__button {
    left: 0rem;
  }
  .contacts{
    flex-direction: column;
  }
  .trat-info{
    font-size: 2rem;
  }

}

.img-v-2{
  background-image: url(../img/about2/about2.jpeg);
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.img-v-3{
  /*background-image: url(../img/about3/abouassets\vendor\swipert2.jpeg);*/
  background-image: url(../img/about3/3.jpg);
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.contacts{
  justify-content: space-between;
  margin: 2rem;
}

.service-content .section-service h3{
  font-size: 1.5rem;
}

.serv{
  text-align: center;
  display: grid;
  gap: 40px;
}

.serv a{
  color: rgb(244, 243, 243);
  font-weight: 600;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .serv{
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
  }

  .serv a{
    font-size: 1rem;
  }
}

.title{
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.center h3{
  color: #fff;
}

.info p{
  text-align: center;
  margin-top: 5rem;
}

/* ==================================================
  Portfolio Styling
  ================================================== */
.portfolios {
  background-color: #edf6ff;
  padding-bottom: 0;
}

.portfolios h2 {
  color: #0059b3;
  margin-bottom: 25px;
}

.portfolios-grid {
  margin-top: 65px;
}

.portfolios-grid .row {
  margin: 0;
}

.portfolios-grid .row>div {
  padding: 0;
}

.portfolios-grid .row>div .card img {
  width: 100%;
}

.portfolios-grid .row>div .card .portfolios-over {
  position: absolute;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.portfolios-grid .row>div .card .portfolios-over>div {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.portfolio-grid .row>div .card .portfolios-over .card-titles{
  color: #fff;
  font-size: 30px;
}

.portfolio-grid .row>div .card .portfolios-over .card-text {
  color: #fff;
  opacity: 0.75;
  padding: 0 45px;
}

.portfolios-grid .row>div .card:hover .portfolios-over {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 61.9em) {
  .portfolios-grid .card h3.card-titles {
    font-size: 18px !important;
  }

  .portfolios-grid .card .card-text {
    font-size: 13px;
  }
}

.title-img{
  color: #000;
  text-align: center;
  margin-bottom: 0;
}

/* ======== osteoporosis ============ */
.bg-osteo{
  background-image: url(../img/service/11.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.bg-osteo2{
  background-image: url(../img/service/Imagen12.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* .main-oste{
  margin: 5rem 0 ;
  padding: 3rem;    
} */

.info-descrip{
  color: #000;
  text-align: justify;
  font-size: 1rem;
  font-weight: 600;
}

/* ======== ARTRITIS REUMATOIDE ============ */
.bg-art{
  background-image: url(../img/service/2.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* .main-oste{
  margin: 5rem 0 ;
} */

.info-descrip{
  color: #000;
  text-align: justify;
  font-size: 1rem;
  font-weight: 600;
}

/* ======== LUPUS ============ */
.bg-lupus{
  background-image: url(../img/service/4.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* .main-oste{
  margin: 5rem 0 ;
} */

.info-descrip{
  color: #000;
  text-align: justify;
  font-size: 1rem;
  font-weight: 600;
}

/* ======== GOTA ============ */
.bg-gota{
  background-image: url(../img/service/5.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* .main-oste{
  margin: 5rem 0 ;
} */

.info-descrip{
  color: #000;
  text-align: justify;
  font-size: 1rem;
  font-weight: 600;
}

/* ======== OSTEOARTRITIS ============ */
.bg-osteo{
  background-image: url(../img/service/6.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* .main-oste{
  margin: 5rem 0 ;
} */

.info-descrip{
  color: #000;
  text-align: justify;
  font-size: 1rem;
  font-weight: 600;
}


/* ======== ESPONDILITIS ANQUILOSANTE ============ */
.bg-espo{
  background-image: url(../img/service/Imagen9.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* .main-oste{
  margin: 5rem 0 ;
} */

.info-descrip{
  color: #000;
  text-align: justify;
  font-size: 1rem;
  font-weight: 600;
}

.bg-espo .hero-container h1 {
  font-size: 3.5rem!important
}

/* ======== DOLORES ARTICULARES ============ */
.bg-articu{
  background-image: url(../img/service/Img2.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* .main-oste{
  margin: 5rem 0 ;   
} */

.info-descrip{
  color: #000;
  text-align: justify;
  font-size: 1rem;
  font-weight: 600;
}

/* ======== FIBROMIALGIA ============ */
.bg-fibro{
  background-image: url(../img/service/Imagen15.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* .main-oste{
  margin: 5rem 0 ;
} */

.info-descrip{
  color: #000;
  text-align: justify;
  font-size: 1rem;
  font-weight: 600;
}

/* ======== DOLOR ============ */
.bg-dolor{
  background-image: url(../img/service/Imagen17.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.main-oste{
  /*padding: 3rem  ;*/
  background: linear-gradient(90deg, rgba(1,183,236,1) 0%, rgba(2,0,36,1) 1%, rgba(9,9,121,1) 100%);
  color: floralwhite;
}
.main-oste p {
  color: floralwhite;
}

.info-descrip{
  color: #000;
  text-align: justify;
  font-size: 1rem;
  font-weight: 600;
}

/* ======== CIÁTICA ============ */
.bg-ciatica{
  background-image: url(../img/service/11.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* .main-oste{
  margin: 5rem 0 ;
} */

.info-descrip{
  color: #000;
  text-align: justify;
  font-size: 1rem;
  font-weight: 600;
}

.log-2{
  display: flex;
  justify-content: center;
}

.cont-log {
  margin-top: 100px;
}

.cont-log img{
  width: 10rem;
}

.address p {
  text-align: start;
}

.back {
  background: linear-gradient(rgb(59, 59, 231), 10%, pink);
}


h1.long-text{
  font-size: 4em;
  font-weight: bold;
  margin-bottom: 50px;
}
h2.long-text{
  font-size: 3em;
  font-weight: normal;
  margin-top: 50px;
  margin-bottom: 40px;
}
h3.long-text{
  font-size: 2em;
  font-weight: normal;
  margin-top: 40px;
  margin-bottom: 30px;
}
h4.long-text{
  font-size: 1.5em;
  font-weight: normal;
  margin-top: 30px;
  margin-bottom: 20px;
}
li.long-text{
  padding-bottom: 20px;
}

@media (max-width: 800px) {
  h1.long-text{
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 50px;
  }
  h2.long-text{
    font-size: 1.75em;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 40px;
  }
  h3.long-text{
    font-size: 1.5em;
    font-weight: normal;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  h4.long-text{
    font-size: 1.25em;
    font-weight: normal;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

.divPartners{
  width: 100%;
}

/*.divPartnersImg{
  max-height: 120px;
}
.partnersImg{
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
}*/