.langchooser {
float: right;
margin-left:50px;
}
/*======== PARTNERS=====================*/
Got it — you want a proper, styled layout, with the real text included and nice colored button-boxes, not a minimal grid. Below is a more polished, CMS-safe HTML section: 2 cards per row Includes title + description text area Big colored button box (not small link) Clean spacing / modern look You can paste logos later No header / footer Writing <style> .partners-wrapper {
     max-width: 1100px;
     margin: 40px auto;
     font-family: Arial, Helvetica, sans-serif;
}
 .partners-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
}
 .partner-box {
     border-radius: 12px;
     padding: 28px;
     background: #ffffff;
     border: 1px solid #e6e6e6;
     box-shadow: 0 4px 14px rgba(0,0,0,0.06);
     transition: 0.2s ease;
}
 .partner-box:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
 .partner-logo {
     height: 70px;
     margin-bottom: 18px;
}
 .partner-title {
     font-size: 20px;
     font-weight: bold;
     margin-bottom: 10px;
     color: #222;
}
 .partner-text {
     font-size: 15px;
     line-height: 1.6;
     color: #555;
     margin-bottom: 20px;
}
 .visit-button {
     display: block;
     text-align: center;
     background: linear-gradient(135deg, #2c7be5, #1a5fd1);
     color: #fff;
     text-decoration: none;
     padding: 14px;
     border-radius: 8px;
     font-weight: bold;
     letter-spacing: 0.3px;
     transition: 0.2s;
}
 .visit-button:hover {
     background: linear-gradient(135deg, #1a5fd1, #174db0);
}


/*==================END of PARTNERS=====================*/


/* mobile for partners */
partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row by default (desktop) */
  gap: 20px; /* space between boxes */
}

/* Mobile (or small screens) */
@media (max-width: 768px) { /* adjust breakpoint if needed */
  .partners-grid {
    grid-template-columns: 1fr; /* 1 per row */
  }
  
  .partner-box {
    width: 100%; /* optional, ensure full width */
  }
}
/* end of mobile for partners */




.c-mybigproject {
    font-size: 1em;
}
@media (max-width: 768px) {
    .c-mybigproject {
        font-size: 0.8em;
    }
}

.c-belowsitetitle{
font-size: 1.4em;
font-weight: 300;
line-height: 1em;
color: #440001;
text-align: center;
}
.c-belowsitetext{
font-size: 1em;
font-weight: 300;
margin-bottom: 0px;
line-height: 1em;
text-align: center;
}

.c-button {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    line-height: 1em;
    text-align: center;
    padding: 25px 15px;
    color: 333;
    width: 240px;
    margin: auto;
    background-color: transparent;
    border: 1px solid #440001;
    transition: 1s;
}

.c-button:hover {
color: #fff;
background-color: #440001;
border: 1px solid #440001;
}

/*----*/
.partner-logo {
    margin-bottom: 15px; /* space between image and title */
}
.partner-title {
    margin-bottom: 10px; /* space between title and text */
}
.partner-text {
    line-height: 1.6; /* easier to read */
}