@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');

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

main {
    width: 100vw;
    display: flex;
    flex-flow: column;
    align-items: center;
}

header {
    position: fixed;
    top: 0;
    left: 2.5%;
}

header img {
    width: 100%;
}

.hero {
    width: 100vw;
    height: 100vh;
    background: url('/assets/Imgs/heroimg.jpg');

    background-size: cover;
    background-position: bottom;

    text-align: right;
    color: white;
    margin-bottom: 5%;
}

.hero>div {
    position: absolute;
    top: 52vh;
    right: 12vw;
    overflow: hidden;
}

.hero h1 {
    font-size: calc(36px + 0.5vw);
    font-weight: 700;
    margin-bottom: 25px;
    overflow: hidden;
}

.hero span {
    font-size: calc(22px + 0.3vw);
    font-weight: 400;
    overflow: hidden;
}

.section {
    width: calc(100% - 27vw);
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    margin-bottom: 2.5%;
    padding-bottom: 50px;
    border-bottom: solid 1px #F26A26;
}

.section .title {
    font-size: calc(24px + 0.5vw);
    font-weight: 700;
    color: #111F41;
}

.section>div {
    margin-top: 3%;
    width: 100%;
    display: flex;
    flex-flow: row;
    gap: 5%;
}

.section ul {
    list-style: inside;
}

.section ul li {
    color: #666666;
    font-size: calc(14px + 0.1vw);
}

#proc {
    display: flex;
    flex-flow: column;
    width: 100%;
    justify-content: space-between;
}

.section .col {
    display: flex;
    flex-flow: row;
    gap: 20px;
    width: 100%;
    margin-bottom: 7.5%;
    overflow: visible;
}

.proc-card {
    position: relative;
    background-size: contain;
    width: 100%;
    color: white;
    height: 165px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.proc-card>div {
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 25px;
    margin-left: 20px;
}

.proc-card .num {
    font-size: calc(63px + 1.5vw);
    z-index: 1;
    font-weight: 700;
    line-height: 0.90;
    overflow: hidden;
}

.proc-card span:nth-of-type(2) {
    font-size: calc(13px + 0.1vw);
    z-index: 1;
    font-weight: 400;
    width: 80%;
}

.proc-card img {
    position: absolute;
    z-index: -1;
    width: 100%;
    object-fit: contain;
}

#res {
    display: flex;
    flex-flow: column;
    width: 100%;
    justify-content: space-between;
}

#res span {
    color: #666666;
    font-size: calc(14px + 0.1vw);
    margin-bottom: 4%;
}

.glr {
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
    width: 100%;
}

.glr img {
    width: calc(33% - 20px);
    height: auto;
    object-fit: cover;
}

#faq {
    display: flex;
    flex-flow: column;
}

.faq-card {
    display: flex;
    flex-flow: column;
    width: 100%;
    border-top: solid 1px #CDCDCD;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}

.faq-card:last-of-type {
    border-bottom: solid 1px #CDCDCD;
    margin-bottom: 10%;
}

.faq-card>div {
    display: flex;
    align-items: flex-start;
    flex-flow: row;
}

.faq-card>div>span {
    font-weight: 700;
    margin-left: 10px;
}

.faq-card>div>img {
    transform: rotate(180deg);
    transition: all 0.5s;
}

.faq-card>span {
    font-weight: 400;
    margin-top: 10px;
    margin-left: 35px;
    display: none;
    transition: all 0.5s;
}

.faq-card>span,
.faq-card>div>span {
    font-size: calc(14px + 0.1vw);
    color: #666666;
}

.open>span {
    display: flex !important;
}

.open>div img {
    transform: rotate(0deg);
}


footer {
    background-color: white;
    width: 100%;
    height: 85px;
    position: fixed;
    bottom: 0;

    display: flex;
    flex-flow: row;
    justify-content: space-around;
    align-items: center;
    z-index: 2;
}

footer>div {
    width: calc(100% - 24vw);
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
}

footer>div div {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
}

footer div:nth-of-type(2) {
    justify-content: flex-end;
    position: relative;
    right: 0vw;
}

footer div:nth-of-type(2) a {
    margin-left: 15px;
}

.button {
    background-color: #F26A26;
    border-radius: 10px;
    padding: 0.25% 5%;
    width: 220px;

    text-align: center;
    font-weight: 700;
    color: white;
    font-size: 15px;

}

.button:nth-of-type(2) {
    margin-left: 25px;
}

#brk {
    display: none;
}

@media only screen and (max-width: 1290px) {

    header>img {
        width: 70%;
    }

    .section .col {
        margin-bottom: 2.5%;
    }
}

@media only screen and (max-width: 1020px) {
    .hero>div {
        right: 5vw;
    }

    .hero br {
        display: none;
    }
}

@media only screen and (max-width: 935px) {

    .section>div {
        flex-flow: column;
    }

    .section .col {
        flex-flow: column;
    }

    .proc-card {
        margin-bottom: 10%;
    }

    .glr {
        flex-flow: column;
    }

    .glr img {
        width: 100%;
    }

    footer {
        height: 120px;
    }

    footer>div {
        flex-flow: column;
        width: 100%;
    }

    footer>div div:nth-of-type(2) {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 890px) {
    header>img {
        width: 60%;
    }
}

@media only screen and (max-width: 720px) {

    header {
        position: absolute;
    }

    .hero>div {
        top: 30vh;
        display: flex;
        flex-flow: column;
        align-items: flex-end;
    }

    .hero h1,
    .hero span {
        line-height: 130%;
    }

    .hero span {
        display: flex;
        width: 50%;
        font-size: 18px;
    }

    .proc-card {
        margin-bottom: 5%;
    }

    .faq-card:last-of-type {
        margin-bottom: 120px;
    }

    #brk {
        display: flex;
    }

    .button {
        width: 190px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 620px) {
    .proc-card {
        height: 120px;
        margin-bottom: 0;
    }

    .section .col {
        margin-bottom: 2%;
        gap: 10px;
    }

    .proc-card span:nth-of-type(2) {
        margin-right: 3px;
    }

    .button:nth-of-type(2) {
        margin-left: 13px;
    }

    .button {
        width: 170px;
        padding: 1% 5%;
        font-size: 13px;
    }
}