.header_here_you_find {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 50px;
    color: var(--default_orange_color);
}

.header_here_you_find h1 {
    margin: 10px;
    font-weight: 800;
}

.header_here_you_find p { 
    margin: 0;
    font-weight: 500;
}

/*Creating cards*/

.horizontal_cards_holder {
    margin-top: 50px;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2em;
}
.single_card:first-child {
    margin-top: 0;
}
.single_card {
    background-color: var(--default_green_for_card);
    align-self: auto;
    max-width: 350px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: top;
    flex-direction: column;
    padding: 20px 10px;
    border-radius: 50px;
    flex: 1;
    margin-top: 60px;
}

.single_card .icon {
    background-color: var(--default_pink);
    border-radius: 50%;
    padding: 20px;
    position: relative;
    transform: translateY(calc(-50% - 20px));
    display: flex;
    justify-content: center;
    align-items: center;

}
.single_card .icon img {
    width: 80px;
    animation: scaleAnim 3s ease-in-out infinite;
}

.full_sc_content_holder {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    gap: 2em;
}

.main_sc_content h1 {
    margin: -60px 0 0 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--default_pink);
}

.main_sc_content p { 
    margin: 5px 0 0 0;
    font-size: 16px;
    color: white;
    text-align: center;
    font-weight: 500;
}

.single_card button {
    background-color: var(--default_orange_color);
    border: none;
    height: 30px;
    padding: 0 30px;
    border-radius: 15px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.single_card button:hover {
    color: var(--default_orange_color);;
    background-color: white;
    border: 1px solid var(--default_orange_color);;
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}


@media (min-width: 800px) {
    .horizontal_cards_holder {
        flex-direction: row;
    }

    .single_card {
        margin-top: 0px;
        align-self: stretch;
    }
    
  }


  @keyframes scaleAnim {
    0%, 100% {
      transform:  scale(1.0);
    }
    50% {
      transform: scale(1.1);
    }
  }