Spaces:
Sleeping
Sleeping
File size: 2,450 Bytes
65bffa4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
.partners-container {
background-color: #0a0f1f; /* Dark background */
color: white;
padding: 50px 20px;
border-top-left-radius: 50px; /* Rounded top corners */
border-top-right-radius: 50px; /* Rounded top corners */
width: 100vw; /* Full width of the viewport */
margin-left: calc(-50vw + 50%); /* Centering the full-width container */
box-sizing: border-box;
}
.partners-section {
display: flex;
justify-content: space-between;
align-items: flex-start;
max-width: 1200px;
margin: 0 auto;
gap: 50px; /* Space between the text and the grid */
}
/* Left section for text */
.partners-text {
color: #ffffff;
flex: 1;
max-width: 50%; /* Take up 50% of the width */
text-align: left; /* Align text to the left */
}
.partners-text h2 {
color: #ffffff;
font-size: 2.5em;
margin-bottom: 20px;
}
.partners-text p {
font-size: 1.2em;
line-height: 1.5em;
margin-bottom: 30px;
max-width: 400px;
}
/* Right section for the grid of partner logos */
.partners-grid {
flex: 1;
display: grid;
grid-template-columns: repeat(3, 1fr); /* 3 columns for logos */
grid-template-rows: repeat(3, 1fr); /* 3 rows for logos */
gap: 20px;
justify-items: center;
}
/* Partner item container */
.partner-item {
background-color: #1e2a47; /* Darker background for logo container */
padding: 20px;
border-radius: 12px; /* Rounded corners */
display: flex;
justify-content: center;
align-items: center;
transition: transform 0.3s ease; /* Smooth hover effect */
}
.partner-item:hover {
transform: scale(1.05); /* Slight zoom-in on hover */
}
/* Partner logos */
/* General styles for all partner logos */
.partner-item img {
width: 100px; /* Default size for all logos */
height: auto;
}
/* Specific style for Puro Earth logo */
.partner-item.small-logo img {
width: 70px; /* Smaller size for the Puro Earth logo */
height: auto;
}
.industry-leaders-grid {
display: grid;
grid-template-columns: repeat(5, 1fr); /* 5 columns for industry leader logos */
gap: 20px;
justify-items: center;
margin-top: 50px;
}
.leader-item {
padding: 15px;
border-radius: 12px; /* Rounded corners */
display: flex;
justify-content: center;
align-items: center;
}
.leader-item img {
width: 100px;
height: auto;
}
.industry-title h2 {
color: #ffffff;
font-size: 2rem;
}
|