/* =========================
   SECTION
========================= */

/* ===================================
   PAGINATION 2026
=================================== */

.pagination{
    margin:60px 0 20px;
    text-align:center;
}

.pagination > div{
    width:100%;
    display:flex;
    justify-content:center;
}

.pagination ul.pagination{
    float:none !important;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    padding:0;
    margin:0 auto;
}

.field-error{
    color:#ff5f5f;
    font-size:13px;
    margin-top:5px;
    font-family:'Mont_Trial',sans-serif;
}

.contact-success-message{
    background:#dff5df;
    border:1px solid #9fd49f;
    color:#2d6a2d;
    padding:15px;
    border-radius:12px;
    margin-bottom:20px;
    font-family:'Mont_Trial',sans-serif;
}


/* ===================================
   PAGINATION 2026
=================================== */

.summary {
    font-family: 'Mont_Trial';
}

.pagination ul.pagination li{
    list-style:none;
}

.pagination ul.pagination li a{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#333;
    font-family:'Mont_Trial',sans-serif;
    font-weight:700;
    font-size:16px;
    text-decoration:none;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    transition:all .25s ease;
}

.pagination ul.pagination li a:hover{
    background:#ef8b00;
    color:#fff;
    transform:translateY(-2px);
}

.pagination ul.pagination li.active a,
.pagination ul.pagination li.active span{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none;
    border-radius:50%;
    background:#ef8b00;
    color:#fff;
    font-family:'Mont_Trial',sans-serif;
    font-weight:700;
}

.pagination ul.pagination li.disabled a{
    opacity:.35;
    cursor:not-allowed;
    background:#f3f3f3;
    color:#999;
    box-shadow:none;
}

.pagination ul.pagination li.previous a,
.pagination ul.pagination li.next a{
    font-size:22px;
    line-height:1;
}
.impact-section {
  background: #FFB319;
  padding: 100px 0;
  font-family: 'Mont_Trial';
  overflow: hidden;
}

/* =========================
   CARD
========================= */

.impact-card {
  position: relative;
  background: #FFB319;
  border-radius: 40px;
  overflow: hidden;
  min-height: 580px;
  cursor: pointer;
  transition: background .45s cubic-bezier(.22,.61,.36,1), transform .35s ease, box-shadow .35s ease;
}

.impact-card-link{
    display:block;
    text-decoration:none;
    color:inherit;
}

.impact-card-link:hover{
    text-decoration:none;
    color:inherit;
}

.impact-card-link .impact-card{
    cursor:pointer;
}

.impact-card-link .impact-card{
    transition: transform .3s ease;
}

.impact-card-link:hover .impact-card{
    transform: translateY(-6px);
}

/* hover elevación */

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

/* =========================
   HOVER COLORS
========================= */

.impact-orange:hover {
  background: #ee7b0f;
}

.impact-green:hover {
  background: #9a9f35;
}

/* =========================
   INNER
========================= */

.impact-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 580px;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   IMAGE WRAPPER
========================= */

.impact-image-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  transition: all .45s cubic-bezier(.22,.61,.36,1);
  opacity: 1;
  transform: scale(1);
}

/* imagen principal */

.impact-main-image {
  max-width: 100%;
  transition: all .45s ease;
}

/* logo */

.impact-logo-image {
  max-width: 85%;
  margin-top: 0px;
  transition: all .45s ease;
}

/* desaparecer imágenes */

.impact-card:hover .impact-image-wrapper {
  opacity: 0;
  transform: scale(.92);
}

/* =========================
   DESCRIPTION
========================= */

.impact-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all .45s cubic-bezier(.22,.61,.36,1);
  z-index: 3;
}

/* texto */

.impact-content p {
  color: white;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
  width: 100%;
  max-width: 520px;
}

/* mostrar contenido */

.impact-card:hover .impact-content {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
   OPORTUNIDADES
========================== */

.opportunities-section{
    padding-top:120px;
    padding-bottom:80px;
    min-height:70vh;
}

.opportunities-section .news-card{
    height:100%;
}

.opportunities-section .news-content{
    display:flex;
    flex-direction:column;
    height:100%;
}

.opportunities-section .news-button{
    margin-top:auto;
}

.job-deadline{
    font-size:13px;
    font-weight:700;
    color:#F68B26;
    margin-bottom:12px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

/* animación igual al resto */

.opportunities-section .news-card{
    opacity:0;
    transform:translateY(30px);
    animation:jobFadeIn .7s ease forwards;
}

.opportunities-section .col-md-6:nth-child(1) .news-card{
    animation-delay:.1s;
}

.opportunities-section .col-md-6:nth-child(2) .news-card{
    animation-delay:.2s;
}

.opportunities-section .col-md-6:nth-child(3) .news-card{
    animation-delay:.3s;
}

.opportunities-section .col-md-6:nth-child(4) .news-card{
    animation-delay:.4s;
}

@keyframes jobFadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.country-filter-btn{
    display:inline-block;
    margin:0 8px 15px;
    padding:12px 24px;
    border-radius:30px;
    text-decoration:none;
    font-family:'Mont_Trial';
    font-weight:600;
    color:#F68B26;
    border:2px solid #F68B26;
    transition:.25s ease;
}

.country-filter-btn:hover{
    background:#F68B26;
    color:#fff;
    text-decoration:none;
}

.country-filter-btn.active{
    background:#F68B26;
    color:#fff;
}

.job-title-row{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.job-detail-title{
    margin:0 !important;
    display:inline-block;
    width:auto;
    flex:0 1 auto;
}

.job-country-flag-inline{
    width:34px;
    height:auto;
    margin-left:10px;
    vertical-align:middle;
    border-radius:3px;
    margin-top: -5px;
}


.job-card{
    height:100%;
    display:flex;
    flex-direction:column;
}

.job-card .news-content{
    flex:1;
    display:flex;
    flex-direction:column;
}

.job-card .news-button{
    margin-top:auto;
}

.job-detail-page{
    padding-top:80px;
    padding-bottom:80px;
}

.job-detail-header{
    margin-bottom:50px;
}

.job-detail-title{
    font-family:'Mont_Trial';
    font-weight:800;
    font-size:clamp(2rem,4vw,3.5rem);
    color:#ffffff;
    margin-bottom:20px;
}

.job-detail-meta{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.job-country,
.job-detail-deadline{
    background:#ef8b00;
    color:#fff;
    padding:8px 18px;
    border-radius:999px;
    font-family:'Mont_Trial';
    font-weight:700;
    font-size:14px;
}

.job-detail-image-wrapper{
    margin-bottom:30px;
}

.job-detail-image{
    width:100%;
    border-radius:24px;
    display:block;
}

.job-detail-content{
    font-family:'Mont_Trial';
     color:#333;
    font-size:18px;
    line-height:1.9;
}

.job-detail-content p{
     color:#333;
    font-family:'Mont_Trial';
}

.job-detail-content h1,
.job-detail-content h2,
.job-detail-content h3,
.job-detail-content h4,
.job-detail-content h5{
     color:#333;
    font-family:'Mont_Trial';
}

.job-detail-content ul,
.job-detail-content ol{
    color:#ffffff;
}

.job-detail-content a{
    color:#ef8b00;
}

.job-attachments{
    margin-top:0px;
    padding-top:0px;
    border-top:1px solid rgba(255,255,255,.15);
}

.job-attachments h3{
     color:#333;
    font-family:'Mont_Trial';
    font-weight:700;
    margin-bottom:20px;
}




.job-country-flag{
    width:36px;
    height:24px;
    object-fit:cover;
    border-radius:3px;
    flex-shrink:0;
    margin:0 !important;
}

.job-detail-header,
.job-detail-image-wrapper,
.job-detail-content,
.job-attachments{
    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.job-detail-title-small{
    font-family:'Mont_Trial',sans-serif;
    font-size:2rem;
    font-weight:700;
    line-height:1.2;
    color:#333;
    margin-bottom:20px;
}

.job-detail-content p,
.job-detail-content li,
.job-detail-content span,
.job-detail-content div{
    color:#333 !important;
    font-family:'Mont_Trial',sans-serif;
    line-height:1.8;
}


@media (max-width:768px){
    .job-detail-title-small{
        font-size:1.6rem;
    }
}


@media (max-width:768px){

    .country-filter-btn{
        margin-bottom:10px;
        display:inline-block;
        font-size:14px;
        padding:10px 18px;
    }

}

/* =====================================
   PROGRAM VIEW 2026
===================================== */

.program2026-page,
.program2026-page p,
.program2026-page div,
.program2026-page span,
.program2026-page li,
.program2026-page h1,
.program2026-page h2,
.program2026-page h3,
.program2026-page h4{
    font-family:'Mont_Trial',sans-serif;
}

.program2026-banner{
    width:100%;
    margin:0;
    padding:0;
    overflow:hidden;
}

.program2026-banner img{
    width:100%;
    height:520px;
    object-fit:cover;
    display:block;
}

@media (max-width:768px){

    .program2026-banner img{
        height:260px;
    }

}



.program2026-title{
    font-family:'Mont_Trial',sans-serif;
    font-size:clamp(1.8rem,3vw,2.8rem);
    font-weight:800;
    color:#333;
    line-height:1.2;
    margin-top:50px;
}

.program2026-content-card{
    background:#fff;
    border-radius:28px;
    padding-left:50px;
    padding-right:50px;
    padding-bottom: 50px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.program2026-content-card *{
    font-family:'Mont_Trial',sans-serif !important;
    color:#333 !important;
    line-height:1.9;
}

.program2026-stat-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    text-align:center;
    height:100%;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.program2026-stat-card:hover{
    transform:translateY(-8px);
}

.program2026-stat-card img{
    max-height:140px;
    margin-bottom:25px;
}

.program2026-stat-card h3{
    font-family:'Mont_Trial';
    color:#ef8b00;
    font-weight:800;
    font-size:1.4rem;
    margin-bottom:15px;
}

.program2026-stat-card p{
    color:#555;
    font-family:'Mont_Trial';
}

.program2026-video{
    margin-top:70px;
}

.program2026-video iframe{
    border-radius:24px;
}

.program2026-projects{
    background:#4e5056;
    margin-top:90px;
    padding:80px 0;
}

.program2026-project-title{
    color:#ef8b00;
    font-family:'Mont_Trial';
    font-size:2rem;
    font-weight:800;
}

.program2026-project-text{
    color:#fff;
    font-family:'Mont_Trial';
}

.program2026-project-card{
    height:100%;
}

.program2026-project-card img{
    border-radius:18px;
    width:100%;
}

.program2026-project-card-title{
    margin-top:15px;
}

.program2026-project-card-title a{
    color:#fff !important;
    font-family:'Mont_Trial';
    font-weight:700;
    text-decoration:none;
}

.program2026-project-countries{
    color:#cfcfcf;
    font-family:'Mont_Trial';
    font-size:15px;
}

.program2026-quote{
    margin-top:80px;
    margin-bottom:80px;
}

.program2026-quote hr{
    border-top:2px solid #ef8b00;
    opacity:1;
}

.program2026-quote-text{
    color:#ef8b00;
    font-size:1.5rem;
    font-family:'Mont_Trial';
    text-align:center;
}

.program2026-quote-author{
    color:#ef8b00;
    font-family:'Mont_Trial';
    font-weight:700;
    text-align:center;
    display:block;
    margin-top:15px;
}

.program-project-title{
    font-family:'Mont_Trial',sans-serif;
    font-size:1.15rem;
    font-weight:700;
    color:#fff;
    line-height:1.4;
}

.program-project-countries{
    color:#bfc4ca;
    font-size:.95rem;
    font-weight:500;
}

.program-featured-section{

    background:
        linear-gradient(
            135deg,
            #4e5056 0%,
            #3c3f44 100%
        );

}

.program2026-animate{
    animation:fadeUp .8s ease;
}

.program-project-card{

    opacity:0;

    transform:translateY(40px);

    animation:programFadeUp .8s ease forwards;
}

.program-project-card:nth-child(1){
    animation-delay:.1s;
}

.program-project-card:nth-child(2){
    animation-delay:.25s;
}

.program-project-card:nth-child(3){
    animation-delay:.4s;
}

@keyframes programFadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


.program2026-project-card{
    transition:
        transform .35s ease,
        box-shadow .35s ease;
        text-align: center;
}

.program2026-project-card:hover{

    transform:translateY(-8px);


}

.program2026-project-image{
    overflow:hidden;
    border-radius:18px;
}

.program2026-project-image img{
    transition:transform .5s ease;
}



@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(25px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

    .program2026-content-card{
        padding:30px;
    }

    .program2026-title{
        font-size:2rem;
    }

    .program2026-project-card img{
        width:50%;
        margin-top: 30px;
    }
    
}



/* ========================================
   ABOUT PAGE
======================================== */

.page-about {
    padding: 100px 0;
}

.page-header-custom {
    margin-bottom: 50px;
}

.section-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 999px;

    background: #ffc526;
    color: white;

    font-family: 'Mont_Trial', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;

    
    opacity: 0;

    animation:
        fadeInTag .6s ease forwards;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.section-tag:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 20px rgba(255,197,38,.35);
}

@keyframes fadeInTag {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    margin-top: 18px;

    font-family: 'Mont_Trial', sans-serif;
    font-size: clamp(2rem,4vw,3.8rem);
    font-weight: 800;

    color: #fff;

    opacity: 0;
    transform: translateY(30px);

    animation: aboutTitleIn .8s ease forwards;
}

@keyframes aboutTitleIn {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.about-card {

    max-width: 900px;
    
    margin: 0 auto;
    
    background: #fff;

    border-radius: 28px;

    padding: 50px;

    box-shadow:
        0 20px 40px rgba(0,0,0,.08);

    font-family: 'Mont_Trial', sans-serif;

    line-height: 1.85;

    opacity: 0;

    transform: translateY(40px);

    animation:
        aboutCardIn .9s ease .2s forwards;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.about-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.12);
}

@keyframes aboutCardIn {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-card p {
    margin-bottom: 1.4rem;
}

.about-card img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.about-card h1,
.about-card h2,
.about-card h3,
.about-card h4 {
    color: #f68b26;
    margin-bottom: 20px;
}

.about-card ul {
    padding-left: 20px;
}

.about-card li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    .page-about {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-card {
        padding: 24px;
        border-radius: 20px;
    }

}

/* =========================
   SECTION
========================= */

.news-section {
  background: #d9d9d9;
  padding: 100px 0;
  font-family: 'Mont_Trial';
}

/* =========================
   TITLE
========================= */

.news-title {
  font-size: 48px;
  font-weight: 800;
  color: #4f4f4f;
  margin-bottom: 50px;
  
}

/* =========================
   CARD
========================= */

.news-card {
  transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s cubic-bezier(.22,.61,.36,1);
  height: 100%;
}

/* hover */

.news-card:hover {
  transform: translateY(-5px);
}

/* =========================
   IMAGE WRAPPER
========================= */

.news-image-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: all .45s cubic-bezier(.22,.61,.36,1);
}

/* sombra hover */

.news-card:hover .news-image-wrapper {
  box-shadow: 0 30px 60px rgba(0,0,0,.18);
}

/* =========================
   IMAGE
========================= */

.news-image {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.22,.61,.36,1), filter .45s ease;
}

/* zoom hover */

.news-card:hover .news-image {
  transform: scale(1.08);
  filter: brightness(.72);
}

/* =========================
   DATE
========================= */

.news-date {
  position: absolute;
  top: 0;
  left: 0;
  background: #ffb400;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 14px;
  z-index: 5;
  border-bottom-right-radius: 22px;
}

/* =========================
   CONTENT
========================= */

.news-content {
  padding-top: 14px;
}

/* title */

.news-content h3 {
  font-size: 22px;
  line-height: 1.05;
  font-weight: 800;
  color: #4f4f4f;
  margin-bottom: 18px;
}

.news-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* description */

.news-content p {
  font-size: 14px;
  line-height: 1.35;
  color: #4f4f4f;
  margin-bottom: 25px;
}

.news-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================
   BUTTON
========================= */

.news-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 100px;
  background: #ffb400;
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

/* hover */

.news-button:hover {
  background: #f39c00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(243,156,0,.35);
}

/* =========================
   SECTION
========================= */

.footer-newsletter-section {
  background: #f58200;
  padding: 90px 0 70px;
  font-family: 'Mont_Trial';
  overflow: hidden;
}

/* =========================
   SOCIALS
========================= */

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 35px;
}

/* social item */

.social-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, background .25s ease;
}

/* icon */

.social-circle i {
  font-size: 28px;
  color: #f58200;
  transition: transform .35s ease, color .25s ease;
}

/* hover */

.social-circle:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  background: white;
}

/* icon hover */

.social-circle:hover i {
  transform: scale(1.08);
}

/* =========================
   NEWSLETTER
========================= */

.newsletter-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

/* title */

.newsletter-wrapper h3 {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* form */

.newsletter-form {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: auto;
}

/* input */

.newsletter-form input {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 100px;
  background: rgba(255,255,255,.92);
  padding: 0 24px;
  font-size: 16px;
  outline: none;
  transition: box-shadow .25s ease, transform .25s ease;
}

/* focus */

.newsletter-form input:focus {
  box-shadow: 0 0 0 5px rgba(255,255,255,.18);
}

/* button */

.newsletter-form button {
  position: absolute;
  top: 50%;
  right: -72px;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.96);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s ease, background .25s ease;
  cursor: pointer;
}

/* icon */

.newsletter-form button i {
  font-size: 20px;
  color: #f58200;
  transition: transform .28s ease;
}

/* hover */

.newsletter-form button:hover {
  transform: translateY(-50%) rotate(-12deg) scale(1.08);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

/* icon hover */

.newsletter-form button:hover i {
  transform: translateX(2px) translateY(-1px);
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  margin-top: 10px;
}

/* =========================
   LOGO
========================= */

.footer-logo img {
  max-width: 220px;
  transition: transform .35s ease, opacity .25s ease;
}

/* hover */

.footer-logo img:hover {
  transform: scale(1.03);
}

/* =========================
   LOCATIONS
========================= */

.footer-location h4 {
  color: white;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* text */

.footer-location p {
  color: white;
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .footer-newsletter-section {
    padding: 70px 0 50px;
  }
}

@media (max-width: 992px) {
  .newsletter-wrapper {
    margin-bottom: 65px;
  }
}

@media (max-width: 992px) {
  .footer-logo {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .footer-logo img {
    max-width: 190px;
  }
}

@media (max-width: 992px) {
  .footer-location {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .footer-location h4 {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .footer-location p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .footer-newsletter-section {
    padding: 55px 0 45px;
  }
}

@media (max-width: 768px) {
  .footer-socials {
    gap: 14px;
    margin-bottom: 28px;
  }
}

@media (max-width: 768px) {
  .social-circle {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 768px) {
  .social-circle i {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .newsletter-wrapper {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .newsletter-wrapper h3 {
    font-size: 22px;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .newsletter-form {
    max-width: calc(100% - 60px);
  }
}

@media (max-width: 768px) {
  .newsletter-form input {
    height: 52px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .newsletter-form button {
    width: 48px;
    height: 48px;
    right: -56px;
  }
}

@media (max-width: 768px) {
  .newsletter-form button i {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .footer-logo {
    margin-bottom: 10px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-logo img {
    max-width: 170px;
  }
}

@media (max-width: 768px) {
  .footer-location h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .footer-location p {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* =========================
   SECTION
========================= */

.contact-section {
  background: #5b5956;
  padding: 90px 0;
  font-family: 'Mont_Trial';
  overflow: hidden;
}

/* =========================
   COUNTRY SELECTOR
========================= */

.country-selector {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 26px;
}

/* tab */

.country-tab {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.8);
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color .25s ease, transform .25s ease;
}

/* underline */

.country-tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: white;
  transition: width .25s ease;
}

/* active */

.country-tab.active {
  color: white;
  font-weight: 800;
}

.country-tab.active::after {
  width: 100%;
}

/* hover */

.country-tab:hover {
  transform: translateY(-2px);
  color: white;
}

/* =========================
   CARD
========================= */

.contact-card {
  background: #d9d9d9;
  border-radius: 0 60px 60px 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  max-width: 980px;
  margin: auto;
  min-height: 540px;
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
}

/* =========================
   IMAGE
========================= */

.contact-image-wrapper {
  width: 36%;
  overflow: hidden;
  position: relative;
  background: #000;
}

/* image */

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .35s ease, transform .45s cubic-bezier(.22,.61,.36,1);
}

/* image transition */

.contact-image.changing {
  opacity: 0;
  transform: scale(1.05);
}

/* =========================
   FORM
========================= */

.contact-form-wrapper {
  width: 64%;
  padding: 40px 170px 40px 35px;
  position: relative;
}

/* form group */

.form-group-custom {
  margin-bottom: 16px;
}

/* label */

.form-group-custom label {
  display: block;
  color: #5b5956;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* input */

.form-group-custom input, .form-group-custom textarea {
  width: 100%;
  border: none;
  border-radius: 100px;
  background: rgba(255,255,255,.7);
  height: 38px;
  padding: 0 18px;
  outline: none;
  font-size: 14px;
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

/* textarea */

.form-group-custom textarea {
  border-radius: 20px;
  height: 90px;
  padding-top: 14px;
  resize: none;
}

/* focus */

.form-group-custom input:focus, .form-group-custom textarea:focus {
  background: white;
  box-shadow: 0 0 0 4px rgba(245,130,0,.15);
}

/* =========================
   CAPTCHA
========================= */

.captcha-wrapper {
  margin-top: 10px;
}

/* code */

.captcha-wrapper strong {
  display: block;
  color: #5b5956;
  font-size: 20px;
  margin-bottom: 4px;
}

/* regenerate */

.captcha-wrapper a {
  color: #5b5956;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

/* paragraph */

.captcha-wrapper p {
  color: #5b5956;
  font-size: 14px;
  line-height: 1.3;
  margin-top: 10px;
}

/* =========================
   BUTTON
========================= */

.contact-submit-btn {
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), background .25s ease, box-shadow .35s ease;
}

/* icon */

.contact-submit-btn i {
  color: white;
  font-size: 30px;
  transition: transform .25s ease;
}

/* hover */

.contact-submit-btn:hover {
  background: #f58200;
  transform: translateY(-50%) rotate(-12deg) scale(1.08);
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

/* icon hover */

.contact-submit-btn:hover i {
  transform: translateX(2px) translateY(-2px);
}

/* =========================
   FOOTER LINKS SECTION
========================= */

.footer-links-section {
  background: #ececec;
  padding: 90px 0;
  font-family: 'Mont_Trial';
  overflow: hidden;
}

/* =========================
   GROUP
========================= */

.footer-links-group {
  position: relative;
}

/* title */

.footer-links-group h3 {
  color: black;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

/* underline animation */

.footer-links-group h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 4px;
  background: #f58200;
  border-radius: 100px;
  transition: width .35s cubic-bezier(.22,.61,.36,1);
}

/* hover title */

.footer-links-group:hover h3::after {
  width: 100%;
}

/* =========================
   LIST
========================= */

.footer-links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* item */

.footer-links-group li {
  margin-bottom: 10px;
}

/* links */

.footer-links-group a {
  position: relative;
  color: #222;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color .25s ease, transform .25s ease, letter-spacing .25s ease;
}

/* animated dot */

.footer-links-group a::before {
  content: '';
  width: 0;
  height: 8px;
  border-radius: 50%;
  background: #f58200;
  margin-right: 0;
  transition: width .25s ease, margin-right .25s ease, opacity .25s ease;
  opacity: 0;
}

/* hover */

.footer-links-group a:hover {
  color: #f58200;
  transform: translateX(6px);
  letter-spacing: .3px;
}

/* hover dot */

.footer-links-group a:hover::before {
  width: 8px;
  margin-right: 12px;
  opacity: 1;
}

/* =========================
   CONTACT MODAL
========================= */

.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

/* active */

.contact-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================
   BOX
========================= */

.contact-modal-box {
  width: 92%;
  max-width: 820px;
  transform: scale(.92);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}

/* active */

.contact-modal-overlay.active .contact-modal-box {
  transform: scale(1);
}

/* =========================
   CLOSE
========================= */

.contact-modal-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 5;
}

/* lines */

.contact-modal-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 3px;
  background: white;
  border-radius: 100px;
  transition: transform .25s ease, opacity .25s ease;
}

.contact-modal-close span:nth-child(1) {
  transform: translate(-50%,-50%) rotate(45deg);
}

.contact-modal-close span:nth-child(2) {
  transform: translate(-50%,-50%) rotate(-45deg);
}

/* hover */

.contact-modal-close:hover span:nth-child(1) {
  transform: translate(-50%,-50%) rotate(135deg);
}

.contact-modal-close:hover span:nth-child(2) {
  transform: translate(-50%,-50%) rotate(-135deg);
}

/* =========================
   TABS
========================= */

.contact-modal-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  margin-top: 26px;
}

/* tab */

.contact-country-tab {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: color .25s ease, transform .25s ease;
}

/* active */

.contact-country-tab.active {
  color: white;
  font-weight: 800;
}

/* hover */

.contact-country-tab:hover {
  transform: translateY(-2px);
  color: white;
}

/* =========================
   CARD
========================= */

.contact-modal-card {
  background: #d9d9d9;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  min-height: 420px;
}

/* =========================
   IMAGE
========================= */

.contact-modal-image-wrapper {
  width: 32%;
}

/* image */

.contact-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .25s ease, transform .35s ease;
}

/* change */

.contact-modal-image.changing {
  opacity: 0;
  transform: scale(1.05);
}

/* =========================
   FORM
========================= */

.contact-modal-form-wrapper {
  width: 68%;
  padding: 28px 100px 28px 26px;
  position: relative;
}

/* group */

.contact-modal-group {
  margin-bottom: 12px;
}

/* label */

.contact-modal-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #4f4f4f;
}

/* fields */

.contact-modal-group input, .contact-modal-group textarea {
  width: 100%;
  height: 34px;
  border: none;
  border-radius: 100px;
  background: rgba(255,255,255,.75);
  padding: 0 16px;
  font-size: 13px;
  outline: none;
}

/* textarea */

.contact-modal-group textarea {
  height: 70px;
  border-radius: 18px;
  resize: none;
  padding-top: 12px;
}

/* =========================
   BUTTON
========================= */

.contact-modal-submit {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: black;
  color: white;
  font-size: 22px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

/* hover */

.contact-modal-submit:hover {
  background: #f58200;
  transform: translateY(-50%) rotate(-10deg) scale(1.06);
  box-shadow: 0 18px 36px rgba(0,0,0,.2);
}

/* =========================
   MOBILE
========================= */

/* =========================
       MODAL BOX
    ========================= */

@media (max-width: 768px) {
  .contact-modal-box {
    width: 94%;
    margin-top: 70px;
  }
}

/* =========================
       TABS
    ========================= */

@media (max-width: 768px) {
  .contact-modal-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 16px;
    padding: 0 14px;
  }
}

/* country button */

@media (max-width: 768px) {
  .contact-country-tab {
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.15);
    border-radius: 100px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.72);
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  }
}

/* active */

@media (max-width: 768px) {
  .contact-country-tab.active {
    background: #f58200;
    border-color: #f58200;
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(245,130,0,.28);
  }
}

/* hover */

@media (max-width: 768px) {
  .contact-country-tab:hover {
    transform: translateY(-2px);
    color: white;
  }
}

/* =========================
       CARD
    ========================= */

@media (max-width: 768px) {
  .contact-modal-card {
    flex-direction: column;
    min-height: auto;
    border-radius: 24px;
  }
}

/* =========================
       HIDE IMAGE
    ========================= */

@media (max-width: 768px) {
  .contact-modal-image-wrapper {
    display: none;
  }
}

/* =========================
       FORM
    ========================= */

@media (max-width: 768px) {
  .contact-modal-form-wrapper {
    width: 100%;
    padding: 24px 22px 90px;
  }
}

/* fields */

@media (max-width: 768px) {
  .contact-modal-group {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .contact-modal-group label {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .contact-modal-group input, .contact-modal-group textarea {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .contact-modal-group input {
    height: 36px;
  }
}

@media (max-width: 768px) {
  .contact-modal-group textarea {
    height: 80px;
  }
}

/* =========================
       BUTTON
    ========================= */

@media (max-width: 768px) {
  .contact-modal-submit {
    right: 50%;
    top: auto;
    bottom: 20px;
    transform: translateX(50%);
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .contact-modal-submit:hover {
    transform: translateX(50%) rotate(-10deg) scale(1.06);
  }
}

/* =========================
       CLOSE
    ========================= */

@media (max-width: 768px) {
  .contact-modal-close {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 768px) {
  .contact-modal-close span {
    width: 28px;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .footer-links-group h3 {
    font-size: 32px;
  }
}

@media (max-width: 1200px) {
  .footer-links-group a {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .footer-links-section {
    padding: 70px 0;
  }
}

@media (max-width: 992px) {
  .footer-links-group h3 {
    font-size: 26px;
    margin-bottom: 18px;
  }
}

@media (max-width: 992px) {
  .footer-links-group a {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .footer-links-section {
    padding: 55px 0;
  }
}

@media (max-width: 768px) {
  .footer-links-group {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-links-group h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .footer-links-group li {
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  .footer-links-group a {
    font-size: 15px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-links-group a:hover {
    transform: translateY(-2px);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .contact-card {
    flex-direction: row;
    border-radius: 30px;
    min-height: auto;
  }
}

@media (max-width: 992px) {
  .contact-image-wrapper {
    width: 42%;
    height: auto;
  }
}

@media (max-width: 992px) {
  .contact-form-wrapper {
    width: 58%;
    padding: 30px 110px 30px 24px;
  }
}

@media (max-width: 992px) {
  .contact-submit-btn {
    width: 62px;
    height: 62px;
    right: 24px;
  }
}

@media (max-width: 992px) {
  .contact-submit-btn i {
    font-size: 26px;
  }
}

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

@media (max-width: 768px) {
  .contact-image-wrapper {
    width: 100%;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .contact-image {
    object-fit: cover;
    object-position: top;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    width: 100%;
    padding: 28px 24px 100px;
  }
}

@media (max-width: 768px) {
  .contact-submit-btn {
    right: 50%;
    bottom: 20px;
    top: auto;
    transform: translateX(50%);
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .contact-submit-btn:hover {
    transform: translateX(50%) rotate(-12deg) scale(1.08);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .news-section {
    padding: 70px 0;
  }
}

@media (max-width: 992px) {
  .news-title {
    font-size: 54px;
  }
}

@media (max-width: 992px) {
  .news-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .news-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .news-section {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .news-title {
    font-size: 42px;
    margin-bottom: 35px;
  }
}

@media (max-width: 768px) {
  .news-image-wrapper {
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .news-date {
    font-size: 18px;
    padding: 10px 14px;
  }
}

@media (max-width: 768px) {
  .news-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .news-content p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .news-button {
    font-size: 16px;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .impact-section {
    padding: 70px 0;
  }
}

@media (max-width: 992px) {
  .impact-card {
    min-height: 520px;
  }
}

@media (max-width: 992px) {
  .impact-card-inner {
    min-height: 520px;
    padding: 35px;
  }
}

@media (max-width: 992px) {
  .impact-content {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .impact-content p {
    font-size: 17px;
    line-height: 1.45;
  }
}

@media (max-width: 992px) {
  .impact-logo-image {
    max-width: 85%;
  }
}

@media (max-width: 768px) {
  .impact-section {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .impact-card {
    min-height: 460px;
    border-radius: 28px;
  }
}

@media (max-width: 768px) {
  .impact-card-inner {
    min-height: 460px;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .impact-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .impact-content p {
    font-size: 15px;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .impact-logo-image {
    max-width: 85%;
  }
}

