@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Generic stuff*/
html {
    position: relative;
    min-height: 100%;
}

.wave {
    animation-name: wave-animation;
    /* Refers to the name of your @keyframes element below */
    animation-duration: 2s;
    /* Change to speed up or slow down */
    animation-iteration-count: infinite;
    /* Never stop waving :) */
    transform-origin: 70% 70%;
    /* Pivot around the bottom-left palm */
    display: inline-block;
}

@keyframes wave-animation {
    0% {
        transform: rotate(0.0deg)
    }

    10% {
        transform: rotate(14.0deg)
    }

    /* The following five values can be played with to make the waving more or less extreme */
    20% {
        transform: rotate(-8.0deg)
    }

    30% {
        transform: rotate(14.0deg)
    }

    40% {
        transform: rotate(-4.0deg)
    }

    50% {
        transform: rotate(10.0deg)
    }

    60% {
        transform: rotate(0.0deg)
    }

    /* Reset for the last half to pause */
    100% {
        transform: rotate(0.0deg)
    }
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 0px;
    background-color: #292929;

}

* {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

section {
    padding-top: 20px;
    padding-bottom: 30px;
    padding-right: 180px;
    padding-left: 180px;
}

.sec {
    padding: 10px;
}

.sec-end {
    padding: 10px;
}

.title {
    display: flex;
    justify-content: center;
    color: #3dc492;
    font-size: 2.4em;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Header */
header {
    background-color: black;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 180px;
}

header img {
    float: left;
    width: 40px;
}

.logo {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.7em;
}

.logo:hover {
    color: #3dc492;
    font-weight: 700;
}

.navigation a:link,
.navigation a:visited {
    color: white;
}

.navigation a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    padding-left: 30px;
}

.navigation a:hover {
    color: #3dc492;
    font-weight: 650;
}

/* Main */
.main {
    width: 100%;
    display: grid;
    align-items: center;
    background-color: #262626;
}

.sec-main {
    padding-top: 50px;
}

.main h2 {
    color: #3dc492;
    font-size: 2.4em;
    font-weight: 600;
    margin-top: 20px;
}

.main h3 {
    color: white;
    font-size: 1.5em;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 10px;
    text-align: center;
}

.main h3 a {
    text-decoration: none;
    font-weight: 600;
}

.main h3 a:link {
    color: rgb(238, 235, 77);
}

.main h3 a:visited {
    color: rgb(238, 235, 77);
}

.main h3 a:hover {
    color: #3dc492;
}

.main h3 a:link,
a:visited {
    text-decoration: none;
}

.main img {
    float: none;
    width: 30%;
    display: block;
    margin: auto;

}



/* Cards */
.cards {
    background-color: #ffffff;
    padding-right: 200px;
    padding-left: 200px;
}

.content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.cave{
    float: none;
    width: 26%;
    display: block;
    margin: auto;
}

.card {
    background-color: #ffffff;
    width: 24%;
    box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
    border-radius: 10px;
    margin: 10px;
    transition: 1s ease;
}

.card:hover {
    transform: scale(1.08);
}

.card .icon {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 5px;

}

.card .icon img {
    width: 55%;
}

.info {
    text-align: center;
}

.info h3 {
    font-size: 1em;
    font-weight: 700;
    margin: 10px;
    color: #3dc492;
}

.more-details {
    color: #3dc492;
    text-decoration: none;
}

.more-details:hover {
    color: #ff5e01;
    font-size: 1em;
}

/* Footer*/
.footer {
    background-color: #000000;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 999;
    font-size: 0.8em;
    font-weight: 600;
    padding: 3px 50px;

    position: absolute;
    bottom: 0;
}

.footer span {
    color: #3dc492;
}

.social-icons a {
    color: #ffffff;
    padding: 0 10px 0 0;
}

.citation a:link {
    color: #3dc492;
    text-decoration: none;
}

.citation a:visited {
    color: #3dc492;
    text-decoration: none;
}

.citation a:hover {
    color: #fff201;

}



/* Responsive stuff*/

@media (max-width:1650px) {

    .sec-main {
        padding-top: 45px;
    }

    /* Generic stuff*/
    body {
        font-size: 15px;
    }

    section {
        padding-right: 100px;
        padding-left: 100px;
    }

    /* Cards */
    .cards {
        padding-right: 120px;
        padding-left: 120px;
    }

    .title {
        margin-bottom: 18px;
    }

    /* Header */
    header {
        padding: 8px 100px;
    }

    header img {
        width: 38px;
    }

    .navigation a {
        padding-left: 27px;
    }




}



@media (max-width:1400px) {

    .sec-main {
        padding-top: 40px;
    }

    /* Generic stuff*/
    body {
        font-size: 14px;
    }

    section {
        padding-top: 10px;
        padding-right: 50px;
        padding-left: 50px;
    }

    /* Cards */
    .cards {
        padding-right: 120px;
        padding-left: 120px;
    }


    /* Header */
    header {
        padding: 5px 50px;
    }

    header img {
        width: 35px;
    }

    .navigation a {
        padding-left: 25px;
    }



}


@media (max-width:1025px) {

    /* Generic stuff*/
    body {
        font-size: 12px;
    }


    section {
        padding-right: 20px;
        padding-left: 20px;
    }

    /* Cards */
    .cards {
        padding-right: 50px;
        padding-left: 50px;
    }

    .title {
        margin-bottom: 15px;

    }

    /* Header */
    header {
        padding: 5px 20px;
    }

    header img {
        width: 30px;
    }

    .navigation a {
        padding-left: 15px;
    }

    /* Main */
    .main img {
        width: 40%;
    }



    .sec-main {
        padding-top: 25px;
    }


    /* Footer*/
    .footer {
        padding: 3px 20px;
    }

    .social-icons a {
        padding: 0 5px 0 0;
    }

    .card {
        width: 27%;
    }

    .info h3 {
        font-size: 1.25em;
    }
}







/* Phones*/
@media (max-width:500px) {

    /* Generic stuff*/
    body {
        font-size: 9px;
    }

    section {
        padding-right: 10px;
        padding-left: 10px;
    }

    /* Cards */
    .cards {
        padding-right: 10px;
        padding-left: 10px;
    }

    /* Header */
    header {
        padding: 5px 10px;
    }

    header img {
        width: 20px;
    }

    .logo {
        font-size: 1.5em;

    }

    .navigation a {
        padding-left: 5px;
    }

    /* Main */
    .sec-main {
        padding-top: 20px;
    }

    .main img {
        width: 70%;
    }

    .main img {
        width: 50%;
    }


    /* Cards */

    .content {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 50%;
    }


    .info h3 {
        font-size: 1.6em;
    }

    /* Footer*/
    .footer {
        padding: 3px 10px;
    }

    .social-icons a {
        padding: 0 5px 0 0;
    }

    .cave{
        width: 50%;

    }
}