* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kanit", sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #88fa25;
}
body {
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* background: #FCF5EC; */
}


input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s;
}
h1 {
    font-size: 62px;
    font-weight: 600;
    line-height: 78px;
}
html.has-scroll-smooth {
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.cust-text-primary {
    color: #88fa25;
}
.cust-bg-primary {
    background: #88fa25;
}
.cust-text-secondary {
    color: #043424;
}
.cust-bg-secondary {
    background: #043424;
}
.banner-container {
    width: 100%;
    min-height: 680px;
    height: 100vh;
    background: url("../images/home-banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.container-fluid header {
    background-color: #fcf5ec;
}
.home header {
    background-color: transparent;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}
header .logo {
    max-width: 200px;
    height: auto;
}
header .logo img {
    width: 100%;
    height: auto;
}
header nav {
    /* width: 100%; */
    display: flex;
}
header nav ul {
    list-style: none;
    /* width: 100%; */
    margin-bottom: 0;
    padding-left: 0;
    margin-right: 40px;
    /* justify-content: space-between; */
    /* max-width: 500px; */
}
header nav ul li {
    padding: 14px 20px;
    display: inline-block;
}
header nav ul li a {
    font-size: 16px;
    color: #818181;
    text-decoration: none;
    transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);

    border-bottom: 2px solid transparent;
}
.home header nav ul li a {
    color: #ffffff;
}

header nav ul li.active a,
header nav ul li:hover a {
    border-color: #88fa25;
    color: #88fa25;
}
/* header nav ul li a.active,
header nav ul li a:hover  {

} */

header .cust-btn-primary {
    margin-left: 25px;
}

.cust-btn-secondary {
    padding: 12px 34px;
    text-decoration: none;
    color: #fcf5ec;
    background: #043424;
    border: 2px solid #043424;
    border-radius: 5px;
    line-height: 22px;
    display: inline-block;
    max-height: 50px;
    transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.cust-btn-secondary .icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    position: relative;
    top: 2px;
    left: 5px;
    background-image: url("../images/cta-arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.cust-btn-secondary:hover,
.cust-btn-secondary:active,
.cust-btn-secondary:focus {
    background: transparent;
    color: #043424;
}
.cust-btn-secondary:hover .icon,
.cust-btn-secondary:active > .icon,
.cust-btn-secondary:focus > .icon {
    background-image: url("../images/cta-arrow-dark.svg");
}

.cust-btn-secondary-outline {
    padding: 12px 34px;
    text-decoration: none;
    color: #043424;
    border: 2px solid #043424;
    border-radius: 5px;
    line-height: 22px;
    display: inline-block;
    max-height: 50px;
    transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.cust-btn-secondary-outline .icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    position: relative;
    top: 2px;
    left: 5px;
    background-image: url("../images/cta-arrow-dark.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.cust-btn-secondary-outline:hover,
.cust-btn-secondary-outline:active,
.cust-btn-secondary-outline:focus {
    background: #043424;
    border: 2px solid #043424;
    color: #ffffff;
}
.cust-btn-secondary-outline:hover .icon,
.cust-btn-secondary-outline:active .icon,
.cust-btn-secondary-outline:focus .icon {
    background-image: url("../images/cta-arrow.svg");
}

.cust-btn-primary {
    padding: 12px 34px;
    text-decoration: none;
    color: #043424;
    background: #88fa25;
    border: 2px solid #88fa25;
    border-radius: 5px;
    line-height: 22px;
    display: inline-block;
    max-height: 50px;
    transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.cust-btn-primary .icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    position: relative;
    top: 2px;
    left: 5px;
    background-image: url("../images/cta-arrow-dark.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.cust-btn-primary:hover,
.cust-btn-primary:active,
.cust-btn-primary:focus {
    background: transparent;
}

.home .cust-btn-primary:hover,
.home .cust-btn-primary:active,
.home .cust-btn-primary:focus {
    background: transparent;
    color: #ffffff;
}
.home .cust-btn-primary:hover .icon,
.home .cust-btn-primary:active > .icon,
.home .cust-btn-primary:focus > .icon {
    background-image: url("../images/cta-arrow.svg");
}

.cust-btn-primary-outline {
    padding: 12px 34px;
    text-decoration: none;
    color: #043424;
    border: 2px solid #88fa25;
    border-radius: 5px;
    line-height: 22px;
    display: inline-block;
    max-height: 50px;
    transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.cust-btn-primary-outline .icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    position: relative;
    top: 2px;
    left: 5px;
    background-image: url("../images/cta-arrow-dark.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.home .cust-btn-primary-outline {
    color: #ffffff;
}
.home .cust-btn-primary-outline .icon {
    background-image: url("../images/cta-arrow.svg");
}
.cust-btn-primary-outline:hover,
.cust-btn-primary-outline:active,
.cust-btn-primary-outline:focus {
    background: #88fa25;
    border: 2px solid #88fa25;
    color: #043424;
}
.cust-btn-primary-outline:hover .icon,
.cust-btn-primary-outline:active .icon,
.cust-btn-primary-outline:focus .icon {
    background-image: url("../images/cta-arrow-dark.svg");
}
.banner-content {
    position: absolute;
    bottom: 70px;
}
.banner-content h1 {
    font-size: 57px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}
.banner-content p {
    font-size: 16px;
    font-weight: 100;
    color: #fcf5ec;
    margin-bottom: 30px;
    letter-spacing: 0.7px;
}
.banner-content .cust-btn-primary {
    margin-right: 30px;
}
.first-section {
    width: 100%;
    height: auto;
    background-color: #fcf5ec;
    padding: 100px 0;
}
.cust-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.first-section .cust-container {
    width: 90%;
    margin: auto;
}
.first-section .cust-card {
    width: 100%;
    height: 100%;
    min-height: 388px;
    max-width: 340px;
    max-height: 388px;
    background-color: #043424;
    position: relative;
    padding: 30px 25px;
    margin: 20px 8px;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
}

.first-section .cust-card::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../images/card-bg.svg");
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
}
.cust-card .card-content {
    position: relative;
    z-index: 1;
}

.first-section .cust-card .icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.first-section .cust-card h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: #ffffff;
    margin: 16px 0;
}
.first-section .cust-card p {
    font-size: 16px;
    font-weight: light;
    line-height: 27px;
    color: #fcf5ec;
}

.first-section .cust-card .hover-area {
    width: 100%;
    height: 100%;
    background-color: #88fa25;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 25px;
    /* margin: 20px 8px; */
    border-radius: 20px;
    transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
    transform: translateY(100%);
}
.first-section .cust-card:hover .hover-area,
.first-section .cust-card.active .hover-area {
    transform: translateY(0);
}
.first-section .cust-card .hover-area .hover-content {
    position: relative;
    z-index: 1;
}
.hover-area::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../images/card-bg-dark.svg");
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
}
.first-section .cust-card .hover-content h2 {
    color: #043424;
}
.second-section {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    padding: 124px 0;
}
.second-section h1 {
    font-size: 62px;
    line-height: 78px;
    font-weight: 600;
    color: #043424;
    position: relative;
}
.second-section h1::before {
    content: "";
    width: 100px;
    height: 100px;
    background: url(../images/circles.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -85px;
    left: -115px;
}
.second-section h1 span {
    position: relative;
    z-index: 11;
}
.second-section h1 span::before {
    content: "";
    width: 100%;
    height: 10px;
    background-color: #88fa25;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: -1;
}

.second-section img {
    width: 100%;
    margin-left: 20px;
    height: auto;
}

.second-section p {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #818181;
    margin: 32px 0;
    letter-spacing: 0.8px;
}
.second-section .cust-btn-primary:hover,
.second-section .cust-btn-primary:active,
.second-section .cust-btn-primary:focus {
    background: transparent;
    color: #043424;
}
.second-section .cust-btn-primary:hover .icon,
.second-section .cust-btn-primary:active > .icon,
.second-section .cust-btn-primary:focus > .icon {
    background-image: url("../images/cta-arrow-dark.svg");
}

.third-section {
    width: 100%;
    height: 100%;
    min-height: 670px;
    padding: 100px 0;
    background-color: #fcf5ec;
    position: relative;
}
.third-section::before {
    content: "";
    width: 90%;
    height: 90%;
    background: url("../images/third-section-bg.svg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
}
.third-section .container {
    position: relative;
    z-index: 2;
}

.third-section h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: #064e36;
}
.third-section h1 {
    font-size: 62px;
    line-height: 78px;
    font-weight: 600;
    color: #043424;
}

.third-section p {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #818181;
    margin: 32px 0;
    letter-spacing: 0.8px;
}
.third-section .features {
    width: calc(100% - 0px);
    margin-left: auto;
}
.third-section .features .col-md-6:nth-child(1) {
    margin-top: 100px;
}
.third-section .features .col-md-6:nth-child(2) {
    margin-top: 200px;
}
.third-section .features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.third-section .features ul li {
    background: #064e36;
    padding: 38px 50px;
    margin-bottom: 111px;
    border-radius: 30px;
    border-bottom-right-radius: 0px;
    color: #fcf5ec;
    font-size: 19px;
    font-weight: 500;
    line-height: 30px;
}
.third-section .cust-btn-primary:hover,
.third-section .cust-btn-primary:active,
.third-section .cust-btn-primary:focus {
    background: transparent;
    color: #043424;
}
.third-section .cust-btn-primary:hover .icon,
.third-section .cust-btn-primary:active > .icon,
.third-section .cust-btn-primary:focus > .icon {
    background-image: url("../images/cta-arrow-dark.svg");
}

.fourth-section {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-image: url("../images/fourth-section-bg.svg") #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.fourth-section h1 {
    font-size: 62px;
    line-height: 78px;
    font-weight: 600;
    color: #043424;
    text-align: center;
}

.fourth-section p {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #818181;
    margin: 16px 0 50px;
    letter-spacing: 0.8px;
    text-align: center;
}
.accordion {
    background: transparent;
}
.accordion-item {
    background: transparent;
    border: 0 !important;
    border-bottom: 1px solid #818181 !important;
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.accordion-button {
    background-color: transparent;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background: transparent;
}
.accordion-header button {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    color: #043424 !important;
    padding: 0 !important;
}
.accordion-body {
    /* margin-top: 16px; */
    color: #818181;
    padding: 0 !important;
    margin-top: 16px;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("../images/faq-up-icon.svg");
}
.accordion-button::after {
    width: 18px;
    height: 9px;
    background-image: url("../images/faq-down-icon.svg") !important;
}

.fifth-section {
    width: 100%;
    height: 100vh;
    min-height: 680px;
    background-image: url("../images/fifth-section.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.fourth-section .container {
    position: relative;
}
.fifth-section .row {
    position: absolute;
    bottom: 50px;
    left: 0;
    /* padding: 0 20px; */
}

.fifth-section h1 {
    font-size: 62px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 30px;
}

.fifth-section h1 span {
    color: #88fa25;
}
footer {
    background: #043424;
    padding: 100px 0 0;
    /* overflow: hidden; */
}
footer .container {
    margin-bottom: 80px;
    /* height: calc(100vh - 75px); */
}
footer .container-fluid {
    border-top: 1px solid #064e36;
    /* height: 75px; */
}
footer .container-fluid p {
    color: #818181;
    padding: 25px 0;
    margin-bottom: 0;
}
footer .left p {
    color: #818181;
    margin: 32px 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 200;
    max-width: 350px;
}
footer .left .logo {
    max-width: 300px;
    display: block;
}
footer .left .logo img {
    width: 100%;
    height: auto;
}

footer ul {
    list-style: none;
    padding: 0;
}

.social-icons ul {
    display: flex;
    max-width: 150px;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    list-style: none;
}
.social-icons ul li a {
    width: 20px;
    height: 16px;
    display: inline-block;
}
.social-icons ul li .social-icon {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}
.social-icons ul li .social-icon.facebook {
    background-image: url("../images/facebook.svg");
}
.social-icons ul li .social-icon.insta {
    background-image: url("../images/instagram.svg");
}
.social-icons ul li .social-icon.twitter {
    background-image: url("../images/twitter.svg");
}
.social-icons ul li .social-icon.youtube {
    background-image: url("../images/youtube.svg");
}
footer .right h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 72px;
    color: #ffffff;
    margin-bottom: 92px;
    position: relative;
}
footer .right h2::before {
    content: "";
    position: absolute;
    min-width: 60px;
    width: 10%;
    background-color: #88fa25;
    height: 4px;
    /* left: -70px; */
    right: 102%;
    top: 22%;
}
footer .right ul h4 {
    color: #88fa25;
    font-size: 20px;
    line-height: 30px;
}
footer .right ul li {
    margin: 20px 0;
}
footer .right ul li a {
    font-size: 16px;
    line-height: 26px;
    color: #fcf5ec;
    text-decoration: none;
}

.section {
    min-height: 100vh;
}
.c-scrollbar {
    background: #00000091;
    opacity: 1;
}
.c-scrollbar_thumb {
    background-color: #88fa25;
    opacity: 0.9;
}
/* div[data-scroll-section] {
    opacity: 1 !important;
    pointer-events: all !important;
} */

.cust-other-page {
    min-height: 100vh;
}
.cust-other-page .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 40px 50px 140px;
    background-color: #043424;
}
.cust-other-page .left h1 {
    color: #0b6446;
    font-size: 62px;
    line-height: 74px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
}
.cust-other-page .left .sliders {
    position: relative;
    top: -34px;
    left: 90px;
    max-width: 80%;
    max-height: 400px;
}
.cust-other-page .left .sliders .slide {
    max-height: 500px;
}
.cust-other-page .left .sliders p {
    font-size: 24px;
    line-height: 34px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 100px;
}
.cust-other-page .left .sliders .contact-link {
    font-size: 16px;
    line-height: 26px;
    color: #0b6446;
    font-weight: 300;
    margin-bottom: 150px;
}
.cust-other-page .left .sliders .contact-link a {
    color: #fcf5ec;
    text-decoration: none;
}
.cust-other-page .left .sliders .contact-link a span.icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    position: relative;
    top: 2px;
    left: 5px;
    background-image: url("../images/cta-arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.cust-other-page .right img {
    width: 100%;
    height: auto;
}
.slick-dots {
    display: flex;
    align-items: center;
    height: 5px;
    list-style: none;
    padding-left: 0;
}
.slick-dots li button {
    width: 32px;
    height: 5px;
    background-color: #0b6446;
    margin-right: 12px;
    border: none;
    overflow: hidden;
    border-radius: 5px;
}
.slick-dots li.slick-active button {
    background-color: #88fa25;
}
.cust-about-first-section {
    background: #fcf5ec;
    padding: 100px;
    /* height: 100vh; */
}
.cust-about-first-section #pills-tab {
    margin-bottom: 100px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.cust-about-first-section #pills-tab button {
    padding: 20px 60px;
    font-size: 20px;
    line-height: 30px;
    color: #818181;
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
}
.cust-about-first-section #pills-tab button.active {
    border-color: #88fa25;
    color: #043424;
}

.cust-about-first-section .tab-content .tab-pane h5 {
    font-size: 28px;
    color: #043424;
    line-height: 38px;
    font-weight: 400;
    margin-bottom: 100px;
}
.cust-about-first-section .tab-content .tab-pane p {
    max-width: 428px;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: #818181;
    position: relative;
}
.cust-about-first-section .tab-content .tab-pane p.first::before {
    content: "";
    width: 15%;
    height: 4px;
    background-color: #88fa25;
    position: absolute;
    top: 7%;
    right: 103%;
}

.about-cards .col-md-4 {
    padding: 80px;
}
.about-cards .col-md-4 .top {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.about-cards .col-md-4 .top .icon {
    min-width: 100px;
    max-width: 100px;
    min-height: 100px;
    max-height: 100px;
    border-radius: 50%;
    background-color: #064e36;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}
.about-cards .col-md-4 .top .icon img {
    width: 55%;
    height: auto;
}
.about-cards .col-md-4 .top h4 {
    font-weight: 500;
    font-size: 26px;
    line-height: 36px;
    color: #043424;
    margin-bottom: 0;
}
.about-cards .col-md-4 p {
    font-weight: 300;
    line-height: 26px;
    font-size: 16px;
    color: #818181;
}
.cust-instruction-page {
    background-color: #fcf5ec;
    padding: 100px 0;
}
.cust-instruction-page h1 {
    color: #043424;
    font-size: 62px;
    line-height: 76px;
    font-weight: 550;
}
.cust-instruction-page p {
    color: #818181;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
}
.cust-steps {
    margin-top: 50px;
}
.cust-steps .col-md-4 {
    padding: 0 8px;
    /* overflow: hidden;
    max-height: 320px;
    margin-bottom: 15px; */
}
.cust-steps .col-md-4 .cust-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 50px 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 16px;
    max-height: 320px;
    min-height: 320px;

    /* max-height: 300px; */
    overflow-y: scroll;
}
.cust-steps .col-md-4 .cust-card .step-count {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    background-color: #064e36;
    color: #88fa25;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
}
.cust-steps .col-md-4 .cust-card .content h4 {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: #043424;
    margin-bottom: 8px;
}
.cust-steps .col-md-4 .cust-card .content ul {
    padding-left: 30px;
    margin-bottom: 0;
    list-style: none;
}
.cust-steps .col-md-4 .cust-card .content ul li {
    position: relative;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    color: #818181;
    margin-bottom: 8px;
}
.cust-steps .col-md-4 .cust-card .content > ul li::before {
    position: absolute;
    content: "";
    width: 22px;
    height: 12px;
    background-image: url("../images/check-icon.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    right: 102%;
    top: 5px;
}
/* .cust-steps .col-md-4 .cust-card .content ul li ul li {
    list-style: circle;
} */
.cust-steps .col-md-4 .cust-card .content ul li ul li::before {
    /* content: none; */
    background-image: url("../images/arrow-right.png");
    /* height: 15px; */
    width: 12px;
    top: 3px;
}
.instruction-bottom-section {
    padding: 84px 0 0;
}
.instruction-bottom-section h4 {
    font-size: 26px;
    color: #043424;
    position: relative;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 32px;
}
.instruction-bottom-section h4::before {
    content: "";
    width: 10%;
    height: 5px;
    position: absolute;
    right: 103%;
    top: 10%;
    background-color: #88fa25;
}
.cust-packages-page {
    background: url("../images/packages-vector.svg") #fcf5ec;
    background-position: center 100px;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.cust-packages-page .col-12 {
    margin-bottom: 50px;
}
.cust-packages-page .col-12 h1 {
    color: #043424;
    font-size: 62px;
    line-height: 76px;
    font-weight: 550;
}
.cust-packages-page .col-12 p {
    color: #818181;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
}
.cust-packages-page .col-md-4 {
    margin-bottom: 16px;
}
.cust-packages-page .col-md-4 .cust-card {
    width: 100%;
    background-color: #ffffff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
    transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
    cursor: pointer;
}
.cust-packages-page .col-md-4 .cust-card:hover {
    background-color: #064e36;
}
.cust-packages-page .col-md-4 .cust-card:hover h3 {
    color: #ffffff;
}
.cust-packages-page .col-md-4 .cust-card:hover .cust-btn-primary:hover {
    color: #ffffff;
}
.cust-packages-page .col-md-4 .cust-card:hover .cust-btn-primary:hover .icon {
    background-image: url("../images/cta-arrow.svg") !important;
}
.cust-packages-page .col-md-4 .cust-card h3 {
    font-size: 42px;
    color: #043424;
    line-height: 58px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.cust-payment-section h6 {
    color: #0b6446;
}
.cust-payment-section h2 {
    color: #043424;
}
.cust-payment-section p {
    color: #818181;
    font-weight: 300;
}
#card-element {
    border: 1px solid #eeeeee !important;
    padding: 16px 8px;
    border-radius: 5px;
    margin: 10px 12px;
}
.cust-payment-section .right {
    border-radius: 20px;
    overflow: hidden;
}
.cust-payment-section .right .top {
    background: #0b6446;
}
.cust-payment-section .right .bottom {
    background: #fcf5ec;
}
.cust-payment-section .right .top h6 {
    color: #88fa25;
}
.cust-payment-section .right .top h2 {
    color: #fcf5ec;
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
    margin: 20px 0;
}
.cust-payment-section .right .top p {
    color: #ffffff;
}
.cust-payment-section .right .bottom .cust-bg-secondary {
    border-radius: 10px;
}
.cust-packages-page .col-md-4 .cust-card p {
    color: #818181;
    font-size: 16px;
    /* min-height: 54px; */
    /* max-height: 54px; */
    overflow-y: auto;
    margin-bottom: 20px;
    text-align: center;
}
.contact-banner {
    min-height: 100vh;
    background-image: url("../images/contact-us.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.contact-banner h1 {
    font-size: 62px;
    line-height: 76px;
    font-weight: 550;
    color: #88fa25;
}

.cust-contact-page {
    padding: 100px 0;
    background-color: #fcf5ec;
}
.cust-contact-page h1 {
    color: #043424;
    font-size: 62px;
    line-height: 76px;
    font-weight: 550;
    margin-bottom: 16px;
}
.cust-contact-page p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #0b6446;
    margin-bottom: 80px;
}
.cust-contact-page .contact-details .row {
    margin-bottom: 20px;
}
.cust-contact-page .contact-details .row a {
    display: block;
    font-size: 16px;
    color: #043424;
    line-height: 24px;
    font-weight: 300;
    text-decoration: none;
}
.cust-contact-page .contact-details .phone .icon {
    width: 16px;
    height: 16px;
    background-image: url("../images/phone.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 5px;
}
.cust-contact-page .contact-details .email .icon {
    width: 20px;
    height: 16px;
    background-image: url("../images/email.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 5px;
}

.cust-contact-page .social-icons ul li .social-icon.facebook {
    background-image: url("../images/facebook-green.svg");
}
.cust-contact-page .social-icons ul li .social-icon.insta {
    background-image: url("../images/instagram-green.svg");
}
.cust-contact-page .social-icons ul li .social-icon.twitter {
    background-image: url("../images/twitter-green.svg");
}
.cust-contact-page .social-icons ul li .social-icon.youtube {
    background-image: url("../images/youtube-green.svg");
}
.cust-contact-page .contact-form {
    width: 100%;
    padding: 42px 35px;
    background: #043424;
    border-radius: 20px;
}

.contact-form .inner-container {
    padding: 20px 20px;
    background-image: url("../images/contact-form-cover.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.contact-form .inner-container h1 {
    color: #88fa25;
    font-size: 62px;
    line-height: 76px;
    font-weight: 550;
    margin-bottom: 70px;
}

.contact-form label {
    display: block;
    font-size: 16px;
    padding: 0px 10px;
    color: #fcf5ec;
    position: absolute;
    transition: all 0.2s linear;
    top: 10px;
    left: 10px;
}
.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    border-bottom: 1px solid #0b6446;
    font-size: 16px;
    color: #ffffff;
    padding: 12px 10px;
}
/* Chrome, Safari, Edge, Opera */
.contact-form input::-webkit-outer-spin-button,
.contact-form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.contact-form input[type="number"] {
    -moz-appearance: textfield;
}
.contact-form textarea {
    display: block;
    width: 100%;
    resize: none;
}
.field-wrapper {
    position: relative;
    margin-bottom: 40px;
}
.field-wrapper.focused label {
    transition: all 0.2s linear;
    top: -20px;
}
.contact-form .cust-btn-primary:hover {
    color: #ffffff;
}
.contact-form .cust-btn-primary:hover .icon {
    background-image: url("../images/cta-arrow.svg") !important;
}
.login-page {
    min-height: 100vh;
    height: auto;
    background-image: url("../images/login-cover.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    overflow-y: auto;
}
.login-page .cust-right-section {
    width: 35%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.699);
    position: absolute;
    right: 0;
    top: 0;
    backdrop-filter: blur(30px) brightness(1.3);
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cust-right-section.blacklist {
    width: 50%;
    height: auto;
    /* min-height: 110vh;*/
    overflow-y: auto;
    min-height: 922px;
}
.login-page .cust-right-section .cust-inner-container {
    width: 100%;
    height: auto;
    /* border: 1px solid #fff; */
}
.login-page .cust-right-section .cust-inner-container h1 {
    color: #88fa25;
    margin-bottom: 8px;
}
.login-page .cust-right-section .cust-inner-container p {
    font-size: 16px;
    color: #ffffff;
    line-height: 26px;
    font-weight: 200;
    margin-bottom: 50px;
}

.login-page .cust-right-section .cust-inner-container .form-control,
.login-page .cust-right-section .cust-inner-container .form-select {
    border: 1px solid #707070;
    background-color: #2e29237e;
    box-shadow: none;
    outline: none;
    color: #9f9f9f;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 200;
    backdrop-filter: blur(30px) brightness(1.5);
    letter-spacing: 0.7px;
    font-size: 14px;
}
.login-page .cust-right-section .cust-inner-container .form-select option {
    background-color: rgba(0, 0, 0, 0.74);
    color: #9f9f9f;
    padding: 8px 12px;
}

.login-page
    .cust-right-section
    .cust-inner-container
    .form-control::placeholder {
    color: #9f9f9f;
    font-weight: 200;
}
.login-page .cust-right-section .cust-inner-container .form-check {
    display: flex;
    align-items: center;
}
.login-page .cust-right-section .cust-inner-container .form-check-input {
    border: 1px solid #707070;
    background-color: rgba(0, 0, 0, 0.42);
    box-shadow: none;
    outline: none;
    color: #9f9f9f;
    padding: 10px;
    margin-right: 10px;
}
.login-page .cust-right-section .cust-inner-container .form-control {
    font-size: 14px !important;
}
.login-page .cust-right-section .cust-inner-container .form-check-label {
    color: #ffffff;
    font-weight: 200;
}
/* .login-page .cust-right-section .cust-inner-container .cust-btn-primary {
    color: #ffffff;
} */
.login-page .cust-right-section .cust-inner-container .bottom {
    position: absolute;
    bottom: 80px;
    right: 50px;
    color: #818181;
    text-align: right;
}
.login-page .cust-right-section .cust-inner-container .bottom a {
    color: #fcf5ec;
    margin-left: 8px;
    margin-right: 5px;
}
.login-page .cust-right-section .cust-inner-container .bottom .icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    position: relative;
    top: 2px;
    left: 5px;
    background-image: url("../images/cta-arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.login-page .cust-right-section .cust-inner-container a {
    color: #818181;
    text-decoration: none;
    font-size: 16px;
}
.register-page .cust-right-section {
    width: 49%;
    height: auto;
}
.register-page .banner-content h1 {
    max-width: 1200px !important;
}
.text-red-600 {
    color: red;
}

.cust-payment-section {
    padding: 100px;
    background-color: #ffffff;
}

@media screen and (min-width: 1601px) {
    .container {
        max-width: 85%;
    }
    .register-page .banner-content h1 {
        max-width: 100% !important;
    }
}

.cust-special-notes {
    max-width: 600px;
    font-weight: 400;
    color: #de7115 !important;
    margin: auto;
}
.cust-special-notes a {
    color: #88fa25 !important;
}

#preloader {
    /* background-color: rgba(218, 218, 218, 0.507); */
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 11111111;
    display: none;
    justify-content: center;
    align-items: center;
    /* From https://css.glass */
    background: rgba(5, 5, 5, 0.575);
    /* border-radius: 16px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(5px);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
}

.dot-spinner {
    --uib-size: 3.8rem;
    --uib-speed: 0.9s;
    --uib-color: #88fa25;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: "";
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px #ffd900af;
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}

.slick-prev, .slick-next {
    font-size: 0 !important;
    line-height: 0 !important;
    position: absolute;
    top: 50%;
    display: block !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;

    transform: translate(0, -50%);
    cursor: pointer !important;
    z-index: 1;
  }
  .slick-prev {
    left: -8px;
  }
  .slick-next {
    right: 16px;
  }
  button.slick-prev.slick-arrow.slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;

  }

  /* Provide your own arrow icons */
  .slick-prev:before, .slick-next:before {
    /* font-family: "Font Awesome 5 Free"; */
    line-height: 1;
    color: #000;
    opacity: 0.75;
  }

  .slick-prev:before {
    content: ""; /* Font Awesome arrow left icon */
    display: inline-block;
    background-image: url('../images/right-arrow-angle.png?dsaf');
    background-repeat: no-repeat;
    background-size: cover;
    transform: scaleX(-1);
    width: 28px;
    height: 28px;

    /* position: absolute; */

  }

  .slick-next:before {
    content: ""; /* Font Awesome arrow right icon */
    display: inline-block;

    background-image: url('../images/right-arrow-angle.png?fsdaff');
    background-repeat: no-repeat;
    background-size: cover;
    width: 28px;
    height: 28px;

  }

@keyframes pulse0112 {
    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}
.offcanvas {
    background-color: #00000060;
    backdrop-filter: blur(10px);
    display: none;
}
.offcanvas nav {
    flex-direction: column;
    width: 100%;
}
.offcanvas nav ul {
    margin-right: 0;
}
.offcanvas nav ul li {
    display: block;
    text-align: center;
}
.offcanvas .btn-group {
    display: block;
}
.offcanvas .btn-close {
    background-color: #88fa25;
}
.offcanvas .offcanvas-body {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}
.cust-menu-btn {
    background-image: url("../images/menu.png");
    background-size: 80%;
    background-position: center;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    padding: 10px;
    background-color: #0000009c;
    backdrop-filter: blur(13px);
    display: none;
    opacity: 0;
    transition: opacity 0.5s linear;
}
.cust-menu-btn:hover {
    background-color: #0000009c;
    box-shadow: 0 0 0 5px #0000003f;
    transition: box-shadow 0.3s linear;
}
.container-fluid.ps-0 {
    background-color: #fcf5ec;
}
@media only screen and (max-width: 1200px) {
    .cust-menu-btn {
        display: block;
        opacity: 1;
        transition: opacity 0.5s linear;
    }
    .outer-nav {
        display: none;
    }
    .offcanvas {
        display: block;
    }
    .section {
        min-height: 100%;
    }

}

@media only screen and (min-width:769px) and  (max-width: 1200px) {
    .first-section .cust-container {
        width: 100%;
        margin:0 auto;
    }

    .banner-content h1 br {
        display: none;
    }
    .offcanvas .btn-group {
        display: flex;
        flex-direction: column;
    }
    .offcanvas .btn-group .cust-btn-primary{
        margin-left: 0;
        margin-top: 20px;
    }
    .offcanvas .btn-group a {
        text-align: center;
    }
    .offcanvas nav ul li {
        padding: 20px 15px;
    }
    .offcanvas nav ul li:last-child {
        margin-bottom: 30px;
    }
    .banner-container .banner-content {
        max-width: 80%;
    }
    .second-section h1 {
        font-size: 50px;
    }
    .first-section .cust-card {
        justify-content: center;
    }
    .first-section .cust-card {
        max-width: 47%;
    }
    .second-section img {
        margin-left: 0;
    }
    .second-section h1 {
        font-size: 50px;
        line-height: 62px;
    }
    .third-section h1 {
        font-size: 50px;
        line-height: 62px;
    }
    .third-section .row .col-md-6:nth-child(1) {
        width: 65%;
    }
    .third-section .row .col-md-6:nth-child(2) {
        width: 35%;
    }

    .third-section .features .row .col-md-6 {
        width: 100%;
    }
    .third-section .features ul li {
        margin-bottom: 50px;
    }
    .third-section .features .col-md-6:nth-child(1) {
        margin-top: 0;
    }
    .third-section .features .col-md-6:nth-child(2) {
        margin-top: 0px;
    }
    .fifth-section .row {
        left: 50px;
    }
    .fifth-section .col-md-4 {
        display: none;
    }
    .fifth-section h1 {
        font-size:  50px;
        line-height: 62px;
    }
    .fifth-section h1 br {
        display: none;
    }
    .fourth-section h1 {
        font-size: 50px;
    }
    .row.about-cards {
        flex-wrap: wrap;
    }
    .row.about-cards .col-md-4 .top {
        flex-direction: column;
    }

    .cust-intruc  .col-md-6{
        width: 100%;
    }

    .login-page .banner-content h1 {
        font-size: 42px;
    }
    .login-page .cust-right-section {
        width: 50%;
    }
    .login-page .cust-right-section .cust-inner-container h1 {
        font-size: 42px;
    }

    .cust-packages-page .col-md-4 {
        width: 48%;
    }



}

@media only screen and (min-width:601px) and  (max-width: 768px) {
    .first-section h1,
    .second-section h1,
    .third-section h1,
    .fourth-section h1,
    .fifth-section h1 {
        font-size: 42px;
        line-height: 50px;
    }
   .banner-content h1 br {
        display: none;
    }
    .offcanvas .btn-group {
        display: flex;
        flex-direction: column;

    }
    .offcanvas .btn-group a {
        margin: 20px 0 0 0;

    }
    .first-section .cust-card {
        max-width: 100%;
    }
    .second-section h1 span::before {
        height: 3px;
        top: 58px;
    }
    .second-section .cust-btn-primary {
        margin-bottom: 40px;

    }
    .second-section img {
        margin-left: 0;
    }
    .third-section .features .col-md-6:nth-child(2) {
        margin-top: 0;
    }
    .fourth-section h1 {
        text-align: left;
        margin-bottom: 50px;
    }
    .fifth-section .row {
        padding: 0 30px;
    }
    .row.about-cards {
        flex-wrap: wrap;
    }
    .row.about-cards .col-md-4 .top {
        flex-direction: column;
    }
    .third-section .cust-btn-primary,
    .cust-btn-secondary-outline {
        margin:20px 0;

    }

      /* -----------about page---------------- */
      .container-fluid.ps-0 {
        padding: 0 15px !important;
    }
    .cust-other-page {
        min-height: 100%;
    }
    .cust-other-page .left {
        padding: 20px 15px;
    }
    .container-fluid.cust-other-page .row:first-of-type {
        flex-flow: column-reverse;
    }
    .cust-other-page .left .sliders {
        /* top: -60px;
    left: 48px; */
        max-height: 100%;
        position: static;
    }
    .cust-about-first-section #pills-tab button {
        width: 90%;
        display: block;
    }
    .cust-other-page .left h1 {
        font-size: 48px;
    }

    .cust-other-page .left .sliders p {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .cust-other-page .left .sliders .contact-link {
        margin-bottom: 20px;
    }

    .container-fluid.cust-about-first-section {
        padding: 20px 15px;
    }
    /* ---------------------instruction-page------------------- */
    .cust-intruc  .col-md-6{
        width: 100%;
    }
    .cust-steps .col-md-4 {
        max-width: 48%;
        width: 100%;
    }

    /* .login-page .banner-content h1 {
        font-size: 42px;
    }
    .login-page .cust-right-section {
        width: 50%;
    }
    .login-page .cust-right-section .cust-inner-container h1 {
        font-size: 42px;
    } */

    .login-page .banner-content {
        display: none;
    }

    .login-page .cust-right-section {
        width: 80%;
        min-height: 70vh;
        max-height: 70vh;

        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        border-radius: 14px;
        padding: 0;
    }
    .login-page .cust-right-section .cust-inner-container {
        text-align: center;
        max-height: 70vh;
        overflow-y: auto;
        padding: 30px 20px;

    }
    .login-page .cust-right-section .cust-inner-container h1 {
        font-size: 38px;
        line-height: 55px;
    }
    .login-page .cust-right-section .cust-inner-container p {
        margin-bottom: 40px;
    }
    .login-page .cust-right-section .cust-inner-container .bottom {
        right: 35px;
    }
    .cust-btn-group-register {
        flex-direction: column;
    }
    .mb-5.d-flex.align-items-center.justify-content-between.cust-btn-group-register {
        margin-bottom: 0 !important;
    }
}


@media only screen and (max-width: 600px) {

   .banner-content h1 br {
        display: none;
    }

    .container-fluid.banner-container.ps-0.home {
        background-position: 70% center !important;
    }
    .cust-btn-secondary {
        width: 100%;
        text-align: center;
        width: 100%;
        text-align: center;
        margin: 10px 0 !important;
    }
    
    
    
    .cust-btn-primary {
        width: 100%;
        text-align: center;
        margin: 10px 0 !important;
    }
    .cust-btn-primary-outline {
        width: 100%;
        text-align: center;
        margin: 10px 0 !important ;
    }
    .cust-btn-secondary-outline {
        width: 100%;
        text-align: center;
        margin: 10px 0 !important;
    }
    /* header {
        padding-left: 15px;
        padding-right: 15px;

    } */
    /* . */
    header nav.outer-nav {
        display: none;
    }
    header .logo {
        max-width: 150px;
    }
    .banner-content h1 {
        font-size: 38px;
        line-height: 55px;
    }
    .container-fluid.banner-container.ps-0.home {
        padding-left: 12px !important;
    }
    .banner-content {
        /* position: absolute; */
        /* top: 100%; */
        left: 0;
        padding: 0 12px;
    }
    /* .banner-content .cust-btn-primary {
        margin: 0;
    } */
    .first-section {
        padding: 50px 0;
    }
    .first-section .cust-card {
        max-height: 100%;
        max-width: 100%;
    }
    .second-section {
        padding: 50px 0;
    }
    .second-section h1 {
        font-size: 30px;
        line-height: 58px;
    }
    .second-section p {
        margin: 20px 0;
    }
    .second-section h1 span::before {
        height: 5px;
        top: 50px;
    }
    .second-section img {
        margin: 0;
    }
    .second-section .cust-btn-primary {
        margin-bottom: 30px;
    }
    .third-section {
        padding: 50px 0;
    }
    .third-section::before {
        width: 100%;
        height: 100%;
        background-size: cover;
    }
    .third-section h1 {
        font-size: 38px;
        line-height: 55px;
    }
    .third-section p {
        margin: 20px 0;
    }
    .third-section .features .col-md-6:nth-child(1) {
        margin-top: 30px;
    }
    .third-section .features ul li {
        margin-bottom: 12px;
    }
    .third-section .features ul li:nth-child(2) {
        /* border-top-left-radius: 30; */
        border-top-right-radius: 0;
        border-bottom-right-radius: 30px;
    }

    .third-section .features .col-md-6:nth-child(2) {
        margin-top: 0px;
    }

    .fourth-section {
        padding: 50px 0;
    }

    .fourth-section h1 {
        font-size: 38px;
        line-height: 55px;
        text-align: left;
        margin-bottom: 25px;
    }

    .accordion-header button {
        font-size: 20px;
        font-weight: 500;
    }
    .fifth-section {
        min-height: 550px;
        height: 100%;
    }
    .fifth-section .row {
        padding: 0 15px;
    }
    .fifth-section h1 {
        font-size: 38px;
        line-height: 55px;
        /* padding: 0px 15px; */
    }
    .fifth-section h1 br {
        display: none;
    }
    footer .right h2::before {
        display: none;
    }

    footer .right h2 {
        font-size: 26px;
        line-height: 55px;
        margin-bottom: 30px;
    }

    /* -----------about page---------------- */
    .container-fluid.ps-0 {
        padding: 0 15px !important;
    }
    .cust-other-page {
        min-height: 100%;
    }
    .cust-other-page .left {
        padding: 20px 15px;
    }
    .container-fluid.cust-other-page .row:first-of-type {
        flex-flow: column-reverse;
    }
    .cust-other-page .left .sliders {
        /* top: -60px;
    left: 48px; */
        max-height: 100%;
        position: static;
    }

    .cust-other-page .left h1 {
        font-size: 42px;
    }

    .cust-other-page .left .sliders p {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .cust-other-page .left .sliders .contact-link {
        margin-bottom: 20px;
    }

    .container-fluid.cust-about-first-section {
        padding: 20px 15px;
    }
    .about-cards .col-md-4 {
        padding: 20px;
    }
    /* #pills-tab .slick-arrow  {
        display: none !important;
    } */
    .cust-about-first-section #pills-tab button {
        width: 80%;
        display: block;
        margin: auto;
    }
    .cust-instruction-page {
        padding: 50px 0;
    }
    .cust-instruction-page h1 {
        font-size: 38px;

    }
    .cust-instruction-page h1 br {
        display: none;
    }

    .cust-steps .col-md-4 .cust-card {
        max-height: 100%;
        overflow-y: hidden;
        padding: 40px 20px;
    }
    .cust-steps .col-md-4 {
        padding: 0 15px;
    }
    .instruction-bottom-section {
        padding: 50px 0 0;
    }
    .instruction-bottom-section h4 {
        font-size: 20px;
        line-height: 30px;
    }
    .cust-packages-page {
        padding: 50px 0;
    }
    .cust-packages-page .col-12 h1 {
        font-size: 38px;
    }
    .contact-banner h1.mt-5 {
        font-size: 38px;
        margin-top: 0 !important ;
        position: absolute;
        bottom: 20px;
    }
    .contact-banner {
        min-height: 300px;
        position: relative;
    }

    .cust-contact-page {
        padding: 50px 0;
    }
    .cust-contact-page h1 {
        font-size: 38px;
        line-height: 55px;
        margin-bottom: 0px;
    }
    .cust-contact-page p {
        margin-bottom: 30px;
    }

    .contact-form .inner-container h1 {
        font-size: 38px;
    }
    .cust-contact-page .contact-form {
        padding: 32px 20px;
    }
    .contact-form .inner-container {
        padding: 0;
    }
    .contact-form .inner-container h1 {
        margin-bottom: 40px;
    }
    .login-page .banner-content {
        display: none;
    }

    .login-page .cust-right-section {
        width: calc(100% - 40px);
        min-height: 70vh;
        max-height: 70vh;

        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        border-radius: 14px;
        padding: 0;
    }
    .login-page .cust-right-section .cust-inner-container {
        text-align: center;
        max-height: 70vh;
        overflow-y: auto;
        padding: 30px 20px;

    }
    .login-page .cust-right-section .cust-inner-container h1 {
        font-size: 38px;
        line-height: 55px;
    }
    .login-page .cust-right-section .cust-inner-container p {
        margin-bottom: 40px;
    }
    .login-page .cust-right-section .cust-inner-container .bottom {
        right: 35px;
    }
    .cust-btn-group-register {
        flex-direction: column;
    }
    .mb-5.d-flex.align-items-center.justify-content-between.cust-btn-group-register {
        margin-bottom: 0 !important;
    }
}

   #toast-container > .toast-success {
        background-color: #043424 !important; /* green */
        color: white !important;
    }

