@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap');

body {
    margin: 0;
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    display: grid;
    justify-items: center;
    overflow-x: hidden !important;
}

/* Header */
header {
    /* max-width: 1500px; */
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 8px 10px -4px rgba(0, 0, 0, 0.35);
    user-select: none;
    padding: 10px 30px;
    position: fixed;
    top: 0;
    z-index: 100 !important;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .navbar .menus a {
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    font-weight: 600;
    color: #1B1616;
}

header .navbar .menus a:first-child {
    margin: 0 15px 0 0;
}

header .navbar .menus a:last-child {
    margin: 0 0 0 15px;
}

header .navbar .menus a:hover {
    color: #318C89;
}

header .navbar .menus a#page-selected {
    color: #318C89;
}

header .navbar .logo img {
    width: 66px !important;
    height: auto;
}

.languages {
    position: relative;
}

.languages a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.languages a span:first-child {
    margin: 0px 10px 0 10px;
}

.languages a span:last-child {
    margin: 0px 10px 0 10px;
}


.languages a span img {
    transition: all 0.2s ease-in;
}

.languages .all-language {
    display: none;
}

.drop .all-language {
    display: block;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border-radius: 5px;
    opacity: 1;
}

@keyframes drop {
    0% {
        top: 20px;
        opacity: 0.3;
    }

    50% {
        top: 45px;
        opacity: 0.7;
    }

    100% {
        top: 75px;
        opacity: 1;
    }
}

@keyframes backdrop {
    0% {
        top: 75px;
        opacity: 0.7;
    }

    50% {
        top: 45px;
        opacity: 0.3;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

.drop a span:last-child>img {
    transform: rotate(180deg);
}

.drop .all-language a {
    padding: 12px 22px;
    text-decoration: none;
    color: #1B1616;
}

.drop .all-language a:hover {
    color: #318C89;
    background-color: rgba(27, 22, 22, 0.05);
}

.mobile-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-navbar #icon-language {
    display: grid;
    place-items: center;
    padding: 3px 2px 3px 3px;
    background-color: rgba(27, 22, 22, 0.1);
    border-radius: 50%;
}

.mobile-navbar .languages a img {
    width: 33px;
    height: 33px;
}

.mobile-navbar .drop .all-language {
    left: 60%;
}

.mobile-navbar .logo img {
    width: 70px !important;
    height: 55px !important;
}

.menu-icon {
    background-color: rgba(27, 22, 22, 0.1);
    width: 36px;
    height: 34px;
    border-radius: 5px;
    padding: 5px 3px;
    position: relative;
    cursor: pointer;
}

.menu-icon .line {
    background-color: #1B1616;
    width: 26px;
    height: 3px;
    border-radius: 5px;
    position: absolute;
    top: 5px;
    right: 5px;
    transform-origin: right;
    transform: rotate(0deg);
    transition: transform 0.3s linear;
}

.menu-icon .line-2 {
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
}

.menu-icon .line-3 {
    top: auto;
    bottom: 5px;
    width: 26px;
}

.menu-open .line {
    width: 33px;
}

.menu-open .line-1 {
    transform: rotate(-40deg);
}

.menu-open .line-2 {
    visibility: hidden;
}

.menu-open .line-3 {
    transform: rotate(40deg);
}

.mobile-menu {
    width: 100%;
    transform: translateY(-550px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 73px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border-radius: 0 0 20px 20px;
    z-index: 99 !important;
    transition: transform 0.4s ease;
}

.mobile-menu a {
    text-decoration: none;
    color: #1B1616;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
}

.mobile-menu a:hover {
    color: #318C89;
}

.mobile-menu #page-selected {
    color: #318C89;
}

.open {
    transform: translateY(0);
}

@media (min-width: 768px) {
    header .navbar {
        display: flex;
    }

    header .mobile-navbar {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    header .navbar .menus a {
        margin: 0 10px;
    }

    header .navbar .menus a:first-child {
        margin: 0 10px 0 0;
    }

    header .navbar .menus a:last-child {
        margin: 0 0 0 10px;
    }
}

@media (max-width: 768px) {
    header .navbar {
        display: none;
    }

    header .mobile-navbar {
        display: flex;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    header .navbar .menus a {
        margin: 0 8px;
    }

    header .navbar .menus a:first-child {
        margin: 0 8px 0 0;
    }

    header .navbar .menus a:last-child {
        margin: 0 0 0 8px;
    }
}

/* MAIN */
main {
    /* max-width: 1500px; */
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 120px;
    overflow: hidden !important;
}

@media (max-width: 992px) {
    main {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    main {
        margin-top: 105px;
    }
}

@media (max-width: 576px) {
    main {
        padding: 0 30px !important;
    }
}

/* YOU MIGHT ALSO LIKE */
.also-like {
    display: block;
    width: 30%;
}

.latest-news-row {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.latest-news-row h3 {
    display: block;
    color: #010202;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
}

.latest-news-row .card {
    width: 100%;
    border-radius: 16px;
    border: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    cursor: pointer;
}

.card img {
    width: 100%;
    border-radius: 12px;
}

.card strong {
    color: #4F5153;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 25px;
    font-size: 14px;
    font-weight: 500;
}

.card strong img {
    width: 16px;
    margin-right: 8px;
}

.card .card-imgs {
    height: 180px;
    object-fit: cover;
}

.card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 13px 0 0 0;
    height: 75px;
    overflow: hidden;
}

.card p {
    font-size: 20px;
    font-weight: 500;
    color: #3A3B3E;
    padding-right: 20px;
    height: 85px;
    overflow: hidden;
    margin-top: 5px;
}

.card .more {
    width: auto;
    height: auto;
    margin: 12px 0 15px;
    transition: transform 0.2s ease;
}

.card .more:hover,
.card .more:active {
    transform: scale(0.98);
}

.card a {
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #C8D4D4;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #0F1515;
    transition: all 0.5s ease;
}

.card a:hover {
    background-color: #318C89;
    color: #FFFFFF;
    border-color: #318C89;
}

@media (max-width: 1200px) {
    .latest-news-row h3 {
        font-size: 22px;
        font-weight: 600;
        line-height: 40px;
    }

    .card h3 {
        font-size: 18px;
        font-weight: 600;
        line-height: 25px;
        margin-top: 10px;
    }

    .card strong {
        margin-top: 18px;
    }

    .card a {
        padding: 8px 15px;
        border-radius: 50px;
        border: 2px solid #C8D4D4;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        color: #0F1515;
        transition: all 0.5s ease;
    }
}

@media (max-width: 992px) {
    .also-like {
        display: block;
        width: 100%;
    }

    .latest-news-row .card {
        width: 100%;
        display: inline-flex;
        width: 30%;
    }

    .latest-news-row .card:nth-of-type(1) {
        margin-right: 10px;
    }

    .latest-news-row .card:nth-of-type(3) {
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .latest-news-row .card {
        width: 100%;
    }

    .latest-news-row .card:nth-of-type(1) {
        margin-right: 0px;
    }

    .latest-news-row .card:nth-of-type(3) {
        margin: 0px;

    }

    .latest-news-row h3 {
        font-size: 1.4rem;
        margin-top: 0;
    }

    .card strong {
        font-size: 0.8rem;
        margin-top: 15px;
    }

    .card strong img {
        width: 14px;
    }

    .card h3 {
        font-size: 1.2rem;
        margin-top: 7px;
        line-height: 25px;
    }

    .card p {
        font-size: 0.9rem;
    }

    .card a {
        font-size: 0.8rem;
        padding: 7px 12px;
    }
}

@media (max-width: 576px) {
    .also-like {
        padding: 0;
    }
}

@media (max-width: 420px) {
    .latest-news-row h3 {
        font-size: 25px;
        line-height: 40px;
    }

    .card h3 {
        font-size: 20px;
        line-height: 25px;
    }

    .card a {
        padding: 7px 15px;
        font-size: 14px;
    }
}

/* POST */
.post {
    /* max-width: 1500px; */
    width: 100%;
    overflow: hidden !important;
}

.post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50vh;
    background-color: #318C89;
    z-index: -1;
    background: linear-gradient(-3deg, #FFFFFF, #EEFFFE, rgba(49, 140, 137, 0.65));
}

.post h1 {
    display: block;
    color: #010202;
    font-size: 35px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 40px;
}

.post img {
    width: 100%;
    border-radius: 16px;
    height: 550px;
    object-fit: cover;
}

.post p {
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #010202;
    margin: 30px 0;
}

.post a {
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    color: #318C89;
}

.post h2 {
    display: block;
    color: #010202;
    font-size: 30px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .post h1 {
        font-size: 1.5rem;
        line-height: 40px;
    }

    .post h2 {
        font-size: 1.4rem;
        line-height: 35px;
    }

    .post h3 {
        font-size: 1.3rem;
        line-height: 35px;
    }

    .post h4 {
        font-size: 1.2rem;
        line-height: 32px;
    }

    .post h5 {
        font-size: 1.1rem;
        line-height: 30px;
    }

    .post h6 {
        font-size: 1rem;
        line-height: 28px;
    }

    .post p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .post h1 {
        font-size: 1.4rem;
        line-height: 40px;
        margin: 0 0 20px;
    }

    .post h2 {
        font-size: 1.3rem;
        line-height: 35px;
    }

    .post h3 {
        font-size: 1.2rem;
        line-height: 35px;
    }

    .post h4 {
        font-size: 1.1rem;
        line-height: 32px;
    }

    .post h5 {
        font-size: 1rem;
        line-height: 30px;
    }

    .post h6 {
        font-size: 1rem;
        line-height: 28px;
    }

    .post p {
        font-size: 1rem;
        margin: 15px 0;
    }
}


@media (max-width: 420px) {
    .post h1 {
        font-size: 22px;
        line-height: 40px;
    }

    .post p {
        font-size: 17px;
    }

    .post h2 {
        font-size: 22px;
        line-height: 40px;
    }
}
/* Footer */
footer {
    max-width: 1980px;
    width: 100%;
    background-color: #FEFEFE;
    overflow-x: clip;
    display: block;
    margin-top: 30px;
    padding: 20px 30px 15px;
    box-shadow: 0 8px 10px 4px rgba(0, 0, 0, 0.35);
}

footer .links {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

footer .links .about {
    width: 40%;
    margin-top: 0;
}

footer .links .about img {
    width: 150px;
    margin-bottom: 20px;
}

footer .links .company,
footer .links .product,
footer .links .contact {
    width: 20%;
    margin-top: 0;
}

footer .links .about p {
    font-size: 1rem;
    font-weight: 500;
    color: #302E2E;
    line-height: 27px;
    max-width: 350px;
}

footer .links .company p,
footer .links .product p,
footer .links .contact p {
    color: #212629;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 38px;
}

footer .links .company a,
footer .links .product a {
    color: #424C52;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.1s ease-in;
}

footer .links .company a:hover,
footer .links .product a:hover {
    color: #318C89;
}

footer .links .contact strong {
    font-size: 1rem;
    font-weight: 500;
    color: #424C52;
    display: flex;
    margin-bottom: 20px;
    line-height: 27px;
}

footer .links .contact strong span {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-right: 10px;
    margin-top: 2px;
}

footer hr {
    width: 100%;
    height: 2px;
    background-color: #8b8b8b;
    border: 0;
    margin: 25px 0;
}

footer .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .copyright p {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #302E2E;
}

footer .copyright p mark {
    color: #318C89;
    background-color: transparent;
}

footer .copyright .social-media {
    display: flex;
    gap: 15px;
}

footer .copyright .social-media a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

}

footer .copyright .social-media img {
    width: 22px;
    height: 22px;
}

footer .copyright .social-media img:hover {
    transform: scale(1.1);
}

@media (max-width: 1100px) {
    footer .links .about {
        width: 30%;
    }
}

@media (max-width: 992px) {
    footer .links {
        flex-wrap: wrap;
    }

    footer .links .about,
    footer .links .company,
    footer .links .product,
    footer .links .contact {
        width: 48%;
    }
}

@media (max-width: 810px) {

    footer .links .about,
    footer .links .company,
    footer .links .product,
    footer .links .contact {
        width: 47%;
    }
}

@media (max-width: 768px) {
    footer {
        padding-inline: 20px;
    }

    footer .links .about img {
        width: 100px;
    }

    footer .links .about p {
        font-size: 1rem;
    }

    footer .links .company p,
    footer .links .product p,
    footer .links .contact p {
        font-size: 1.1rem;
    }

    footer .links .company a,
    footer .links .product a {
        font-size: 0.9rem;
    }

    footer .links .contact strong {
        font-size: 0.9rem;
    }

    footer .copyright p {
        font-size: 0.9rem;
    }
}

@media (max-width: 710px) {
    footer .copyright {
        flex-direction: column-reverse;
        gap: 50px;
    }

    footer .copyright p {
        text-align: center;
        line-height: 30px;
    }

    footer .copyright .social-media {
        gap: 0;
    }

    footer .copyright .social-media a {
        margin: 0 10px;
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        padding: 15px !important;
    }

    footer .copyright .social-media a img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {

    footer .links .about,
    footer .links .company,
    footer .links .product,
    footer .links .contact {
        width: 100%;
        text-align: center;
    }

    footer .links .about img {
        width: 100px;
    }

    footer .links .about p {
        font-size: 0.8rem;
        max-width: 100%;
    }

    footer .links .company p,
    footer .links .product p,
    footer .links .contact p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    footer .links .company a,
    footer .links .product a {
        font-size: 0.9rem;
    }

    footer .links .contact strong {
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    footer .copyright p {
        font-size: 0.9rem;
    }

    footer .links {
        gap: 20px;
    }

    footer .copyright {
        gap: 20px;
    }

}

@media (max-width: 538px) {
    footer .links .contact strong:last-child {
        padding: 0 20px;
    }
}



#social-media-container{
    width: 380px;
    height: 90px;
}

#share-media-container{
    width: 100%;
    height: 100%;
}

.facebook-icon{
    color: #39599F !important;
    font-size: 28px !important;
}


.telegram-icon{
    color: #55A9EA !important;
    font-size: 28px !important;
}

.telegram-icon-share{
    color: #55A9EA !important;
    font-size: 28px !important;
}

.facebook-icon-share{
    color: #39599F !important;
    font-size: 28px !important;
}



.twitter-icon-share{
    color: #00080e !important;
    font-size: 28px !important;
}
.text-decoration-none {
    text-decoration: none !important;
}

.dis-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.dis-flex-center-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.dis-flex-center-around {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.share-button{
    text-decoration: none;
    /*color: var(--site-primary);*/
    cursor: pointer;
    font-size: 28px;
}