/* Login */

.loginPage {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FEF8F0;
    background-image: url(../img/background/login-bg.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.loginPage.second {
    background-image: url(../img/background/login-bg2.svg);
    background-size: 100%;
    background-position: center;
}

.loginCard {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    width: 365px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 4px;
    gap: 2.5rem;
}

.loginCard .cardHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loginCard .cardHeader .cardLogo {
    width: 35%;
}

.loginCard .cardHeader .cardTitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--heavygreen-color);
}

.loginCard .cardHeader .cardSubtitle {
    font-size: 12px;
    font-weight: 500;
    color: var(--heavyblue-color);
    width: 75%;
    text-align: center;
    line-height: 1.3;
}

.loginCard .cardHeader .cardSubtitle a {
    text-decoration: underline;
    color: var(--green-color);
}

.loginCard .cardBody {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.loginCard .cardBody .loginInputWrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 80%;
    gap: 1.5rem;
}

.loginCard .cardBody .loginInputWrapper .loginInputGroup {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
    width: 100%;
}

.loginCard .cardBody .loginInputWrapper .loginInputGroup label {
    font-size: 12px;
    font-weight: 600;
    color: var(--heavygreen-color);
}

.loginCard .cardBody .loginInputWrapper .loginInputGroup input {
    padding: 8px;
    background-color: #ffffff;
    border: 1px solid #B2B2B2;
    border-radius: 2px;
    outline: none;
    width: 100%;
    font-size: 12px;
}

.loginCard .forgotPassword {
    font-size: 10px;
    color: #B2B2B2;
    align-self: end;
    width: 80%;
    display: flex;
    align-self: center;
    justify-content: end;
}

.loginCard .checkboxArea {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.loginCard .myCheckbox {
    font-size: 11px;
    font-weight: 600;
    color: var(--heavygreen-color);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.checkboxArea input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--green-color);
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid var(--green-color);
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

.checkboxArea input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #fff;
}

.checkboxArea input[type="checkbox"]:checked::before {
    transform: scale(1);
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.loginCard .cardFooter button {
    padding: 0.7rem 3rem;
    background-color: var(--green-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: 0px;
    border-radius: 4px;
    position: relative;
    transition: 250ms ease-in-out;
}

.loginCard .cardFooter button:after {
    content: "";
    position: absolute;
    left: 0;
    top: 33px;
    border-radius: 3px;
    width: 100%;
    height: 0px;
    background-color: rgba(50, 168, 75, 25%);
    transition: 250ms ease-in-out;
}

.loginCard .cardFooter button:hover {
    transform: translateY(-5px);
}

.loginCard .cardFooter button:hover:after {
    height: 12px;
}

/* NAVBAR */

.navbar {
    padding: 3rem 1rem;
    padding-right: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.navbarLogo {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbarLogo img {
    width: 100px;
    height: 35px;
}

.navbarBody {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 6rem;
    flex: 1;
}

.navbarList {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.navbarList .listItem {
    position: relative;
    padding-bottom: 2px;
}

.navbarList .listItem:before {
    content: " ";
    position: absolute;
    bottom: -2px;
    border-radius: 15px;
    width: 100%;
    height: 3px;
    background: var(--green-color);
    transform: scale(0);
    transition: transform 0.5s ease-in-out;
    transform-origin: left;
}

.navbarList .listItem:hover:before {
    transform: scaleX(1);
}

.navbarList .listItem.active:before {
    transform: scale(0.5);
}

.navbarList .listItem span {
    font-size: 15px;
    font-weight: 600;
    color: var(--green-color);
}

.navbarButtons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pageBtn {
    padding: 7px 30px;
    border: 1px solid transparent;
    display: inline-block;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.navbarButtons .buttonsItem a {
    background-color: transparent;
    border-color: var(--heavyblue-color);
    color: var(--heavyblue-color);
    transition: 200ms ease-in-out;
}

.navbarButtons .buttonsItem a:hover {
    border-color: var(--green-color);
    color: var(--green-color);
}

.navbarButtons .buttonsItem.bgGreen a {
    border-color: var(--green-color);
    background-color: var(--green-color);
    color: #fff;
    transition: 200ms ease-in-out;
}

.navbarButtons .buttonsItem.bgGreen a:hover {
    background-color: var(--heavyblue-color);
    border-color: var(--heavyblue-color);
}

.navbarButtons .buttonsItem .selectLanguage {
    border: 1px solid var(--green-color);
    border-radius: 6px;
    padding: 5px 2px;
    color: var(--green-color);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 200ms ease-in-out;
    cursor: pointer;
}

.navbarButtons .buttonsItem .selectLanguage.active,
.navbarButtons .buttonsItem .selectLanguage:hover {
    background-color: var(--green-color);
    color: white;
}

.navbarButtons .buttonsItem .selectLanguage:focus {
    box-shadow: 0px 0px 15px var(--green-color);
}

.navbarToggleBtn {
    position: relative;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    display: none;
}

.navbarToggleBtnBurger {
    width: 25px;
    height: 3px;
    background: var(--green-color);
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.navbarToggleBtnBurger::before,
.navbarToggleBtnBurger::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--green-color);
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.navbarToggleBtnBurger::before {
    transform: translateY(-8px);
}

.navbarToggleBtnBurger::after {
    transform: translateY(8px);
}

/* ANIMATION */

.navbarToggleBtn.open .navbarToggleBtnBurger {
    transform: translateX(-22px);
    background: transparent;
    box-shadow: none;
}

.navbarToggleBtn.open .navbarToggleBtnBurger::before {
    transform: rotate(45deg) translate(15px, -15px);
}

.navbarToggleBtn.open .navbarToggleBtnBurger::after {
    transform: rotate(-45deg) translate(15px, 15px);
}

.navbarCloseBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 18px;
    height: 18px;
    transition: 200ms ease-in-out;
    position: absolute;
    top: 25px;
    left: 25px;
}

.navbarCloseBtn:hover,
.navbarCloseBtn:focus {
    transform: scale(1.3);
}

/* BODY */

.indexPage .headerSection {
    padding: 0rem 14rem;
    background-image: url(../img/background/background-index.png);
    background-repeat: no-repeat;
    background-position: 100% 330px;
    background-size: 100%;
}

.indexPage .headerWrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    position: relative;
    padding: 9rem 0rem;
    padding-bottom: 20rem;
}

.indexPage .headerWrapper .headerImg {
    position: absolute;
    width: 409px;
    height: auto;
    left: 60%;
    top: 123px;
    background-image: url(../img/personal/personal.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: 200ms ease-in-out;
    z-index: 0;
}

.indexPage .headerWrapper .headerSubtitle {
    font-size: 32px;
    font-weight: normal;
    color: var(--heavygreen-color);
    z-index: 1;
}

.indexPage .headerWrapper .headerTitle {
    font-size: 52px;
    font-weight: 900;
    color: var(--green-color);
    width: 60%;
    line-height: 1.2;
    z-index: 1;
}

.indexPage .headerWrapper .headerButtons {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.a-hover a,
.a-hover button {
    background-color: var(--heavyblue-color);
    color: #fff;
    position: relative;
    transition: 250ms ease-in-out;
}

.a-hover a:after,
.a-hover button:after {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    border-radius: 3px;
    width: 100%;
    height: 0px;
    background-color: rgba(16, 69, 112, 25%);
    transition: 250ms ease-in-out;
}

.a-hover a:hover:after,
.a-hover button:hover:after {
    height: 15px;
}

.a-hover a:hover,
.a-hover button:hover {
    transform: translateY(-5px);
}

.indexPage .headerButtons .buttonsItem.greenBtn a {
    border-color: var(--green-color);
    color: var(--green-color);
    transition: 200ms ease-in-out;
    background-color: #FEF8F0;
}

.indexPage .headerButtons .buttonsItem.greenBtn a:hover {
    background-color: var(--green-color);
    color: #ffffff;
}

.indexPage .informationSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 3rem;
}

.indexPage .informationList {
    background-color: var(--green-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    width: 80%;
    margin: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
}

.indexPage .informationList:after {
    content: "";
    position: absolute;
    border-radius: 10px;
    top: 80px;
    width: 100%;
    height: 25%;
    background-color: rgba(50, 168, 75, 25%);
    z-index: -1;
}

.indexPage .informationList .listImage {
    border-top-left-radius: 10px;
    position: absolute;
    background-color: var(--heavyblue-color);
    left: 0;
    top: 0;
    width: 75px;
    height: 75px;
    clip-path: circle(75px at 0 0);
}

.indexPage .informationList .listItem {
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: 1px solid rgba(255, 255, 255, 25%);
    padding-right: 2rem;
    padding-left: 2rem;
}

.indexPage .informationList .listItem:nth-last-child(2) {
    border-right: inherit;
}

.indexPage .informationList .listItem .listItemIcon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.indexPage .informationList .listItem .listItemTextWrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
}

.indexPage .informationList .listItem .listItemTextWrapper .title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.indexPage .informationList .listItem .listItemTextWrapper .subtitle {
    font-size: 12px;
    font-weight: 300;
    opacity: 60%;
    color: #ffffff;
}

.indexPage .informationDetail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 5rem;
    position: relative;
}

.indexPage .informationDetail:after {
    position: absolute;
    content: "";
    background-image: url(../img/background/index-page-bg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    width: 250px;
    height: 250px;
    right: -100px;
    z-index: -1;
}

.indexPage .informationDetail:before {
    position: absolute;
    content: "";
    background-image: url(../img/background/index-page-bg2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    width: 250px;
    height: 250px;
    left: -125px;
    z-index: -1;
    bottom: 275px;
}

.indexPage .informationDetailHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.indexPage .informationDetailHeader .title {
    font-size: 32px;
    font-weight: 600;
    color: var(--heavygreen-color);
}

.indexPage .informationDetailHeader .subtitle {
    font-size: 32px;
    font-weight: bold;
    color: var(--green-color);
    text-align: center;
}

.indexPage .informationDetailList {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15rem;
    background-image: url(../img/background/bg-line.svg);
    background-repeat: no-repeat;
    background-size: 75%;
    background-position: center;
}

.indexPage .informationDetailList .listItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.indexPage .informationDetailList .listItem .listItemLogo {
    width: 160px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.indexPage .informationDetailList .listItem .listItemLogo .listItemIcon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    color: #ffffff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.indexPage .informationDetailList .listItem .listItemLogo .listItemBackground {
    color: var(--green-color);
    transition: 200ms ease-in-out;
}

.indexPage .informationDetailList .listItem:hover .listItemBackground {
    color: var(--heavyblue-color);
}

.indexPage .informationDetailList .listItem .itemTitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--green-color);
}

.indexPage .infomationDetailExplanation {
    width: 80%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    font-size: 24px;
    color: var(--heavygreen-color);
}

.indexPage .informationDetailButton a {
    color: var(--green-color);
    border-color: var(--green-color);
    transition: 200ms ease-in-out;
}

.indexPage .informationDetailButton a:hover {
    background-color: var(--green-color);
    color: #ffffff;
}

.informationDetailCardWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12rem;
    margin-bottom: 5rem;
}

.informationDetailCardWrapper a {
    width: 30%;
}

.informationDetailCardWrapper .informationCard {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
    width: 100%;
    border: 3px solid var(--green-color);
    border-radius: 5px;
    padding: 1.5rem;
    position: relative;
    padding-top: 4rem;
    transition: 200ms ease-in-out;
}

.informationDetailCardWrapper a:hover .informationCard {
    border-color: var(--heavyblue-color);
}

.informationDetailCardWrapper .informationCard .cardLogo {
    width: 85px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FEF8F0;
    position: absolute;
    top: -45px;
    left: 25%;
    padding: 10px;
    color: var(--green-color);
    transition: 200ms ease-in-out;
}

.informationDetailCardWrapper a:hover .informationCard .cardLogo {
    color: var(--heavyblue-color);
}

.informationDetailCardWrapper .informationCard .cardTitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--green-color);
    transition: 200ms ease-in-out;
}

.informationDetailCardWrapper a:hover .informationCard .cardTitle {
    color: var(--heavyblue-color);
}

.informationDetailCardWrapper .informationCard .cardExplanation {
    font-size: 16px;
    font-weight: 500;
    color: var(--heavygreen-color);
    font-style: italic;
    line-height: 1.1;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.indexPage .bannerSection {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.indexPage .bannerSectionWrapper {
    width: 100%;
    height: 480px;
    position: relative;
    background-color: #227632;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 2rem;
}

.indexPage .bannerSectionWrapper .backImg {
    position: absolute;
    left: 0;
    top: 0;
    mix-blend-mode: multiply;
    filter: blur(2px);
}

.indexPage .bannerSectionWrapper .bannerSectionImg {
    width: 50%;
    position: absolute;
    height: 554px;
    left: 109px;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indexPage .bannerSectionWrapper .bannerSectionImg img {
    object-fit: contain;
}

.indexPage .bannerSectionContentArea {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    z-index: 1;
    gap: 2rem;
    padding-bottom: 5rem;
}

.indexPage .bannerSectionContentArea .areaTitle {
    color: #ffffff;
    font-weight: 900;
    font-size: 46px;
    text-align: center;
    line-height: 1.3;
    width: 75%;
}

.indexPage .bannerSectionContentArea .areaSubtitle {
    color: #ffffff;
    font-size: 18px;
    text-align: center;
}

.indexPage .bannerSectionContentArea .areaButton a {
    border-color: #ffffff;
    color: #ffffff;
    transition: 200ms;
}

.indexPage .bannerSectionContentArea .areaButton a:hover {
    background-color: #ffffff;
    color: var(--heavyblue-color);
}

.indexPage .bannerSectionCardWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: -2rem;
}

.indexPage .bannerSectionCardWrapper .bannerSectionCard {
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: var(--box-shadow);
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}

.indexPage .bannerSectionCardWrapper .bannerSectionCard .cardLogo {
    background-color: var(--green-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 82px;
    height: 82px;
    border-radius: 9px;
    position: absolute;
    top: -41px;
    left: 0;
    right: 0;
    margin: auto;
    transition: 350ms ease-in-out;
}

.indexPage .bannerSectionCardWrapper .bannerSectionCard:hover .cardLogo {
    background-color: var(--heavyblue-color);
}

.indexPage .bannerSectionCardWrapper .bannerSectionCard .cardLogo svg {
    transition: 350ms ease-in-out;
}

.indexPage .bannerSectionCardWrapper .bannerSectionCard:hover .cardLogo svg {
    transform: rotateY(180deg);
}

.indexPage .bannerSectionCardWrapper .bannerSectionCard .cardTitle {
    font-size: 18px;
    font-weight: bold;
    color: var(--heavygreen-color);
    text-align: center;
}

.indexPage .aboutUsSection {
    position: relative;
}

.indexPage .aboutUsSection:after {
    position: absolute;
    content: "";
    background-image: url(../img/background/index-page-bg3.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    width: 250px;
    height: 250px;
    right: 0px;
    z-index: -1;
    bottom: 275px;
}

.indexPage .aboutUsSection:before {
    position: absolute;
    content: "";
    background-image: url(../img/background/index-page-bg4.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    width: 250px;
    height: 250px;
    left: -130px;
    z-index: -1;
    bottom: 0;
}

.indexPage .aboutUsWrapper {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-image: url(../img/background/hafsin-bg.png);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.indexPage .aboutUsWrapper .aboutUsLeft {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 35%;
    padding-left: 10rem;
}

.indexPage .aboutUsWrapper .aboutUsLeft .aboutUsTextWrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
}

.indexPage .aboutUsWrapper .aboutUsLeft .aboutUsTextWrapper .aboutUsTitle {
    font-size: 32px;
    font-weight: 800;
    color: var(--heavygreen-color);
}

.indexPage .aboutUsWrapper .aboutUsLeft .aboutUsTextWrapper .aboutUsSubtitle {
    font-size: 18px;
    color: var(--heavygreen-color);
}

.indexPage .aboutUsMidImg {
    width: 360px;
    height: 360px;
    position: relative;
    z-index: 5;
}

.indexPage .aboutUsMidImgBack {
    position: absolute;
    width: 60%;
    height: 85%;
    left: 35%;
    top: 32px;
    border: 6px solid var(--heavyblue-color);
    z-index: -1;
}

.indexPage .aboutUsRight {
    flex: 1;
}

.indexPage .aboutUsExplanation {
    font-weight: 500;
    font-size: 14px;
    color: var(--heavygreen-color);
}

.indexPage .newsSection {
    margin-bottom: 12rem;
}

.indexPage .newsWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 4rem;
}

.indexPage .newsHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.indexPage .newsHeader .headerTitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--heavygreen-color);
}

.indexPage .newsHeader .headerSubtitle {
    font-size: 32px;
    font-weight: bold;
    color: var(--green-color);
}

.indexPage .newsCardWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
}

.indexPage .newsCardWrapper .newsCard {
    width: 23%;
    position: relative;
    min-height: 350px;
    box-shadow: var(--box-shadow);
    border-radius: 4px;
}

.indexPage .newsCardBackground {
    width: 100%;
    height: 100%;
    position: absolute;
}

.indexPage .newsCardBackground img {
    object-fit: cover;
    border-radius: 4px;
    z-index: 0;
}

.indexPage .newsCardWrapper .newsCard .innerCard {
    background-color: #FEF8F0;
    position: absolute;
    z-index: 1;
    width: 75%;
    margin: auto;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 4px;
    bottom: -55px;
    transition: 200ms ease-in-out;
}

.indexPage .newsCardWrapper .newsCard:hover .innerCard {
    bottom: -30px;
}

.indexPage .newsCardWrapper .newsCard .innerCard .cardDate {
    font-size: 12px;
    color: var(--green-color);
}

.indexPage .newsCardWrapper .newsCard .innerCard .cardTitle {
    font-size: 18px;
    font-weight: 800;
    color: var(--heavygreen-color);
}

.indexPage .newsCardWrapper .newsCard .innerCard .cardText {
    font-size: 10px;
    font-weight: 500;
    color: var(--heavygreen-color);
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.indexPage .newsCardWrapper .newsCard .innerCard .cardButton {
    align-self: center;
}

.indexPage .newsCardWrapper .newsCard .innerCard .cardButton a {
    border: 1px solid var(--heavyblue-color);
    color: var(--heavyblue-color);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 6px;
    transition: 200ms ease-in-out;
}

.indexPage .newsCardWrapper .newsCard .innerCard .cardButton a:hover {
    background-color: var(--heavyblue-color);
    color: #ffffff;
}

/* Farmer Page */

.farmerPage .headerSection {
    position: relative;
}

.farmerPage .headerSection:after {
    position: absolute;
    content: "";
    background-image: url(../img/background/index-page-bg3.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    width: 250px;
    height: 250px;
    right: 0px;
    z-index: -1;
    bottom: 275px;
}

.farmerPage .headerSection .headerWrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    padding: 3rem 9rem;
}

.farmerPage .headerSection .headerWrapper .headerTitle {
    font-size: 52px;
    font-weight: 900;
    color: var(--green-color);
    width: 45%;
    line-height: 1.2;
    z-index: 1;
}

.farmerPage .headerSection .headerWrapper .headerSubtitle {
    font-size: 32px;
    font-weight: normal;
    color: var(--heavygreen-color);
    width: 50%;
    line-height: 1.2;
    z-index: 1;
}

.farmerPage .headerSection .headerWrapper .headerImg {
    width: 100%;
    height: 240px;
    border-radius: 10px;
    position: relative;
}

.farmerPage .headerSection .headerWrapper .posHeaderImg {
    width: 100%;
    height: 240px;
    border-radius: 10px;
    background-image: url(../img/background/pos-header-bg.png);
    background-position: 100% 80%;
    background-size: cover;
    background-repeat: no-repeat;
}

.farmerPage .headerSection .headerWrapper .headerImg:after {
    position: absolute;
    content: "";
    width: 460px;
    height: 500px;
    background-image: url(../img/personal/personalfarmer.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    right: 0;
    bottom: 0;
}

.farmerPage .headerSection .headerWrapper .headerImg img {
    border-radius: 10px;
    object-fit: cover;
    filter: blur(3px);
}

.farmerPage .pageContentSection {
    position: relative;
}

.farmerPage .pageContentSection:before {
    position: absolute;
    content: "";
    background-image: url(../img/background/index-page-bg4.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    width: 250px;
    height: 250px;
    left: -130px;
    z-index: -1;
    bottom: 0;
    top: 0;
    margin: auto;
}

.farmerPage .pageContentSection .contentWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}

.farmerPage .pageContentSection .contentWrapper .contentHeader {
    font-size: 32px;
    font-weight: bold;
    color: var(--green-color);
    text-align: center;
}

.farmerPage .pageContentSection .contentWrapper .contentExplanation {
    font-size: 18px;
    color: var(--heavygreen-color);
    width: 100%;
    padding: 0rem 9rem;
}

.farmerPage .pageContentSection .contentWrapper .contentListWrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    width: 100%;
    gap: 6rem;
    padding: 0rem 9rem;
}

.farmerPage .pageContentSection .contentWrapper .contentListWrapper .listItem {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2rem;
    width: 40%;
}

.farmerPage .pageContentSection .contentWrapper .contentListWrapper .listItem .listItemHeader {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.8rem;
}

.farmerPage .pageContentSection .contentWrapper .contentListWrapper .listItem .listItemHeader .headerLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.farmerPage .pageContentSection .contentWrapper .contentListWrapper .listItem .listItemHeader .headerTitle {
    font-size: 24px;
    font-weight: bold;
    color: var(--heavygreen-color);
}

.farmerPage .pageContentSection .contentWrapper .contentListWrapper .listItem .listItemContent {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 18px;
    color: var(--heavygreen-color);
}

.farmerPage .pageContentSection .contentWrapper .contentListWrapper .listItem .listItemContent p {
    line-height: 1.4;
}

.farmerPage .pageContentSection .contentWrapper .contentListWrapper .listItem .listItemInList {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.farmerPage .pageContentSection .contentWrapper .contentListWrapper .listItem .listItemInList .inListItem {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.farmerPage .pageContentSection .contentWrapper .contentListWrapper .listItem .listItemInList .inListItem .inListItemLogo {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--heavygreen-color);
    background-color: var(--heavyblue-color);
    border-radius: 50%;
    color: #fff;
}

.farmerPage .pageContentSection .contentWrapper .contentListWrapper .listItem .listItemInList .inListItem .inListItemTitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--heavygreen-color);
}

.explanationWrapper {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    text-align: center;
    font-size: 18px;
    color: var(--heavygreen-color);
}

.explanationWrapper p:nth-child(1) {
    width: 25%;
    line-height: 1.2;
}

.explanationWrapper p:nth-child(2) {
    width: 60%;
    line-height: 1.2;
}

/* Contact Style */

.contactSection {
    position: relative;
    margin-top: 5rem;
    margin-bottom: 9rem;
}

.contactSection:after {
    position: absolute;
    content: "";
    background-image: url(../img/background/index-page-bg4.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    width: 250px;
    height: 250px;
    right: -100px;
    z-index: -1;
    bottom: 275px;
}

.contactSocial {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: absolute;
    top: 0;
    bottom: 0;
    height: max-content;
    margin: auto;
    left: 125px;
}

.contactSocial:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 140px;
    background-color: #707070;
    bottom: -155px;
    right: 0;
    left: 0;
    margin: auto;
    opacity: 50%;
}

.contactSocial:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 140px;
    background-color: #707070;
    top: -155px;
    right: 0;
    left: 0;
    margin: auto;
    opacity: 50%;
}

.contactSocial .socialItem {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heavygreen-color);
}

.contactWrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4rem;
    padding-left: 13rem;
    padding-right: 9rem;
    width: 100%;
}

.contactWrapper .contactHeader {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.8rem;
}

.contactWrapper .contactHeader .contactTitle {
    font-size: 32px;
    font-weight: bold;
    color: var(--green-color);
}

.contactWrapper .contactHeader .contactSubtitle {
    font-size: 18px;
    color: var(--heavygreen-color);
}

.contactWrapper .contactContent {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 3rem;
    height: max-content;
}

.contactWrapper .contactForm {
    width: 30%;
}

.contactWrapper .contactForm form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.contactWrapper .contactForm form .inputGroup {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: start;
    width: 100%;
}

.contactWrapper .contactForm form .doubleInput {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.contactWrapper .contactForm form .doubleInput .inputGroup {
    width: calc(50% - 0.5rem);
}

.contactWrapper .contactForm form .inputGroup label {
    font-size: 12px;
    font-weight: 600;
    color: var(--heavyblue-color);
}

.contactWrapper .contactForm form .inputGroup textarea,
.contactWrapper .contactForm form .inputGroup input {
    width: 100%;
    padding: 7px;
    background-color: transparent;
    font-size: 12px;
    font-weight: 600;
    color: var(--heavygreen-color);
    outline: none;
    border: 1px solid var(--heavygreen-color);
}

.contactWrapper .contactForm form .inputGroup input::placeholder {
    opacity: 25%;
}

.contactWrapper .contactMaps {
    overflow: hidden;
    border-radius: 10px;
    margin-top: 18px;
    flex: 1;
    height: 395px;
    box-shadow: var(--box-shadow);
}

/* Page Content */

.pageContent .pageContentSection,
.pageContent .headerSection {
    padding: 0px 9rem;
    position: relative;
}

.pageContent .headerSection:after {
    position: absolute;
    content: "";
    background-image: url(../img/background/index-page-bg3.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    width: 250px;
    height: 250px;
    right: 0px;
    z-index: -1;
    bottom: 0px;
    top: 0;
    margin: auto;
}

.pageContent .pageContentSection:after {
    position: absolute;
    content: "";
    background-image: url(../img/background/index-page-bg3.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    width: 250px;
    height: 250px;
    right: 0px;
    z-index: -1;
    bottom: 0px;
    top: 0;
    margin: auto;
}

.pageContent .pageContentSection:before {
    position: absolute;
    content: "";
    background-image: url(../img/background/index-page-bg4.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    width: 250px;
    height: 250px;
    left: -130px;
    z-index: -1;
    bottom: 0px;
}

.pageContent .headerWrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pageContent .headerWrapper .headerSubtitle {
    font-size: 32px;
    color: var(--heavygreen-color);
}

.pageContent .headerWrapper .headerTitle {
    font-size: 52px;
    font-weight: 900;
    color: var(--green-color);
}

.pageContent .headerWrapper .pageContentHeaderImg {
    background-image: url(../img/background/page-content-1.jpg);
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: 100% 60%;
    background-repeat: no-repeat;
    border-radius: 12px;
}

.pageContent .headerWrapper .pageContentHeaderImg.aboutUs {
    background-image: url(../img/background/about-us-header-bg.png);
    background-position: 100% 95%;
}

.pageContent .pageContentWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pageContent .pageContentWrapper .textWrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    font-size: 18px;
    color: var(--heavygreen-color);
    margin-bottom: 3rem;
}

.pageContent .pageContentWrapper .textWrapper .textHeader {
    align-self: center;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 2rem;
}

.pageContent .pageContentWrapper .imgWrapper {
    width: 600px;
    height: 434px;
    margin-bottom: 5rem;
}

.pageContent .pageContentWrapper .cardWrapper {
    display: flex;
    justify-content: center;
    gap: 4rem 1rem;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 3rem;
}

.pageContent .pageContentWrapper .cardWrapper .pageContentCard {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 31%;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-top: 3.5rem;
    padding-bottom: 2rem;
    min-height: 280px;
}

.pageContent .pageContentWrapper .cardWrapper .pageContentCard .cardLogo {
    background-color: var(--green-color);
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #fff;
    position: absolute;
    right: 0;
    left: 0;
    top: -41px;
    margin: auto;
    transition: 500ms ease-in-out;
}

.pageContent .pageContentWrapper .cardWrapper .pageContentCard .cardLogo:hover {
    background-color: var(--heavyblue-color);
}

.pageContent .pageContentWrapper .cardWrapper .pageContentCard .cardLogo svg {
    transition: 500ms ease-in-out;
}

.pageContent .pageContentWrapper .cardWrapper .pageContentCard .cardLogo:hover svg {
    transform: rotatey(180deg);
}

.pageContent .pageContentWrapper .cardWrapper .pageContentCard .cardTitle {
    font-size: 18px;
    font-weight: bold;
    color: #318162;
}

.pageContent .pageContentWrapper .cardWrapper .pageContentCard .cardList {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.pageContent .pageContentWrapper .cardWrapper .pageContentCard .cardList .listItem {
    display: flex;
    align-items: start;
    gap: 10px;
}

.pageContent .pageContentWrapper .cardWrapper .pageContentCard .cardList .listItem .listItemLogo {
    width: 16px;
    height: 16px;
    background-color: var(--heavyblue-color);
    border: 1px solid #132f3a;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pageContent .pageContentWrapper .cardWrapper .pageContentCard .cardList .listItem .itemTitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--heavygreen-color);
    line-height: 1.3;
}

.pageContent .pageContentWrapper .cardWrapper .pageContentCard .cardText {
    font-size: 16px;
    font-weight: 500;
    color: var(--heavygreen-color);
    font-style: italic;
}

.pageContent .pageContentWrapper .buttonWrapper {
    margin-bottom: 3rem;
}

.pageContent .pageContentWrapper .videoWrapper {
    width: 784px;
    height: 472px;
}

/* FOOTER */

footer {
    margin-top: 10rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: start;
    background-color: #132F3A;
    padding-top: 8rem;
    position: relative;
}

.footerTop {
    width: 65%;
    min-height: 118px;
    position: absolute;
    border-radius: 4px;
    box-shadow: 0px 0px 1px rgba(255, 255, 255, 0.25);
    left: 0;
    right: 0;
    margin: auto;
    top: -59px;
    background-image: linear-gradient(90deg, rgba(19, 47, 58, 1) 5%, rgba(19, 47, 58, 0)), url(../img/background/footertopbg.png);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footerTopTexts {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.footerTopSubtitle {
    color: #ffffff;
    font-size: 15px;
}

.footerTopTitle {
    line-height: 1.2;
    width: 75%;
    font-size: 25px;
    font-weight: 900;
    color: #ffffff;
}

.footerButtons {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.footerTop .pageBtn {
    border-color: var(--heavyblue-color);
}

.footerWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    flex-wrap: wrap;
}

.footerContact {
    width: 15%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
}

.footerContactList {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
}

.footerContactList .listItem {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footerContactList .listItem .listItemLogo {
    width: 16px;
    height: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--green-color);
}

.footerContactList .listItem .listItemTitle {
    flex: 1;
    font-size: 10px;
    color: #ffffff;
    line-height: 1.1;
}

.footerLink {
    width: max-content;
}

.footerLinkList {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.9rem;
    color: #ffffff;
    font-size: 12px;
}

.footerInfo {
    display: flex;
    align-items: center;
}

.footerInfoItem {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 1rem;
    padding-left: 1rem;
    gap: 7px;
}

.footerInfoItem:last-child {
    border-right: inherit;
}

.footerInfoItem .itemLogo {
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-color);
}

.footerInfoItem .itemContent {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
}

.footerInfoItem .itemContent .itemHeader {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
}

.footerInfoItem .itemContent .itemText {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}

.footerSocial {
    width: 10%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
}

.footerStoreList {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: start;
}

.footerStoreList .listItem {
    width: 100%;
}

.footerSocialMedia {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footerSocialMedia .socialItem a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green-color);
    border-radius: 50%;
    color: #ffffff;
}

.footerBottomTitle {
    font-size: 10px;
    font-weight: 300;
    color: #ffffff;
    padding-top: 1rem;
    padding-bottom: 1rem;
}