@media only screen and (max-width: 1366px) {}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 992px) {
    br {
        display: none;
    }

    .container {
        padding-inline: 15px;
    }

    section {
        overflow: hidden;
    }

    .hero-section {
        height: auto;
        padding-top: 0;
    }

    .hero-section h1,
    section h1 {
        font-size: 2.5rem;
    }

    .footer .menu-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .footer .menu-wrapper div[class*="col-"] {
        width: 100%;
    }

    .footer .menu-wrapper ul {
        padding-left: 0;
        gap: 0;
        margin-block: 0;
    }

    .footer .menu-wrapper ul:before {
        display: none;
    }

    [class*="max-limit-"] {
        max-width: 100%;
    }

    .border-skewed--topLeft,
    .border-skewed--topRight {
        height: 50px;
        width: 122px !important;
        width: 30%;
        left: -13%;
        top: 67px;
    }

    .border-skewed--topRight {
        left: auto;
        right: -13%;
    }

    h4.min-h-2 {
        min-height: auto;
    }

    .get-more-it h3>span::before {
        display: none;
    }

    .get-more-it .col-lg-6:last-child {
        background-color: var(--secondary-blue);
    }

    .get-more-it h3>span>span {
        color: var(--white);
    }

    .rectangle.left,
    .rectangle.right,
    .rectangle.background-blue--primary {
        height: 70px;
        width: 100px;
        left: calc(50% - 50px);
        top: -45px;
        transform: rotate(90deg);
    }

    .background-gray>.min-h-2,
    .background-gray.min-h-6,
    .background-blue--secondary .py-lg-5.min-h-6 {
        min-height: auto;
    }
    
    .background-gray.h-50 {
        height: auto !important;
    }

    .bar-skewed--lg {
        max-width: 65%;
    }

    .card.img {
        height: auto;
    }

    /* Menu - Small Device */

    .navbar-nav {
        margin-inline: -20px;
        padding-inline: 25px;
        overflow: auto;
        height: calc(100vh - 70px);
    }

    .navbar-toggler {
        border: none;
        padding: 0;
    }

    .navbar-toggler:focus {
        outline: 0;
        box-shadow: none;
    }

    .navbar-nav .dropdown-menu {
        display: flex;
        flex-direction: column;
        border: none;
        padding-block: 5px;
    }

    .navbar-nav > .nav-item > .nav-link {
        color: #6f6f6f;
        font-size: 1.125rem;
        padding-block-end: 0;
    }

    .navbar-nav .dropdown-menu .dropdown-item.nav-link {
        padding-block: 4px;
        color: #6f6f6f;
        font-size: 0.875rem;
    }

    .navbar-nav .nav-item.active > .nav-link {
        font-weight: 600;
        color: var(--secondary-blue);
    }

    .navbar .dropdown-menu .dropdown-item:focus, .navbar .dropdown-menu .dropdown-item:hover {
        background-color: #eef1f6;
        border-radius: 3px;
    }

    .navbar-expand-lg .navbar-nav .mega-menu.active {
        display: none;
    }

    .navbar-nav .dropdown-menu > .nav-item > ul > li > a,
    .footer .menu-wrapper h5 ~ ul > .nav-item > ul > li > a {
        position: relative;
        padding-left: 16px;
    }

    .navbar-nav .dropdown-menu > .nav-item > ul > li > a:before,
    .footer .menu-wrapper h5 ~ ul > .nav-item > ul > li > a:before {
        content: '';
        margin-right: 16px;
        position: absolute;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #6f6f6f;
        opacity: 0.5;
        left: 6px;
        top: 50%;
    }

    .navbar-nav .dropdown-menu > .nav-item > ul > li.active > a:before,
    .footer .menu-wrapper h5 ~ ul > .nav-item > ul > li.active > a:before {
        opacity: 1;
    }

    .footer .nav-item.active>a {
        font-weight: 700;
        color: var(--secondary-blue);
    }

    .navbar-nav .options {
        display: none;
    }
}

@media only screen and (max-width: 768px) {}

/* Menu - Large Device */
@media only screen and (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        top: 75.5px;
        margin-top: 0;
        padding-inline: 0.75rem;
        flex-direction: column;
        border-radius: 0;
        min-width: 200px;
        border-top: none;
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-inline: 1rem;
    }

    .dropdown-toggle:after {
        display: none;
    }

    .dropdown-item.active,
    .dropdown-item:active {
        background-color: #f8f9fa;
    }

    .navbar {
        height: 75px;
        border-bottom: 1px solid #d2d2d2;
    }

    .footer .nav-item.active>a {
        font-weight: 500;
        color: var(--text-blue);
    }

    .navbar .navbar-nav {
        display: flex;
        align-items: center;
        position: relative;
        height: 75px;
    }

    .navbar-nav>.nav-item {
        position: relative;
    }

    .navbar-nav>.nav-item:hover>.nav-link {
        color: var(--text-blue);
    }

    .navbar-nav>.nav-item::before {
        position: absolute;
        content: '';
        left: 50%;
        right: 50%;
        width: 0;
        bottom: 0;
        height: 4px;
        background-color: var(--secondary-blue);
        transition: all 0.25s ease-in;
        transform-origin: center;
    }

    .navbar-nav>.nav-item:hover:before,
    .navbar-nav>.nav-item.active::before {
        width: 100%;
        left: 0;
        right: 0;
    }

    .navbar .navbar-nav li {
        display: flex;
        align-items: center;
        height: 100%;
        margin-inline: 16px;
    }

    ul.dropdown-menu li {
        flex-direction: column;
    }

    ul.dropdown-menu li ul {
        position: relative;
        margin-block: 10px;
    }

    .navbar .dropdown:hover .dropdown-menu>li>a {
        font-size: 16px;
        color: #6f6f6f;
    }

    .navbar .dropdown:hover .dropdown-menu>li>ul>li>a {
        color: #6f6f6f;
    }

    .navbar .dropdown-menu .dropdown-item:focus, .navbar .dropdown-menu .dropdown-item:hover {
        color: var(--secondary-blue);
    }

    .navbar .dropdown-menu .nav-item.active>.nav-link {
        background-color: var(--secondary-blue);
        color: var(--white);
        font-weight: 500;
        border-radius: 3px;
    }

    .navbar .navbar-nav li.options {
        margin-inline: 0px;
        margin-left: 10px;
        border-left: 1px dotted var(--text-blue);
        cursor: pointer;
        min-width: 45px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .navbar .navbar-nav li.options:last-of-type {
        margin-left: 0px;
    }

    .navbar .dropdown:hover .dropdown-menu {
        display: flex;
        top: 75.5px;
        margin-top: 0;
        flex-direction: column;
        border-radius: 0;
        min-width: 200px;
        border-top: none;
        opacity: 0;
        z-index: -1;
    }

    .navbar .navbar-nav li.options span {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .navbar .navbar-nav li.options:last-of-type {
        background-color: var(--primary-yellow);
    }

    .navbar .nav-link {
        display: flex;
        align-items: center;
        height: 100%;
        transition: all 0.25s ease;
        color: var(--text-color);
    }
}