@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('header.css');
@import url('hero.css');
@import url('spacing.css');
@import url('titles.css');
@import url('quotes.css');

:root {
    --dark-blue: #006D77;
    --dark-green: #006D77;
    --light-blue: #2A9D8F;
    --yellow: #FFB30F;
    --gray: #F1eeee;
}

html, body {
    font-family: Roboto;
    font-size: 13px;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

.content {
    max-width: 1200px;
    margin: 0px auto;
    position: relative;
}

.align-center {
    text-align: center;
}

.columns {
    display: flex;
    flex-wrap: wrap;
}

.columns > .column {
    flex: 1 0;
    margin-right: 70px;
}

.sellingpoints {
    display: flex;
    text-align: center;
    flex-wrap: wrap;
}

.sellingpoints > .sellingpoint {
    background: white;
    padding: 30px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    flex: 1 0;
    margin-right: 40px;
    min-width: 260px;
}

.sellingpoints > .sellingpoint:last-child {
    margin-right: 0px;
}

.sellingpoints > .sellingpoint > i {
    font-size: 70px;
    color: var(--yellow);
    margin-bottom: 10px;
}

.sellingpoints > .sellingpoint > .subtitle {
    font-size: 19px;
    font-weight: 400;
    opacity: .6;
    line-height: 27px;
}

.pop-in {
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1s, opacity 1s;
}

.pop-in.shown {
    transform: translateY(0px);
    opacity: 1;
}

.step-container {
    height: 350px;
}

.step {
    text-align: center;
    background: #2c7c85;
    padding: 30px;
    border-radius: 30px;
    height: 250px;
    max-width: 400px;
    margin: 0px auto;
    z-index: 100;
    position: absolute;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.step > .subtitle {
    margin-top: 20px;
    font-size: 20px;
    line-height: 30px;
    padding: 0px 30px;
    opacity: .7;
}

.step-icon {
    position: absolute !important;
    /* margin-top: -80px; */
    font-size: 56px;
    transform: translate(-50%, -100px);
    background: #ffffff;
    height: 130px;
    width: 130px;
    border-radius: 120px;
    padding-top: 40px;
    box-sizing: border-box;
    color: var(--yellow);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

svg > path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

svg > path.animate {
    animation: dash 30s linear forwards;
}

.about-content {
    max-width: 60%;
    padding-top: 230px;
}

#contact {
    background: var(--dark-green);
    box-sizing: border-box;
    padding: 100px;
    border-radius: 100px 100px 0px 0px;
    color: white;
}

.actions {
    display: flex;
    width: 100%;
    margin: 0px auto;
    text-align: center;
    font-weight: 600;
    margin-top: 30px;
    flex-wrap: wrap;
}

.actions > a {
    flex: 1 0;
    padding: 30px;
    font-size: 30px;
    background: linear-gradient(var(--yellow), rgb(198, 138, 2));
    text-shadow: 0px 2px 6px rgba(113, 90, 39, 0.66);
    cursor: pointer;
    box-shadow: 0px 10px 30px rgba(113, 90, 39, 0.66);
    border-radius: 30px;
    margin-right: 15px;
    text-decoration: none;
    color: white;
    min-width: 240px;
    display: block;
    margin-bottom: 10px;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}


@media (max-width: 1000px) {
    .sellingpoints > .sellingpoint {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .step-columns .column {
        display: none;
        margin-bottom: 60px;
    }

    .step-columns .column:has(.step-icon) {
        display: block;
        margin-right: 0px;
        position: relative;
    }

    .step-columns .column > .step {
        width: 100%;
        box-sizing: border-box;
        height: auto;
    }

    .about-content {
        max-width: 100%;
    }

    #contact {
        padding: 40px 20px !important;

        border-radius: 40px 40px 0px 0px;
    }
}