* ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

* {
    box-sizing: border-box;
    outline: none;
    outline: 0;
}

* h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

* p {
    line-height: 1.6;
    font-size: 15px;
    color: #333;
    font-weight: 400;
}

* a,
a:hover {
    text-decoration: none;
    color: #ea621a;
    transition: all 0.3s ease;
}

* button,
button:active,
button:focus {
    outline: none;
    box-shadow: none;
}

body {
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.4;
    max-width: 100%;
    margin: auto;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    color: #333;
    font-weight: 400;
}

.warp {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

header {
    width: 100%;
    background-color: none;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.596);
}

.header-plane {
    transition: all 0.3s ease-out;
}

.header-shadow {
    background-color: #fff;
    box-shadow: 0 1px 3px rgb(0, 0, 0, 0.2);
    transition: all 0.2s ease-in;
}

button {
    margin-top: 10px;
    margin-right: 20px;
    color: #fff;
    background: #ea621a;
    background: linear-gradient(45deg, #ea621a 60%, #fa9158 100%);
    transition: all .3s;
}

button:hover {
    background: linear-gradient(45deg, #ea621a 60%, #ea621a 100%);
    transition: all .3s;
}

.out-line {
    color: #ea621a;
    background: none;
    border: 1px solid #ea621a;
    margin-top: 12px;
}

.out-line:hover {
    color: #fff;
    background: linear-gradient(45deg, #ea621a 60%, #fa9158 100%);
}

.lead {
    color: #ea621a;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.5;
}

/* TOP NAV *************************************/
.nav {
    height: 65px;
    width: 1100px;
    margin: auto;
    position: relative;
    padding: 6px 10px 50px 10px;
}

/* ON Scroll only *************************************/

.nav>.nav-header {
    display: inline;
}

.nav>.nav-header>.nav-title {
    display: inline-block;
    font-size: 22px;
    color: #333;
    padding: 3px 10px 20px 0px;
}

.nav>.nav-header>.nav-title img {
    max-width: 160px;
    transition: all 0.3s ease;
}

/* ON Scroll only *************************************/
.nav>.nav-header>.nav-title-small img {
    max-width: 160px;
    transition: all 0.3s ease;
}

.nav>.nav-btn {
    display: none;
}

.nav>.nav-links {
    display: inline;
    float: right;
    font-size: 13px;
    margin-top: 5px;
    font-weight: 600;
}

.nav>.nav-links>a {
    display: inline-block;
    padding: 13px 10px 13px 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.nav>.nav-links>a:hover {
    color: #ea621a;
    transition: all 0.3s ease;
}

.nav>.nav-links .active {
    color: #ea621a;
}

.nav>#nav-check {
    display: none;
}


@media (max-width:1100px) {
    .nav {
        width: 100%;
    }

    .nav>.nav-btn {
        display: inline-block;
        position: absolute;
        right: 0px;
        top: 0px;
    }

    .nav>.nav-btn>label {
        display: inline-block;
        width: 65px;
        height: 65px;
        padding: 20px 13px 6px 20px;
    }

    .nav>.nav-btn>label:hover,
    .nav #nav-check:checked~.nav-btn>label {
        background-color: #ea621a;
        cursor: pointer;
    }

    .nav>.nav-btn>label>span {
        display: block;
        width: 25px;
        height: 10px;
        border-top: 2px solid #000;
    }

    .nav>.nav-links {
        position: absolute;
        display: block;
        width: 100%;
        background-color: #333;
        height: 0px;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 58px;
        left: 0px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 18px;
        font-weight: 400;
    }

    .nav>.nav-links>a {
        display: block;
        width: 100%;
        color: #fff;
        border-bottom: 1px solid rgb(255, 255, 255, .07);
    }

    .nav>#nav-check:not(:checked)~.nav-links {
        height: 0px;
    }

    .nav>#nav-check:checked~.nav-links {
        height: calc(100vh - 50px);
        overflow-y: auto;
        padding-top: 20px;
    }

    .nav>.nav-header>.nav-title img {
        max-width: 150px;
    }

    .header-plane {
        transition: all 0.3s ease-out;
        background-color: #fff;
        box-shadow: 0 1px 3px rgb(0, 0, 0, 0.2);
    }
}

/* Hero ***************************************/

.hero {
    margin: 0px auto 15px auto;
    padding: 100px 0 100px 0;
    z-index: 999;
}

.home-banner {
    background-image: url(../../img/hero-bg.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}


.hero .warp {
    display: flex;
    justify-content: space-between;
}

.hero .hero-text {
    max-width: 600px;
}

.hero .hero-text span {
    font-weight: 600;
    opacity: 0.7;
}

.hero .hero-text h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-top: 10px;
}

.hero .hero-text h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.hero .hero-text p {
    max-width: 500px;
}

.hero .hero-text p span {
    font-weight: 400;
    font-size: 15px;
    opacity: 1;
    text-transform: uppercase;
}

.hero .hero-text button {
    margin-top: 10px;
    margin-right: 20px;
    color: #fff;
    background: #ea621a;
    background: linear-gradient(45deg, #ea621a 60%, #fa9158 100%);
}

.hero .hero-text button:hover {
    background: linear-gradient(45deg, #ea621a 60%, #ea621a 100%);
}

.hero .hero-text a {
    text-decoration: underline;
}

.hero .hero-text a:hover {
    text-decoration: none;
}

@media (max-width:800px) {
    .hero {
        padding: 100px 0 80px 0;
    }

    .hero .hero-text h1 {
        font-size: 32px;
        line-height: 1.3;
        margin-top: 10px;
    }

    .hero .hero-text span {
        font-size: 16px;
    }
}


/* About ***************************************/
.about {
    margin: 80px auto;
    box-sizing: content-box;
}

.about .warp {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(500px, 100%), 1fr));
    grid-gap: 60px;
}

.about .about-img img {
    border-radius: 16px;
}

.about .about-text span {
    font-weight: 600;
    opacity: 0.7;
}

.about .about-text h1 {
    font-size: 32px;
}

.about .about-text h4 {
    font-size: 24px;
}

.about .about-text button {
    color: #ea621a;
    background: none;
    border: 1px solid #ea621a;
    margin-top: 12px;
}

.about .about-text button:hover {
    color: #fff;
    background: linear-gradient(45deg, #ea621a 60%, #fa9158 100%);
}

@media only screen and (max-width: 800px) {
    .about .about-text h1 {
        font-size: 26px;
    }

    .about .about-text h4 {
        font-size: 22px;
        margin-top: -35px;
    }
}


/* Services ***************************************/
.services {
    background-color: rgb(243, 243, 243);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
    margin-top: 50px;
    padding-bottom: 140px;
}

.services .section-deader {
    text-align: center;
    max-width: 600px;
    margin: auto;
}

.services .section-deader span {
    font-size: 15px;
    font-weight: 600;
    opacity: .7;
}

.services .section-deader h2 {
    font-size: 32px;
    margin-top: 7px;
}

.services .services-grid {
    max-width: 97%;
    margin: auto;
    overflow: hidden;
}

.services .warp {
    height: 600px;
    position: relative;
}

.services .warp .next {
    position: absolute;
    top: 60%;
    right: -25px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 50px;
    padding: 15px 18px 10px 21px;
    filter: drop-shadow(0px 2px 4px rgb(0, 0, 0, 0.1));
}

.services .warp .prev {
    position: absolute;
    top: 60%;
    left: -22px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 50px;
    padding: 15px 21px 10px 18px;
    filter: drop-shadow(0px 2px 4px rgb(0, 0, 0, 0.1));
}

.service-card {
    border: 1px solid #eee;
    border-radius: 10px;
    background-color: #fff;
    filter: drop-shadow(0px 2px 4px rgb(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    width: 220px;
    margin: 20px 15px;
}

.service-card:hover {
    filter: drop-shadow(0px 0px 4px rgb(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    border: 1px solid rgb(0, 0, 0, 0.17);
    opacity: 1;
    -webkit-animation: flash .3s;
    animation: flash .3s;
}

.service-card-warp img {
    border-radius: 10px 10px 0 0;
}

.service-card-text {
    padding: 5px 15px;
    margin-bottom: 15px;
}

.service-card-text h2 {
    font-size: 17px;
    margin: 15px auto 10px auto;
}

.service-card-text p {
    color: #333;
    margin-top: 8px;
    font-size: 13px;
}

.service-card-text a {
    color: #ea621a;
    font-size: 13px;
}

.services .services-foot {
    display: flex;
    justify-content: center;
}

.services .services-foot button {
    margin-top: 30px;
    color: #fff;
    background: #ea621a;
    background: linear-gradient(45deg, #ea621a 60%, #fa9158 100%);
}

.services .services-foot button:hover {
    background: linear-gradient(45deg, #ea621a 60%, #ea621a 100%);
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding: 0;
    font-size: 6px;
    color: #ddd;
    display: none !important;
}

.slick-dots li {
    border-radius: 50%;
    padding: 0;
    color: #ddd;
    margin: 0 5px;
}

.slick-dots li button {
    padding: 3px 5px;
    border-radius: 50%;
    color: #ddd;
    background: #ddd !important;
    outline: none;
}


@media only screen and (max-width: 1150px) {
    .services .warp .next {
        right: 10px;
        z-index: 999;
    }

    .services .warp .prev {
        left: 10px;
        z-index: 999;
    }
}

@media only screen and (max-width: 520px) {
    .service-card {
        margin: 20px 7px;
        border-radius: 6px;
    }

    .service-card-text p {
        display: none;
    }

    .service-card-warp img {
        border-radius: 6px 6px 0 0;
    }

    .slick-dots {
        display: flex !important;
    }

    .services .warp .prev {
        display: none !important;
    }

    .services .warp .next {
        display: none !important;
    }

}

@media only screen and (max-width: 800px) {
    .services {
        padding-bottom: 70px;
    }
}

/* Process ***************************************/
.process {
    padding: 40px 0 20px 0;
}

.process .section-deader {
    text-align: center;
    max-width: 600px;
    margin: auto;
}

.process .section-deader span {
    font-size: 15px;
    font-weight: 600;
    opacity: .7;
}

.process .section-deader h2 {
    font-size: 32px;
    margin-top: 7px;
}

@media only screen and (max-width: 800px) {
    .process .section-deader h2 {
        font-size: 26px;
    }
}

.process .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 45px;
    margin-top: 60px;
}

.process-warp {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.process-warp .process-icon {
    display: flex;
    justify-content: center;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ea621a 60%, #fa9158 100%);
    padding: 10px;
    margin: auto;
}

.process-warp .process-icon img {
    padding: 15px;
}

.process-text {
    padding: 5px 15px;
    margin-bottom: 15px;
    text-align: center;
    margin-top: 20px;
}

.process-text p {
    color: #333;
    margin-top: 8px;
    font-size: 14px;
}

/* Pricing ***************************************/
.pricing {
    padding: 15px 0 20px 0;
}

.pricing .section-deader {
    text-align: center;
    max-width: 600px;
    margin: auto;
}

.pricing .section-deader span {
    font-size: 15px;
    font-weight: 600;
    opacity: .7;
}

.pricing .section-deader h2 {
    font-size: 32px;
    margin-top: 7px;
}

.pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 45px;
    margin-top: 60px;
}

.pricing .pricing-card {
    border: 1px solid rgb(0, 0, 0, 0.06);
    border-radius: 15px;
    padding: 30px 15px 10px 15px;
    background-color: #fcfcfc;
    filter: drop-shadow(0px 2px 4px rgb(0, 0, 0, 0.07));
}

.pricing-warp {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.pricing-warp .pricing-icon {
    display: flex;
    justify-content: center;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ea621a 60%, #fa9158 100%);
    padding: 20px;
    margin: auto;
}

.pricing-warp .pricing-icon img {
    max-width: 80%;
}

.pricing-text {
    padding: 5px 15px;
    margin-bottom: 15px;
    text-align: center;
    margin-top: 20px;
}

.pricing-text p {
    color: #333;
    margin-top: 8px;
    font-size: 14px;
}

/* BooK Now ***************************************/
.book-now {
    margin: 0px auto 100px auto;
    padding: 0 20px;
}

.book-now .warp {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(430px, 100%), 1fr));
    grid-gap: 75px;
    background-image: url(../../img/feature-img-01.png);
    background-size: cover;
    border-radius: 16px;
    padding: 45px 60px;
    border: 0px solid #eee;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.book-now .book-now-text span {
    font-weight: 600;
    opacity: 0.7;
}

.book-now .book-now-text h1 {
    font-size: 24px;
    margin-bottom: 30px;
}

.book-now .book-now-text ul li {
    position: relative;
    margin-bottom: 25px;
    max-width: 420px;
}

.book-now .book-now-text ul li p {
    padding-left: 60px;
}

.book-now .book-now-text ul li span {
    position: absolute;
    font-size: 34px;
    line-height: 38px;
    color: #ea621a;
    opacity: 1;
}

@media (max-width:800px) {
    .book-now .warp {
        background-position-x: left -260px;
        padding: 35px 30px;
    }

    .book-now .book-now-text h1 {
        font-size: 26px;
    }

}


/* BooK Now ***************************************/
.apply-now {
    margin: 45px auto 0 auto;
    padding: 0 20px;
}

.apply-now .warp {
    background-image: url(../../img/apply-now.png);
    background-size: cover;
    border-radius: 16px;
    padding: 30px 45px;
    border: 0px solid #eee;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.apply-now .apply-now-text {
    max-width: 500px;
}

.apply-now .apply-now-text span {
    font-weight: 600;
    opacity: 0.7;
}

.apply-now .apply-now-text h1 {
    font-size: 24px;
    margin-bottom: 15px;
}

@media (max-width:800px) {
    .apply-now .warp {
        background-image: none;
        background-position-x: left -260px;
        padding: 35px 30px;
    }

    .apply-now .apply-now-text h1 {
        font-size: 26px;
    }

}

/* SUB PAGES ***************************************/

.sub-page .hero {
    padding: 120px 0 60px 0;
}

.subpage-banner {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.about-banner {background-image: url(../../img/about-banner.png);}
.services-banner {background-image: url(../../img/services-banner.png);}
.workshop-banner {background-image: url(../../img/workshop-banner.png);}
.gallery-banner {background-image: url(../../img/gallery-banner.png?v=1.01);}
.career-banner {background-image: url(../../img/career-banner.png);}
.contact-banner {background-image: url(../../img/about-banner.png);}

.about-banner {
    background-image: url(../../img/about-banner.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.sub-page .hero h3 {
    max-width: 450px;
    margin-top: 15px;
    opacity: .7;
}

.sub-page .action {
    text-align: center;
    background-color: rgb(238, 238, 238, .6);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    margin: 100px auto;
    max-width: 1100px;
    padding: 45px 30px;
    border-radius: 16px;

}

.sub-page .action .warp {
    max-width: 700px;
}

.sub-page .action .warp .link {
    margin-top: 40px;
}

.sub-page .action h3 {
    font-size: 32px;
}

.sub-page .list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 10px;
}

.sub-page .list li {
    padding: 6px 0 9px 0;
    border-bottom: 1px solid #ddd;
}

@media (max-width:1100px) {
    .sub-page .action {
        border-radius: 0px;
        border: none;
        margin: 60px auto 0px auto;
        box-shadow: none;
    }
}

@media (max-width:800px) {
    .sub-page .action h3 {
        font-size: 26px;
    }

    .sub-page .hero {
        padding: 100px 0 60px 0;
    }

    .sub-page .hero h1 {
        font-size: 26px;
    }

    .sub-page .hero h3 {
        font-size: 15px;
    }
}

/* CONTACT US ***********************************/
.sub-page .c-form {
    text-align: center;
    margin: 40px auto 100px auto;
    max-width: 800px;
    padding: 0 20px;
}

.sub-page .c-form .warp {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    background-color: rgb(238, 238, 238, 0.2);
}

.sub-page .c-form input,
textarea {
    width: 100%;
    margin-top: 20px;
    border: 1px solid #ddd;
}

.sub-page .c-form input:focus,
textarea:focus {
    box-shadow: 0 0 0 2px #ea621a;
}

.sub-page .c-form input[type='submit'] {
    max-width: 200px;
    margin-top: 0px;
    background-color: #ea621a;
    border: none;
    color: #fff;
}

.sub-page .c-text {
    max-width: 760px;
    margin: auto;
    text-align: center;
    margin-top: 80px;
    padding: 0 20px;
}

.sub-page .c-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.sub-page .c-link div {
    display: flex;
    justify-content: start;
    margin-right: 25px;
}

.sub-page .c-link div .c-icon {
    display: flex;
    justify-content: center;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    background: linear-gradient(45deg, #ea621a 60%, #fa9158 100%);
    padding: 8px;
    margin: auto 15px auto 0;
}

.sub-page .c-link div .c-icon img {
    max-width: 100%;
}

@media (max-width:800px) {
    .sub-page .c-form {
        text-align: left;
    }

    .sub-page .c-text {
        text-align: left;
    }

    .sub-page .c-link {
        justify-content: left;
    }
}

/* ABOUT PAGE *************************************/

.about-page .about img {
    border-radius: 16px;

}

.about-page .about .warp {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(500px, 100%), 1fr));
    grid-gap: 45px 60px;
}

.warp-sub {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(500px, 100%), 1fr));
    grid-gap: 0 60px;
}

.about-page .about .warp-sub {}

@media (max-width:800px) {
    .about-page .about {
        margin-top: 20px;
    }

    .about-page .about .warp {
        grid-gap: 15px;
    }

    .about-page .about .warp-sub {}

    .sub-page .m-margin {
        margin-top: -60px;
    }

}

/* SERVICE PAGE *************************************/

.service-page .hero {
    background-image: url(../../img/pricing-page-banner.png);
}

.service-page .section-head {
    margin-top: 50px;
    margin-bottom: -50px;
}

.service-page .section-head h2 {
    max-width: 500px;
    font-size: 34px;
}

@media (max-width:800px) {
    .service-page .section-head {
        margin-bottom: -30px;
    }

    .service-page .m-fix {
        padding-bottom: 80px;
        margin-top: -40px;
    }
}

/* Mission **/
.mission {
    margin: auto;
    box-sizing: content-box;
}

.mission .warp {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(480px, 100%), 1fr));
    grid-gap: 45px 60px;
    text-align: center;
}

.mission .warp .mission-warp {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;

}

.mission-warp {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.mission-warp .mission-icon {
    display: flex;
    justify-content: center;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #ea621a 60%, #fa9158 100%);
    padding: 15px;
    margin: auto;
}

.mission-warp .mission-icon img {
    max-width: 80%;
}

.mission .warp h3 {
    font-size: 32px;
}

@media (max-width:800px) {
    .mission {
        margin: 30px auto;
    }
}

/* SERVICE PAGE *********************************/
.service-col .warp {
    margin-top: -40px;

}

.service-col .service-lr img,
.service-rl img {
    border-radius: 16px;
}

.service-col .service-lr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
        "lr-l lr-r";
    gap: 8%;
    margin-top: 100px;
}

.lr-l {
    grid-area: lr-l;
}

.lr-r {
    grid-area: lr-r;
}

.service-col .service-rl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
        "rl-r rl-l";
    gap: 8%;
    margin-top: 100px;
}

.rl-l {
    grid-area: rl-l;
}

.rl-r {
    grid-area: rl-r;
}


.service-page .process {
    margin-top: 60px;
    margin-bottom: -60px;
}

.logo-slider-container {
    max-width: 1100px;
    margin: auto;
}

.logo-slider-container h2 {
    text-align: center;
    margin: 60px auto;
}

.logo-slider {
    padding: 15px 15px 15px 60px;
}

.logo-slider img {
    max-width: 80px;
    border-radius: 50%;
}

@media only screen and (max-width: 800px) {
    .service-col .service-lr {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas:
            "lr-l"
            "lr-r";
        gap: 4%;
        margin-top: 60px;
        border: 1px solid #eee;
        padding: 25px 15px 30px 15px;
        border-radius: 16px;
    }

    .service-col .service-rl {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas:
            "rl-l"
            "rl-r";
        gap: 5%;
        justify-self: center;
        margin-top: 60px;
        border: 1px solid #eee;
        padding: 25px 15px 30px 15px;
        border-radius: 16px;
    }

}


/* Footer ***************************************/
footer {
    background-color: #111;
    color: #fff;
    font-weight: 300;
}

footer ul li a {
    text-decoration: none;
    font-weight: 300;
}

footer p {
    font-size: 14px;
    opacity: .5;
    color: #fff;
    font-weight: 300;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

footer a:hover {
    opacity: 0.7;
    color: #fff;
}

footer .foot-col {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 45px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 45px;
    border-bottom: 1px solid #222;
}

footer .foot-col h4 {
    color: #fff;
    font-size: 18px;
}

footer .foot-col p {
    font-size: 15px;
    opacity: 0.9;
}

footer .foot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 13px;
    font-size: 15px;
}

footer .foot-col ul li {
    border-bottom: 1px solid #222;
    padding: 3px 0 8px 0;
}

footer .foot-col ul li a:hover {
    color: #fc6e22;
}

.foot-note {
    font-size: 12px;
    color: #999;
}

.location_link::before {
    content: "🌍";
    margin-right: 5px;
}


@-webkit-keyframes flash {
    0% {
        opacity: .7;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flash {
    0% {
        opacity: .7;
    }

    100% {
        opacity: 1;
    }
}

#parallax {
    position: relative;
    width: 100%;
    height: auto;
    background-image: url(../../img/para-bg.png), url(), url();
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90%;
}

.sub-page #parallax {
    background-size: 90%;
}

@media (max-width:800px) {
    #parallax {
        background-image: none;
    }
}

.foot-col .footer-social-icons ul {
    display: flex;
    flex-direction: row;
    gap: 25px;
    margin-top: 35px;
}

.foot-col .footer-social-icons ul li img {
    max-width: 20px;
}

.gallery {
    margin-bottom: 80px;
}

.gallery .section_heading h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.section_photo {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 15px;
}

.section_photo a {
    flex: 0 0 calc(33.33% - 10px);
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

.section_photo img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

@media screen and (max-width: 768px) {
    .section_photo a {
        flex: 0 0 calc(50% - 10px);
        /* Two items per row with margin */
    }
}

@media screen and (max-width: 480px) {
    .section_photo a {
        flex: 0 0 100%;
        /* Single item per row */
    }
}

.alert {
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 7px;
    font-size: 12px;
}

.alert-success {
    color: green;
}

.alert-error {
    color: red;
}

.captcha-image {
    display: flex;
    margin-top: 15px;
    margin-bottom: 0;
}

#regenerate_captcha {
    color: #777;
    display: flex;
    margin-top: 7px;
    margin-bottom: 30px;
    font-size: 11px;
}

#regenerate_captcha:hover {
    color: #222;
}