h1,
h2,
h3,
h4,
h5,
h6 {
    cursor: inherit;
    color: var(--primary-color);
}

p {
    cursor: inherit;
    color: color(--text-color);
}

.main.row {
    --bs-gutter-x: 0rem !important;
}

.internal-body{
    padding-top:80px;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a:link {
    text-decoration: none;
    color: inherit;
    cursor: pointer !important;
}

a:visited {
    text-decoration: none;
    color: inherit;
    cursor: pointer !important;
}

a.item {
    color: #1e4356;
}
    a.item:hover {
        color: #68A4C4;
    }
a:not([href]) {
    color: inherit !important;
    text-decoration: none !important;
    cursor: default !important;
}
    a:not([href]):hover {
        color: black !important;
        text-decoration: none !important;
        cursor: default !important;
    }

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

.language-toggle-button {
    cursor: pointer;
    background-color: #ddeefc;
    border-radius: 50px;
    padding: 5px 10px 5px 10px;
    width: auto;
}

.language-toggle-button-text {
    display: inline;
    padding: 0 0.3rem
}



#about .about-col {
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

    #about .about-item {
        height: min-content;
    }

    #about .about-col .img {
        position: relative;
    }

        #about .about-col .img img {
            border-radius: 4px 4px 0 0;
        }

    #about .about-col .icon {
        width: 64px;
        height: 64px;
        padding-top: 8px;
        text-align: center;
        position: absolute;
        background-color: var(--primary-color);
        border-radius: 50%;
        text-align: center;
        border: 4px solid #fff;
        left: calc( 50% - 32px);
        bottom: -30px;
        transition: 0.3s;
    }

    #about .about-col i {
        font-size: 30px;
        margin: 5px;
        line-height: 1;
        color: var(--on-primary-color);
        transition: 0.3s;
    }

    #about a[href] .about-col:hover .icon {
        background-color: var(--on-secondary-color);
    }

    #about a[href] .about-col:hover i {
        color: var(--secondary-color);
    }

    #about .about-col h2 {
        color: var(--primary-color);
        text-align: center;
        font-weight: 700;
        font-size: 20px;
        padding: 0;
        margin: 40px 0 12px 0;
    }
    #about a[href] .about-col:hover h2 {
        color: var(--secondary-color);
    }
    #about .about-col div p {
        font-size: 14px;
        line-height: 24px;
        color: var(--text-color);
        margin-bottom: 0;
    }



/*News Section*/


.newsletter-item {
    background-color: white;
    text-align: center;
    margin: 10px;
    box-shadow: 0px 2px 12px rgb(0 0 0 / 8%);
    transition: all 300ms;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 3/2;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .newsletter-item .newsletter-blurred-cover {
        position: absolute;
        background-size: cover;
        width: 100%;
        height: 100%;
        filter: blur(8px);
    }

    .newsletter-item .newsletter-cover {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        transition: all 300ms;
        max-height: 100%;
        max-width: 100%;
    }

    .newsletter-item:hover .newsletter-cover {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        transition: all 300ms linear;
    }

.newsletter-toast {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border: none !important;
    opacity: 0.9 !important;
    background-color: green;
    width: 100% !important
}

.newsletter-date {
    position: absolute;
    background: var(--tertiary-color);
    color: var(--primary-color);
    left: 0;
    right: auto;
    top: 0;
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
    padding: 6px 10px 6px 10px;
    font-size: 0.75rem;
    box-shadow: 0px 2px 12px rgb(0 0 0 / 20%);
    border-end-end-radius: 10px;
}

.newsletter-details {
    position: absolute;
    background: var(--tertiary-color);
    color: var(--primary-color);
    left: 0;
    right: 0;
    bottom: -40px;
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
    padding: 10px 4px 4px 4px;
}

    .newsletter-details:hover {
        background: var(--tertiary-color);
        bottom: 0;
        color: white;
    }

    .newsletter-details .newsletter-title {
        color: var(--primary-color);
        font-weight: 700;
        font-size: 1.33rem;
        margin-bottom: 10px;
    }
    a[href] .newsletter-details .newsletter-title:hover {
        color: var(--secondary-color);
    }

    .newsletter-details .newsletter-date {
        color: white;
        font-weight: 700;
    }

    .newsletter-details .newsletter-share {
        padding-bottom: 10px;
    }

        .newsletter-details .newsletter-share div {
            display: inline;
        }

            .newsletter-details .newsletter-share div svg {
                color: var(--primary-color);
                margin: 0 4px 0 4px;
            }

            a[href] .newsletter-details .newsletter-share div svg:hover {
                color: var(--secondary-color);
            }
/* End News Section*/

/* Pagination */
.disabled {
    pointer-events: none;
    cursor: default;
    opacity: 0.6;
}

.pagination-container {
    background-color: #273651;
    border-radius: 40px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 30px !important;
    padding: 0px !important;
}

.pagination-outer {
    text-align: center;
    width: 100%;
}

.pagination {
    font-family: 'Kodchasan', sans-serif;
    border-radius: 40px;
    border: 2px solid #005890;
    overflow: hidden;
    display: inline-flex;
    position: relative;
    margin: 0px;
    width: 100%;
}

    .pagination .page-item {
        width: 100%;
    }

    .pagination li a.page-link {
        color: #fff;
        background-color: transparent;
        font-size: 22px;
        font-weight: 600;
        text-align: center;
        line-height: 43px;
        height: 45px;
        width: 55px;
        width: 100%;
        padding: 0;
        border: none;
        border-radius: 0;
        position: relative;
        z-index: 1;
    }

    .pagination li.active {
        pointer-events: none;
    }

        .pagination li.active a.page-link,
        .pagination li a.page-link:hover,
        .pagination li.active a.page-link:hover {
            color: #fff;
            background: transparent;
            border: none;
        }

    .pagination li a.page-link:before,
    .pagination li a.page-link:after {
        content: '';
        height: 100%;
        width: 100%;
        border: 1px solid #000;
        border-top: none;
        border-bottom: none;
        transform: skewX(-16deg);
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        transition: all 0.3s;
    }

    .pagination li a.page-link:after {
        background-color: #005890;
        border: none;
        border-radius: 50%;
        transform: skewX(-16deg) scale(0);
    }

    .pagination li.active a.page-link:after,
    .pagination li a.page-link:hover:after,
    .pagination li.active a.page-link:hover:after {
        border-radius: 0;
        transform: skewX(-16deg) scale(1);
    }

    .pagination li:first-child a.page-link:before,
    .pagination li:last-child a.page-link:before {
        display: none;
    }

    .pagination li:first-child a.page-link:after {
        left: -1px;
    }

    .pagination li:last-child a.page-link:after {
        left: auto;
        right: -1px;
    }
/* End Pagination*/

/* Breadcrumb */

#breadcrumb {
    padding: 8px 0px;
    background-color: white !important;
}

.breadcrumb-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 8px;
    justify-items: start;
    justify-content: start;
    align-items: center;
    align-items: baseline;
}

.breadcrumb-item {
    display: inline;
}

    .breadcrumb-item:hover {
        color: #64b7ad;
    }

    .breadcrumb-item.active {
        pointer-events: none;
        color: grey;
        cursor: default;
    }

        .breadcrumb-item.active:hover {
            pointer-events: none;
            color: grey;
            cursor: default;
        }

.breadcrumb-arrow {
    color: gray;
}

#home-url {
    font-size: 14px;
    display: inline-block;
    background: #005890;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin: 4px !important;
    border-radius: 50%;
    text-align: center;
    width: 29px;
    height: 29px;
    transition: 0.3s;
}

/* End Breadcrumb */
.newsletter-html-body-part img{
    max-width: 100% !important;
}

#hero .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    animation-delay: 0.8s;
    border: 2px solid #68A4C4;
}

    #hero .btn-get-started:hover {
        background: #68A4C4;
        color: #fff;
        text-decoration: none;
    }



.call-to-action h2{
    color: var(--primary-color);
}
.call-to-action p {
    color: var(--text-color);
}

.images-widget-item {
    box-shadow: 0px 2px 12px rgb(0 0 0 / 20%);
    border-radius: 2px;
}