﻿:root {
    --orange: #fa5f30;
    --white: #ffffff;
    --black: #0e0e0e;
    --greybg: #f3f3e5;
    --greenbg: #122b24;
}


* {
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
}

body, html {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    color: var(--black);
}

.greybg {
    background: var(--greybg)
}

.greenbg {
    background: var(--greenbg);
    color: var(--white);
}

.orangecolor {
    color: var(--orange);
}



img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

p, ul li, ol li {
    font-size: 17px;
    line-height: 27px;
    color: inherit;
}

h1 {
    font-size: 47px;
    line-height: 68px;
    margin: 0;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    color: inherit;
}

h2 {
    font-size: 35px;
    line-height: 45px;
    margin: 0;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    color: inherit;
}

h3 {
    font-size: 25px;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 5px;
    margin: 0;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    color: inherit;
}

.main {
    min-height: 100vh;
    padding-top: 89px;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section {
    width: 100%;
    padding: 50px 0;
}

.container-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 95%;
    max-width: 1330px;
    padding: 0 15px;
    margin: 0 auto;
}

.header-main {
    width: 100%;
    background: var(--greybg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    width: 200px;
    display: block;
}

.nav {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    align-items: center;
}



.register-now:hover {
    background: var(--greenbg);
}

.nav-link {
    display: block;
    font-size: 18px;
    color: var(--greenbg);
    font-weight: 600;
    transition: 0.3s ease all;
}

    .nav-link:hover {
        color: var(--orange)
    }

.register-now {
    display: block;
    background: var(--orange);
    font-size: 20px;
    font-weight: 600;
    padding: 10px 20px;
    color: #fff;
    transition: 0.5s ease all;
}

@media(max-width: 1300px) {
    .nav-link {
        font-size: 16px;
    }
}



.col-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 50px;
}

    .col-2 div {
        max-width: 50%;
    }

    .col-2 .max-70 {
        width: 70%;
        max-width: 100%;
    }



.read-more-container {
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
}

.read-more-btn {
    margin-top: 10px;
    cursor: pointer;
    display: inline-block;
    background-color: var(--orange);
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    transition: 0.5s ease all;
}

    .read-more-btn:hover {
        background: var(--greenbg);
    }

.footer-up {
    justify-content: space-between;
    justify-items: stretch;
    display: flex;
    gap: 40px;
    padding: 50px 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 300px;
    display: block;
}

.footer-link {
    display: block;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 27px;
    transition: 0.3s ease all;
}

    .footer-link:hover {
        color: var(--orange);
    }

.footer-bot {
    width: 100%;
    border-top: 1px solid #ffffff26;
}

table, tr, th, td {
    border: 1px solid #fff;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--greenbg);
    color: var(--white)
}

    .faq-question:hover {
        background: var(--greybg);
        color: var(--orange);
    }

    .faq-question .icon {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

    .faq-answer p {
        margin: 1rem 0;
    }

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 1rem;
}

.faq-item.active .faq-question .icon {
    content: "-";
    transform: rotate(180deg);
}

.pc {
    display: block;
}

.mob {
    display: none;
}

.btn {
    display: inline-block;
    background: var(--greenbg);
    color: var(--orange);
    padding: 10px 30px;
    margin-right: 20px;
    font-size: 20px;
    transition: 0.3s ease all;
}

    .btn:hover {
        background: var(--orange);
        color: var(--greenbg);
    }

.states {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

    .states span {
        display: block;
        padding: 10px 30px;
        background: var(--greenbg);
        color: var(--orange);
        border-radius: 25px;
        font-weight: 600;
        font-size: 18px;
    }

.copy {
    display: flex;
    gap: 10px;
}

    .copy a {
        color: var(--orange);
    }
