@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* theme color */
/* ==================*/
:root {
    --primary-color: rgba(230, 165, 43, 1);
    --secondary-color: #ddd8c8;
    --third-color: #a3a3a3;
    --text-color: #242424;
    --text-second-color: #fff;
}

body {
    font-family: 'Ubuntu', sans-serif;
    overflow-x: hidden !important;
}

ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000000;
}

.btn-close:focus {
    outline: 0;
    box-shadow: none !important;
}
.form-control:focus {
    box-shadow: none !important;
}

.contaniner-padding {
    padding-left: 3rem;
    padding-right: 3rem;
}

/* small device header css start */

.mobile-nav-without-dropdown {
    padding: 20px;
}
.wd-nav-mobile li a {
    flex: 1 1 100%;
    border-bottom: 1px solid rgba(129, 129, 129, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-direction: row;
    padding-right: 15px;
    padding-left: 15px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 1.2;
}
.wd-nav-mobile li a:hover {
    color: rgb(197, 0, 0);
}
.mobile-dropdown-nav-text {
    border-bottom: 1px solid rgba(129, 129, 129, 0.2);
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 1.2;
    padding: 20px 15px;
    width: 100%;
    box-sizing: border-box;
    display: inline-flex;
    color: #848484;
    text-transform: initial !important;
}
.mobile-dropdown-nav-text:hover {
    color: rgb(197, 0, 0);
}
.wd-nav-mobile .mobile-nav-text {
    padding: 20px 0px 20px 0px;
    margin-top: auto;
    margin-bottom: auto;
    width: 90%;
}
.wd-nav-mobile .mobile-nav-icon {
    display: inline-block;
    border-left: 1px solid rgba(129, 129, 129, 0.2);
    width: 10%;
    text-align: center;
    padding: 20px;
}

.mobile-nav-icon-up {
    display: inline-block;
    border-left: 1px solid rgba(129, 129, 129, 0.2);
    width: 10%;
    text-align: center;
    padding: 20px;
}

/* small device header css end */

/* header css start */
.body-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1222px;
}

.whb-general-header {
    background-image: url(../assert//header/header-btf.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border-color: rgba(129, 129, 129, 0.2);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    height: 135px;
    width: 100% !important;
}

/* test css added */
.small-device {
    display: none;
}

.header {
    position: relative;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-color);
    margin-top: 0px;
    transition: background-color 0.3s ease;
}

.header-scrolled {
    position: fixed;
    top: 0;
    background-color: var(--primary-color);
    margin-top: 0px;
}

.containers {
    max-width: 1222px;
    margin: 0 auto;
}

.nav-btn {
    flex: 3;
    display: flex;
}

.nav-links {
    flex: 2;
}

.nav-links > ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link {
    position: relative;
}

.nav-link > a {
    line-height: 3.2rem;
    color: #fff;
    padding: 0 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
}

.nav-link > a .icon-header {
    margin-left: 0.2rem;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 50%;
}

.nav-link:hover > a {
    transform: scale(1.1);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
    width: 200px;
}

.dropdown ul {
    position: relative;
}

.dropdown-link > a {
    background-color: #fff;
    position: relative;
    padding: 0.8rem 1rem;
    color: #848484;
    font-size: 14px;
    line-height: 1.3;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* display: flex;
    background-color: #fff;
    color: #3498db;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s; */
}

.dropdown-link:hover > a {
    color: rgb(197, 0, 0);
}

.dropdown-link:not(:nth-last-child(2)) {
    border-bottom: 1px solid #efefef;
}

.dropdown-link i {
    font-size: 10px;
    color: rgba(82, 82, 82, 0.45);
}

.arrow {
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: 0.3s;
    z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow {
    background-color: fff;
}

.dropdown-link {
    position: relative;
}

.dropdown.second {
    top: 0;
    left: 100%;
    padding-left: 0rem;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow {
    top: 10px;
    left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

@keyframes animation {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* header css end */

/* banner css start */

.slider-section {
    position: relative;
}

.slider-container {
    width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    filter: brightness(40%);
    transition: filter 0.5s ease-in-out;
    height: 80vh;
    object-fit: cover;
    object-position: top;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 900px;
}

.slide.active {
    display: block;
}

.slide.active img {
    filter: brightness(40%);
}

.slide.active img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 50%, #000 50%);
    transform: translateX(100%);
    transition: transform 0.8s ease;
}

.button {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

#prevBtn,
#nextBtn {
    transform: translateZ(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.3s ease;
}

#prevBtn {
    left: 40px;
}

#nextBtn {
    right: 40px;
}

#prevBtn:hover,
#nextBtn:hover {
    transform: scale(1.6);
    font-size: 14px;
}
.content h2 {
    font-size: 36px;
    line-height: 60px;
}
.banner-btn-content {
    margin-top: 4rem;
}
.banner-btn {
    background: linear-gradient(to top, #eca408, #ffa111);
    color: #fff !important;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 18px;
    padding: 11px 35px;
    border: none !important;
    border-radius: 5px !important;
    transition: all 0.3s ease;
}
.banner-btn:hover {
    background: linear-gradient(to bottom, #ffae04, #ff7e37) !important;
}

/* banner css end */

/* card css start */
.card-container {
    background-color: #ddd8c8;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding-top: 35px;
    padding-left: 130px;
    padding-right: 130px;
}
.grid-card {
    height: 250px;
    width: 100%;
    padding: 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.card-title {
    font-size: 22px;
    font-weight: normal;
}
.card-icon {
    font-size: 4.5em;
    color: #fff !important;
}
.trade-container {
    padding-top: 7rem;
    padding-bottom: 7rem;
    display: flex;
    align-items: center;
    gap: 3.5rem;
}
.left-side {
    width: 50%;
}
.right-side {
    width: 50%;
}
.head-title {
    font-size: 36px;
    color: #242424;
    font-weight: 400;
    line-height: 2.4rem;
}
.line {
    width: 40px;
    border-top: 2px solid #000000 !important;
    opacity: 1 !important;
    margin-top: 1.5rem;
}
.content-text {
    line-height: 32px;
    font-size: 22px;
    color: #0c0c0c;
    text-align: justify;
    padding-top: 1rem;
}
.image-gird {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
/* card css end */

/* Video Gallery start css */
.vedio-container {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.btn-link {
    background-color: #e6a52b;
    border-color: #e6a52b !important;
    text-decoration: none !important;
    color: #fff !important;
    border-radius: 35px;
    padding: 14px 28px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}
.btn-link:hover {
    background-color: #a49f92;
    border-color: #a49f92 !important;
}
.video-gird {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 3rem;
}
.video-content {
    width: 100%;
    height: 212px;
}
.video-link {
    width: 100%;
    height: 100%;
}
/* Video Gallery end css */

/* filp card css start */
.filp-container {
    background: #ddd8c8;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.card-section {
    padding-top: 3rem;
}

.card-subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
}

.flipping-cards {
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* Profile card front */

.profile-card {
    height: 300px;
    width: 100%;
    position: relative;
    perspective: 150rem;
    -moz-perspective: 150rem;
}
.profile-card-2 {
    height: 300px;
    width: 300px;
    position: relative;
    perspective: 150rem;
    -moz-perspective: 150rem;
}

.about-section li, .risk-right li{
    list-style-type: disc;
}

.about-section a, .risk-right a{
    text-decoration: underline;
}

.about-section ul, .risk-right ul{
    padding: 10px;
}

.profile-card-face {
    height: 300px;
    width: 100%;
    /* color: #ffffff; */
    border-radius: 10px;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
}
.profile-card-face-2 {
    height: 300px;
    width: 300px;
    color: #ffffff;
    border-radius: 10px;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
}

.profile-card-back {
    transform: rotateY(180deg);
}

.profile-card:hover .profile-card-front {
    transform: rotateY(-180deg);
}

.profile-card:hover .profile-card-back {
    transform: rotateY(0);
}

/* Profile card front */

.expertise-section {
    padding: 15px;
}
.btn-read {
    font-size: 14px;
    text-transform: capitalize;
    background-color: #242424 !important;
    color: #fff !important;
    text-align: center;
}

.expertise-title {
    color: #ffffff;
    text-align: center;
    /* font-family: Abril Fatface; */
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
}

.expertise {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

/* Profile card back */

.about-section {
    padding: 15px;
}

.about-title {
    font-weight: 700;
    font-size: 1.6rem;
    color: #ffff;
    padding-top: 3rem;
    padding-bottom: 0.8rem;
}

.about-text {
    font-style: normal;
    text-align: justify;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(43, 42, 42);
}

/* filp card css end */

/* ====================risk managment css start ======================== */
.content-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 900px;
}
.content-2 h2 {
    font-size: 32px;
    line-height: 60px;
    font-weight: 400;
}
.content-2 h2 span {
    background-color: #101010bb;
    padding: 12px 45px;
}

.banner-image {
    width: 100%;
    height: 60vh;
}
.banner-image img {
    width: 100%;
    height: 100%;
    filter: brightness(60%);
    object-fit: cover;
    object-position: center;
}
.risk-container {
    display: flex;
    gap: 2rem;
}
.risk-left {
    width: 50%;
}
.risk-right {
    width: 50%;
}
.flipping-cards-risk {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.risk-list {
    display: flex;
    gap: 0.8rem;
    font-size: 18px;
    color: #000000;
    margin-bottom: 0.5rem;
}
.risk-card-img {
    height: 100%;
    width: 100%;
}
.risk-list-card {
    font-size: 14px;
    color: rgb(96, 96, 96);
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.risk-goal-text {
    color: #242424;
    font-weight: 400;
    font-size: 20px;
}
.best-text {
    font-size: 14px;
    text-align: center;
    color: rgb(96, 96, 96);
}

/*================= risk managment css end ======================*/

/* investment opportunities css start */
.investment-banner-container {
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center center;
    height: 220px;
    width: 100%;
    color: #fff;
}
.entry-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 10px;
}
.slash-text {
    font-size: 12px;
    font-weight: 500;
}
.investment-container {
    background-color: #f7f7f7;
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.investment-content {
    font-size: 14px;
    color: #606060;
    font-weight: 700;
}
.text-email {
    color: #cb2027;
    font-style: italic;
    font-size: 14px;
}
/* investment opportunities css end */

/* reports css start */
.report-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    justify-items: center;
}
.report-img {
    width: 373px;
    height: 482px;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
}
.manual-img {
    width: 232px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}
.manual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    justify-items: center;
}
.left-line {
    height: 2px;
    border-top: 1px solid rgba(119, 119, 119, 0.2);
    width: 20%;
}
.right-line {
    height: 2px;
    border-top: 1px solid rgba(119, 119, 119, 0.2);
    width: 20%;
}

/* reports css end */

/* brochure css start */
.brochure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    justify-items: center;
    gap: 7rem;
    padding-left: 6rem;
    padding-right: 6rem;
}
/* brochure css end */

/* procurement css start */
.procurement-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
    padding-left: 12rem;
    padding-right: 12rem;
}
.procurement-card {
    border-bottom-width: 2px !important;
    background-color: #d6d6d6 !important;
    border-bottom-color: #dd8500 !important;
    border-bottom-style: solid !important;
    border-radius: 10px !important;
    padding: 30px 15px;
    width: 400px;
}
.procutement-card-2 {
    background-color: #dddddd;
}
.procurement-title {
    color: #dd8500;
    font-size: 16px;
    font-weight: 400;
}
.procurement-content {
    line-height: 26px;
    font-size: 16px;
    color: #424242;
}
.btn-procurement {
    padding: 8px 14px;
    border: 2px solid #212121 !important;
    color: #333;
    border-radius: 35px;
    font-size: 12px;
    text-transform: uppercase;
    text-shadow: none;
    letter-spacing: 0.3px;
    font-weight: 600;
}
.btn-procurement:hover {
    background-color: #212121;
    color: #fff;
}
.procurement-line {
    height: 1px;
    border-top: 5px solid #00c1cf;
    width: 100%;
}
.procurement-details-container {
    display: flex;
    gap: 1rem;
}
.procurement-details-left {
    width: 70%;
}
.procurement-details-right {
    width: 30%;
}
.procurement-bg {
    background-color: #ededed;
    border-radius: 8px;
    padding: 35px 15px;
}
.pro-details-content {
    color: rgb(96, 96, 96);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: justify;
}
.download-pro {
    color: #fff !important;
    background-color: rgb(197, 0, 0) !important;
    border-radius: 0px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}
.procurement-right-title {
    font-size: 18px;
    font-weight: 400;
}
.procurement-right-content {
    color: rgb(96, 96, 96);
    font-size: 14px;
    font-weight: 400;
}
.apply-link {
    font-size: 14px;
    font-weight: 700;
    color: #cb2027;
}
.apply-link:hover {
    color: #000;
}
/* procurement css end */

/* activiteis css start */
.activities-container {
    display: flex;
    gap: 2rem;
}
.activities-left {
    width: 65%;
}
.activites-right {
    width: 35%;
}
/* activiteis css end */

/* media gallery css start */
.media-gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
}
.media-line {
    border-top: 3px solid rgba(119, 119, 119, 0.2) !important;
    opacity: 1 !important;
    width: 100%;
}
.media-title {
    font-size: 30px;
    font-weight: 500;
    background-image: -webkit-linear-gradient(
        left,
        rgb(60, 27, 59),
        rgb(90, 55, 105) 33%,
        rgb(46, 76, 130) 66%,
        rgb(29, 28, 44) 100%
    );
    -webkit-background-clip: text;
    color: transparent;
}

.media-btn {
    color: #fff;
    border-color: #6ab165;
    background-color: #6ab165;
    font-size: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 2em;
}
.media-btn:hover {
    color: #f7f7f7;
    border-color: #59a453;
    background-color: #59a453;
}
.image-gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
/* media gallery css end */

/* new and events css start */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    row-gap: 2rem;
}
.news-card {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    position: relative;
}
.entry-header {
    flex: 1 0 50%;
    max-width: 50%;
    position: relative;
}
.news-img {
    height: 210px;
    width: 300px;
}

.entry-header .news-img img {
    transition: transform 0.3s ease-in-out;
    height: 100%;
    width: 100%;
}

.news-card:hover .entry-header img {
    transform: scale(1.1);
    filter: brightness(70%);
}

.dot-icon {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    opacity: 0;
    transition: left 1s ease-in-out, opacity 1s ease-in-out;
}
.news-card:hover .dot-icon {
    left: 100%;
    opacity: 1;
}

.article-body-container {
    flex: 1 0 50%;
    max-width: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.6s ease;
    position: relative;
    z-index: 1;
    padding: 25px;
    background-color: #fff;
    position: relative;
}
.news-title {
    color: #333333;
    font-weight: 600;
    font-size: 18px;
}
.news-title a {
    color: #333333 !important;
}
.tag-news {
    display: inline-block;
    position: absolute;
    overflow: hidden;
    background-color: rgb(197, 0, 0);
    color: #fff !important;
    padding: 3px 10px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    top: -12px;
    left: 40%;
}
.socail-icon {
    color: #a4a4a4;
    font-size: 14px;
}
.replies-count {
    position: absolute;
    top: -4px;
    right: -7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #a4a4a4;
    color: #fff;
    text-align: center;
    font-size: 9px;
    line-height: 14px;
}
.news-content {
    color: rgb(96, 96, 96);
    font-size: 14px;
    font-weight: 400;
}
.news-content a {
    color: rgb(96, 96, 96) !important;
}
.btn-read-more {
    position: relative;
    display: inline-block;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 800;
    font-size: 13px;
    color: rgb(197, 0, 0) !important;
    overflow: hidden;
}
.btn-read-more i {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}
.btn-read-more:hover i {
    opacity: 1;
    transform: translateX(0);
}

.post-date {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: inline-block;
    min-width: 53px;
    background-color: #fff;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);
    color: #333;
    text-align: center;
    line-height: 1;
    padding: 8px;
}
.post-date-day {
    font-size: 24px;
}
.post-date-month {
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
    font-size: 12px;
}

.share-icon {
    position: relative;
    display: inline-block;
}

.tooltips {
    visibility: hidden;
    background-color: #000;
    color: #fff !important;
    text-align: center;
    position: absolute;
    z-index: 1;
    top: -30px;
    right: -25px;
    height: 30px;
    width: 55px;
    opacity: 0;
    transition: opacity 0.3s;
}

.share-icon:hover .tooltips {
    visibility: visible;
    opacity: 1;
}

.news-details-tag {
    display: inline-block;
    overflow: hidden;
    background-color: rgb(197, 0, 0);
    color: #fff !important;
    padding: 3px 10px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.news-details-container {
    display: flex;
    gap: 2rem;
}
.news-details-left {
    width: 75%;
}
.news-details-right {
    width: 25%;
}
.new-details-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    color: #333333;
    text-align: center;
    padding-left: 3rem;
    padding-right: 3rem;
    line-height: 45px;
}
.news-details-img {
    width: 100%;
    height: 600px;
}

.news-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-details-content {
    color: rgb(96, 96, 96);
    font-size: 16px;
    line-height: 24px;
}
.news-line {
    border-top: 2px solid rgba(113, 113, 113, 0.15);
    opacity: 1 !important;
}
.news-social-icon-conatiner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.news-social-icon {
    display: flex;
    align-items: center;
    flex-direction: row !important;
    justify-content: center;
    height: 40px;
    width: 40px;
    color: #ffffff !important;
    margin-top: auto;
    margin-bottom: auto;
    border-radius: 50%;
}
.news-social-icon:hover {
    filter: brightness(90%);
}
.commemt-input {
    border: 2px solid rgba(129, 129, 129, 0.2) !important;
}
.new-category {
    color: #333;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
}
.category-list {
    color: #727272;
    font-size: 14px;
}
.category-list:hover {
    color: #333;
}
.recent-img {
    width: 75px;
    height: 60px;
}
.recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.recent-title {
    font-size: 15px;
    color: #333;
}
.recent-date {
    font-size: 12px;
    color: #bbb;
}

/* new and events css end */

/* footer css start */
.color-footer {
    background-color: var(--primary-color);
    height: 30px;
}
.footer-container {
    display: flex;
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.footer-left {
    width: 70%;
}
.footer-right {
    width: 30%;
}
.footer-img {
    width: 443px;
    height: 140px;
}
.footer-text {
    margin-top: 2rem;
    line-height: 24px;
    font-size: 14px;
    color: #303030;
    text-align: justify;
}
.footer-title {
    font-size: 26px;
    font-weight: 400;
}
.footer-line {
    border-top: 2px solid rgba(119, 119, 119, 0.2) !important;
    opacity: 1 !important;
}
.footer-icon {
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    width: 25px;
    height: 25px;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
.footer-icon:hover {
    background-color: #303030;
}
.footer-facebook {
    background-color: #365493;
}
.footer-youtube {
    background-color: #cb2027;
}
.footer-linkendin {
    background-color: #0274b3;
}
.footer-contact {
    margin-top: 3rem;
}
.footer-end {
    background-color: #ddd8c8;
    border-top: 1px solid rgba(119, 119, 119, 0.2);
}
.footer-end-text {
    font-size: 13px;
    color: #777777;
}
.footer-end-text span a {
    text-decoration-color: #606060 !important;
}
/* footer css end */

/* socail icon start css */

.social-button {
    position: fixed;
    top: 40%;
    z-index: 399;
    display: flex;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px 6px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff !important;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.facebook-icon {
    background-color: #365493;
}

.facebook-icon:hover {
    background-color: #365493;
}

.youtube-icon {
    background-color: #cb2027;
}
.youtube-icon:hover {
    background-color: #cb2027;
}

.linkedin-icon {
    background-color: #0274b3;
}

.linkedin-icon:hover {
    background-color: #0274b3;
}

.social-icon .icon-social {
    font-size: 14px;
    color: #fff !important;
}

.social-icon .social-text {
    opacity: 0;
    width: 0;
    transition: opacity 0.3s ease-in-out, width 0.3s ease-in-out;
}

.social-icon:hover .social-text {
    opacity: 1;
    width: 65px;
}
.risk-list-card a {
    color: #cb2027 !important;
}
.risk-list-card a:hover {
    color: #000000 !important;
}

/*========================== resposive device=================== */

@media only screen and (max-width: 575px) {
    .whb-general-header {
        height: 68px;
    }
    .bars-button {
        font-size: 24px;
    }
    .small-device {
        display: block;
    }
    .header {
        display: none;
    }
    .social-button {
        display: none;
    }
    .card-grid {
        grid-template-columns: 1fr;
        padding-left: 0px;
        padding-right: 0px;
    }
    .trade-container {
        display: flex;
        flex-direction: column;
    }
    .left-side {
        width: 100%;
    }

    .right-side {
        width: 100%;
    }
    .head-title {
        font-size: 28px;
        line-height: 32px;
    }
    .content-text {
        font-size: 18px;
    }
    .video-gird {
        grid-template-columns: 1fr;
    }
    .flipping-cards {
        grid-template-columns: 1fr;
    }
    .footer-container {
        display: flex;
        flex-direction: column;
    }

    .footer-left {
        width: 100%;
    }
    .footer-right {
        width: 100%;
    }
    .footer-img {
        width: 100%;
        height: 100%;
    }
    .content {
        padding-left: 14rem;
        padding-right: 14rem;
    }
    .content-2 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .slide img {
        width: 100%;
    }
    .content h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .content-2 h2 {
        font-size: 20px;
        line-height: 30px;
    }
    .content-2 h2 span {
        background-color: #101010bb;
        padding: 12px;
    }
    .contaniner-padding {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .banner-image {
        width: 100%;
        height: 100%;
    }
    .risk-container {
        display: flex;
        flex-direction: column;
    }
    .risk-left {
        width: 100%;
    }
    .risk-right {
        width: 100%;
    }
    .flipping-cards-risk {
        grid-template-columns: 1fr;
    }
    .brochure-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .report-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .manual-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .procurement-container {
        grid-template-columns: 1fr;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .procurement-details-container {
        display: flex;
        flex-direction: column;
    }
    .procurement-details-right {
        width: 100%;
    }
    .procurement-details-left {
        width: 100%;
    }
    .media-gallery-container {
        grid-template-columns: 1fr;
    }
    .image-gallery-container {
        grid-template-columns: 1fr 1fr;
    }
    .activities-container {
        display: flex;
        flex-direction: column;
    }
    .activities-left {
        width: 100%;
    }
    .activites-right {
        width: 100%;
    }
    .investment-container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .filp-container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .trade-container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .vedio-container {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-card {
        display: flex;
        flex-direction: column;
    }
    .entry-header {
        max-width: 100%;
    }
    .article-body-container {
        max-width: 100%;
    }
    .news-details-container {
        display: flex;
        flex-direction: column;
    }
    .news-details-left {
        width: 100%;
    }
    .news-details-right {
        width: 100%;
    }
    .new-details-title {
        padding-left: 0;
        padding-right: 0;
        font-size: 20px;
        line-height: 28px;
    }
    .news-details-img {
        width: 100%;
        height: 100%;
    }
    .entry-title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .whb-general-header {
        height: 68px;
    }
    .bars-button {
        font-size: 24px;
    }
    .small-device {
        display: block;
    }
    .header {
        display: none;
    }
    .social-button {
        display: none;
    }
    .card-grid {
        grid-template-columns: 1fr 1fr;
        padding-left: 0px;
        padding-right: 0px;
    }
    .trade-container {
        display: flex;
        flex-direction: column;
    }
    .left-side {
        width: 100%;
    }

    .right-side {
        width: 100%;
    }
    .video-gird {
        grid-template-columns: 1fr 1fr;
    }
    .flipping-cards {
        grid-template-columns: 1fr 1fr;
    }
    .footer-container {
        display: flex;
        flex-direction: column;
    }

    .footer-left {
        width: 100%;
    }
    .footer-right {
        width: 100%;
    }
    .content {
        padding-left: 14rem;
        padding-right: 14rem;
    }
    .content-2 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .slide img {
        width: 100%;
    }
    .content h2 {
        font-size: 22px;
        line-height: 30px;
    }
    .content-2 h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .content-2 h2 span {
        background-color: #101010bb;
        padding: 12px;
    }
    .contaniner-padding {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .banner-image {
        width: 100%;
        height: 100%;
    }
    .risk-container {
        display: flex;
        flex-direction: column;
    }
    .risk-left {
        width: 100%;
    }
    .risk-right {
        width: 100%;
    }
    .brochure-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .report-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .manual-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .procurement-container {
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .media-gallery-container {
        grid-template-columns: 1fr;
    }
    .image-gallery-container {
        grid-template-columns: 1fr 1fr;
    }
    .activities-container {
        display: flex;
        flex-direction: column;
    }
    .activities-left {
        width: 100%;
    }
    .activites-right {
        width: 100%;
    }
    .investment-container {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .filp-container {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .trade-container {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .vedio-container {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-details-container {
        display: flex;
        flex-direction: column;
    }
    .news-details-left {
        width: 100%;
    }
    .news-details-right {
        width: 100%;
    }
    .news-details-img {
        width: 100%;
        height: 100%;
    }
    .entry-title {
        font-size: 24px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .whb-general-header {
        height: 70px;
    }
    .bars-button {
        font-size: 24px;
    }
    .small-device {
        display: block;
    }
    .header {
        display: none;
    }
    .social-button {
        display: none;
    }
    .card-grid {
        grid-template-columns: 1fr 1fr;
        padding-left: 0px;
        padding-right: 0px;
    }
    .trade-container {
        display: flex;
        flex-direction: column;
    }
    .left-side {
        width: 100%;
    }

    .right-side {
        width: 100%;
    }
    .video-gird {
        grid-template-columns: 1fr 1fr;
    }
    .flipping-cards {
        grid-template-columns: 1fr 1fr;
    }
    .footer-container {
        display: flex;
        flex-direction: column;
    }

    .footer-left {
        width: 100%;
    }
    .footer-right {
        width: 100%;
    }
    .content {
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .content-2 {
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .slide img {
        width: 100%;
    }
    .content h2 {
        font-size: 30px;
        line-height: 36px;
    }
    .content-2 h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .contaniner-padding {
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .banner-image {
        width: 100%;
        height: 100%;
    }
    .risk-container {
        display: flex;
        flex-direction: column;
    }
    .risk-left {
        width: 100%;
    }
    .risk-right {
        width: 100%;
    }
    .report-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .procurement-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .activities-container {
        display: flex;
        flex-direction: column;
    }
    .activities-left {
        width: 100%;
    }
    .activites-right {
        width: 100%;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-details-container {
        display: flex;
        flex-direction: column;
    }
    .news-details-left {
        width: 100%;
    }
    .news-details-right {
        width: 100%;
    }
    .new-details-title {
        padding-left: 0;
        padding-right: 0;
        font-size: 20px;
        line-height: 28px;
    }
    .entry-title {
        font-size: 28px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .whb-general-header {
        height: 75px;
    }
    .bars-button {
        font-size: 24px;
    }
    .small-device {
        display: block;
    }

    .header {
        display: none;
    }
    .social-button {
        display: none;
    }
    .card-grid {
        padding-left: 0px;
        padding-right: 0px;
    }
    .banner-image {
        width: 100%;
        height: 100%;
    }
    .procurement-container {
        padding-left: 8rem;
        padding-right: 8rem;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
}
@media only screen and (min-width: 1200px) {
}
