html {
    overflow-x: hidden;
}

html {
    font-size: 12px;
}

@media screen and (min-width: 200px) {
    html {
        font-size: calc(12px + 5 * (100vw - 200px) / 1240);
    }
}

@media screen and (min-width: 1440px) {
    html {
        font-size: 17px;
    }
}

body {
    direction: rtl;
    font-family: "Almarai", sans-serif;
    font-optical-sizing: auto;
}

a {
    color: skyblue;
}

*:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(21, 156, 228, 0.4);
}

.green {
    color: #056F52;
}

.page-header {
    position: relative;
    padding-top: 20vh;
    background-image: url(../assets/img1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.page-header>* {
    position: relative;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(107.54deg, rgba(4, 114, 84, 0.9) 0%, rgba(0, 13, 10, 0.9) 101.72%);
}

.page-header .container {
    padding: 5rem 2rem;
    text-align: center;
}

.page-header .container h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFF;
}

.page-header .route {
    padding: 3rem 2rem;
    margin: 0;
    display: flex;
    list-style: none;
    font-size: 1.25rem;
}

.page-header .route li {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
}

.page-header .route li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.page-header .route li a:hover {
    color: #FFF;
}

.page-header .route li.current {
    color: #FFF;
    font-weight: 700;
    text-decoration: underline;
}

.page-header .route li::after {
    content: "\ea4d";
    font-family: "boxicons";
    font-size: 1.25em;
}

.page-header .route li:last-child::after {
    display: none;
}

@media screen and (max-width: 767px) {
    section {
        padding: 5rem 2rem;
    }
}

@media screen and (min-width: 768px) {
    section {
        padding: 5rem;
    }
}

.section-header {
    text-align: center;
    padding-bottom: 3rem;
}

.heading {
    font-size: 3rem;
    font-weight: 700;
}

.description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.description.dark {
    color: rgba(0, 0, 0, 0.6);
}

.btn {
    display: inline-block;
    outline: none;
    font-weight: 700;
    margin: 0 0 0 0.25rem;
    text-decoration: none;
    text-align: center;
    border-radius: 0.5rem;
    transition: 0.4s;
}

@media screen and (max-width: 767px) {
    .btn {
        padding: 1rem;
    }
}

@media screen and (min-width: 768px) {
    .btn {
        padding: 0.65rem 1rem;
    }
}

.btn-green {
    background-color: #056F52;
    border: 1px solid #056F52;
    color: #FFF !important;
    fill: #FFF;
}

.btn-green:hover,
.btn-green:focus {
    background-color: #034d39;
    border-color: #034d39;
}

.btn-light-green {
    background-color: rgba(5, 111, 82, 0.12);
    border: 1px solid rgba(5, 111, 82, 0.12);
    color: #056F52 !important;
    fill: #056F52;
}

.btn-light-green:hover,
.btn-light-green:focus {
    background-color: rgba(3, 77, 57, 0.12);
    border-color: rgba(3, 77, 57, 0.12);
}

.btn-white {
    background-color: #FFF;
    border: 1px solid #FFF;
    color: #056F52 !important;
    fill: #056F52;
}

.btn-white:hover,
.btn-white:focus {
    background-color: #ededed;
    border-color: #ededed;
}

.sr-only {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    /* 1 */
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    /* 2 */
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
    /* 3 */
}

#navbar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF;
}

#navbar .logo {
    margin: 0;
}

#navbar .logo img {
    width: 100%;
}

#navbar .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

#navbar .nav-menu .nav-item {
    text-align: center;
}

#navbar .nav-menu .nav-item a {
    position: relative;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

#navbar .nav-menu .nav-item a::after {
    content: "";
    display: block;
    width: 0;
    border-radius: 1rem;
    margin-top: 0.5rem;
    margin: 0.5rem auto 0 auto;
    background-color: #056F52;
    transition: width 0.3s;
}

#navbar .nav-menu .nav-item:last-child {
    border-left: none;
}

#navbar .nav-menu .nav-item.current {
    font-weight: 700;
}

#navbar .nav-menu .nav-item.current a,
#navbar .nav-menu .nav-item:hover a {
    color: #056F52;
}

#navbar .nav-menu .nav-item.current a::after,
#navbar .nav-menu .nav-item:hover a::after {
    width: 50%;
    height: 2px;
}

#navbar .social {
    display: flex;
}

#navbar .social a {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.5rem;
    border-radius: 50%;
    border: 1px solid rgba(5, 111, 82, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #056F52;
    text-decoration: none;
    transition: 0.3s;
}

#navbar .social a:hover {
    background-color: rgba(5, 111, 82, 0.08);
}

@media screen and (max-width: 767px) {
    #navbar {
        padding: 1rem;
        flex-wrap: wrap;
    }

    #navbar .logo {
        width: min(85%, 100px);
    }

    #navbar .toggle-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 22px;
        width: 22px;
        cursor: pointer;
    }

    #navbar .toggle-btn span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #056F52;
        transition: all 0.6s ease-in-out;
    }

    #navbar .nav-menu,
    #navbar .social {
        width: 100%;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.6s ease-in-out;
    }

    #navbar .nav-menu li {
        margin: 2rem 0;
        text-align: center;
    }

    #navbar .social {
        text-align: center;
        justify-content: center;
    }

    #navbar #toggleExpand:checked~.nav-menu,
    #navbar #toggleExpand:checked~.social {
        max-height: 150vh;
    }

    #navbar #toggleExpand:checked~.toggle-btn span:nth-of-type(1) {
        transform: rotate(-45deg);
        transform-origin: top right;
        width: 28px;
    }

    #navbar #toggleExpand:checked~.toggle-btn span:nth-of-type(2) {
        transform-origin: center;
        width: 0;
    }

    #navbar #toggleExpand:checked~.toggle-btn span:nth-of-type(3) {
        transform: rotate(45deg);
        transform-origin: bottom right;
        width: 28px;
    }
}

@media screen and (min-width: 768px) {
    #navbar .logo {
        width: max(10%, 100px);
    }

    #navbar .nav-menu {
        width: 60%;
        display: flex;
        align-items: center;
    }

    #navbar .nav-menu .nav-item {
        border-left: 1px solid rgba(5, 111, 82, 0.2);
        width: calc(min(100%, 600px) / 4);
    }
}

#hero {
    min-height: 100vh;
    position: relative;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(107.54deg, rgba(4, 114, 84, 0.8) 0%, rgba(0, 13, 10, 0.8) 101.72%);
}

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

#hero .content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 700px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding-bottom: 5rem;
    color: #FFF;
}

#hero .content h2 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

#hero .content h3 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

@media screen and (min-width: 1200px) {
    #hero .content h3 {
        font-size: 3.25rem;
    }
}

#hero .content .description {
    margin-bottom: 2rem;
}

#about {
    position: relative;
    background: linear-gradient(97.07deg, #089A72 1.52%, #022E22 99.68%);
}

#about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/pattern.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.02;
}

#about .section-header {
    position: relative;
    text-align: center;
    z-index: 1;
}

#about .section-header h2 {
    color: #FFF;
}

#about .content {
    position: relative;
    z-index: 1;
}

#about .content>* {
    border-radius: 1rem;
}

#about .content .thumbnail {
    min-height: 40vh;
    background-image: url(../assets/img1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#about .content .body {
    background-color: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1607843137);
}

#about .content .body p {
    font-weight: 700;
}

#about .content::after {
    content: "\ebbe";
    font-family: "boxicons";
    position: absolute;
    display: block;
    padding: 1rem 2rem;
    border-radius: 1rem;
    color: #FFF;
    background-color: #056F52;
    font-size: 2.8rem;
}

#about::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #FFF;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


@media screen and (max-width: 767px) {
    #about .content {
        display: flex;
        flex-direction: column-reverse;
    }

    #about .content>* {
        width: 100%;
        margin: 1rem 0;
    }

    #about .content .body {
        padding: 2rem;
    }

    #about .content::after {
        bottom: calc(40vh + 2rem);
        left: 1rem;
        transform: translateY(50%);
    }
}

@media screen and (min-width: 768px) {
    #about .content {
        display: flex;
        justify-content: space-between;
    }

    #about .content .thumbnail {
        width: 35%;
    }

    #about .content .body {
        padding: 2rem 4rem;
        width: 63%;
    }

    #about .content::after {
        bottom: 50%;
        left: 64%;
        transform: translate(-50%, 50%);
    }
}

#services {
    background-color: rgba(5, 111, 82, 0.08);
}

#services .content .card {
    position: relative;
    text-align: center;
}

#services .content .card .thumbnail {
    margin: 0 auto 1.25rem auto;
    width: 12rem;
    height: 12rem;
    padding: 0.5rem;
    border-radius: 50%;
    border: 1px dashed rgba(5, 111, 82, 0.2);
}

#services .content .card .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

#services .content .card h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

#services .content .card p {
    color: rgba(0, 0, 0, 0.6);
}

#services .content .action {
    padding-top: 2rem;
    text-align: center;
}

@media screen and (max-width: 1199px) {
    #services .content .action .btn {
        width: 100%;
    }
}

@media screen and (min-width: 1200px) {
    #services .content .row {
        display: flex;
        justify-content: space-between;
    }

    #services .content .row .card {
        width: calc((100% - 9rem) / 4);
    }

    #services .content .row .card::after {
        content: "";
        position: absolute;
        top: 6rem;
        left: -3.5rem;
        width: 4rem;
        height: 2rem;
        transform: translate(0, -50%);
        background-image: url(../assets/arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    #services .content .row .card:last-child::after {
        display: none;
    }
}

#testimonials {
    padding: 5rem 0;
    background: linear-gradient(95.22deg, rgba(5, 111, 82, 0.89) 0%, #000000 100.62%);
}

#testimonials .section-header .heading {
    color: #FFF;
}

#testimonials .content .swiper {
    padding: 3rem 2rem;
}

#testimonials .content .swiper .swiper-wrapper .swiper-slide {
    height: auto;
}

#testimonials .content .swiper .swiper-wrapper .swiper-slide .testimonial {
    height: 100%;
    background-color: #FFF;
    padding: 2rem 1rem;
    border-radius: 1rem;
}

#testimonials .content .swiper .swiper-wrapper .swiper-slide .testimonial .rating {
    color: #FBA333;
    text-align: center;
    font-size: 1.5rem;
}

#testimonials .content .swiper .swiper-wrapper .swiper-slide .testimonial .details {
    text-align: center;
    padding: 0.5rem 0 2rem 0;
    color: rgba(0, 0, 0, 0.6);
}

#testimonials .content .swiper .swiper-wrapper .swiper-slide .testimonial .author {
    text-align: center;
}

#testimonials .content .swiper .swiper-wrapper .swiper-slide .testimonial .author .author-photo {
    width: 5.5rem;
    height: 5.5rem;
    margin: 0 auto 1.25rem auto;
    border-radius: 50%;
    overflow: hidden;
}

#testimonials .content .swiper .swiper-wrapper .swiper-slide .testimonial .author .author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#testimonials .content .swiper .swiper-wrapper .swiper-slide .testimonial .author h5 {
    font-weight: 700;
    font-size: 1.25rem;
}

#testimonials .content .swiper .swiper-wrapper .swiper-slide .testimonial .author::after {
    content: "\ee81";
    font-family: "boxicons";
    color: #056F52;
    font-size: 1.75rem;
}

#testimonials .content .swiper .btns {
    margin-top: 5rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

#testimonials .content .swiper .btns .swiper-button-next,
#testimonials .content .swiper .btns .swiper-button-prev {
    position: static;
    margin-top: 0.75rem;
    margin-right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#testimonials .content .swiper .btns .swiper-button-next::after,
#testimonials .content .swiper .btns .swiper-button-prev::after {
    content: "";
}

#testimonials .content .swiper .btns .swiper-button-next {
    color: #056F52;
    background-color: #FFF;
}

#testimonials .content .swiper .btns .swiper-button-next::before {
    font-family: "boxicons";
    content: "\eb33";
}

#testimonials .content .swiper .btns .swiper-button-prev {
    color: #FFF;
}

#testimonials .content .swiper .btns .swiper-button-prev::before {
    font-family: "boxicons";
    content: "\ebe6";
}

#features .content .row .card {
    text-align: center;
}

#features .content .row .card .icon {
    height: 11rem;
    padding: 2.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(5, 111, 82, 0.08);
}

#features .content .row .card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#features .content .row .card h3 {
    direction: ltr;
    font-size: 2.5rem;
    font-weight: 700;
}

#features .content .row .card p {
    color: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 767px) {
    #features .content .row .card {
        margin: 2rem 0;
    }

    #features .content .row .card .icon {
        width: min(100%, 180px);
        margin: 0 auto 1.25rem auto;
    }
}

@media screen and (min-width: 768px) {
    #features .content .row {
        display: flex;
        justify-content: space-between;
    }

    #features .content .row .card {
        width: 18%;
    }
}

#partners {
    background: linear-gradient(95.22deg, rgba(5, 111, 82, 0.89) 0%, #000000 100.62%);
}

#partners .section-header .heading {
    color: #FFF;
}

#partners .section-header .heading .green {
    color: #1CC193;
}

#partners .content {
    position: relative;
}

#partners .content .swiper {
    padding: 3rem 0;
    overflow: hidden;
}

#partners .content .swiper .swiper-wrapper .swiper-slide {
    height: auto;
}

#partners .content .swiper .swiper-wrapper .swiper-slide .card {
    height: 100%;
    border-radius: 0.5rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.07);
    color: #FFF;
    overflow: hidden;
    user-select: none;
}

#partners .content .swiper .swiper-wrapper .swiper-slide .card .thumbnail {
    height: 35vh;
    background-color: #FFF;
}

#partners .content .swiper .swiper-wrapper .swiper-slide .card .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#partners .content .swiper .swiper-wrapper .swiper-slide .card h3 {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 2rem;
}

#partners .content .swiper .swiper-pagination-bullet {
    width: 2.25rem;
    border-radius: 1rem;
    background-color: #FFF;
    transition: 0.3s;
    opacity: 1;
}

#partners .content .swiper .swiper-pagination-bullet-active {
    width: 1rem;
    background-color: #056F52;
}

#partners .content .partners-swiper-button-next,
#partners .content .partners-swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FFF;
    background-color: rgba(5, 111, 82, 0.89);
    border-radius: 50%;
    padding: 0.5rem;
    margin: 0;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#partners .content .partners-swiper-button-next:hover,
#partners .content .partners-swiper-button-prev:hover {
    background-color: #056F52;
}

#partners .content .partners-swiper-button-next::after,
#partners .content .partners-swiper-button-prev::after {
    content: "";
}

#partners .content .partners-swiper-button-next::before,
#partners .content .partners-swiper-button-prev::before {
    display: block;
}

#partners .content .partners-swiper-button-next {
    left: -4rem;
}

#partners .content .partners-swiper-button-next::before {
    font-family: "boxicons";
    content: "\eb33";
}

#partners .content .partners-swiper-button-prev {
    right: -4rem;
}

#partners .content .partners-swiper-button-prev::before {
    font-family: "boxicons";
    content: "\ebe6";
}

@media screen and (max-width: 767px) {
    #partners .content .partners-swiper-button-next {
        left: 0.5rem;
    }

    #partners .content .partners-swiper-button-prev {
        right: 0.5rem;
    }
}

#contact {
    background-color: #EBF3F1;
}

#contact .section-header .tag {
    display: inline-block;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    border-radius: 15rem;
    font-size: 1rem;
    font-weight: 700;
    background-color: #FFF;
    color: #056F52;
}

#contact .section-header .phone {
    margin-top: 3.5rem;
    display: flex;
    text-align: right;
}

#contact .section-header .phone .icon {
    margin-left: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #056F52;
}

#contact .section-header .phone .details h4 {
    font-weight: 700;
    font-size: 1.75rem;
}

#contact .section-header .phone .details p {
    direction: ltr;
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.15rem;
}

#contact .section-header .phone .details p a {
    color: inherit;
    text-decoration: none;
}

#contact .content {
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    background-color: #056F52;
    background-image: url(../assets/pattern2.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #FFF;
}

#contact .content h4 {
    font-weight: 700;
    font-size: 2rem;
}

#contact .content .form-layout {
    padding: 1rem 0;
}

#contact .content .form-layout .form-field {
    margin: 1rem 0;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: row-reverse;
    background-color: #FFF;
}

#contact .content .form-layout .form-field label {
    color: rgba(0, 0, 0, 0.4);
    padding: 0.5rem;
}

#contact .content .form-layout .form-field :last-child {
    direction: rtl;
    border: none;
    border-radius: 0.75rem;
    padding: 0.5rem;
    flex-grow: 1;
}

#contact .content .form-layout .form-field textarea {
    min-height: 35vh;
}

@media screen and (max-width: 767px) {
    #contact .section-header .phone {
        justify-content: center;
    }
}

@media screen and (min-width: 768px) {
    #contact {
        display: flex;
        align-items: center;
    }

    #contact .section-header {
        width: 48%;
        text-align: right;
    }

    #contact .section-header h2 {
        font-size: 2.5rem;
    }

    #contact .content {
        width: 50%;
    }
}

#info {
    padding: auto;
}

#info .content .thumbnail {
    position: relative;
    height: 50vh;
    border-radius: 1.25rem;
    border: 2px dashed rgba(5, 111, 82, 0.5);
}

#info .content .thumbnail img:first-child {
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    object-fit: cover;
    transform: translate(1rem, 1rem);
}

#info .content .thumbnail img:nth-child(2) {
    position: absolute;
    bottom: -6rem;
    right: 0;
    width: 50%;
    height: 55%;
    border-radius: 0.75rem;
    object-fit: cover;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

#info .content .thumbnail img:last-child {
    position: absolute;
    bottom: -3rem;
    left: 25%;
    width: 30%;
    height: 35%;
    border-radius: 0.5rem;
    object-fit: cover;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

#info .content .body .tab-view {
    padding: 0 1rem;
    border-radius: 1.25rem;
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.1098039216);
}

#info .content .body .tab-view .tabs {
    display: flex;
    justify-content: space-evenly;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

#info .content .body .tab-view .tabs .tab {
    padding-top: 1.5rem;
    padding-bottom: 0.85rem;
    width: 27%;
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
    font-weight: 700;
    cursor: pointer;
}

#info .content .body .tab-view .tab-contents {
    padding: 1.5rem 0;
}

#info .content .body .tab-view .tab-contents .tab-content {
    display: none;
}

#info .content .body .tab-view input[id=tab1]:checked~.tabs .tab[for=tab1] {
    color: #056F52;
    border-bottom: 2px solid #056F52;
}

#info .content .body .tab-view input[id=tab1]:checked~.tab-contents .tab-content[data-tab="1"] {
    display: block;
}

#info .content .body .tab-view input[id=tab2]:checked~.tabs .tab[for=tab2] {
    color: #056F52;
    border-bottom: 2px solid #056F52;
}

#info .content .body .tab-view input[id=tab2]:checked~.tab-contents .tab-content[data-tab="2"] {
    display: block;
}

#info .content .body .tab-view input[id=tab3]:checked~.tabs .tab[for=tab3] {
    color: #056F52;
    border-bottom: 2px solid #056F52;
}

#info .content .body .tab-view input[id=tab3]:checked~.tab-contents .tab-content[data-tab="3"] {
    display: block;
}

@media screen and (max-width: 767px) {
    #info .content .thumbnail {
        margin-right: 1rem;
        margin-bottom: 3rem;
    }

    #info .content .thumbnail img:nth-child(2),
    #info .content .thumbnail img:nth-child(3) {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    #info .content {
        margin-bottom: 6.5rem;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    #info .content .thumbnail {
        width: 46%;
        margin-bottom: 1rem;
    }

    #info .content .body {
        width: 50%;
    }
}

#gallery {
    background-color: rgba(5, 111, 82, 0.08);
}

#gallery .content .gg-container .gg-box#gridGallery {
    --gap-length: 7px;
}

#gallery .content .gg-container .gg-box#gridGallery img {
    border-radius: 0.5rem;
}

#reachUs .content .card {
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid #056F52;
    margin: 1rem 0;
    text-align: center;
}

#reachUs .content .card:first-child {
    background-color: #056F52;
    color: #FFF;
}

#reachUs .content .card:first-child h4::after {
    background-color: rgba(255, 255, 255, 0.3);
}

#reachUs .content .card .icon {
    width: min(6rem, 70%);
    height: 6rem;
    margin: 0 auto;
}

#reachUs .content .card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#reachUs .content .card h4 {
    padding: 2rem 0 1rem 0;
    font-size: 2rem;
    font-weight: 700;
}

#reachUs .content .card h4::after {
    content: "";
    display: block;
    width: min(10rem, 70%);
    height: 1px;
    margin: auto;
    margin-top: 1rem;
    background-color: rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 768px) {
    #reachUs .content .row {
        display: flex;
        justify-content: space-between;
    }

    #reachUs .content .row .card {
        width: 48%;
    }
}

#newsletter .container {
    padding: 3rem;
    border-radius: 1.25rem;
    background-color: #EBF3F1;
}

#newsletter .container .section-header .heading {
    font-size: 2.5rem;
}

#newsletter .container .content {
    width: min(100%, 500px);
    margin: auto;
}

#newsletter .container .content .form-layout .form-field {
    border-radius: 0.5rem;
    display: flex;
    background-color: #FFF;
}

#newsletter .container .content .form-layout .form-field label {
    padding: 0.65rem;
    color: rgba(0, 0, 0, 0.3);
}

#newsletter .container .content .form-layout .form-field :last-child {
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 0.5rem;
    flex-grow: 1;
}

#newsletter .container .content .form-layout .form-action>* {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 575px) {
    #newsletter .content .form-layout>* {
        margin: 1rem 0;
    }
}

@media screen and (min-width: 576px) {
    #newsletter .container .content .form-layout {
        display: flex;
        justify-content: space-between;
    }

    #newsletter .container .content .form-layout .form-field {
        width: 75%;
    }

    #newsletter .container .content .form-layout .form-action {
        width: 23%;
    }
}

#footer {
    padding: 4rem 2rem 0 2rem;
    color: #FFF;
    background: linear-gradient(95.22deg, rgba(5, 111, 82, 0.89) 0%, #000000 100.62%);
    text-align: center;
}

#footer .logo {
    margin-bottom: 2.5rem;
}

#footer .logo img {
    width: min(80%, 125px);
}

#footer .website-description {
    width: min(100%, 500px);
    margin: 0 auto 2.5rem auto;
}

#footer .social {
    display: flex;
    justify-content: center;
    padding-bottom: 3rem;
}

#footer .social a {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: 0.3s;
}

#footer .social a:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

#footer .copy {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 0;
}

#footer .copy a {
    text-decoration: none;
    color: #3F9457;
}

/*# sourceMappingURL=styles.css.map */
