img {
  max-width: 90%;
}

.abouts {
  padding: 50px 50px;
}
/*Carrusel*/

.containersz {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #daebfd;
}

.testimonial{
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 30px 0;
}

.testimonial .image{
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial .slide{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
}

.slide p{
  text-align: center;
  padding: 0 75px;
  font-size: 18px;
  font-weight: 400;
  color: #333;
}

.slide .details{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide .name{
  font-size: 20px;
  font-weight: 600;
  color: 007aff;
}

.slide .job{
  font-size: 15px;
  font-weight: 600;
  
}

.headings {
  text-align: center;
}

.section-heading {
  text-transform: uppercase;
  font-size: 90px;
  color: var(--clr-secondary);
}

.sub-heading {
  max-width: 76ch;
  margin: 25px auto 0;
  line-height: 1.8;
  font-size: 18px;
  color: var(--clr-secondary);
}

.rows-container {
  margin-top: 50px;
}

.rows {
  display: flex;
}

.rows:not(:last-child) {
  margin-bottom: 100px;
}

.rows div:first-child {
  margin-right: 50px;
}

.rows .img-col {
  flex: 1 1 40%;
}

.rows .text-col {
  flex: 1 1 60%;
}

.text-col h3 {
  text-transform: uppercase;
  font-size: 70px;
  line-height: 0.9;
  color: var(--clr-primary);
  margin: 0.4em 0;
}

.text-col p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--clr-secondary);
  text-align: justify;
}

.img-col.n-margin {
  margin-top: -20%;
}

@media (max-width: 1200px) {
  .text-col h3 {
    font-size: 90px;
  }

  .section-heading {
    font-size: 60px;
  }

  .rows .img-col {
    flex: 1 1 48%;
  }

  .rows .text-col {
    flex: 1 1 52%;
  }
}

@media (max-width: 992px) {
  .text-col h3 {
    font-size: 72px;
  }

  .text-col p {
    font-size: 18px;
  }

  .sub-heading {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .rows {
    flex-direction: column;
  }

  .rows div:first-child {
    margin-right: 0;
  }

  .rows .img-col,
  .rows .text-col {
    flex: 1;
  }

  .rows:last-child .text-col {
    order: 2;
  }

  .rows:not(:last-child) {
    margin-bottom: 80px;
  }

  .img-col.n-margin {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .text-col h3 {
    font-size: 46px;
  }

  .section-heading {
    font-size: 45px;
  }
}

.directoracomer{
  font-style: italic;
  font-size: 25px;
}

/*Blog*/
/*Google fonts*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Rubik:500,700,900&display=swap');

/** General Style **/
body {
   margin: 0;
   line-height: 1.5;
   font-size: 16px;
   font-family: 'Montserrat', sans-serif;
   font-weight: 400;
}
* {
   margin: 0;
   padding: 0;
   outline: none;
   text-decoration: none;
   box-sizing: border-box;
}
/** Utilidades **/
.section {
   background-color: #d6d6d6;
   min-height: 100vh;
   display: block;
}
.section .container{
   padding-top: 60px;
   padding-bottom: 70px;
}
.section-title{
   -ms-flex: 0 0 100%;
   flex: 0 0 100%;
   max-width: 100%;
   margin-bottom: 35px;
}
.section-title h2 {
   font-size: 40px;
   color: #302e4d;
   font-family: 'Rubik', sans-serif;
   font-weight: 700;
   margin: 0;
   position: relative;
}
.section-title h2::before {
   content: '';
   height: 4px;
   width: 50px;
   position: absolute;
   top: 100%;
   left: 0;
   background-color: #ec1839;
}
.section-title h2::after {
   content: '';
   height: 4px;
   width: 25px;
   position: absolute;
   top: 100%;
   left: 0;
   margin-top: 8px;
   background-color: #ec1839;
}
.container {
   max-width: 1100px;
   width: 100%;
   margin: auto;
}
.row {
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   margin-right: -15px;
   margin-left: -15px;
   position: relative;
}
.padd-15 {
   padding-left: 15px;
   padding-right: 15px;
}


/*BLOG*/

.containerblog {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  margin-block: 2rem;
  gap: 2rem;
}
img {
  max-width: 100%;
  object-fit: cover;
}
.cardblog {
  display: flex;
  flex-direction: column;
  width: clamp(20rem, calc(20rem + 2vw), 20rem);
  overflow: hidden;
  box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  background: #ECE9E6;
  background: linear-gradient(to right, #FFFFFF, #ECE9E6);
}
.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.tag {
  align-self: flex-start;
  padding: .25em .75em;
  border-radius: 1em;
  font-size: .75rem;
}
.tag+.tag {
  margin-left: .5em;
}
.tag-blue {
  background: #56CCF2;
  background: linear-gradient(to bottom, #2F80ED, #56CCF2);
  color: #fafafa;
}
.tag-brown {
  background: #D1913C;
  background: linear-gradient(to bottom, #FFD194, #D1913C);
  color: #fafafa;
}
.tag-red {
  background: #007bff;
  background: linear-gradient(to bottom, #007bff, #007bff);
  color: #fafafa;
}
.card__body h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
}
.card__footer {
  display: flex;
  padding: 1rem;
  margin-top: 10%;
}
.user {
  display: flex;
  gap: .5rem;
}
.user__image {
  border-radius: 50%;
}
.user__info>small {
  color: #666;
}
.linea2{
  
}

/** Responsive **/
@media (max-width: 991px) {
   .blog .blog-item {
       -ms-flex: 0 0 50%;
       flex: 0 0 50%;
       max-width: 50%;
   }
}

@media (max-width: 767px) {
   .blog .blog-item {
       -ms-flex: 0 0 100%;
       flex: 0 0 100%;
       max-width: 100%;
   }
}

.footer {
 display: flex;
 justify-content: center;
 align-items:center;
 height: 50px;
 background-color: #282828;
}
.face {
 background: #000;
 border-radius: 50%;
 padding: 4px;
 display: inline-block;
 margin-right: 5px;
}
.eye {
 background: #e74900;
 width:8px;
 height:10px;
 clip-path: polygon(75% 0%, 100% 0%, 100% 30%, 100% 70%, 83% 56%, 50% 50%, 20% 55%, 0% 71%, -6% 29%, 10% 0%);
 border-radius: 50%;
 display: inline-block;
 margin: 0px 5px;
}
.eye:nth-last-child(1) {
 margin: 0;
}
.copy {
   display: inline-block;
}
.copy span {
   font-size: 14px;
   font-weight: 600;
   font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.copy a {
 font-size: 18px;
 font-weight: 500;
 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
 font-style: italic;
 color: #000;
 text-decoration: none;
}

.vermasblog{
  color: #fff;
  border-radius: 30px;
  padding: 10px 15px;
  background-color: #253769;
}

.vermasblog:hover{
  color: #253769 !important;
  background-color: #FFFFFF;
  border-color: #253769 !important;
  text-decoration: #007bff;
  
}

.descblogs{
  color: #007bff;
}
.descblogs:hover{
  color: #2F80ED;
}