@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@100..900&display=swap');
/* font-family: "Noto Sans Bengali", sans-serif; */

/* 	-----------------------------------------------------
    ------------------- General Styles ------------------
    ----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans Bengali", sans-serif;
    color: #000000;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    overflow-x: hidden;
}

a {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #EB5602;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #D94B00;
    text-decoration: none;
}

[contenteditable="true"]:focus {
    outline: none;
}

*:focus {
    outline: none;
}

img {
    margin: 0;
    padding: 0;
    outline-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-start {
    justify-content: flex-start !important;
    gap: 20px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.text-center {
    text-align: center;
}

.container-fluid {
    margin: 0 auto;
    width: 100%;
    padding: 0 50px;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1320px;
    padding: 0 20px;
}

/* 	-----------------------------------------------------
    -------------------- Header Styles ------------------
    ----------------------------------------------------- */
.header-section {
    padding: 10px 0;
    width: 100%;
    background-color: #FFFFFF;
    transition: all 0.4s ease-in-out;
}

.header-section .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-section figure {
    margin: 0 !important;
    display: block;
}

.header-section figure img {
    display: block;
}

.header-section.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all 0.4s ease-in-out;
}

.header-section aside {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.menu-bar {
    list-style: none;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    width: 300px;
    height: 100%;
    background: #FFFFFF;
    opacity: 0;
    transition: 0.4s;
    padding: 20px;
}

.menu-bar.show {
    left: 0;
    opacity: 1;
    box-shadow: 0px 10px 25px -3px #0000000d;
}

.menu-bar li {
    margin: 0;
}

.menu-bar li a {
    font-size: 18px;
    font-weight: 600;
    line-height: 48px;
    color: #222222;
    white-space: nowrap;
    display: flex;
    transition: 0.5s;
}

.menu-bar.show li a {
    color: #222222;
    display: block;
}

.menu-bar.show li a.active {
    color: #EB5602;
    position: relative;
}

.menu-bar.show li a svg path {
    fill: #222222;
}

.dropDown-list {
    position: relative;
}

.dropDown-list a.active {
    color: #EB5602;
}

.dropDown-list a span svg {
    width: 12px;
}

.dropDown-list a span svg path {
    transition: 0.4s;
}

.dropDown-list a.active span svg path {
    fill: #EB5602;
}

.dropDown-list a.active span svg {
    transform: rotate(180deg);
}

.dropDown_menu {
    display: none;
    position: relative;
    box-shadow: 0px 4px 44px 0px #00000026;
    list-style: none;
}

.menu-bar.show .dropDown_menu {
    box-shadow: none;
    padding: 0;
}

.dropDown_menu li {
    line-height: 1;
    margin-top: 15px;
    margin-bottom: 0;
}

.dropDown_menu li a {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #EB5602;
    padding: 5px 0;
    white-space: nowrap;
    display: inline-block;
}

.toggle-btn {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 24px;
    font-size: 24px;
    padding: 0;
    color: #EB5602;
    z-index: 99;
    cursor: pointer;
}

@media (min-width: 1170px) {
    .menu-bar {
        width: 300px;
    }

    .dropDown-list:hover .dropDown_menu {
        display: block !important;
    }
}

@media (min-width: 1170px) {
    .toggle-btn {
        display: none;
    }

    .menu-bar {
        position: relative;
        top: unset;
        left: unset;
        width: unset;
        opacity: 1;
        background: transparent;
        display: flex;
        justify-content: space-between;
        gap: 30px;
        padding: 0;
        list-style: none;
    }

    .menu-bar li a:hover {
        color: #EB5602;
        transition: 0.5s;
    }

    .menu-bar li a.active {
        color: #EB5602;
        transition: 0.5s;
        position: relative;
    }

    .menu-bar li a.active::after {
        content: "";
        width: 100%;
        height: 3px;
        background-color: #EB5602;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .dropDown-list a.active {
        color: #EB5602;
    }

    .dropDown-list a.active span svg path,
    .dropDown-list a:hover span svg path {
        fill: #EB5602;
    }

    .dropDown_menu {
        list-style: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        min-width: 300px;
        background: #1a1a1a;
        border-radius: 0;
        padding: 10px 20px;
    }

    .dropDown_menu li {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .dropDown_menu li a {
        font-size: 16px;
        font-weight: 500;
    }

    .dropDown_menu li a:hover {
        color: #EB5602;
    }
}

@media only screen and (max-width: 760px) {
    .header-section .container-fluid {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 20px;
    }

    .header-section figure {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-section aside {
        width: 100%;
        flex-direction: row-reverse;
        gap: 20px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .header-section .container-fluid {
        padding: 0 20px;
    }

    .header-section aside {
        flex-direction: row-reverse;
        gap: 20px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1440px) {
    .header-section .container-fluid {
        padding: 0 20px;
        gap: 20px;
    }

    .header-section aside,
    .menu-bar {
        gap: 20px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Banner Styles ------------------
    ----------------------------------------------------- */
.banner-section {
    background-color: #000d1e;
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.banner-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.banner-section article {
    width: 100%;
    max-width: 460px;
}

.banner-section article h1 {
    font-size: 60px;
    line-height: 1.05;
    color: #FFFFFF;
    margin-bottom: 10px;
    position: relative;
}

.banner-section article h1 span {
    display: block;
    color: #EB5602;
}

.banner-section article h1::after {
    content: "";
    width: 60px;
    height: 2px;
    background-color: #FFFFFF;
    position: absolute;
    left: 0;
    bottom: 5px;
}

.banner-section article p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #FFFFFF;
    padding: 10px 0;
}

.banner-section aside {
    width: 100%;
    max-width: 400px;
    background-color: #FFFFFF;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .18);
    border-radius: 10px;
    padding: 20px;
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 15px;
    background: #f3f3f3;
    border-radius: 5px;
    overflow: hidden
}

.auth-tab {
    border: 0;
    background: #f3f3f3;
    padding: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #333
}

.auth-tab.active {
    background: #EB5602;
    color: #fff;
    border-radius: 5px
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.auth-form.hidden {
    display: none
}

.input-wrap {
    height: 41px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: #777
}

.input-wrap span {
    width: 28px
}

.input-wrap input {
    border: 0;
    outline: 0;
    width: 100%;
    height: 100%;
    background: transparent
}

.password-toggle {
    border: 0;
    background: none;
    color: #777;
    cursor: pointer
}

.forgot {
    font-size: 13px;
    color: #EB5602;
    font-weight: 600;
    text-align: right
}

.submit-btn {
    height: 39px;
    border: 0;
    border-radius: 5px;
    background: #EB5602;
    color: #fff;
    font-weight: 600;
    cursor: pointer
}

.or {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 14px
}

.or:before,
.or:after {
    content: "";
    height: 1px;
    background: #ddd;
    flex: 1
}

.signup-note {
    text-align: center;
    margin: 0;
    font-size: 13px
}

.signup-note a {
    color: #EB5602;
    font-weight: 600
}

@media only screen and (max-width: 760px) {
    .banner-section {
        padding: 20px 0;
    }

    .banner-section .image-overlay {
        opacity: 0.5;
    }

    .banner-section .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .banner-section article {
        max-width: 100%;
    }

    .banner-section aside {
        max-width: 100%;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1280px) {
    .banner-section .image-overlay {
        opacity: 0.7;
    }
}

.inner-banner-section {
    background-color: #000d1e;
    position: relative;
    z-index: 1;
    padding: 30px 0;
    min-height: 250px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.inner-banner-section article {
    width: 100%;
    max-width: 460px;
}

.inner-banner-section article h1 {
    font-size: 50px;
    line-height: 1.05;
    color: #FFFFFF;
    margin-bottom: 10px;
    position: relative;
}

.inner-banner-section article h1::after {
    content: "";
    width: 60px;
    height: 2px;
    background-color: #EB5602;
    position: absolute;
    left: 0;
    bottom: 5px;
}

.inner-banner-section article p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #FFFFFF;
    padding: 10px 0;
}

.breadcrumb {
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
}

.breadcrumb a,
.breadcrumb span {
    color: #FFFFFF;
    text-decoration: none;
}

.breadcrumb a+a::before,
.breadcrumb a+span::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
    margin: 0 10px;
    color: #FFFFFF;
}

.breadcrumb .active {
    color: #FFFFFF;
}

@media only screen and (max-width: 760px) {
    .inner-banner-section {
        padding: 20px 0;
        min-height: 200px;
    }

    .inner-banner-section .image-overlay {
        opacity: 0.7;
    }

    .banner-section article {
        max-width: 100%;
    }

    .inner-banner-section article h1 {
        font-size: 40px;
    }

    .inner-banner-section article p {
        font-size: 16px;
    }

    .breadcrumb {
        margin-top: 0;
        font-size: 14px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1280px) {
    .inner-banner-section .image-overlay {
        opacity: 0.7;
    }
}

/* 	-----------------------------------------------------
    ------------------- Content Styles ------------------
    ----------------------------------------------------- */
.content-section {
    min-height: 400px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Noto Sans Bengali", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #222222;
    padding: 10px 0;
}

.content-section h1 {
    font-size: 32px;
}

.content-section h2 {
    font-size: 28px;
}

.content-section h3 {
    font-size: 24px;
}

.content-section h4 {
    font-size: 22px;
}

.content-section h5 {
    font-size: 20px;
}

.content-section h6 {
    font-size: 18px;
}

.content-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #555555;
    padding: 10px 0;
}

.content-section ul {
    margin: 0;
    padding: 0 0 0 15px;
    list-style: disc;
}

.content-section ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #555555;
    margin: 5px 0;
}

.content-section ul ul {
    list-style: circle;
}

.content-section ol {
    margin: 0;
    padding: 10px 18px;
    list-style: decimal;
}

.content-section ol li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #555555;
    margin: 5px 0;
}

.content-section ol ol {
    list-style: lower-roman;
}

.btn-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.btn-01 a {
    margin: 15px 0;
    padding: 10px 20px;
    width: auto;
    height: 48px;
    background: #EB5602;
    border: none;
    border-radius: 7px;
    text-align: center;
    font-family: "Noto Sans Bengali", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: 0.5s;
}

.btn-01 a:hover {
    background: #D94B00;
}

.btn-02 a {
    margin: 15px 0;
    padding: 10px 25px;
    width: auto;
    height: 56px;
    background: #00020C00;
    border: 2px solid #E5B55ABF;
    border-radius: 5px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #FFFFFF;
    letter-spacing: 1px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.btn {
    font-family: "Noto Sans Bengali", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 7px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
    height: 48px;
}

.btn-primary {
    background: #EB5602;
    color: #FFFFFF !important;
}

.btn-primary:hover {
    background: #D94B00;
}

.btn-secondary {
    background: transparent;
    color: #222222 !important;
    border-color: #222222;
}

.btn-secondary:hover {
    background: #FCF3EC;
}

/* 	-----------------------------------------------------
    -------------------- Footer Styles ------------------
    ----------------------------------------------------- */
.footer-top-section {
    background-color: #FCF3EC;
    border-top: 2px solid #f6e4d6;
    padding: 30px 0;
}

.footer-top-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.footer-top-section h4 {
    font-size: 18px;
    font-weight: 700;
}

.footer-top-section .footer-about {
    width: 35%;
}

.footer-top-section .about {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.footer-top-section .about figure {
    width: 85px;
    height: 85px;
}

.footer-top-section .about article {
    width: calc(100% - 105px);
}

.footer-top-section .about article p {
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #555555;
}

.footer-top-section .social {
    padding-top: 10px;
}

.footer-top-section .social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.footer-top-section .social ul li {
    margin: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
    color: #555555;
}

.footer-top-section .social ul li a {
    width: 32px;
    height: 32px;
    background-color: #222222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    transition: .5s;
}

.footer-top-section .social ul li a:hover {
    background-color: #EB5602;
    transition: .5s;
}

.footer-top-section .footer-links {
    width: 18%;
}

.footer-top-section .footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-top-section .footer-links ul li {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #555555;
}

.footer-top-section .footer-links ul li a {
    color: #555555;
    transition: .5s;
}

.footer-top-section .footer-links ul li a:hover {
    color: #EB5602;
    transition: .5s;
}

.footer-top-section .footer-infos {
    width: 29%;
}

.footer-top-section .footer-infos ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-top-section .footer-infos ul li {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #555555;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.footer-top-section .footer-infos ul li a {
    color: #555555;
    transition: .5s;
}

.footer-top-section .footer-infos ul li a:hover {
    color: #EB5602;
    transition: .5s;
}

.footer-bot-section {
    background-color: #EB5602;
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #FFFFFF;
}

@media only screen and (max-width: 760px) {
    .footer-top-section {
        padding: 20px 0;
    }

    .footer-top-section .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-top-section .footer-about {
        width: 100%;
    }

    .footer-top-section .footer-links {
        width: 48%;
    }

    .footer-top-section .footer-infos {
        width: 100%;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .footer-top-section .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-top-section .footer-about {
        width: 100%;
    }

    .footer-top-section .footer-links {
        width: calc(25% - 30px);
    }

    .footer-top-section .footer-infos {
        width: calc(50% - 30px);
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    .footer-top-section .container {
        gap: 20px;
    }
}

.subscribe-section {
    padding: 30px 0;
}

.subscribe {
    border: 1px solid #E2E2E2;
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    gap: 15px;
}

.mail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #EB5602;
    color: #FFFFFF;
    display: grid;
    place-items: center;
    flex: 0 0 50px;
}

.mail-icon i {
    font-size: 24px;
}

.subscribe-copy {
    flex: 1
}

.subscribe-copy h2 {
    font-size: 18px;
    line-height: 1.4;
    padding: 0;
}

.subscribe-copy p {
    font-size: 14px;
    color: #555555;
    margin-top: 2px
}

.subscribe-form {
    display: flex;
    gap: 8px;
    width: 52%
}

.subscribe-form input {
    height: 40px;
    border: 1px solid #E2E2E2;
    border-radius: 7px;
    padding: 0 15px;
    font: inherit;
    font-size: 16px;
    flex: 1;
    outline: none;
}

.subscribe-form input:focus {
    border-color: #D94B00;
}

.subscribe-form button {
    height: 39px;
    border: 0;
    border-radius: 7px;
    background: #EB5602;
    border: none;
    color: #FFFFFF;
    padding: 0 20px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .5s;
}

.subscribe-form button:hover {
    background: #D94B00;
    transition: .5s;
}

@media only screen and (max-width: 760px) {
    .subscribe {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 16px
    }

    .subscribe-copy {
        min-width: calc(100% - 70px)
    }

    .subscribe-form {
        width: 100%
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .subscribe {
        padding: 15px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    .subscribe {
        padding: 15px;
    }
}

.section-title {
    margin: 0 0 15px 0;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 62px;
    height: 2px;
    background: #EB5602;
    margin: 6px 0 0 0;
}

.media-resources-section {
    padding: 30px 0;
    text-align: center;
}

.media-resources-section .section-title {
    text-align: center;
}

.media-resources-section .section-title:after {
    margin: 6px auto 0 auto;
}

.media-resources-section .resource-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.media-resources-section .resource-card {
    padding: 10px;
    border: 1px solid #E2E2E2;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: .2s;
}

.media-resources-section .resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08)
}

.media-resources-section .resource-icon {
    height: 50px;
    display: grid;
    place-items: center;
}

.media-resources-section .resource-card h6 {
    padding: 1rem 0 0 0;
}

.media-resources-section .resource-card span {
    font-size: 14px;
    color: #EB5602;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
}

.media-resources-section .resource-card span i {
    font-size: 12px;
}

@media only screen and (max-width: 760px) {
    .media-resources-section {
        padding: 20px 0;
    }

    .media-resources-section .resource-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}

.latest-news-section {
    padding: 30px 0;
}

.latest-news-section .section-title {
    text-align: center;
}

.latest-news-section .section-title:after {
    margin: 6px auto 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-card {
    border: 1px solid #E2E2E2;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 43% 57%;
    align-items: center;
    gap: 15px;
    overflow: hidden;
    padding: 10px;
}

.news-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    margin: 0;
    border-radius: 7px;
}

.news-body {
    padding: 0 10px 0 0;
}

.news-body h6 {
    padding: 0;
}

.news-body time {
    font-size: 14px;
    color: #555555;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
}

.news-body p {
    padding: 5px 0;
    font-size: 14px;
    line-height: 1.2;
}

.news-body a {
    color: #EB5602;
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.news-body a i {
    font-size: 12px;
}

@media only screen and (max-width: 760px) {
    .latest-news-section {
        padding: 20px 0;
    }

    .news-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .news-card {
        gap: 10px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1080px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card:last-child {
        display: none;
    }
}

.resource-category-section {
    padding: 30px 0;
}

.resource-category-section .resource-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.resource-category-section .resource-card {
    border: 1px solid #E2E2E2;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    transition: .2s ease;
    background: #FFFFFF;
}

.resource-category-section .resource-card:hover {
    transform: translateY(-2px);
    border-color: #D94B00;
    box-shadow: 0 7px 20px rgba(0, 0, 0, .06)
}

.resource-category-section .icon-box {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
}

.resource-category-section .resource-card span:last-child {
    min-width: 0;
}

.resource-category-section .resource-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 3px;
}

.resource-category-section .resource-card small {
    display: block;
    color: #555555;
    font-size: 14px;
}

.resource-category-section .resource-card em {
    display: block;
    color: #EB5602;
    font-size: 14px;
    font-style: normal;
    margin-top: 5px;
    font-weight: 600;
}

@media only screen and (max-width: 760px) {
    .resource-category-section {
        padding: 20px 0;
    }

    .resource-category-section .resource-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .resource-category-section .resource-card {
        gap: 10px;
    }

    .resource-category-section .icon-box {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }

    .resource-category-section .resource-card strong {
        font-size: 16px;
    }

    .resource-category-section .resource-card small {
        font-size: 12px;
    }

    .resource-category-section .resource-card em {
        font-size: 12px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1280px) {
    .resource-category-section .resource-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

.recent-photo-video-section {
    padding: 30px 0;
}

.recent-photo-video-section .media-layout {
    display: grid;
    grid-template-columns: 1.18fr .98fr;
    gap: 30px;
}

.recent-photo-video-section .media-column {
    min-width: 0;
}

.recent-photo-video-section .video-column {
    border-left: 1px solid #E2E2E2;
    padding-left: 30px;
}

.recent-photo-video-section .with-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recent-photo-video-section .with-link a {
    font-size: 16px;
    font-weight: 600;
    color: #EB5602;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.recent-photo-video-section .cards {
    display: grid;
    gap: 10px;
}

.recent-photo-video-section .photo-cards {
    grid-template-columns: repeat(4, 1fr);
}

.recent-photo-video-section .video-cards {
    grid-template-columns: repeat(3, 1fr);
}

.recent-photo-video-section .media-card {
    position: relative;
    min-width: 0;
}

.recent-photo-video-section .thumb {
    border-radius: 7px;
    position: relative;
    overflow: hidden;
    background-color: #222222;
}

.recent-photo-video-section .media-card h3 {
    font-size: 16px;
    min-height: 60px;
}

.recent-photo-video-section .media-card p {
    padding: 0;
}

.recent-photo-video-section .download {
    position: absolute;
    right: 10px;
    top: 95px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: #FFFFFF;
    color: #222222;
    font-size: 16px;
    z-index: 3;
    cursor: pointer
}

.recent-photo-video-section .video-thumb .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .58);
    color: #FFFFFF;
    display: grid;
    place-items: center;
    padding-left: 3px;
    font-size: 17px;
    z-index: 3
}

.recent-photo-video-section .video-thumb b {
    position: absolute;
    right: 7px;
    bottom: 7px;
    background: rgba(0, 0, 0, .72);
    color: #FFFFFF;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 10px;
    z-index: 3
}

@media only screen and (max-width: 760px) {
    .recent-photo-video-section {
        padding: 20px 0;
    }

    .recent-photo-video-section .media-layout {
        grid-template-columns: 1fr;
    }

    .recent-photo-video-section .media-column {
        min-width: 100%;
    }

    .recent-photo-video-section .video-column {
        border-left: none;
        padding-left: 0;
    }

    .recent-photo-video-section .photo-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .recent-photo-video-section .video-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .recent-photo-video-section .media-card h3 {
        min-height: inherit;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1280px) {
    .recent-photo-video-section .media-layout {
        grid-template-columns: 1fr;
    }

    .recent-photo-video-section .media-column {
        min-width: 100%;
    }

    .recent-photo-video-section .video-column {
        border-left: none;
        padding-left: 0;
    }

    .recent-photo-video-section .media-card h3 {
        min-height: inherit;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {}












@media only screen and (max-width: 760px) {}

@media only screen and (min-width: 761px) and (max-width: 1023px) {}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {}