* {
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    padding: 0;
    margin: 0;
}

/* Visually hide skip link (accessible on keyboard focus) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #295E70;
    box-shadow: 0 1px 2px rgb(0 0 0 / .2);
    z-index: 99;
}

nav .navbar {
    height: 100%;
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 0 50px;
    position: relative;
}

/* Desktop alignment: logo (left) / nav links (center) / search icon (right) */
@media (min-width:801px) {
    nav .navbar {
        justify-content: flex-start;
        gap: 24px;
    }

    nav .navbar .logo {
        flex: 0 0 auto;
    }

    nav .navbar .nav-links {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
    }

    nav .navbar .links {
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    nav .navbar .search-box {
        flex: 0 0 auto;
        margin-left: auto;
    }
}

.navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.navbar .logo img {
    width: 110px;
    height: 50px;
    margin-top: 5px;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    /*height: 100%;*/
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

/* Active page link 
nav .navbar .links li a.active {
    color: #6CA64E;
}*/

nav .navbar .links li a:hover {
    text-decoration: underline 3px solid #6CA64E;
    animation-name: bounce;
    animation-duration: 0.5s;
    color: #dd4f39;
    transform: scaleX(1.3);
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.links li:hover .htmlcss-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    text-align: left;
    margin-left: 0;
    padding: 0;
    background: #295E70;
    box-shadow: 0 1px 2px rgb(0 0 0 / .2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    display: block;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgb(255 255 255 / .1);
}

.navbar .links li .sub-menu a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0 22px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.nav-links .sidebar-logo .logo-name>img {
    width: 110px;
    height: 59px;
}

.navbar .bx-menu {
    display: none;
}

@media (max-width:920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }

    nav .navbar .logo a {
        font-size: 27px;
    }

    nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }

    nav .navbar .links li a {
        font-size: 15px;
    }
}

@media (max-width:800px) {
    .navbar .bx-menu {
        display: block;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: #295E70;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgb(0 0 0 / .2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: #fff;
    }

    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }

    nav .navbar .links li .arrow {
        line-height: 40px;
    }

    nav .navbar .links li {
        display: block;
    }

    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    nav .navbar .links li .sub-menu li {
        border-bottom: none;
    }

    .links li:hover .htmlcss-arrow {
        transform: rotate(180deg);
    }

    .navbar .links li .sub-menu .more span {
        display: flex;
        align-items: center;
    }

    nav .navbar .links li:hover .htmlCss-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links .htmlCss-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links .htmlcss-arrow {
        transform: rotate(180deg);
    }
}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #3E8DA8;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3E8DA8;
}

.showInput .input-box {
    display: block;
}

.input-box {
    display: none;
}

.nav-links {
    left: -100%;
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #3E8DA8;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.nav-links ul.links li a.active-home {
    color: rgb(255, 200, 0);
}

.nav-links ul.links li a.active-red,
.nav-links ul.links li.pages-dropdown.active-red-barent>a.pages-link {
    color: #ae2cb5;
}

.nav-links ul.links li ul.sub-menu li a.active-red {
    color: #ae2cb5;
}

.build-footer {
    background: #295E70;
    margin: 0;
    padding: 0;
    width: 100%;
}

.col-2 h3,
.col-3 h3 {
    font-size: 19px;
    font-family: "Times New Roman", Times, serif;
    font-weight: 400;
    color: #fff;
}

.custo-footer {
    width: 100%;
    padding: 25px 2% 10px 2%;
    color: #FFF;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.custo-footer h3 {
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.col-1 {
    margin: 0;
    padding: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.col-1 h3 {
    margin-right: 30px;
    margin-left: 30px;
}

.col-1 h3>img {
    width: 110px;
    height: 50px;
}

.col-1-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 10px;
}

.col-1-a,
.col-1-b {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.col-1 a {
    display: block;
    text-decoration: none;
    color: #FFF;
    margin-bottom: 4px;
    font-size: 11px;
}

.col-1 a:hover {
    text-decoration: underline;
    color: #AA336A;
    font-weight: 700;
}

.col-2 {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
}

.foot-mail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.foot-mail input[type=email] {
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.foot-mail button[type=submit] {
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: none;
    background: #6CA64E;
    color: #fff;
    cursor: pointer;
}

.foot-mail button[type=submit]:hover {
    background: #4f7c39;
}

.parage {
    text-align: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -10px;
    color: #FFF;
    font-size: 12px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.col-3 {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nav_socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    padding: 0;
    margin: 0 auto;
}

.nav_socials a {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(#e5e55d, #ff7b02);
    border-radius: .5rem;
    color: #FFF;
    display: grid;
    place-items: center;
}

.nav_socials li {
    list-style-type: none;
    margin-top: 15px;
}

.nav_socials .nav__socials a:hover {
    box-shadow: 0 1rem 1rem rgb(0 0 0 / .4);
}

@media screen and (max-width:768px) {
    .custo-footer {
        flex-direction: column;
        align-items: center;
    }

    .col-1,
    .col-2,
    .col-1-a {
        margin-bottom: 20px;
    }

    .col-1-a a,
    .col-1-b a {
        margin-bottom: 0;
    }

    .foot-mail input {
        width: 100%;
        max-width: 300px;
    }

    .foot-mail button {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width:400px) {
    .custo-footer {
        flex-direction: column;
        align-items: center;
    }

    .col-1 h3 {
        margin-right: 0;
        margin-left: 0;
    }

    .col-1-a,
    .col-1-b a {
        margin-left: 0;
    }

    .nav_socials {
        flex-wrap: wrap;
    }

    .nav_socials a {
        margin-bottom: 10px;
    }
}

.breadcrumb-option {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    height: 100%;
    height: 70px;
    background-color: #151524;
    z-index: 10;
}

.breadcrumb-option .container-bread {
    margin-top: 25px;
    padding-top: 13px;
}

.breadcrumb-option .bo-links a {
    font-size: 15px;
    color: #6CA64E;
    font-weight: bolder;
    margin-right: 20px;
    padding-left: 25px;
    position: relative;
}

.breadcrumb-option .bo-links a i {
    margin-right: 5px;
}

.breadcrumb-option .bo-links a:after {
    position: absolute;
    right: -18px;
    top: 0;
    content: "/\00a0";
    font-family: "ElegantIcons";
}

.breadcrumb-option .bo-links span {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.bo-links a i.fa {
    margin-right: -10px;
    position: relative;
    left: -18px;
    color: purple;
}

.breadcrumb-option .bo-links a:hover {
    color: #AA336A;
}

@media screen and (max-width:400px) {
    .bo-links a {
        font-size: 13px;
    }

    .bo-links a:after {
        display: inline-flex;
    }

    .bo-links span {
        display: inline-flex;
    }
}

@media screen and (max-width:768px) {
    .breadcrumb-option {
        margin: 0;
    }

    .bo-links a {
        font-size: 14px;
    }
}

.page-title.ast-archive-title,
.ast-excerpt-container.ast-blog-single-element,
.ast-blog-single-element.ast-read-more-container.read-more>a {
    color: #000;
}

.screen-reader-text {
    color: #000;
}