* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
    font-family: Amatic SC;
}
.header{
    overflow: hidden;
    padding: 20px 10px;
    font-family: Amatic SC;
    font-size: x-large;
    border: 1px solid;
}

.header-right a{
    float: right;
}
.Name{
    float: left;
}
.header a{
    text-align: center;
    padding: 12px;
    text-decoration: none;
    line-height: 25px;
}
@media screen and (max-width: 500px) {
    .header a{
        float: none;
        display: block;
        text-align: left;
    }
    .header-right{
        float: none;
    }
}
.hero{
    width: 100%;
    height: auto;
    position: relative;
}
video{
    width: 100%;
    z-index: 0;
    position: relative;
    width: 1000px;
    max-width: 100%;
    height: auto;
    margin-top: 50px;
    display: block;
}
#video-blur{
    width: 100%;
    height: auto;
}
#video-blur.blur{
    filter: blur(5px);
    transition: filter 1s ease;
}
#hero-heading{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Amatic SC;
    font-size: 4vw;
    font-weight: 700;
    width: 90%;
    opacity: 0;
    max-width: 100%;
    height: auto;
}
#hero-heading.appear{
    opacity: 1;
    animation: fadeIn 2s ease-in-out forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0; /* Starting opacity */
  }
  to {
    opacity: 1; /* Ending opacity */
  }
}
.column {
    float: left;
    width: 20%;
    padding: 0 10px;
}
.factsandfigures{
    text-align: center;
    border: 1px solid;
    padding: 30px;
    font-family: Amatic SC;
    font-size: x-large;
    font-weight: 700;
    margin: 60px;
}
.facts-figures {
    margin: 0 -5px;
    font-family: Amatic SC;
    font-size: large;
    font-weight: 700;
}
.facts-figures:after{
    content: "";
    display: table;
    clear: both;
    width: 100%;
    height: auto;
}
.card{
    padding: 16px;
    text-align: center;
    border: 1px solid;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
@media screen and ( max-width : 600px) {
    .column {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
}

.icons{
    width: 50px;
    height: auto;
    
}
#icons{
    width: 50px;
    height: auto;
}

/* Ensure grid is one column always */
.grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Each box container */
.grid-item {
    display: flex;
    flex-direction: row;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: transform 0.2s ease;
}

/* On small screens, stack image and content vertically */
@media (max-width: 768px) {
    .grid-item {
        flex-direction: column;
    }
}

/* Image container */
.image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

/* Text container */
.content {
    flex: 2;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 30px;
    text-align: justify;
    font-weight: 700;
    gap: 15px
}

/* Image responsiveness */
.image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Hover effect
.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */

#call{
    text-align: center;
    margin: 60px;
    font-size: x-large;
    font-weight: 700;
    border: 1px solid;
     border: 1px solid;
    padding: 30px;
}

.FindX{
    text-align: center;
    font-size: xx-large;
    margin: 50px;
    font-weight: 700;
}
.FindX-but-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}
#FindX-button{
    font-family: Amatic SC;
    font-size: 50px;
    background-color: lightgrey;
    padding: 10px;
    cursor: pointer;
    transition: background-color ease 0.3s;
}
#FindX-button:hover{
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
    background-color: rgb(226, 225, 225);
}

.container-foot{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px;
    border: 1px solid;
    padding: 20px;
    font-weight: 700;
}
.top{
    font-size: 50px
}
.bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    font-size: 25px;
}
.logos{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
    margin-top: 15px;
}

.container-resources{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.resources-steps{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-size: 25px;
}
.cards a{
    text-decoration: none;
}
.cards a:hover{
    color: black;
}

.resources-steps p{
    font-size: 40px;
}