@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* 	-----------------------------------------------------
    ------------------- General Styles ------------------
    ----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: #000000;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    overflow-x: hidden;
}

a {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #000000;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #08AE99;
    text-decoration: none;
}

.clearfix:before,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both
}

.clearfix {
    zoom: 1
}

[contenteditable="true"]:focus {
    outline: none;
}

*:focus {
    outline: none;
}

img {
    margin: 0;
    padding: 0;
    outline-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;
}

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

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1592px;
    padding: 0 40px;
}

@media only screen and (max-width:760px) {
    .container {
        padding: 0 20px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .container {
        padding: 0 30px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1400px) {
    .container {
        padding: 0 30px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Header Styles ------------------
    ----------------------------------------------------- */
.header-section {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .4s ease-in-out;
}

.header-section.sticky {
    width: 100%;
    background: linear-gradient(103.21deg, #04AD9A 5.31%, #70BF79 100%);
    box-shadow: 0px 4px 25px 0px #00000005;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .4s ease-in-out;
}

.header-section .container {
    display: flex;
    justify-content: space-between;
}

.header-section .container figure {
    width: 20%;
    margin: 0;
    padding: 30px 0 0 0;
    text-align: center;
    transition: .5s;
}

.header-section .container figure img {
    margin: 0;
    padding: 0;
    height: 134px;
    transition: .5s;
}

.header-section.sticky .container figure {
    padding: 15px 0;
    transition: .5s;
}

.header-section.sticky .container figure img {
    height: 104px;
    transition: .5s;
}

.header-section nav {
    width: 40%;
}

.header-section .menu {
    margin: 0;
    padding: 0;
}

.menu-bar {
    list-style: none;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    width: 280px;
    height: 100%;
    background: linear-gradient(103.21deg, #04AD9A 5.31%, #70BF79 100%);
    opacity: 0;
    transition: 0.4s;
    padding: 30px;
}

.menu-bar.show {
    left: 0;
    opacity: 1;
    box-shadow: 0px 10px 25px -3px #00000026;
}

.menu-bar li {
    margin: 0;
}

.menu-bar li a {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    color: #FFFFFF;
    transition: .5s;
}

.menu-bar.show li a {
    color: #FFFFFF;
    display: block;
}

.menu-bar.show li a.active {
    color: #FFFFFF;
    position: relative;
}

.menu-bar.show li a.active::before {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #FFFFFF;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translate(0, -50%);
}

.menu-bar.show li a svg path {
    fill: #FFFFFF;
}

.dropDown-list {
    position: relative;
}

.dropDown-list a.active {
    color: #FFFFFF;
}

.dropDown-list a span svg {
    width: 12px;
}

.dropDown-list a span svg path {
    transition: 0.4s;
}

.dropDown-list a.active span svg path {
    fill: #FFFFFF;
}

.dropDown-list a.active span svg {
    transform: rotate(180deg);
}

.dropDown_menu {
    display: none;
    position: relative;
    box-shadow: 0px 4px 44px 0px #00000026;
    list-style: none;
}

.menu-bar.show .dropDown_menu {
    box-shadow: none;
    padding: 15px;
}

.dropDown_menu li {
    line-height: 1;
    margin-top: 15px;
    margin-bottom: 0;
}

.dropDown_menu li a {
    position: relative;
    font-size: 18px;
    line-height: 1;
    color: #FFFFFF;
    padding: 5px 0;
    white-space: nowrap;
    display: block;
}

.toggle-btn {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    font-size: 30px;
    padding: 0;
    color: #FFFFFF;
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 9;
    cursor: pointer;
    transform: translate(0, -50%);
}

@media (min-width: 760px) {
    .menu-bar {
        width: 300px;
    }
}

@media (min-width: 760px) {
    .toggle-btn {
        display: none;
    }

    .menu-bar {
        position: relative;
        top: unset;
        left: unset;
        width: unset;
        opacity: 1;
        background: transparent;
        display: flex;
        gap: 50px;
        padding: 0;
        list-style: none;
    }

    .menu-bar li {
        margin-top: 80px;
    }

    .menu-bar li a:hover {
        color: #FFFFFF;
        transition: .5s;
    }

    .menu-bar li a.active {
        color: #FFFFFF;
        transition: .5s;
        position: relative;
        z-index: 1;
    }

    .menu-bar li a.active::before {
        content: "";
        width: 2px;
        height: 40px;
        background-color: #FFFFFF;
        position: absolute;
        left: 50%;
        top: -80px;
        transform: translate(-50%, 0);
    }

    .dropDown-list a.active {
        color: #FFFFFF;
    }

    .dropDown-list a.active span svg path,
    .dropDown-list a:hover span svg path {
        fill: #FFFFFF;
    }

    .dropDown_menu {
        list-style: none;
        position: absolute;
        top: 30px;
        left: 0;
        z-index: 999;
        min-width: 130px;
        background: #FFFFFF;
        border-radius: 3px;
        padding: 15px;
    }

    .dropDown_menu li {
        margin-top: 0;
        margin-bottom: 18px;
    }

    .dropDown_menu li a:hover {
        color: #FFFFFF;
    }
}

.header-section aside {
    padding-top: 40px;
    width: 40%;
    text-align: right;
}

.header-section aside a {
    margin: 0;
    padding: 10px 15px;
    width: auto;
    min-width: 200px;
    height: 50px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #05AD9A;
    text-align: center;
    display: inline-block;
    transition: .5s;
}

.header-section aside a:hover {
    background-color: #FFDC3C;
    transition: .5s;
}

.header-section aside a i {
    display: none;
}

@media only screen and (max-width:760px) {
    .header-section.sticky .container figure {
        padding: 0;
    }

    .header-section nav {
        width: auto;
    }

    .header-section .container figure {
        margin: 0;
        padding: 0;
        width: 40%;
    }

    .header-section aside {
        margin: 0;
        padding: 0;
        width: 60%;
        position: relative;
    }

    .header-section aside a i {
        display: block;
    }

    .header-section aside a span {
        display: none;
    }

    .header-section aside a {
        width: 50px;
        min-width: 50px;
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translate(0, -50%);
    }

    .menu-bar li {
        margin: 30px 0;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .header-section nav {
        width: 50%;
    }

    .header-section aside {
        width: 30%;
    }

    .header-section aside a i {
        display: block;
    }

    .header-section aside a span {
        display: none;
    }

    .header-section aside a {
        width: 50px;
        min-width: 50px;
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translate(0, -50%);
    }

    .menu-bar {
        gap: 30px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1300px) {
    .menu-bar {
        gap: 40px;
    }
}

.inner-header-section {
    background: linear-gradient(103.21deg, #04AD9A 5.31%, #70BF79 100%);
}

.inner-header-section .container {
    align-items: center;
}

.inner-header-section .container figure {
    width: 25%;
    padding: 25px 0;
    text-align: left;
}

.inner-header-section .container figure img {
    margin: 0;
    padding: 0;
    height: 104px;
    transition: .5s;
}

.inner-header-section nav {
    width: 50%;
    min-height: 160px;
    text-align: center;
}

.inner-header-section nav p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: center;
    padding: 0 10px;
    margin-top: 40px;
    display: inline-block;
    border-left: 1px solid #FFDC3C;
}

.inner-header-section .menu-bar {
    justify-content: center;
}

.inner-header-section aside {
    width: 25%;
    padding: 0;
}

@media (min-width: 760px) {
    .inner-header-section .menu-bar li {
        margin-top: 60px;
    }

    .inner-header-section .menu-bar li a.active::before {
        top: -60px;
    }
}

@media only screen and (max-width:760px) {
    .inner-header-section .container figure {
        width: 40%;
        padding: 0;
    }

    .inner-header-section nav {
        min-height: inherit;
    }

    .inner-header-section nav p {
        display: none;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .inner-header-section .container figure {
        width: 20%;
    }

    .inner-header-section aside {
        width: 10%;
    }

    .inner-header-section nav {
        width: 70%;
    }
}

/* 	-----------------------------------------------------
    -------------------- Banner Styles ------------------
    ----------------------------------------------------- */
.banner-section {
    height: 720px;
    background: linear-gradient(100.95deg, #00B088 2.34%, #70BF7A 100%);
    padding-top: 230px;
    text-align: center;
}

.banner-section figure {
    margin: 0 auto;
    padding: 0;
    max-width: 760px;
    position: relative;
}

.top-content {
    position: absolute;
    left: 40%;
    top: 0;
    border-right: 1px solid #FFDC3C;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: right;
    max-width: 200px;
}

.mid-content-left {
    position: absolute;
    left: -160px;
    top: 30%;
    padding: 0 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: center;
}

.mid-content-left strong {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #FFDC3C;
}

.mid-content-right {
    position: absolute;
    right: 0;
    top: 22%;
    padding: 0 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: center;
}

.mid-content-right strong {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #FFDC3C;
}

.bot-content-left {
    position: absolute;
    left: -340px;
    bottom: 28%;
}

.bot-content-left ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.bot-content-left ul li {
    border-left: 1px solid #FFDC3C;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: left;
    max-width: 200px;
}

.bot-content-right {
    position: absolute;
    right: -320px;
    bottom: 28%;
}

.bot-content-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.bot-content-right ul li {
    border-left: 1px solid #FFDC3C;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: left;
    max-width: 200px;
}

@media only screen and (max-width:760px) {
    .banner-section {
        height: auto;
        padding-top: 130px;
        padding-bottom: 30px;
    }

    .banner-section .d-block {
        display: inline-block;
    }

    .top-content {
        position: inherit;
        left: auto;
        top: auto;
        border-right: none;
        border-left: 1px solid #FFDC3C;
        padding: 10px;
        text-align: left;
        max-width: 100%;
        font-size: 14px;
    }

    .mid-content-left {
        position: inherit;
        left: auto;
        top: auto;
        padding: 10px 0;
        font-size: 18px;
        text-align: left;
        float: left;
    }

    .mid-content-left strong {
        font-size: 30px;
    }

    .mid-content-right {
        position: inherit;
        right: auto;
        top: auto;
        padding: 10px 0;
        font-size: 18px;
        text-align: right;
        float: right;
    }

    .mid-content-right strong {
        font-size: 30px;
    }

    .bot-content-left {
        position: inherit;
        left: auto;
        bottom: auto;
    }

    .bot-content-left ul {
        margin: 10px 0;
    }

    .bot-content-left ul li {
        font-size: 14px;
        max-width: inherit;
    }

    .bot-content-right {
        position: inherit;
        right: auto;
        bottom: auto;
    }

    .bot-content-right ul {
        margin: 10px 0;
    }

    .bot-content-right ul li {
        font-size: 14px;
        max-width: inherit;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .banner-section {
        height: auto;
        padding-top: 200px;
        padding-bottom: 30px;
    }

    .mid-content-left {
        left: 0;
    }

    .bot-content-left {
        position: inherit;
        left: auto;
        bottom: auto;
        float: left;
    }

    .bot-content-right {
        position: inherit;
        right: auto;
        bottom: auto;
        float: right;
    }
}

@media only screen and (min-width:1024px) and (max-width:1500px) {
    .banner-section {
        height: auto;
        padding-bottom: 30px;
    }

    .bot-content-left {
        position: inherit;
        left: auto;
        bottom: auto;
        float: left;
        margin-left: -100px;
    }

    .bot-content-right {
        position: inherit;
        right: auto;
        bottom: auto;
        float: right;
        margin-right: -100px;
    }
}

/* 	-----------------------------------------------------
    ------------------- Content Styles ------------------
    ----------------------------------------------------- */
.content-section {
    min-height: 400px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #08AE99;
    padding: 10px 0;
}

.content-section h1 {
    font-size: 36px;
}

.content-section h2 {
    font-size: 32px;
}

.content-section h3 {
    font-size: 28px;
}

.content-section h4 {
    font-size: 24px;
}

.content-section h5 {
    font-size: 22px;
}

.content-section h6 {
    font-size: 20px;
}

.content-section p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    color: #000000;
    padding: 10px 0;
}

.content-section ul {
    margin: 0;
    padding: 0 0 0 15px;
    list-style: disc;
}

.content-section ul li {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    color: #000000;
    margin: 5px 0;
}

.content-section ul ul {
    list-style: circle;
}

.content-section ol {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: decimal;
}

.content-section ol li {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    color: #000000;
    margin: 5px 0;
}

.content-section ol ol {
    list-style: lower-roman;
}

.btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.btn-01 a {
    margin: 15px 0;
    padding: 10px 20px;
    background-color: #04AD9A;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #FFFFFF !important;
    display: inline-block;
    transition: .5s;
}

.btn-01 a:hover {
    background-color: #FFDC3C;
    transition: .5s;
}

@media only screen and (max-width:760px) {
    .content-section h1 {
        font-size: 30px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section h3 {
        font-size: 22px;
    }

    .content-section h4 {
        font-size: 20px;
    }

    .content-section h5 {
        font-size: 18px;
    }

    .content-section h6 {
        font-size: 16px;
    }

    .content-section p {
        font-size: 15px;
    }

    .content-section ul li {
        font-size: 15px;
    }

    .content-section ol li {
        font-size: 15px;
    }

    .btn-01 a {
        margin: 10px 0;
        padding: 5px 15px;
        font-size: 14px;
    }
}

.remembrance-section {
    padding: 150px 0 100px 0;
    background: url(../img/remembrance-bg.webp) no-repeat center/cover;
    text-align: center;
}

.remembrance-section .container {
    max-width: 780px;
}

@media only screen and (max-width:760px) {
    .remembrance-section {
        padding: 30px 0;
    }

    .remembrance-section .btn-group {
        flex-wrap: wrap;
        gap: 0;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .remembrance-section {
        padding: 70px 0;
    }
}

@media only screen and (min-width:1024px) and (max-width:1500px) {
    .remembrance-section {
        padding: 100px 0;
    }
}

.memory-section {
    padding: 60px 0 150px 0;
    position: relative;
    z-index: 1;
}

.memory-section .image-overlay {
    position: absolute;
    top: auto;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: -1;
}

.memory-section .container {
    padding: 0 40px 0 30%;
}

.memory-section p span.highlight {
    background-color: #04AD9A;
    color: #FFFFFF;
    padding: 3px 5px;
}

@media only screen and (max-width:760px) {
    .memory-section {
        padding: 30px 0 100px 0;
    }

    .memory-section .container {
        padding: 0 20px;
    }

    .memory-section p span.highlight {
        background-color: #04AD9A;
        color: #FFFFFF;
        padding: 3px 5px;
    }
}

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

.work-section {
    margin: 90px 0 50px 0;
    position: relative;
    z-index: 1;
}

.work-section .image-overlay {
    left: 50%;
    width: 50%;
}

.work-section article {
    width: 50%;
    padding: 50px 50px 50px 0;
}

.work-section article h2 {
    max-width: 400px;
    margin-bottom: 1rem;
}

.work-section .btn-01 a {
    padding: 10px 40px;
}

@media only screen and (max-width:760px) {
    .work-section {
        margin: 30px 0 0 0;
    }

    .work-section .image-overlay {
        position: inherit;
        top: auto;
        left: auto;
        width: 100%;
    }

    .work-section article {
        width: 100%;
        padding: 20px 0;
    }

    .work-section article h2 {
        margin-bottom: 0;
    }

    .work-section .btn-01 a {
        padding: 5px 15px;
    }
}

.faqs-section {
    padding: 0 0 100px 0;
}

.faqs-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 65px;
}

.faqs-section article {
    width: 30%;
    text-align: right;
}

.faqs-section article h2 {
    margin-top: 15px;
}

.faqs-section aside {
    width: 70%;
}

.faqs-section .btn-01 a {
    padding: 10px 40px;
}

.accordion-container {
    position: relative;
    margin: 0 auto;
}

.accordion-set {
    position: relative;
    padding: 25px 0;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #098368;
}

.accordion-set>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    color: #000000;
    text-align: left;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.accordion-set>a i {
    font-size: 24px;
    color: #098368;
    margin-right: 20px;
}

.accordion-set>a.active {
    color: #000000;
}

.accordion-content {
    display: none;
    padding: 0 50px 0 0;
    text-align: left;
}

@media only screen and (max-width:760px) {
    .faqs-section {
        padding: 0 0 60px 0;
    }

    .faqs-section .container {
        flex-wrap: wrap;
        gap: 0;
    }

    .faqs-section article {
        width: 100%;
    }

    .faqs-section article h2 {
        margin-top: 0;
    }

    .faqs-section aside {
        width: 100%;
    }

    .faqs-section .btn-01 a {
        padding: 5px 15px;
    }

    .accordion-set {
        padding: 15px 0;
    }

    .accordion-set>a {
        font-size: 16px;
    }

    .accordion-set>a i {
        font-size: 18px;
        margin-right: 0;
        margin-left: 15px;
    }

    .accordion-content {
        padding: 0;
    }
}

/* 	-----------------------------------------------------
    -------------------- Footer Styles ------------------
    ----------------------------------------------------- */
.footer-section {
    margin: 100px 40px 40px 40px;
    background: linear-gradient(100.95deg, #00B088 2.34%, #70BF7A 100%);
}

.footer-top-section {
    margin: 0 auto;
    padding: 0 70px;
    max-width: 1312px;
    background: url(../img/footer-top-bg.webp) no-repeat center/cover;
    position: relative;
    top: -80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 70px;
}

.footer-top-section h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    padding: 10px 0;
}

.footer-top-section p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #FFFFFF;
    padding: 10px 0;
}

.footer-top-section .d-flex {
    margin: 10px 0;
    justify-content: flex-start;
    gap: 20px;
}

.footer-top-section figure {
    width: 35%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}

.footer-top-section figure img {
    position: absolute;
    right: 0;
    bottom: 30px;
    border-radius: 25px;
    box-shadow: 4px 4px 30px 0px #00000040;
}

.footer-top-section article {
    width: 65%;
}

.footer-mid-section .container {
    max-width: 1312px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-mid-section .link {
    width: 33.333%;
    display: flex;
    justify-content: center;
}

.footer-mid-section .link ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-mid-section .link ul li {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #FFFFFF;
}

.footer-mid-section .link ul li a {
    color: #FFFFFF;
    transition: .5s;
}

.footer-mid-section .link ul li a:hover {
    color: #FFDC3C;
    transition: .5s;
}

.footer-mid-section .logo {
    width: 33.333%;
    text-align: center;
}

.footer-mid-section .logo img {
    height: 104px;
}

.footer-mid-section .info {
    width: 33.333%;
}

.footer-mid-section .info p {
    margin: 0 0 20px 20px;
    padding: 0 0 0 35px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #FFFFFF;
    position: relative;
}

.footer-mid-section .info p i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
}

.footer-mid-section .info p a {
    color: #FFFFFF;
    transition: .5s;
}

.footer-mid-section .info p a:hover {
    color: #FFDC3C;
    transition: .5s;
}

.footer-bot-section {
    padding: 15px 0;
    text-align: center;
}

.footer-bot-section p {
    margin: 5px 0;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
}

.footer-bot-section p a {
    color: #FFFFFF;
    transition: .5s;
}

.footer-bot-section p a:hover {
    color: #FFDC3C;
    transition: .5s;
}

@media only screen and (max-width:760px) {
    .footer-section {
        margin: 20px;
    }

    .footer-top-section {
        padding: 20px;
        top: 0px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-top-section h2 {
        font-size: 24px;
    }

    .footer-top-section p {
        font-size: 14px;
    }

    .footer-top-section .d-flex {
        justify-content: center;
        gap: 10px;
    }

    .footer-top-section figure {
        width: 100%;
        justify-content: center;
        margin-top: -60px;
    }

    .footer-top-section figure img {
        position: inherit;
        right: auto;
        bottom: auto;
    }

    .footer-top-section article {
        width: 100%;
        text-align: center;
    }

    .footer-mid-section .container {
        flex-wrap: wrap;
    }

    .footer-mid-section .link {
        padding-bottom: 20px;
        width: 100%;
        order: 2;
    }

    .footer-mid-section .link ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-mid-section .link ul li {
        margin: 0;
    }

    .footer-mid-section .logo {
        padding: 20px;
        width: 100%;
        text-align: center;
        order: 1;
    }

    .footer-mid-section .logo img {
        height: 80px;
    }

    .footer-mid-section .info {
        width: 100%;
        order: 3;
        text-align: center;
    }

    .footer-mid-section .info p {
        margin: 0 0 10px 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .footer-mid-section .info p i {
        position: inherit;
        left: auto;
        top: auto;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .footer-top-section {
        padding: 0 20px;
        gap: 50px;
    }

    .footer-section {
        margin: 30px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1300px) {
    .footer-section {
        margin: 30px;
    }
}

.breadcrumb-section {
    padding: 200px 0 20px 0;
}

.breadcrumb-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.breadcrumb-section ul li {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    position: relative;
}

.breadcrumb-section ul li a {
    color: #000000;
}

.breadcrumb-section ul li::after {
    content: "-";
    position: absolute;
    right: -12px;
    top: 0;
}

.breadcrumb-section ul li:last-child::after {
    display: none;
}

@media only screen and (max-width:760px) {
    .breadcrumb-section {
        padding: 130px 0 20px 0;
    }
}

.page-title {
    padding-bottom: 30px;
    text-align: center;
}

.two-column-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
}

.two-column-section .column {
    width: 50%;
}

.two-column-section .column p {
    text-align: justify;
}

.two-column-section .column h4,
.two-column-section .column h6 {
    font-weight: 600;
    color: #000000;
}

.two-column-section .column .btn-01 a {
    padding: 10px 40px;
}

@media only screen and (max-width:760px) {
    .page-title {
        padding-bottom: 0;
    }

    .two-column-section .container {
        flex-wrap: wrap;
        gap: 0px;
    }

    .two-column-section .column {
        width: 100%;
    }

    .two-column-section .column p {
        text-align: justify;
    }

    .two-column-section .column .btn-01 a {
        padding: 5px 15px;
    }
}

.app-info-section {
    margin: 100px 30px;
}

.app-info-section .container {
    background: linear-gradient(103.21deg, #04AD9A 5.31%, #70BF79 100%);
    height: 570px;
    position: relative;
}

.app-info-section h2 {
    color: #FFFFFF;
    position: absolute;
    left: 0;
    top: 50px;
    width: 36%;
    text-align: right;
}

.app-info-section figure {
    margin: 0 auto;
    width: 346px;
    position: relative;
    top: -60px;
}

.app-info-section figure img {
    border-radius: 50px;
    box-shadow: 4px 4px 30px 0px #00000040;
}

.point-01 {
    padding: 15px;
    background: #05AD9ACC;
    border-radius: 0 0 0 30px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
    position: absolute;
    right: 40px;
    top: 25px;
}

.point-02 {
    padding: 15px;
    background: #05AD9ACC;
    border-radius: 0 0 0 30px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
    position: absolute;
    right: 240px;
    top: 115px;
}

.point-03 {
    padding: 15px;
    background: #05AD9ACC;
    border-radius: 0 0 0 30px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
    position: absolute;
    right: 80px;
    top: 205px;
}

.point-04 {
    padding: 15px;
    background: #05AD9ACC;
    border-radius: 0 0 30px 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
    position: absolute;
    left: 40px;
    top: 265px;
}

.point-05 {
    padding: 15px;
    background: #05AD9ACC url(../img/premium.png) no-repeat right top;
    border-radius: 0 0 0 30px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
    position: absolute;
    right: 40px;
    top: 345px;
}

.point-06 {
    padding: 15px;
    background: #05AD9ACC;
    border-radius: 0 0 30px 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
    position: absolute;
    left: 120px;
    top: 385px;
}

.point-07 {
    padding: 15px;
    background: #05AD9ACC;
    border-radius: 0 0 0 30px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
    position: absolute;
    right: 40px;
    top: 435px;
}

.point-08 {
    padding: 15px;
    background: #05AD9ACC;
    border-radius: 0 0 30px 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
    position: absolute;
    left: 40px;
    top: 475px;
}

@media only screen and (max-width:760px) {
    .app-info-section {
        margin: 30px 0;
    }

    .app-info-section .container {
        height: auto;
        padding: 20px;
    }

    .app-info-section h2 {
        position: inherit;
        left: auto;
        top: auto;
        width: 100%;
        text-align: center;
    }

    .app-info-section figure {
        margin: 10px 0;
        width: auto;
        top: 0px;
        text-align: center;
    }

    .point-01,
    .point-02,
    .point-03,
    .point-04,
    .point-05,
    .point-06,
    .point-07,
    .point-08 {
        margin: 10px 0;
        border-radius: 15px;
        position: inherit;
        left: auto;
        right: auto;
        top: auto;
    }
}

@media only screen and (min-width:761px) and (max-width:1300px) {
    .app-info-section .container {
        height: auto;
        padding: 20px;
    }

    .app-info-section h2 {
        position: inherit;
        left: auto;
        top: auto;
        width: 100%;
        text-align: center;
    }

    .app-info-section figure {
        margin: 10px 0;
        width: auto;
        top: 0px;
        text-align: center;
    }

    .point-01 {
        right: 0;
        top: 200px;
    }

    .point-02 {
        right: 0;
        top: 265px;
    }

    .point-03 {
        right: 0;
        top: 345px;
    }

    .point-04 {
        left: 0;
        top: 405px;
    }

    .point-05 {
        right: 0;
        top: 505px;
    }

    .point-06 {
        left: 0;
        top: 585px;
    }

    .point-07 {
        right: 0;
        top: 665px;
    }

    .point-08 {
        left: 0;
        top: 745px;
    }
}

.why-use-section {
    padding: 50px 0 100px 0;
    text-align: center;
}

.why-use-section p {
    margin: 0 auto;
    max-width: 1170px;
}

.three-column-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0 70px;
}

.icon-box:nth-child(2),
.icon-box:nth-child(5),
.icon-box:nth-child(8),
.icon-box:nth-child(11),
.icon-box:nth-child(14),
.icon-box:nth-child(17),
.icon-box:nth-child(20) {
    margin-top: 70px;
}

.icon-box {
    width: calc(33.333% - 50px);
    padding: 35px;
    background-color: #F5F5F5;
    border-radius: 0 0 30px 0;
}

.icon-box h6 {
    font-size: 16px;
    margin-top: 1.5rem;
}

.icon-box p {
    font-size: 16px;
    line-height: 1.5;
    padding: 0;
}

@media only screen and (max-width:760px) {
    .why-use-section {
        padding: 0px 0 50px 0;
        text-align: center;
    }

    .three-column-section {
        gap: 0;
    }

    .icon-box:nth-child(2),
    .icon-box:nth-child(5),
    .icon-box:nth-child(8),
    .icon-box:nth-child(11),
    .icon-box:nth-child(14),
    .icon-box:nth-child(17),
    .icon-box:nth-child(20) {
        margin-top: 0;
    }

    .icon-box {
        width: 100%;
        padding: 25px;
        margin-bottom: 20px;
    }

    .icon-box p {
        font-size: 14px;
    }
}

@media only screen and (min-width:761px) and (max-width:1300px) {
    .three-column-section {
        gap: 30px;
    }

    .icon-box {
        width: calc(33.333% - 20px);
        margin-bottom: 30px;
        padding: 25px;
    }
}

.icon-content-wrapper {
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.content-box {
    width: calc(25% - 15px);
}

.logo-box {
    margin-top: 50px;
    padding: 35px;
    width: calc(50% - 15px);
    min-height: 410px;
    background-color: #F5F5F5;
    border-radius: 0 0 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.arrow-01 {
    position: absolute;
    top: 60px;
    left: -30px;
}

.arrow-02 {
    position: absolute;
    bottom: 60px;
    left: -50px;
}

.arrow-03 {
    position: absolute;
    top: 60px;
    right: -10px;
}

.arrow-04 {
    position: absolute;
    bottom: 60px;
    right: -30px;
}

.arrow-05 {
    position: absolute;
    bottom: -70px;
    left: 150px;
}

.arrow-06 {
    position: absolute;
    bottom: -70px;
    right: 150px;
}

.icon-card {
    margin: 0 auto 100px auto;
    padding: 0;
    width: 100%;
    max-width: 300px;
}

.icon-card h6 {
    font-size: 16px;
    margin-top: 1rem;
    padding: 0;
}

.icon-card p {
    font-size: 16px;
    line-height: 1.5;
    padding: 0;
}

.bottom-icon-content-wrapper {
    margin: -70px auto 0 auto;
    max-width: 70%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

@media only screen and (max-width:760px) {
    .icon-content-wrapper {
        margin: 0;
        flex-wrap: wrap;
        gap: 0;
    }

    .content-box {
        width: 100%;
    }

    .logo-box {
        display: none;
    }

    .icon-card {
        margin: 0 auto 20px auto;
        max-width: 100%;
    }

    .icon-card p {
        font-size: 14px;
    }

    .bottom-icon-content-wrapper {
        margin: 0;
        max-width: 100%;
        flex-wrap: wrap;
        gap: 0;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .icon-card {
        margin-bottom: 50px;
    }

    .arrow-01 {
        position: absolute;
        top: 20px;
        left: -30px;
    }

    .arrow-02 {
        position: absolute;
        bottom: 20px;
        left: -30px;
    }

    .arrow-03 {
        position: absolute;
        top: 20px;
        right: -10px;
    }

    .arrow-04 {
        position: absolute;
        bottom: 20px;
        right: -30px;
    }

    .arrow-05 {
        position: absolute;
        bottom: -100px;
        left: 50px;
    }

    .arrow-06 {
        position: absolute;
        bottom: -100px;
        right: 50px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1300px) {
    .bottom-icon-content-wrapper {
        margin: -140px auto 0 auto;
    }
}

.pomoc-content {
    margin: 0 auto;
    padding: 0 0 100px 0;
    max-width: 950px;
    text-align: center;
}

.pomoc-content h4 {
    font-weight: 600;
    color: #000000;
    margin-bottom: 3rem;
}

.pomoc-content p strong {
    color: #0E7B6F;
}

.pomoc-contact {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.pomoc-contact .info-box {
    width: 33.333%;
}

.pomoc-contact .info-box p {
    font-weight: 700;
    line-height: 1.5;
}

.pomoc-contact .info-box p strong {
    display: block;
    color: #0E7B6F;
}

.pomoc-contact .info-box p span {
    display: block;
}

@media only screen and (max-width:760px) {
    .pomoc-content {
        padding: 0 20px 50px 20px;
    }

    .pomoc-contact {
        margin-top: 30px;
        flex-wrap: wrap;
        gap: 0;
    }

    .pomoc-contact .info-box {
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .pomoc-content {
        padding: 0 30px 100px 30px;
    }
}

.cms-content {
    padding: 20px 0 100px 0;
}

.cms-content section {
    padding: 50px;
    background: #0E7B6F1A;
    border-radius: 50px;
}

@media only screen and (max-width:760px) {
    .cms-content {
        padding: 10px 0 50px 0;
    }

    .cms-content section {
        padding: 25px;
        border-radius: 25px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .cms-content section {
        padding: 30px;
        border-radius: 30px;
    }
}