/* =========================================================
   PROJECT: Your Project Name
   FILE: style.css
   AUTHOR: Raqibul Hasan Rahat
   DESCRIPTION: Custom styles and Bootstrap overrides
   CREATED: 2025
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

/* =========================================================
   1. ROOT VARIABLES
========================================================= */
:root {
    /* Brand Colors */
    --primary-color: #0D8943;
    --secondary-color: #EC1D23;
    --accent-color: #F3EC18;
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #212529;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2e0a13;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #7c3848;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    /* Neutral Palette */
    --text-color: #212529;
    --muted-color: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #121212;
    --primary-green: #00694E;
    --primary-red: #C1272D;

    /* Fonts */
    --font-primary: "Google Sans", sans-serif;

    /* Layout */
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* =========================================================
   2. GLOBAL RESET & BASE
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================================
   3. TYPOGRAPHY
========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--text-color);
    font-family: var(--font-secondary);
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}


@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1240px;
    }
}

.custom-boxshadow {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.radious-6 {
    border-radius: 6px;
}

/* =========================================================
   4. BUTTONS
========================================================= */

.btn {
    white-space: nowrap;
}

.btn-grad {
    background-image: linear-gradient(to right, var(--primary-color) 0%, var(--secondary-color) 51%, var(--accent-color) 100%)
}

.btn-grad {
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}

.btn-grad:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}



.btn-custom {
    background: var(--primary-color);
    color: #fff;
    border-radius: var(--border-radius);
    padding: 0.6rem 1.4rem;
    transition: var(--transition);
}

.btn-custom:hover {
    background: var(--accent-color);
    color: #fff;
}

.btn-primary {
    border-color: #16a34a;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #03742c 0%, #15803d 100%);
    border-color: #03742c;
}

@media (max-width: 576px) {
    .btn-primary {
        font-size: 12px;
    }
}



.btn-grad {
    background-image: linear-gradient(to right, #EB3349 0%, #F45C43 51%, #EB3349 100%)
}

.btn-grad {
    margin: 10px;
    padding: 10px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}

.btn-grad:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

@media (max-width: 576px) {
    .btn-grad {
        margin: 10px;
        padding: 8px 16px;
        text-align: center;
        text-transform: uppercase;
        transition: 0.5s;
        background-size: 200% auto;
        color: white;
        box-shadow: 0 0 20px #eee;
        border-radius: 10px;
        display: block;
        font-size: 14px;
    }
}

/* =========================================================
   5. SECTIONS
========================================================= */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: start;
    margin-bottom: 20px;
    border-bottom: 5px solid var(--primary-green);
    color: var(--primary-red);
}

.section-title h2 {
    font-size: 2rem;
    color: var(--text-color);
    position: relative;
}

/* .section-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 12px auto 0;
    border-radius: 2px;
} */
.section-title {
    display: inline-block;
    position: relative;
    z-index: 9 !important;
}

.top-title {
    font-size: 18px;
    color: #ffc221;
    font-weight: 700;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    text-transform: capitalize;
    z-index: 1;
    margin-bottom: 3px;
    color: var(--primary-color);
}

.section-title span {
    position: relative;
    color: var(--primary-color);
}

.section-title span img {
    position: absolute;
    left: -2px;
    bottom: 2px;
    z-index: -1;
    animation: section-animation 5s infinite;
}

@keyframes section-animation {
    0% {
        width: 0;
    }

    15% {
        width: 100%;
    }

    85% {
        opacity: 1;
    }

    90% {
        width: 100%;
        opacity: 0;
    }

    100% {
        width: 0;
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 20px;
    }

    .section-title {
        margin-bottom: 15px;
    }
}

/* =========================================================
   6. UTILITIES
========================================================= */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-light-custom {
    background-color: var(--bg-light) !important;
}

.bg-dark-custom {
    background-color: var(--bg-dark) !important;
    color: #fff;
}

.rounded-custom {
    border-radius: var(--border-radius);
}

.shadow-custom {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Spacing Utilities */
.mt-6 {
    margin-top: 6rem !important;
}

.mb-6 {
    margin-bottom: 6rem !important;
}

.pt-6 {
    padding-top: 6rem !important;
}

.pb-6 {
    padding-bottom: 6rem !important;
}

/* =========================================================
    6.5. LAZY LOADING ANIMATIONS
========================================================= */
.lazy-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lazy-section.lazy-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Delay animations for staggered effect */
.lazy-section.lazy-loaded:nth-child(1) {
    transition-delay: 0s;
}

.lazy-section.lazy-loaded:nth-child(2) {
    transition-delay: 0.1s;
}

.lazy-section.lazy-loaded:nth-child(3) {
    transition-delay: 0.2s;
}

/* =========================================================
    7. NAVBAR CUSTOMIZATION
========================================================= */
.top-logo img {
    width: 48px;
    height: 48px;
}

.top-logo h5 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

/* .navbar .navbar-brand {
    display: none;
}

.navbar-brand img {
    width: 60px;
    height: 80px;
} */


.navbar-brand img {
    position: absolute;
    width: 128px;
    height: 128px;
    top: 5px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0 !important;
    left: 100%;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
}

/* SPECIAL : ROTATION des flèches */
.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: 0.8em;
}

li:hover>.dropdown-toggle:after {
    transform: rotate(180deg);
}

li li:hover>.dropdown-toggle:after {
    transform: rotate(90deg);
}

li .dropdown-toggle:after {
    transition: all 0.5s;
}

li.show>.dropdown-toggle:after {
    transform: rotate(180deg);
}

li li.show>.dropdown-toggle:after {
    transform: rotate(90deg);
}

.navbar {
    background-color: var(--primary-green) !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    padding: 0 !important;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #ffffff;
    padding: 0px 0 !important;
    z-index: 999;
}

.navbar.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    box-shadow: rgba(100, 100, 111, 0.3) 0 7px 29px 0;
    transition: all 0.3s ease-in-out;
}

/* .navbar.navbar-fixed .navbar-brand {
    display: block;
}

.navbar.navbar-fixed .navbar-brand img {
    width: 40px;
    height: 50px;
} */


.navbar .nav-link {
    text-transform: uppercase;
    color: #ffffff !important;
    font-weight: 500;
    margin-left: 0px;
    margin-right: 0px;
    padding: 25px 20px !important;
    position: relative;
    white-space: nowrap;
    font-size: 15px;
}

.navbar .nav-link:hover {
    color: #ffffff !important;
    background: var(--primary-red);
}

.navbar .nav-link.active {
    color: #fff !important;
    font-weight: 700;
    background: var(--primary-red);
}

.navbar .dropdown-menu {
    top: 99% !important;
    padding: 0;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    margin: 0 !important;
    width: 100%;
}

.dropdown-submenu .dropdown-menu {
    top: 0 !important;
}

.dropdown-menu li {
    border-bottom: 1px solid #f2f2f2 !important;
}

.dropdown-menu li:last-child {
    border-bottom: 0 solid #f2f2f2 !important;
}

.dropdown-item {
    padding: 1.3rem 1.5rem;
    color: #252525 !important;
    font-weight: 500;
    background-color: #fff !important;
    background: linear-gradient(to right, var(--primary-green) 50%, white 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.5s ease-out;
    font-size: 15px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary-color) !important;
    -webkit-transition: 0.9s;
    transition: 0.9s;
    z-index: 1;
}

.dropdown-item:hover {
    padding-left: 30px;
    background-color: var(--primary-color) !important;
    color: #FFF !important;
    background-position: left bottom;
}

.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: 45%;
}

.dropdown:hover>.dropdown-menu {
    display: block;
    top: 100%;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: 19px;
}


.sub-header {
    background-color: var(--primary-color);
    padding: 15px 0;

}

.sub-header-address h4 {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0;
}


.top-social-links ul {
    padding: 0;
    margin: 0;

}

.top-social-links ul li {
    list-style: none;
    display: inline-flex;
}

.top-social-links ul li a {
    height: 36px;
    width: 36px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 18px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s ease-in;

}

.top-social-links ul li a:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.top-social-links ul li a i {
    color: #ffffff;
}

.nav-search-area {
    margin-left: 10px;
    position: relative;
    border-left: 1px solid rgb(201, 197, 197)
}

.floating-search-bar {
    display: none;
    position: absolute;
    min-width: 400px;
    right: 0;
    top: 40px;
    z-index: 99;
    padding: 10px 15px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.floating-search-bar.show {
    display: block;
}

.floating-search-bar .form-control {
    border-radius: 8px 0 0 8px;
}

.floating-search-bar .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.floating-search-bar .btn.btn-primary {
    border-radius: 0 8px 8px 0;
    border-color: var(--primary-color);
}



@media (max-width: 991px) {
    .nav-search-area {
        position: relative;
        border-left: none;
        border-right: 1px solid rgb(201, 197, 197);
    }

    .sub-header {
        display: none;
    }

    .navbar .navbar-brand {
        display: block;
    }

    .navbar {
        padding: 5px 0 !important;
    }

    .navbar-brand img {
        height: 48px;
        width: 48px;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        width: 70%;
        height: 100%;
        z-index: 99;
        background-color: var(--primary-green);
        overflow-y: scroll;
        padding-top: 27px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .navbar-collapse.collapsing {
        left: -75%;

    }

    .navbar-collapse ul {
        height: 100%;
    }

    .navbar-collapse ul li {
        width: 100%;
        margin: 0 auto;
    }

    .navbar-collapse.show {
        left: 0;
        transition: left 300ms ease-in-out;
    }

    .navbar-toggler.collapsed~.navbar-collapse {
        transition: left 500ms ease-in-out;
    }

    .navbar-light .navbar-toggler {
        color: transparent !important;
        border: transparent !important;
    }

    .bar1,
    .bar2,
    .bar3 {
        width: 20px;
        height: 2px;
        background-color: #fff;
        margin: 6px 0;
        transition: 0.4s;
    }

    .change .bar1 {
        -webkit-transform: rotate(-45deg) translate(-9px, 6px);
        transform: rotate(-45deg) translate(-9px, 6px);
    }

    .change .bar2 {
        opacity: 0;
    }

    .change .bar3 {
        -webkit-transform: rotate(45deg) translate(-5px, -3px);
        transform: rotate(45deg) translate(-5px, -3px);
    }

    .navbar .nav-link {
        padding: 8px !important;
    }

    .dropdown:hover>.dropdown-menu {
        display: none;
    }

    .dropdown-submenu:hover>.dropdown-menu {
        display: none;
    }

    .dropdown-menu.show {
        display: block !important;
        margin: 0;
        border: 0;
    }

    .dropdown-item::before {
        content: '';
        width: 0;
        height: 100%;
        background-color: transparent !important;

    }

    .navbar .dropdown-menu {
        box-shadow: none;
        padding: 0 12px;
    }

    .dropdown-item {
        background: #fff !important;
    }

    .navbar .nav-link:hover {
        color: #252525 !important;
    }

    li.show>.dropdown-toggle:after {
        transform: rotate(180deg) !important;
    }

    /* sous-Niveaux suivants */
    li li.show>.dropdown-toggle:after {
        transform: rotate(90deg) !important;
    }

    .dropdown-menu li {
        border: transparent !important;
    }

    .dropdown-item:hover {
        padding: 0.5rem 1.5rem;
        background-color: #FFF !important;
        color: #252525 !important;
        background-position: left bottom;
    }

    .navbar-light .navbar-nav .nav-link {
        border-bottom: 1px solid #DBEEFD;
    }

    .dropdown-item {
        border-bottom: 1px solid #DBEEFD;
    }

    .dropdown-item {
        padding: 5px;
        color: #252525 !important;
        font-weight: 500;
        background-color: #fff !important;
        background: linear-gradient(to right, var(--primary-color) 50%, white 50%);
        background-size: 200% 100%;
        background-position: right bottom;
        transition: all 0.5s ease-out;
        font-size: 14px;
        white-space: wrap;
    }
}

@media (max-width: 576px) {
    .floating-search-bar {
        display: none;
        position: absolute;
        min-width: 300px;
        right: 0;
        top: 40px;
        z-index: 99;
        padding: 10px 15px;
        background: #fff;
        border-radius: 0 0 8px 8px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
}



/* =========================================================
   8. ANIMATIONS
========================================================= */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   9. RESPONSIVE
========================================================= */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.6rem;
    }

    .navbar-custom .nav-link {
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }

    .section-title h2::after {
        width: 40px;
    }
}

/* ===========================================================================
============================================================================== */

.hero {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-banner-area {
    position: relative;
    z-index: 9;
    height: 100vh;
    /* border-radius: 12px; */
}



.hero .hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--contrast-color);
    position: relative;
    /* border-radius: 12px; */
    height: 100%;
}

.hero .hero-container .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero .hero-container .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.banner-slider-content {
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 0 10px;
    padding-bottom: 100px;
}

.banner-slider-content h4 {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.banner-slider-content p {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0px;
    padding-bottom: 0;
}

.banner-search-area {
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    top: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-search-area .form-control {
    padding: 18px 70px 18px 20px;
    border-radius: 50px;
    border: 2px solid;
    border-color: var(--primary-color) !important;
    background: #fff;
}

.banner-search-area .src-button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 17px 25px 17px 15px;
    border: none;
    background: var(--primary-green);
    font-size: 20px;
    cursor: pointer;
    border-radius: 0 50px 50px 0;
    color: var(--primary-red);
}


.hero_video_player {
    overflow: hidden;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff url("../../../../common/images/idp_logo_gry.png") no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.hero_video_player video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    vertical-align: middle;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    mix-blend-mode: overlay;
}

.video-slide {
    width: -moz-available;
    width: -webkit-fill-available;
}

.video-slider-content {
    margin-top: 0;
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
 /* background: rgba(255, 255, 255, 0.03); */
    border-radius: 16px;
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(10.9px); */
}

@media (max-width: 991.9px) {
    .hero-banner-area {
        height: 400px;
    }

    .hero_video_player {
        height: 400px;
    }

    .hero_video_player video {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-banner-area {
        height: 300px;
    }

    .hero_video_player {
        height: 300px;
    }

    .hero_video_player video {
        height: 300px;
    }

    .banner-slider-content h4 {
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .banner-slider-content p {
        font-size: 12px;
        font-weight: 500;
        color: #ffffff;
        margin-bottom: 0px;

    }
}

@media (max-width: 578px) {
    .hero-banner-area {
        height: 220px;
    }

    .hero_video_player {
        height: 220px;
    }

    .hero_video_player video {
        height: 220px;
    }

    .banner-slider-content h4 {
        font-size: 18px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .banner-slider-content p {
        font-size: 10px;
        font-weight: 500;
        color: #ffffff;
        margin-bottom: 0px;

    }

    .banner-slider-content {
        padding-bottom: 10px;
    }

    .banner-search-area {
        display: none;
    }
}

/* .hero .hero-container .hero-content .cta-buttons {
    margin-bottom: 30px;
} */

.hero .hero-container .hero-content .cta-buttons a {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .hero .hero-container .hero-content .cta-buttons a {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
}




/* ===========ABOUT US========= */

.about-us {
    background-color: var(--primary-green);
    border-top: 5px solid #ffffff;
    padding: 40px 0;
}

.about-quote-card {
    position: relative;
    background: #0d7a5f;
    border: 3px solid #fff;
    border-radius: 28px;
    padding: 54px 56px 56px;
    color: #ffffff;
    line-height: 1.6;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
    overflow: visible;
}

.about-quote-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    pointer-events: none;
}

/* .about-quote-card::after {
    content: "";
    position: absolute;
    left: 60px;
    bottom: -52px;
    width: 140px;
    height: 88px;
    background: #0d7a5f;
    border: 3px solid #fff;
    border-top: 0;
    border-right: 0;
    border-radius: 0 0 0 30px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
} */

.about-quote-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.quote-icon {
    position: absolute;
    font-size: 58px;
    font-weight: 700;
    color: #df1d2a;
    line-height: 1;
}

.quote-icon--left {
    top: 30px;
    left: 30px;
}

.quote-icon--right {
    bottom: 18px;
    right: 36px;
}

@media (max-width: 767.98px) {
    .about-quote-card {
        padding: 40px 32px 70px;
    }

    .about-quote-card::before {
        inset: 12px;
    }

    /* .about-quote-card::after {
        width: 110px;
        height: 70px;
        left: 36px;
        bottom: -44px;
    } */

    .about-quote-card p {
        font-size: 12px;
        line-height: 1.5;
        text-align: justify;
    }

    .quote-icon {
        font-size: 46px;
    }
}

.concern-slider-item {
    position: relative;
    background: #0d7a5f;
    border: 3px solid #fff;
    border-radius: 28px;
    padding: 20px;
    color: #ffffff;
    line-height: 1.6;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
    overflow: visible;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================================== */
.video-section {
    border-top: 5px solid #ffffff;
    position: relative;
    overflow: hidden;
}

.video-section-single {
    background-image: url(../img/bg/bg-2.jpg);
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.video-section-single::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../img/bg/bg-3.png);
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    z-index: -1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.play-icon {
    display: inline-block;
    position: relative;
    height: 70px;
    width: 70px;
    line-height: 70px;
    border-radius: 100%;
    text-align: center;
    background: #fff;
}

.play-icon:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -webkit-animation: pulse-border 1.5s ease-out infinite;
    animation: pulse-border 1.5s ease-out infinite;
    background: #fff;
}

.play-icon i {
    text-align: center;
    color: var(--primary-green);
    border-radius: 100%;
    font-size: 25px;
    position: relative;
    line-height: 70px;
    z-index: 9;
    width: 100%;
    vertical-align: middle;
    margin-left: 3px;
    height: auto;
}

.video-content-text h5 {
    font-size: 17px;
    font-weight: 500;
    text-align: justify;
    line-height: 1.5;
}


@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    to {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.video-btn-area {
    position: relative;
}

@media (max-width: 576px) {
    .video-section-single {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .video-section-single::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-image: url(../img/bg/bg-3.png);
        background-position: center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        z-index: -1;
    }

    .video-btn-area {
        position: relative;
        padding: 110px 0;
    }

    .video-content-text h5 {
        font-size: 15px;
        font-weight: 500;
        text-align: justify;
        line-height: 1.5;
        color: #fff;
    }
}

/* ===================== */

.home-research-area {
    padding: 40px 0;
    background-color: #ebebeb;
}

.icon-holder {
    /* width: 48px;
    height: 48px; */
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

}

.icon-holder svg {
    width: 36px;
    height: 36px;
}

.home-research-area .bg-green {
    background-color: rgb(220 252 231)
}

.home-research-area .bg-blue {
    background-color: rgb(219 234 254);
}

.home-research-area .bg-purple {
    background: rgb(243 232 255);
}

.home-research-area .bg-red {
    background: rgb(254 226 226);
}

.home-research-area .bg-yellow {
    background: rgb(254 249 195);
}

.home-research-area .bg-indigo {
    background: rgb(224 231 255);
}

.icon-holder.bg-green svg path {
    fill: #03742c;
}

.icon-holder.bg-blue svg path {
    fill: rgb(0, 109, 252);
}

.icon-holder.bg-purple svg path {
    fill: rgb(147 51 234);
}

.icon-holder.bg-red svg path {
    fill: rgb(220 38 38);
}

.icon-holder.bg-yellow svg path {
    fill: rgb(202 138 4);
}

.icon-holder.bg-indigo svg path {
    fill: rgb(79 70 229);
}

.hr-single-wrapper {
    margin-bottom: 20px;
    transition: all 0.5s ease-in-out;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    cursor: pointer;
}

.hr-single-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.hr-single-wrapper .title {
    font-size: 18px;

}

.hr-single-wrapper p {
    font-size: 14px;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 0;
    color: var(--text-color);
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    line-height: 1.4;
    
    overflow: hidden; */
}



/* .h-research-area {
    padding: 100px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/frontend/img/slider/research-bg.jpg');
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.h-research-area .section-title h3 {
    color: #fff !important;
    font-size: 40px;
}

.section-title p {
    font-size: 14px;
    color: #fff !important;
    margin-bottom: 5px;
}

.res-area-single {
    background-color: #fff;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 35px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    transition: 0.5s all ease;
    cursor: pointer;
}

.res-area-single:hover {
    transform: translateY(-10px);
} */
@media (max-width: 576px) {
    .home-research-area {
        padding: 25px 0;
        background-color: #ebebeb;
    }

    .icon-holder svg {
        width: 25px;
        height: 25px;
    }

    .hr-single-wrapper p {
        font-size: 12px;
        font-weight: 500;
        text-align: justify;
        margin-bottom: 0;
        color: var(--text-color);
    }

    .hr-single-wrapper .title {
        font-size: 15px;
    }
}

/* ============================= */

/* ======== */

.news-area {
    padding: 60px 0;
}

.home-Jurnals {
    padding: 40px 0;
    background-color: #f2f2f2;
}

.journal-slider .swiper-slide {
    padding: 15px;
}




@media (max-width: 576px) {
    .journal-slider .swiper-slide {
        padding: 8px;
    }

    .jurnal-content h4 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 5px;
        line-height: 1.5;
    }

    .news-area {
        padding: 20px 0;
    }
}

.journal-button-next,
.journal-button-prev {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

/* =========== */




/* ============================== */
.our-team {
    padding: 60px 0;
    background-image: url(frontend/bg/bg-2.jpg);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.single-trustess-wrapper {
    text-align: center;
    width: 100%;
}

.single-trustess-wrapper img {
    position: relative;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 10px solid var(--primary-red);
    margin: 0 auto;
    margin-bottom: -55px;
    z-index: 1;
}

.trustees-info {
    padding: 60px 10px 10px 10px;
    border-radius: 6px;
    background: var(--primary-green);
}

.trustees-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.trustees-info h6 {
    font-size: 16px;
    color: #ffffff;
}

.trustees-info p {
    font-size: 12px;
    color: #ffffff;
    font-weight: 500;
}


.trustees-button-next,
.trustees-button-prev {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

@media (max-width: 576px) {
    .our-team {
        padding: 20px 0;
    }
}

/*  */
.home-gallary {
    padding: 60px 0;
    background-color: rgb(242, 242, 242);
}

.home-gallary .img_body .image-box {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 16 / 10;
}

.home-gallary .img_body .image-box.aspect-ratio-168 {
    aspect-ratio: 16/8;
}

.home-gallary .img_body .image-box.aspect-ratio-88 {
    aspect-ratio: 8/8.5;
}

.home-gallary .img_body .image-box img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.6s;
}

.image-gallary .img_body {
    position: relative;
    margin-bottom: 20px;
}

.image-gallary:hover .img_body .image-box img {
    transform: scale(1.15);
}

.image_caption {
    position: absolute;
    text-align: center;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    bottom: 0;
    border-radius: 0 0 14px 14px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}


@media (max-width: 575px) {
    .home-gallary {
        padding: 25px 0 25px 0;
    }

    .image_caption {
        position: absolute;
        text-align: center;
        width: 100%;
        padding: 10px;
        background-color: rgba(0, 0, 0, 0.4);
        bottom: 0;
        border-radius: 0 0 10px 10px;
        color: #ffffff;
        font-size: 12px;
    }
}

/* ========================== */
.join-us {
    background-color: var(--primary-green);
    border-top: 5px solid #ffffff;
    padding: 40px 0;
}

.join-us-form {
    position: relative;
    background: #0d7a5f;
    border: 3px solid #fff;
    border-radius: 28px;
    padding: 54px 56px 56px;
    color: #ffffff;
    line-height: 1.6;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
    overflow: visible;
}

.join-us-form .title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

.join-us-form .form-control {
    padding: 10px 20px;
    border: 1px solid var(--primary-green);
}

.join-us-form .form-control:focus {
    box-shadow: none;
    border: 1px solid var(--primary-red);
}

@media (max-width: 576px) {
    .join-us-form {
        position: relative;
        background: #0d7a5f;
        border: 3px solid #fff;
        border-radius: 28px;
        padding: 20px 20px 20px;
        color: #ffffff;
        line-height: 1.6;
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
        overflow: visible;
    }
}

footer {
    overflow-x: hidden !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/frontend/img/slider/1.jpg');
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    padding-top: 150px;
    padding-bottom: 100px;
    color: #fff;
}

.footer-logo img {
    width: 180px;
    height: 180px;
}

.footer-logo p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 20px;
}

.address p {
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 500;
}

.footer-nav {
    padding: 0;
}

.footer-nav li {
    margin-bottom: 10px !important;
    list-style: none;
}

.footer-nav li a {
    color: #fff;
}


footer h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fff;
    color: #0f271f;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: #037e59;
    color: #fff;
}

@media (max-width: 576px) {
    footer {
        overflow-x: hidden !important;
        background-color: #003021;
        padding-top: 30px;
        padding-bottom: 30px;
        color: #fff;
    }

    footer h4 {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        position: relative;
        padding-bottom: 5px;
    }

    .footer-nav li {
        margin-bottom: 10px !important;
        list-style: none;
        font-size: 12px;
    }

    .footer-newsletter p {
        font-size: 12px;
    }
}


/* ====================BREADCRUMB=================== */

.breadcrumb {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: #F1f1f1;
    border-radius: 6px;
}

.breadcrumb ul {
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
}

.breadcrumb ul li {
    list-style: none;
    font-size: 12px;
    font-weight: 500;
    color: #003021;
}

.breadcrumb ul li::after {
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    margin: 0 8px;
    font-size: 12px;
}

.breadcrumb ul li:last-child::after {
    content: "";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    margin: 0 8px;
}

.breadcrumb ul li a {
    list-style: none;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
}

/* =================================== */
.inner-section-title h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.inner-sub-section-title h5 {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    color: #0D8943;
    margin: 0;
}

.abt-pg-content p {
    color: rgb(75 85 99);
    font-size: 15px;
    font-weight: 500;
}



@media (max-width: 576px) {
    .inner-section-title h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 14px;
        padding-bottom: 6px;
        border-bottom: 2px solid var(--primary-color);
    }

    .abt-pg-content p {
        color: rgb(75 85 99);
        font-size: 12px;
        font-weight: 500;
    }

    .inner-sub-section-title h5 {
        font-size: 16px;
        font-weight: 600;
        padding-bottom: 6px;
        color: #0D8943;
        margin: 0;
    }
}


/* ================================================= */

.research-list li {
    font-size: 15px;
    font-weight: 500;
    color: #60676d;
}

/* =================================================== */

.material-container .custom-card {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #d1dde7;
}

.custom-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #383838;
    margin-bottom: 5px;
}

.custom-card-content p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    color: #444343;
}

.custom-card-flex {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2;
}

.pagination .page-item .page-link {
    color: var(--primary-color) !important;
}

.pagination .page-item .page-link.active {
    color: #ffffff !important;
    ;
    background-color: var(--primary-color) !important;
}

@media (max-width: 576px) {
    .research-list li {
        font-size: 12px;
        font-weight: 500;
        color: #60676d;
    }

    .custom-card-title {
        font-size: 15px;
        font-weight: 600;
        color: #383838;
        margin-bottom: 5px;
    }

    .custom-card-content p {
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 0;
        color: #444343;
        text-align: justify;
    }

    .custom-card-flex {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    .custom-card-flex .btn {
        margin-top: 10px;
    }
}


/* ================================ */

.custom-card-2 {
    border-radius: 9px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    border: 1px solid #f3f3f3;
    margin-bottom: 15px;
    border: 1px solid var(--primary-color)
}

.custom-card-2 .custom-card-image {
    position: relative;
}

.title-badge {
    position: absolute;
    right: 10px;
    top: 10px;
}

.custom-card-2 .custom-card-image img {
    border-radius: 9px 9px 0 0;
    aspect-ratio: 16/8;
}

.custom-card-2 .custom-card-content {
    padding: 18px;
    background-color: #fff;
    border-radius: 0 0 9px 9px;
}

.custom-card-footer {
    padding: 10px;
    border-top: 1px solid #f7f2f2;
}

.custom-card-footer h5 {
    font-size: 12px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}

.card-description {
    font-size: 14px;
    font-weight: 500;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.card-more-btn a {
    margin-top: 5px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
}

@media(max-width: 576px) {
    .card-title {
        font-size: 14px;
    }
}

/* =================================== */

.details-pg-img img {
    width: 100%;
    aspect-ratio: 16/8;
    border-radius: 8px;
    margin-bottom: 15px;
}

.details-title {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 700;
}

.details-content {
    font-size: 14px;
}

/* ========================= */

.form-control:focus,
.form-select:focus {
    box-shadow: none !important;
    border-color: var(--primary-color);
}



.redirect-btn {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
}

.redirect-btn a {
    color: var(--primary-color);
}


/* =========== */

.counter-one {
    padding: 80px 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/frontend/img/slider/2.jpg');
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.counter-one .course-full-width {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10.9px);
    -webkit-backdrop-filter: blur(10.9px);
    border: 1px solid rgba(255, 255, 255, 0.49);
    width: 100%;
    text-align: center;
    padding: 25px 0;
    margin-bottom: 15px;
}

.course-inner-content p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}


.counter-one .count-box {
    font-size: 32px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 2px;

}

.counter-two {
    padding-bottom: 80px;
}

.counter-two .course-full-width {
    position: relative;
    background: #0d7a5f;
    border: 3px solid #fff;
    border-radius: 28px;
    padding: 54px 56px 56px;
    color: #ffffff;
    line-height: 1.6;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
    overflow: visible;
    width: 100%;
    margin-bottom: 15px;
}

.course-inner-content p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}


.counter-two .count-box {
    font-size: 32px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 2px;

}

/* ====================== */

.footer-newsletter ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-newsletter ul li {
    list-style: none;
    margin-right: 15px;
}

.footer-newsletter ul li a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: var(--primary-green);
    font-size: 18px;
    margin: 0 auto;
    line-height: 36px;
    text-align: center;
    color: var(--primary-red);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.footer-contects-area {
    border-radius: 6px;
    width: 100%;
}

.footer-contects-icons {
    padding: 10px;
    border-radius: 6px 0 0 6px;
    background-color: var(--primary-red);
    font-size: 16px;
    color: #ffffff;
}

.footer-contects-content {
    padding: 10px;
    border-radius: 0 6px 6px 0;
    background-color: var(--primary-green);
    font-size: 16px;
    color: #ffffff;
    width: 100%;
}

.footer-contects-content a {
    color: #ffffff !important;
}


/* =========== Custom code by Baiozid =========== */

.container-fluid {
    width: 80%;
}
@media screen and (max-width: 767px) {
    .container-fluid {
        width: 90%;
    }
}
@media screen and (max-width: 567px) {
    .container-fluid {
        width: 100%;
    }
}

.top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 42px;
    padding: 0 22px;

    border-radius: 999px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;

    font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(34,197,94,.35),
        inset 0 -2px 0 rgba(0,0,0,.15);

    transition: all .3s ease;
}

/* Hover effect */
.top-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 28px rgba(34,197,94,.45),
        inset 0 -2px 0 rgba(0,0,0,.25);
    color: #fff;
}

/* Optional arrow icon */
.top-btn::after {
    content: "→";
    font-size: 18px;
    transition: transform .3s ease;
}

.top-btn:hover::after {
    transform: translateX(4px);
}

.hero_video_player .overlay {
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.15) 0%,
        rgba(0,0,0,.55) 100%
    );
}


/* HERO SLIDE BASE */
.hero {
    position: relative;
    overflow: hidden;
}

.slider-image {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
}

/* TEXT POSITION: BOTTOM RIGHT */


/* CONTENT TEXT */
.video-slider-content {
    font-size: 28px;
    line-height: 1.4;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 0 4px 12px rgba(0,0,0,.6);
}

.video-slider-content-wrapper {
    text-align: start;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .video-slider-content {
    font-size: 18px;
    }
}
