@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Goudy+Bookletter+1911&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


:root{
    --bg: #ffffff;
    --a-color: #221a50;
    --btn-bg-color: #4d7b19;
    --time: .2s;
    --radius:2px;

    --title-color:#23261f;
    --info-color:#505630;
    --ni-info-color:rgb(70, 70, 70);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0); /* Transparente */
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0); /* Transparente */
}


html {
    scroll-behavior: smooth;
}

body{
    width: 100%;
    background-color: var(--bg);
   
}

*{
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-decoration: none;
}

.separator{
    display: block;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.048);
    width: 100px;
    height: 4px;
}
.location-msg{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 20px 0px;
    color: #0c0c0c;
}

.location-msg a i{
    padding: 0px 3px;
}
.location-msg a{
    display: flex;
    align-items: center;
    color: rgb(66, 66, 66);
    font-weight: 500;
    transition: all var(--time);
}
.location-msg a:hover{
    color: #943e3e;
}

.location-msg b{
    font-weight: 500;
}

.location-msg strong{
    padding: 0px 10px;
}


/* google fonts icons */
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
/* google fonts icons  end*/




/* hero */
.hero-container{
    padding: 40px 140px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 150px;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border-bottom: 1px solid #47002f44 !important;
}
.hero-img {
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;

    img {
        width: 100%;
        animation: float 7s ease-in-out infinite;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-text{
    padding: 60px 0px;
    max-width: 1100px;
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.hero-title{
    font-weight: 600;
    color: #47002F;
    font-size: 65px;
    max-width: 750px;
    line-height: 70px;
}

.hero-title span{
    box-shadow: inset 0 -0.5em 0 #ffbf91;
}

.hero-subtitle{
    font-size: 25px;
    font-weight: 500;
    color: #FF6B01;
}
.hero-info{
    max-width: 600px;
    font-size: 1.3em;
    color: #47002fcc;
    padding: 20px 0px;
    font-weight: 400;   
    width: 470px;
}

.hero-links{
    display: flex;
    gap: 10px;
}

.hero-link{
    border-radius: 30px;
    display: flex;
    font-weight: 500;
    font-size: 1.2em;
    width: max-content;
    padding: 10px 36px;
    text-transform: capitalize  ;
    transition: all var(--time);
    background: rgba(255, 107, 1, 1);
    border: 2px solid rgba(255, 107, 1, 1);
    color: #fff;
}

.hero-link:hover{
    color: rgba(255, 107, 1, 1);
    background-color:transparent;
}


.hero-link.pricing{
    background-color: transparent;
    color: rgba(255, 107, 1, 1);
}

.hero-link.pricing:hover{
    background: rgba(255, 107, 1, 1);
    color: #fff;
}

/* hero end */


/* servicios start */
.services-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 110px;
    padding-top: 0px;
    text-align: center;
    border-bottom: 1px solid #47002f44 !important;
}

.services-text{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.services-text-title{
    color: #47002F;
    font-size: 50px;
    font-weight: 600;
    width: 800px;
    line-height: 60px;
}

.services-text-info{
    font-size: 1.7em;
    font-weight: 500;
    color: #ff6b019f;
}

.services{
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

.service{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    border-radius: 20px;
    gap: 10px;
    height: 270px;
    padding: 40px;
    width: 360px;
    box-shadow: 0px 4px 80px rgba(8, 15, 30, 0.06);
    transition: all var(--time);
}

.service:hover{
    transform: scale(1.02);
}

.service-title{
    color: #47002F;
    font-size: 1.5em;
    font-weight: 600;
}

.service-info{
    color: #47002fc4;
    font-size: 1.1em;
}

.service-icon-box{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    height: 70px !important;
    width: 70px !important;
    background-color: #5217EB;
}

.service-icon-box span{
    color: #fff;
    font-size: 40px;
}

.service-icon-box.design{
    background-color: rgb(46, 219, 75);
}

.service-icon-box.seo{
    background-color: rgb(34, 103, 206);
}

.service-icon-box.help{
    background-color: rgb(110, 47, 182);
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 200,
  'GRAD' 0,
  'opsz' 24
}
/* servicios end */

/* porque start */
.porque-container{
    background-color: #180110;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 110px;
}

.porque-title{
    color: #fff;
    font-size: 3em;
}

.porques{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.porque{
    display: flex;
    align-items: center;
    gap: 20px;
}

.porque-img-container{
    
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff23;
    width: 70px;
    height: 70px;
    border-radius: 100%;
}

.porque-img{
    width: 40px;
}

.porque-info{
    font-size: 1.5em;
    color: #ffffffec;
}
/* porque end*/

/* endias start */
.endias-container{
    background-color: rgba(2, 2, 30, 0.02);
    display: flex;
    padding: 100px 140px;
    align-items: center;
    justify-content: space-between;
}

.endias-text{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 590px;
}

.endias-title{
    font-size: 60px;
    color: #47002F;
    line-height: 55px;
    font-weight: 700;
}

.endias-title .colored{
    color: #FF6B01;
}

.endias-info {
    color: #47002fc4;
    font-size: 1.1em !important;
    font-weight: 400;
}

.endias-link{
    border-radius: 40px;
    background: #FF6B01;
    padding: 10px 23px;
    color: #fff;
    font-weight: 500;
    font-size: 1.3em;
    border: 2px solid #FF6B01;
    transition: all var(--time);
    width: max-content;
}   
.endias-link:hover{
    background-color: transparent;
    color: #FF6B01;
}

.endias-img-conteiner{
    display: flex;
    align-items: center;
    justify-content: center;
}

.endias-img{
    max-width: 400px;
    animation: float 7s ease-in-out infinite;
}

/* endias end */


/* .portfolio */
.portfolio-container{
    padding: 60px 120px ;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #47002f44 !important;
}

.portfolio-header{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.portfolio-subtitle{
    font-size: 25px;
    font-weight: 500;
    color: #FF6B01;
}

.portfolio-title{
    color: #47002F;
    font-weight: 600;
}

.portfolio-description{
    color: #47002fc4;
    font-size: 20px;
    font-weight: 500;
}

.portfolio-grid{
    padding: 40px 0px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.portfolio-item{
    box-shadow: 0px 4px 80px rgba(8, 15, 30, 0.199);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
    max-width: 350px;
    min-width: 300px;
}

.portfolio-image-wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

.portfolio-image-wrapper span{
    width: 100%;
    height: 300px;
    background-position: top;
    transition: all 8s;
    background-size: cover;
    border-radius: 20px;

}

.portfolio-image-wrapper span:hover{
    background-position: bottom;
}


.construfach{
    background-image: url(/public/images/works/construfach.png);
}

.raymondmotors{
    background-image: url(/public/images/works/raymondmotors.png);
}

.destoconadora{
    background-image: url(/public/images/works/destoconadora.png);
}

.cortinasborg{
    background-image: url(/public/images/works/cortinasborg.png);
}

.portfolio-image-wrapper a img{
    width: 100%;
    transition: all var(--time);
}

.portfolio-image-wrapper a img:hover{
    filter: brightness(0.6);
}

.portfolio-caption{
    box-shadow: 0px 4px 30px rgba(8, 15, 30, 0.06);
    position: absolute;
    top: 15px;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 20px;
    padding: 20px 0px;
    color: #47002F;
    padding-bottom: 30px;
    font-weight: 700;
    width: max-content;
    background: #fff;
    padding: 5px 15px;
    border-radius: 20px;
}

/* .portfolio end */


/* .workflow */
.workflow-section {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #47002f44 !important;
}

.workflow-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.workflow-subtitle {
  font-size: 25px;
  font-weight: 500;
  color: #FF6B01;
}

.workflow-title {
  color: #47002F;
  font-weight: 600;
}

.workflow-description {
  color: #47002fc4;
  font-size: 20px;
  font-weight: 500;
}

.workflow-steps {
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.workflow-step {
  box-shadow: 0px 4px 80px rgba(8, 15, 30, 0.06);
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  background: #fff;
}

.workflow-icon {
  background-color: #FF6B01;
  color: white;
  font-size: 32px;
  font-weight: bold;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  border-radius: 70px;
}

.workflow-step-title {
  font-size: 20px;
  font-weight: 600;
  color: #47002F;
}

.workflow-step-description {
  font-size: 17px;
  color: #47002fc4;
}

.workflow-cta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.workflow-cta-button {
  background-color: #FF6B01;
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.workflow-cta-button:hover {
  background-color: #e55f00;
}

/* .workflow end */



/* work start */
.work-container{
    background-color: #1d121a;
}

.swiper {
  width: 100%;
  height: 600px;
}

.work{
    padding: 40px 110px;
    gap: 40px;
    justify-content: center;
    align-items: top;
    display: flex !important;
}

.work-content{
    display: flex;
    flex-direction: column;
    width: 450px;
}

.work-content-subtitle{
    color: #ffffffde;
    font-size: 1.2em;
}

.work-content-title{
    font-size: 3em;
    color: #fff;
}

.work-content-link{
    padding-bottom: 20px;
}

.work-content-link-img{
    border-radius: 20px;
    width: 100%;
    transition: all var(--time);
}

.work-content-link-img:hover{
    filter: brightness(.8);
}

.work-content-client{
    display: flex;
    gap: 10px;
}

.work-content-client-name{
    font-size: 1.2em;
    color: #fff;
    font-weight: 500;
}

.work-content-client-info{
    font-size: 1.1em;
    color: #ffffffcb;
    
}

.work-content-client-img{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    object-fit: cover;
}

.work-info{
    width: 500px;
    padding-top: 95px;
}

.work-info-p{
    color: #ffffffe8;
    font-size: 1.2em;
}

/* work end */

/* planes start */
.planes-container{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #47002f44 !important;
    padding: 100px 110px;
}

.planes-title{
    text-align: center;
    color: #47002F;
    font-size: 50px;
    font-weight: 700;
    width: 800px;
    line-height: 60px;
}

.planes{
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 30px;
    padding-top: 40px;
}

.plan{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:20px;
    width: 300px;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0px 4px 80px rgba(8, 15, 30, 0.06);
    transition: all var(--time);
}

.plan:hover{
    transform: scale(1.02);
}

.plan-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-price-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    justify-content: center;
}

.plan-title{
    font-size: 1.2em;
    font-weight: 500;
    color: #47002fc9;
}

.plan-price{
    font-weight: 500;
    color: #47002F;
    font-size: 2.3em;
}


.plan-ideal{
    font-weight: 500;
    color: #3a0227;
    font-size: 17px;
}


.plan-price i{  
    color: #47002fa4;
    font-size: 15px;
}

.plan-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #47002fc9;
    list-style: circle !important;
    font-size: 1em;
    font-weight: 400;
}


.plan-link{
    border-radius: 40px;
    background: #28a745;
    padding: 10px 23px;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    border: 2px solid #28a745;
    transition: all var(--time);
    text-align: center;
    margin-top: 20px;
}   
.plan-link:hover{
    background-color: transparent;
    color: #28a745;
}

.plan-link.web-pro {
    border-color: #007bff;
    background-color: #007bff;
}

.plan-link.web-pro:hover{
    background-color: transparent;
    color: #007bff;
}


.plan-link.sol-tot{
    border-color: #ffd000;
    background-color: #ffd000;
}

.plan-link.sol-tot:hover{
    color: #ffd000;
    background-color: transparent;
}
/* planes end */


.more-info{
    background-color: #1d121a;
    padding: 100px 0px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: 20px 0px;
}

.more-info-text{
    width: 700px;
    font-size: 50px;

}

.more-info-text .colored{
    color: #FF6B01;
}



.more-info-link{
    border-radius: 40px;
    background: #FF6B01;
    padding: 10px 23px;
    color: #fff;
    font-weight: 500;
    font-size: 1.3em;
    border: 2px solid #FF6B01;
    transition: all var(--time);
    width: max-content;
}   
.more-info-link:hover{
    background-color: transparent;
}


/* endias start */
.whyus-container{
    display: flex;
    padding: 100px 140px;
    align-items: end;
    justify-content: space-between;
}

.whyus-text{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 590px;
}

.whyus-title{
    font-size: 60px;
    color: #47002F;
    line-height: 55px;
    font-weight: 700;
}

.whyus-title .colored{
    color: #FF6B01;
}

.whyus-info {
    color: #47002fc4;
    font-size: 1.1em !important;
    font-weight: 400;
}

.whyus-link{
    border-radius: 40px;
    background: #FF6B01;
    padding: 10px 23px;
    color: #fff;
    font-weight: 500;
    font-size: 1.3em;
    border: 2px solid #FF6B01;
    transition: all var(--time);
    width: max-content;
}   
.whyus-link:hover{
    background-color: transparent;
    color: #FF6B01;
}

.whyus-img-conteiner{
    display: flex;
    align-items: end;
    justify-content: center;
}

.whyus-img{
    max-width: 400px;
}

/* endias end */



/* infop text start*/
.info-text{
    padding: 0px 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-text h2{
    font-family: "Playfair Display", serif;
    text-transform: none;
    color: rgb(35, 35, 46);
    font-size: 38px;
}

.info-text p{
    max-width: 400px;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.534);
    font-weight: 600;
}
/* infop text end */


/* Treatments start */
.treatments {
    background-color: #404b35;
}

.treatments h2{
    color: #ffffffea;
}

.treatments .separator{
    background-color: #ffffff6b;
}
.treatments-container{
    display: flex;
    align-items: top;
    justify-content: center;
    gap: 70px;
    padding: 10px 20px;
}


.treatment-link{
    text-align: center;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0px;
    gap: 10px;
    border-radius: 10px;
    transition: all var(--time);

    .treatment-icon{
        font-size: 40px;
        color: #ffffffcc;
        transition: all var(--time);
    }

    .treatment-title{
        color: #fff;
        font-size: 15px;
        font-weight: 400;
    }

    .treatment-description{
        font-size: 13px;
        color: #ffffffc0;
    }
}
.treatment-link:hover {
    transform: translateY(-10px);
    
}

/* Regla separada para el icono */
.treatment-link:hover .treatment-icon {
    transform: rotate(5deg) scale(1.1);
}



/* Treatments end start */



/* Formation start */
.formation{
    padding-top: 100px;
}

.formation-container {
    padding: 40px 20px;
    text-align: center;
    padding-bottom: 200px;
}

.formation-title {
    font-size: 28px;
    color: var(--title-color);
    margin-bottom: 30px;
}

.formation-cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.formation-card {
    background-color: rgba(0, 0, 0, 0.027);
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease-in-out;
}

.formation-icon {
    font-size: 32px;
    color: #c3c852;
    transition: all 0.3s ease-in-out;
}

.formation-item-title {
    font-size: 20px;
    color: var(--title-color);
    font-weight: bold;
    text-align: center;
}

.formation-item-info {
    font-size: 16px;
    color: #555;
    text-align: center;
    line-height: 1.5;
}

.formation-card:hover {
    transform: translateY(-10px);
}

.formation-card:hover .formation-icon {
    transform: rotate(5deg) scale(1.1);
}
/* Formation end */



/* Testimonials start */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 20px;
    padding-bottom: 200px;
}

.testimonial-card {
    background-color: rgba(0, 0, 0, 0.027);
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    font-size: 16px;
    color: var(--title-color);
    margin-bottom: 5px;
}

.testimonial-info {
    font-size: 14px;
    color: #888;
}
/* Testimonials end */


/* FAQ start */
.faq{
    display: flex;
    padding: 100px 140px;
    align-items: end;
    justify-content: center;
    gap: 40px;
    padding-bottom: 100px;
}

.faq-img{
    width: max-content;
}

.faq-img img{
    width: 350px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}


.faq-question {
    background-color: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1em;
    font-weight: 600;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #47002F;
    transition: background-color 0.3s ease;
}

.faq-icon {
    font-size: 16px;
    color: #47002fbb;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 1em;
    color: #47002fbb;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Ajusta según el contenido */
    padding: 10px 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-info {
    width: 550px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}


.faq-title{
    color: #47002F;
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
}
/* FAQ end */

/* Blog start */
/* .blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px 20px;
}

.blog-card {
    max-width: 320px;
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--title-color);
    margin-bottom: 10px;
}

.blog-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-link {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-dark-color);
} */
/* Blog end */


/* about */
.about{
    padding-top: 40px;
    background-image: url(/lucaspsicologopw/public/images/index/about-bg.svg);
    background-size: cover;
    background-position: top;
}
.about-container{
    transition: opacity var(--time) ease, transform 1s ease;
    display: flex;
    justify-content: space-between;
    padding: 40px 140px;
    padding-top: 100px;
    padding-bottom: 200px;
}
.about-img{
    border-radius: 20px;
    transition: opacity var(--time) ease, transform 1s ease;
}

.about-img{
    max-width: 450px;
    display: flex;
    justify-content:center;
    align-items: center;
    
    img{
        border-radius: 20px;
        height: max-content;
        width: 100%;
    }
}

.about-img img{
    border-radius: 20px;
    height: max-content;
    width: 100%;
}


.about-text{
    max-width: 600px;;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-sub-title{
    color:rgb(99, 99, 99);
    font-size: 20px;

}
.about-title{
    font-family: "Playfair Display", serif;
    font-size: 35px;
    color: rgb(35, 35, 46);
    span{
        font-family: "Playfair Display", serif;
        color: var(--btn-bg-color);
    }
}
.about-info{
    color: rgb(80, 74, 74);
    font-size: 18px;
    font-weight: 400;
}

.about-link{
    display: flex;
    font-weight: 400;
    font-size: 15px;
    width: max-content;
    padding: 15px 36px;
    text-transform: capitalize  ;
    transition: all var(--time);
    background: #4d7b19;
    border: 1px solid #4d7b19;
    color: #fff;
    border-radius: 20px;

}

.about-link:hover{
    background-color: transparent;
    color: #4d7b19;
}


/* page */

.about-history{
    padding: 30px 140px;
    display: flex;
    justify-content: space-between;


    .text{
        max-width: 600px;

                
        .title{
            font-size: 45px;
            color: rgb(35, 35, 46);
            span{
                color: var(--btn-bg-color);
            }
        }
        .info{
            color: rgb(80, 74, 74);
            font-size: 1.2em;
            font-weight: 500;
        }
        
    }

    .img{
        max-width: 400px;
        display: flex;
        align-items: center;
        img{
            width: 100%;
        }
    }
}


.mv-container{
    display: flex;
    flex-direction: column;
    padding: 40px 140px;
    padding-top: 100px;
    text-align: center;

        
    .title{
        padding-bottom: 10px;
        font-size: 35px;
        color: rgb(35, 35, 46);
    }
    
    .sub-title{
        color:rgb(58, 58, 63);
        font-size: 25px;
    
    }


    .mv{
        display: flex;
        padding: 30px 0px;
        gap: 20px;
        justify-content: space-between;

        .item{
            width: 500px;
            padding: 30px;
            border-radius: 20px;
            background-color: rgba(0, 0, 0, 0.027);
            text-align: center;

            .icon{
                padding-bottom: 20px;

                i{
                    font-size: 40px;
                    color: var(--btn-bg-color);
                }
            }

            .text{

                .title{
                    font-size: 25px;
                    padding-bottom: 0px;
                }

                .info{
                    font-size: 20px;
                    font-weight: 500;
                    color: rgb(80, 74, 74);
                }
            }
        }
    }
}

/* about end */

/* wsp start */
.wsp-btn-box{
    color: #fff;
    display: flex;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 101121111;
}

.wsp-btn-box a{
    border-radius: 30px;
    box-shadow: 0px 0px 15px 2px  #25d36575;
    background-color:#25d366;
    padding: 10px 30px;
    color: #fff;
    font-size: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--time);
}

.wsp-btn-box a:hover{
    transform: scale(1.03);
}
.wsp-btn-box a i{
    font-size: 1.5em;
    padding-right: 10px;
}
/* wsp end */


/* header */

.header{
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    z-index: 1011211212;
    width: 100%;
    height: 90px;
    top: 0px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 140px;
    transition: all .5s;
    box-sizing: border-box;
}

.header-logo-a{
    display: flex;
    align-items: center;
    height: 30px;
    font-family: "Playfair Display", serif;
    color: #23261f;
    font-weight: 500;
    font-size: 25px;
}

.header-logo-a img{
    height: 100%;
}

.header-logo a i{
    color: #4d7b19;
}

.header-actions{
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-actions a{
    border-radius: 40px;
    background: #FF6B01;
    padding: 10px 23px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
    border: 2px solid #FF6B01;
    transition: all var(--time);
}   
.header-actions a:hover{
    background-color: transparent;
    color: #FF6B01;
}

.header-actions a i{
    color: #f3f3f3;
    transition: all var(--time);

}

.header-btns{
    display: none;
}

.header-links{
    display: flex;
}


.header-links-a{
    font-size: 1.1em;
    color: #47002F;
    display: flex;
    padding: 7px 14px; 
    margin: 1px;
    font-weight: 400;   
    transition: all var(--time);
}

.header-links-a:hover{
    color: #FF6B01;
}

/* header end */




.border-separator{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0px;
}

.border-separator-border{
    width: 60%;
    height: 3px;
    display: flex;
    background-color: rgba(0, 0, 0, 0.103);
}

.xl-title{
    text-align: center;
    color: rgb(189, 189, 189);
    font-weight: 900;
    font-size: 4em;
    padding: 200px 0px;
}

.big-title{
    color: var(--title-color);
    font-weight:700;
    font-size: 1.5em;
    padding: 10px 0px;
    padding-top: 20px;  
}


.span-big-b-border{
    position: relative;
    box-shadow: inset 0 -.7em 0 0 rgb(245, 177, 177);

}


.span-big-b-border-dark{
    position: relative;
    box-shadow: inset 0 -.7em 0 0 rgb(194, 27, 27);

}

.centred{
    text-align: center;
}

/* qualities */
.qualities-container{
    padding: 70px 140px;
    padding-top: 350px;
    display: flex;
    justify-content: space-between;
    background-size: cover;
    background-position: top;
    background-image: url(/antwork/public/images/index/bg-2.svg);

    .container-text{
        max-width: 650px;

        .title{
            padding-bottom: 10px;
            font-size: 35px;
            color: rgb(35, 35, 46);
            span{
                color: var(--btn-bg-color);
            }
        }


        .qualities{
            display: flex;
            flex-direction: column;
            gap: 20px;

            .qualitie{
                display: flex;
                align-items: center;

                .icon{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: max-content;
                    padding-right: 20px;

                    span{
                        font-size: 60px;
                        color: var(--btn-bg-color);
                    }
                }

                .text{
                    display: flex;
                    flex-direction: column;
                    justify-content: center;


                    .title{
                        font-size: 25px;
                        color: rgb(35, 35, 46);
                        font-weight: 700;
                        padding-bottom: 0px;
                    }

                    .info{
                        font-size: 20px;
                        font-weight: 500;
                        color: rgb(80, 74, 74);
                    }
                }
            }
        }
    }

    .container-imgs{
        max-width: 340px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        img{
            width: 100%;
        }

    }
}
/* qualities end */
/* news ads */

.news-ads{
    display: flex;
    justify-content: space-between;
    padding: 40px 140px;
    padding-top: 180px;

    
    .img{
        max-width: 450px;
        display: flex;
        justify-content:center;
        align-items: center;
        
        img{
            height: max-content;
            width: 100%;
            transform: scaleX(-1);
        }
    }

    .text{
        max-width: 600px;;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px 0px;
        gap: 10px;

        .sub-title{
            color:rgb(58, 58, 63);
            font-size: 25px;
        
        }
        .title{
            font-size: 45px;
            color: rgb(35, 35, 46);
            span{
                color: var(--btn-bg-color);
            }
        }
        .info{
            color: rgb(80, 74, 74);
            font-size: 1.2em;
            font-weight: 500;
        }
        
        .link{
            display: flex;
            font-weight: 600;
            font-size: 1em;
            width: max-content;
            padding: 15px 36px;
            text-transform: capitalize  ;
            border-radius: 25px;
            transition: all var(--time);
            background: rgb(213,45,44);
            background: -moz-linear-gradient(56deg, rgba(213,45,44,1) 0%, rgba(246,86,84,1) 100%);
            background: -webkit-linear-gradient(56deg, rgba(213,45,44,1) 0%, rgba(246,86,84,1) 100%);
            background: linear-gradient(56deg, rgba(213,45,44,1) 0%, rgba(246,86,84,1) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d52d2c",endColorstr="#f65654",GradientType=1);
            color: #fff;
        }
        
        .link:hover{
            filter: brightness(1.1);
            transform: scale(1.05);
        }
        
    }
}

/* news ads end */


/* frequent_questions */

.frequent_questions-box{
    padding: 30px 140px;
    display: flex;
    justify-content: space-between;

    .text{
        width:100%;

        .fq-header{
            display: flex;
            align-items: center;

            .img{
                width: 600px;
    
                img{
                    width: 100%;
                }
            }
        
            .desc{
                padding: 0px 0px;

                .title{
                    font-size: 45px;
                    color: rgb(35, 35, 46);
                    span{
                        color: var(--btn-bg-color);
                    }
                }

                .info{
                    color: rgb(80, 74, 74);
                    font-size: 20px;
                    font-weight: 500;
                }
            }
        }

                
        .ul{
            display: flex;
            flex-direction: column;
            justify-content: start;
            width: 100%;

            .li{

                span{
                    color: var(--btn-bg-color);
                    font-size: 1.3em;
                    margin-right:5px ;
                    font-variation-settings:
                    'FILL' 0,
                    'wght' 700,
                    'GRAD' 0,
                    'opsz' 24
                }
                .frequent_questions-text-ul-li-title:hover{
                    filter: brightness(1.1);
                }
                .frequent_questions-text-ul-li-title{
                    color: var(--title-color);
                    display: flex;
                    transition: all var(--time);
                    font-size: 20px;
                    align-items: center;
                    font-weight: 600;
                    margin: 0px 0px;
                    margin-top: 4px;
                    padding: 10px;
                    background-color: rgb(248, 220, 220);
                    cursor: pointer;
                    width: 100%;
                    border-radius: 20px;
                }
                .frequent_questions-text-ul-li-info{
                    color:rgb(49, 49, 49);
                    font-weight: 500;
                    background-color: rgb(248, 220, 220);
                    border-radius:20px;
                    height: 0px;
                    font-size: 20px;
                    overflow: hidden;
                    padding: 0px 20px;
                    transition: all var(--time) ;
                    
                    a{
                        text-decoration: underline;
                    }
                }
    
                
    
                .frequent_questions-text-ul-li-title-open{
                    border-radius: 20px 20px 0px 0px ;
                }
                .frequent_questions-text-ul-li-info-open{
                    border-radius: 0px 0px 20px 20px;
                    padding: 10px 20px;
                    padding-bottom: 20px;
                    margin: 0px 0px;
                    margin-bottom: 10px;
                    height: max-content;
                }
            }


            

        }
        
    }
}
/* frequent_questions end */




/* news */

.normal-title{
    color: rgb(35, 35, 46);
    font-weight: 600;
    font-size: 1.2em;
    padding: 10px 80px;
}
.filter-container{
    padding: 20px 140px;
}
.filters-open{
    display: flex !important;
}
.filters{
    z-index: 1;
    box-shadow: 0px 0px 5px rgba(0, 1, 2, 0.144) ;
    background-color: #fafafa;
    display: none;
    border-radius: 10px;
    width: max-content;
    padding: 20px;
    position: absolute;
    flex-direction: column;
}
.filter-button:hover{
    background-color: rgb(241, 241, 241);
}
.filter-button{
    background-color: rgb(236, 236, 236);
    cursor: pointer;
    border: none;
    display: flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    width: max-content;
    color: rgb(97, 97, 97);
    border-radius: 20px;
}
.filters-title{
    color: rgb(20, 20, 20);
    font-weight: 600;
}
.filters a{
    color: rgb(97, 97, 97)  ;
    padding: 1px 0px;
    padding-left: 10px;
}
.filters a:hover{
    text-decoration: underline;
}

.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.pagination ul{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.pagination-num{
}
.pagination-arrow{
    margin: 0px 10px;
}
.pagination-arrow a{
    padding: 0px 4px !important;
    border-radius: 10px;
}
.pagination ul li{
    height: 30px;
    display: flex;
    width: max-content;
    justify-content: center;
    align-items: center;
}
.pagination ul li a:hover{
    background-color: rgb(235, 235, 235);

}
.pagination ul li a{
    color: rgb(65, 65, 65);
    background-color: rgb(214, 214, 214);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.pagination .active a:hover{
    background-color: rgb(114, 206, 248);

}
.pagination .active a{
    box-shadow: 0px 0px 10px rgb(91, 195, 243) ;
    color: rgb(20, 20, 20);
    background-color: rgb(91, 195, 243);
}
.news-header{
    display: flex;
    padding: 0px 140px;
    justify-content: space-between;
    align-items: center;
}
.news-header h2{
    padding: 20px 0px;
}
.news-search-container{
    display: flex;
    height: 40px;
    width: 300px;
    align-items: center;
}
.news-search-container .search-input{
    border: 1px solid rgb(199, 199, 199);
    height: 100%;
    width: 100%;
    padding: 10px;
    outline: none;
    border-radius: 10px 0px 0px 10px;
}
.news-search-container .search-btn{
    height: 100%;
    width: 50px;
    border: 1px solid rgb(19, 129, 233);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(19, 129, 233);
    cursor: pointer;
    color: #fff;
    padding: 10px;
    border-radius: 0px 10px 10px 0px;
    transition: all var(--time);
}
.news-search-container .search-btn span{
    font-size: 1.4em;
}

.news-search-container .search-btn:hover{
    filter: brightness(1.3);
}
.search-results-p{
    padding: 10px 140px;
}
.news-container {
    padding-bottom: 30px;
    padding: 0px 140px;
    display: flex;
    flex-wrap: wrap;
    gap:5px;
    justify-content: center; 
}

.news-item {
    max-width: 330px; 
    width: 100%;
    padding: 15px 0px;
    display: flex;
    flex-direction: column;
}
.view-more-news{
    color: rgb(20, 20, 20);
    font-size: .8em;
    padding: 0px 20px;
}
.view-more-news:hover{
    text-decoration: underline;
    color: rgb(30, 30, 30);

}

.news-item:hover > .news-title{
    text-decoration: underline;
}
.news-img{
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.news-title {
    color: var(--title-color);
    font-family: "Roboto Serif", serif;
    font-weight: 600;
    font-size: 1.1em;
    margin: 4px 0px;
}

.news-title span{
    font-family: "Roboto Serif", serif !important;
    font-weight: 900 !important;
    font-size: 1.13em;
    color: black;
}
.news-content {
    font-size: .8em;
    color: #555;
    line-height: 1.4;
    margin-bottom: 15px;
}
.news-info {
    font-size: .8em;
    color: var(--info-color);
    margin-top: auto; /* Coloca este elemento siempre al final */
}

.read-more {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #0056b3;
}

/* news end */



/* new */
.new-container{
    padding: 10px 140px;
    display: flex;
}
.new-item{
    background-color: #fff;
    width: 70%;
    padding: 0px 0px;
}

.new-title{
    font-family: "Roboto Serif", serif;
    font-size: 2.3em;
    font-weight: 600;
    letter-spacing: 1px;
    padding:40px  0px ;
}

.new-img{
    width: 100%;
}
.new-content{
    font-family: "Roboto Serif", serif;
    padding: 20px 0px;
    white-space: pre-line;
    color: rgb(20, 20, 20);
    font-size: 1em;
    letter-spacing: 1px;
}   
.new-content a{
    font-family: "Lora", serif;
    text-decoration: underline;
}

.new-info{
    color: rgb(97, 97, 97);
    font-style: italic;
    font-size: .9em;
}

.new-views{
    display: flex;
    align-items: center;
}
.new-views span{
    padding-right: 5px;
    color: rgb(97, 97, 97);
}

.more-news{
    width: 30%;
    padding: 10px 20px;
    padding-top: 40px;
}
.more-news-title{
    padding: 10px 0px;
    font-family: "Lora", serif;
    font-size: 1.4em;
    font-weight: 800;
}

.more-news-item-2:hover{
    filter: brightness(1.1);
}
.more-news-item-2{
    transition: filter var(--time);
    padding: 0px !important;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.more-news-item-2 
.more-news-item-title{
    padding: 0px 0px !important;
}
.more-news-item-2 a,
.more-news-item-2 p{
    width: 100%;
    color: #fff !important;
    margin: 0px ;
    padding: 5px 10px  ;
    display: flex;
    background-color: rgba(0, 0, 0, 0.596);
}
.more-news-item{
    display: flex;
    flex-direction: column;
    background-size: cover;
    padding: 20px 0px;
    background-color: #fff;
    margin: 20px 0px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.13);
}

.more-news-item-title{
    padding: 5px 0px;
}
.more-news-item-title p{
    font-family: "Lora", serif;
    color:rgb(20, 20, 20) ;
}
.more-news-item:hover > .more-news-item-title{
    text-decoration: underline;
}
.more-news-item-info{
    color: rgb(49, 49, 49);
    font-size: .8em;
}


.volver-btn{
    padding: 10px 30px;
}
.volver-btn a{
        color: rgb(20, 20, 20);       
        padding: 5px;
        transition: color var(--time);
}
.volver-btn a:hover{
    color: var(--w-hover-color);
}
/* new end */



/* footer */

.footer {
    background-color: #1d121a;
    display: flex;
    flex-direction: column;
    padding: 50px 140px;
}

.footer-links-container{
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 5px solid #ffffff42;
    padding-bottom: 40px;
}
.footer-links-title{
    color: #fff;
    font-size: 1.1em;
    padding: 10px 0px;
}
.footer-links-a{
    padding: 5px 0px;
}
.footer-links-a a{
    font-size: 1em;
    color: #ffffff9f;
    transition: all var(--time);
}

.footer-links-a a:hover{
    color: #fff;
    text-decoration: underline;
}

.footer-info-container {
    padding-top: 30px;
}

.footer-social{
    padding-bottom: 30px;
}
.footer-social-ul{
    display: flex;
}
.footer-social-li{
    padding: 0px 10px;
}
.footer-social-li a{
    transition: all var(--time);
    color: #ffffff93;
    font-size: 1.8em;
}
.footer-social-li a:hover{
    color: #fff;
}
.copyright-p{
    text-align: center;
    font-size: 1.3em;
    padding-top: 20px;
    font-weight: 600;
    color: #ffffff88;
}

.copyright-p{
    color: #ffffff;
}

/* footer end */






/* wwu */
.cv-label{
    text-align: center;
    display: flex;
    width: 100% ;
    justify-content: center ;
    align-items: center ;
    background-color: rgb(34, 120, 233) ;
    color: #fff;
    border: 1px solid rgb(34, 120, 233) ;
    font-size: 1em ;
    padding: 30px 10px;
    cursor: pointer;
    margin: 5px 0px;
    font-weight: 600;
    transition: all var(--time);
    border-radius: 40px;
    height: 20px;
    cursor: pointer ;
}

.cv-label:hover{
    background-color: transparent !important;
    color: rgb(34, 120, 233) !important;
}

.cv-label span{
    padding-left: 5px;
}
.loading-msg {
    display: inline-block;
    border: 4px solid #f3f3f3; /* color del borde del indicador de carga */
    border-top: 4px solid #3498db; /* color del borde superior del indicador de carga */
    border-radius: 50%; /* para crear un círculo */
    width: 24px; /* ancho del indicador de carga */
    height: 24px; /* altura del indicador de carga */
    animation: spin 1s linear infinite; /* animación de giro */
}

@keyframes spin {
    0% { transform: rotate(0deg); } /* el indicador de carga comienza en 0 grados */
    100% { transform: rotate(360deg); } /* el indicador de carga completa una vuelta completa (360 grados) */
}

.wwu-img{
    width: 250px !important;
}

/* wwu end */


/* contact */

.contact{
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 80px 110px;
    background-color: rgba(2, 2, 30, 0.02);
}

.contact-title{
    font-size: 3em;
    color:#47002F;
}

.contact-box{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px !important;
    gap: 40px;
}


.contact-form{
    gap: 20px !important;
    width: 800px;
    height: max-content;
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}

.contact-person{
    width: 100%;
    display: flex;
    gap: 20px;
}

.contact-person .form-group{
    width: 100%;
}


.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: #0000009a;
}

.contact-form input,
.contact-form textarea{
    border-radius: 20px;
    padding: 20px 20px;
    height: 60px;
    width: 100%;
    font-size: 1.1em;
    outline: none !important;
    border: 2px solid #fff;
    background-color: #fff;
    color: #000000;
    transition: all var(--time);
}
.contact-form textarea:focus,
.contact-form input:focus{
    border-color: #007bffa9;
}
.contact-form button{
    border-radius: 30px;
    color: #ffffff;
    background-color: #FF6B01;
    border: 2px solid #FF6B01;
    font-size: 1.1em;
    cursor: pointer;
    transition: all var(--time);
    font-weight: 600;
    height: 60px;
}

.contact-form button:hover{
    background-color: transparent;
    color: #FF6B01;
}

.contact-form textarea{
    resize: none;
    height: 200px;
}

.contact-info{
    width: 800px;
    display: flex;
    flex-direction: column;
    align-items: end;
    color:  #47002fda;
    font-size: 1.1em;
    font-weight: 500;
}

.contact-info a{
    color:  #47002fda;
}

.contact-info a:hover{
    text-decoration: underline;
}


.loading-msg {
    display: inline-block;
    border: 4px solid #f3f3f3; /* color del borde del indicador de carga */
    border-top: 4px solid #3498db; /* color del borde superior del indicador de carga */
    border-radius: 50%; /* para crear un círculo */
    width: 24px; /* ancho del indicador de carga */
    height: 24px; /* altura del indicador de carga */
    animation: spin 1s linear infinite; /* animación de giro */
}

@keyframes spin {
    0% { transform: rotate(0deg); } /* el indicador de carga comienza en 0 grados */
    100% { transform: rotate(360deg); } /* el indicador de carga completa una vuelta completa (360 grados) */
}
/* contact end */


/* infop text2 start*/
.info-text-2{
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1b1b25;
}

.info-text-2 h3{
    font-weight: 600;
    color: rgb(167, 167, 167);
}
.info-text-2 h2{
    text-transform: none;
    font-weight: 700;
    font-size: 3em;
    color: rgb(255, 255, 255);
    width: 90%;
    margin: 40px 0px;
}
.info-text-2 strong{
    color: #ffffffea;
    font-size: 1.2em;
}

.info-text-2 span{
    box-shadow: inset 0 -.7em 0 0 #773737;
}
.info-text-2 a{
    display: flex;
    font-weight: 600;
    font-size: 1em;
    width: max-content;
    padding: 15px 30px;
    text-transform: capitalize  ;
    border-radius: 25px;
    transition: all var(--time);
    background: rgb(213,45,44);
    background: -moz-linear-gradient(56deg, rgba(213,45,44,1) 0%, rgba(246,86,84,1) 100%);
    background: -webkit-linear-gradient(56deg, rgba(213,45,44,1) 0%, rgba(246,86,84,1) 100%);
    background: linear-gradient(56deg, rgba(213,45,44,1) 0%, rgba(246,86,84,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d52d2c",endColorstr="#f65654",GradientType=1);
    color: #fff;
}


.info-text-2 a:hover{
    filter: brightness(1.1);
    transform: scale(1.05);

}
/* infop text 2 end */





/* infop text 3 start*/
.info-text-3{
    padding: 0px 0px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;

        
    h3{
        font-weight: 600;
        color: rgb(116, 116, 116);
    }
    h2{
        text-transform: none;
        font-weight: 700;
        font-size: 3em;
        color: var(--title-color);
        width: 90%;
        margin: 40px 0px;
    }
    span{
        box-shadow: inset 0 -.7em 0 0 #ff8f8f;
    }
    a{
        display: flex;
        font-weight: 600;
        font-size: 1em;
        width: max-content;
        padding: 15px 30px;
        text-transform: capitalize  ;
        border-radius: 25px;
        transition: all var(--time);
        background: rgb(213,45,44);
        background: -moz-linear-gradient(56deg, rgba(213,45,44,1) 0%, rgba(246,86,84,1) 100%);
        background: -webkit-linear-gradient(56deg, rgba(213,45,44,1) 0%, rgba(246,86,84,1) 100%);
        background: linear-gradient(56deg, rgba(213,45,44,1) 0%, rgba(246,86,84,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d52d2c",endColorstr="#f65654",GradientType=1);
        color: #fff;
    }


    a:hover{
        filter: brightness(1.1);
        transform: scale(1.05);

    }
}
/* infop text 3 end */

.gracias-container h1{
    font-weight: 600 !important;
    color: #3a0227 !important;
}

.gracias-container p{
    color: #47002fce !important;
}

.gracias-container p span{
    font-weight: 700;
}