header {
    background-color: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .sticky {
    position: fixed;
    top: 0;
    /* left: 0;  */
    /* width: 100%; */
    z-index: 1000;
}

@media screen and (max-width: 768px) {
    header .sticky {
        height: 50px;
    }
}

.navbar {
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;

}

header nav {
    /* margin: 0 50px; */
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 !important;
}



@media screen and (max-width: 768px) {
    header nav {
        top: 0;
    }
}


@media screen and (min-width: 1024px) {
    header nav .logo {
        padding-left: 0px;
    }
}

@media screen and (max-width: 768px) {
    header nav .logo {
        width: 50%;
        padding-left: 5%;
    }
}

header nav .logo picture img {
    width: 175px;
    /* height: 100px; */
}

@media screen and (max-width: 768px) {
    header nav .logo picture img {
        width: 100%;
        height: auto;
    }
}

header nav .menu {
    display: grid;
    grid-template-columns: 1fr 3fr 2fr;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 7px 0 18px;
    gap: 140px;
    width: 1440px;
    max-width: 1440px !important;
    /* margin-left: 5%;
    margin-right: 5%; */
    height: 78px;
    background: #FCFCFF;
    box-shadow: 0px 16px 32px rgba(20, 20, 26, 0.3);
    border-radius: 24px;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    header nav .menu {
        /* display: none; */
        width: 100%;
        height: 0;
        background-color: unset;
        border-radius: unset;
    }
}

header nav .menu .nav-btn {
    display: none;
}

@media screen and (max-width: 768px) {
    header nav .menu .nav-btn {
        display: inline-block;
        position: absolute;
        right: 0px;
        top: 0px;
    }

    header nav .menu .nav-btn label {
        display: none;
        padding: 13px;
    }

    header nav .menu .nav-btn label span {
        display: block;
        width: 25px;
        height: 10px;
        border-top: 2px solid white;
    }
}

header nav .menu #nav-check {
    display: none;
}

header nav .menu .nav-links {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    /* gap: 20px; */
    color: white;
    padding: 0 30px;
    font-size: 1.063rem;
}

@media screen and (min-width: 1024px) {
    header nav .menu .nav-links {
        font-size: 1rem;
        padding: 0 10px;
    }
}

header nav .menu .nav-links a {
    text-transform: capitalize;
    text-decoration: none;
    font-family: 'Outfit', 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 550;
    font-size: 16px;
    line-height: 20px;
    width: auto;
    display: flex;
    align-items: center;
    text-align: justify;
    color: #0E0F26;
}

@media screen and (max-width: 768px) {
    header nav .menu .nav-links a {
        margin: 10px 0px;
    }
}

header nav .menu .nav-links .dropdown-menu {
    padding: 0.5rem;
    font-size: inherit;
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    header nav .menu .nav-links .dropdown-menu {
        top: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        position: relative;
        background-color: inherit;
        border: none !important;
    }
}

header nav .menu .nav-links .dropdown-menu .dropdownlist {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

header nav .menu .nav-links form {
    display: flex;
}

@media screen and (max-width: 768px) {
    header nav .menu .nav-links form {
        display: none;
    }
}

header nav .menu .nav-links form input {
    border: 0;
    border-radius: 25px;
    height: 27px;
    padding: 0 10px;
}

@media screen and (min-width: 1024px) {
    header nav .menu .nav-links form input {
        max-width: 120px;
    }
}

header nav .menu .nav-links form button {
    width: 165px;
    height: 27px;
    margin-left: 5px;
    font-size: 0.938rem;
    border-radius: 25px;
    font-weight: 600;
    color: white;
    background-color: black;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 1024px) {
    header nav .menu .nav-links form button {
        max-width: 92px;
    }
}

@media screen and (max-width: 768px) {
    header nav .menu .nav-links {
        z-index: 1000;
        position: absolute;
        display: block;
        width: 100%;
        height: 0px;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        padding: 0 5%;
        top: 70px;
        left: 0px;
        background: #111827;
        color: white;
    }

    header nav .menu .nav-links a {
        display: block;
        width: 100%;
    }
}



header nav .menu-mobile {
    display: none;
    background: #FCFCFF;
    box-shadow: 0px 16px 32px rgba(20, 20, 26, 0.3);
    border-radius: 14px;
}

@media screen and (max-width: 991px) {
    header nav .menu-mobile {
        display: grid;
        grid-template-columns: 2fr 0.2fr 0.2fr;
        padding: 4px;
        align-items: center;
        width: 95%;
        margin: 0 10px;
        background: #FCFCFF;
        box-shadow: 0px 16px 32px rgba(20, 20, 26, 0.3);
        border-radius: 14px;
    }
}

@media screen and (max-width: 600px) {
    header nav .menu-mobile {
        display: grid;
        grid-template-columns: 1fr 0.2fr 0.2fr !important;
        padding: 4px;
        align-items: center;
        max-width: 400px !important;
        padding: 0 10px;
    }

    header nav .menu-mobile .nav-links {
        width: -webkit-fill-available !important;
        margin: 30px 10px;
        height: 580px !important;
    }
}




@media screen and (max-width: 600px) {
    header nav .menu-mobile .nav-btn {
        margin-top: 0;
    }
}


@media screen and (min-width: 1024px) {
    header nav .menu-mobile .nav-links {
        font-size: 1rem;
    }
}


header nav .menu-mobile .nav-links a {

    font-family: 'Outfit', 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    display: flex;
    /* align-items: center; */
    text-align: justify;
    color: #0E0F26;
}

@media screen and (max-width: 768px) {
    header nav .menu-mobile .nav-links a {
        margin: 4px 0px;
    }
}

header nav .menu-mobile .nav-links .dropdown-menu {
    top: 145%;
    padding: 0.5rem;
    font-size: inherit;
}

@media screen and (max-width: 768px) {
    header nav .menu-mobile .nav-links .headermobilecontent {
        display: flex;
        flex-direction: column;
        overflow-x: hidden;

    }

    header nav .menu-mobile .nav-links .dropdown-menu {
        top: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        position: relative;
        background-color: inherit;
        border: none !important;
    }

    header nav .menu-mobile .nav-links .dropdown-menu li {
        margin: 10px 0px;
    }
}

header nav .menu-mobile .nav-links form {
    display: flex;
}

@media screen and (max-width: 768px) {
    header nav .menu-mobile .nav-links form {
        display: none;
    }
}

header nav .menu-mobile .nav-links form input {
    border: 0;
    border-radius: 25px;
    height: 27px;
    padding: 0 10px;
}

@media screen and (min-width: 1024px) {
    header nav .menu-mobile .nav-links form input {
        max-width: 120px;
    }
}

header nav .menu-mobile .nav-links form button {
    width: 165px;
    height: 27px;
    margin-left: 5px;
    font-size: 0.938rem;
    border-radius: 25px;
    font-weight: 600;
    color: white;
    background-color: black;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 1024px) {
    header nav .menu-mobile .nav-links form button {
        max-width: 92px;
    }

}

@media screen and (max-width: 991px) {
    .nav-container-panther {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        /* overflow: unset; */
        list-style: none;
        padding: 0;
        width: 600px;
        justify-items: center;
        align-items: center;
    }

    .menu-mobile .panel-container.collapse.show {
        display: inline-grid;
        grid-template-columns: 1fr 1fr;
        width: -webkit-fill-available;
        justify-items: center;
        background: #F2F2F2;
        padding: 10px;
        margin: 0 9px;
        margin-top: -25px;
        width: 660px;
    }

    .menu-sidebar-row {
        padding: 0px !important;
        width: 250px !important;
    }

    .sidebar-menu-container {
        display: grid !important;
        grid-template-columns: 50px 1fr !important;
    }

    .nav-sidebar-row-p {
        width: 200px;
    }

    header nav .menu-mobile .nav-links {
        z-index: 1000;
        position: absolute;
        display: none;
        width: -webkit-fill-available;
        margin: 30px 20px;
        height: 600px;
        padding: 30px;
        overflow-y: auto;
        top: 90px;
        left: 0;
        background: #FCFCFF;
        box-shadow: 0px 16px 32px rgba(20, 20, 26, 0.3);
        border-radius: 24px;
        font-family: 'Outfit', 'Roboto', sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        color: #0E0F26;

    }

    header nav .menu-mobile .nav-links a {
        display: flex;
        width: -webkit-fill-available;
        flex-direction: row;
        align-content: flex-start;
        padding: 10px;
        justify-content: space-between;

    }


    .nav-container-panther {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        list-style: none;
        padding: 0;
    }

    .nav-container-panther-use {
        display: flex;
        flex-direction: column;
        display: flex;
        overflow: hidden;
        list-style: none;
        margin-right: auto;
        margin-left: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;

    }

    .nav-container-panther-use:hover {
        /* background: grey; */
    }

    .h-nav-sub-title-2 {
        width: -webkit-fill-available;
        display: flex;
        justify-content: space-between;

    }

    .nav-sidebar-row-container2 {
        margin-left: 0;
        display: inline-flex;
        justify-content: space-between;
        width: 570px;
    }

    ul.solutioncontainer {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }

    .solution-menu-container {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }
}

@media screen and (max-width: 568px) {
    .h-nav-sub-title-2:hover.img {
        transform: rotate(90deg);

    }

    ul.solutioncontainer {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }

    .nav-sidebar-row-p {
        width: 100px;
    }

    .solution-menu-container {
        display: flex;
        align-items: flex-start;
        gap: 1px;
    }

    .menu-sidebar-row {
        padding: 0px !important;
        width: 150px !important;
    }

    .nav-sidebar-row-container {
        margin-left: 0;
        display: inline-flex;
        justify-content: space-between;
        width: -webkit-fill-available;
        flex-direction: column !important;
    }

    .nav-sidebar-row-container2 {
        margin-left: 0;
        display: inline-flex;
        justify-content: space-between;
        width: 270px;
    }

    .btnlogintext {}

    .sidebar-menu-container:hover {
        background: #F2F2F2;
        border-radius: 14px;
        width: 345px;
    }

    .menu-mobile .panel-container.collapse.show {
        display: inline-grid;
        /* grid-template-columns: 1fr 1fr; */
        width: -webkit-fill-available;
        justify-items: center;
        background: #F2F2F2;
        padding: 10px;
        margin: 0 9px;
        margin-top: -25px;
        width: -webkit-fill-available;
        border-radius: 0px 0px 14px 14px;
    }

    header nav .menu-mobile .nav-links {
        z-index: 1000;
        position: absolute;
        display: none;
        width: -webkit-fill-available;
        margin: 30px 20px;
        height: 600px;
        padding: 10px;
        overflow-y: auto;
        top: 90px;
        left: 0;
        background: #FCFCFF;
        box-shadow: 0px 16px 32px rgba(20, 20, 26, 0.3);
        border-radius: 24px;
        font-family: 'Outfit', 'Roboto', sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        color: #0E0F26;

    }

    header nav .menu-mobile .nav-links a {
        display: flex;
        width: -webkit-fill-available;
        flex-direction: row;
        align-content: flex-start;
        padding: 10px;
        justify-content: space-between;

    }

    .menu-mobile a.nav-link.solutions.collapsed:hover {
        background: white;
    }

    .menu-mobile a.nav-link.solutions :hover img {
        transform: rotate(90deg);
    }

    .menu-mobile a.nav-link.solutions.collapsed img {
        transition: transform 1s ease;

    }

    .menu-mobile .panel-heading:hover img {
        transform: rotate(90deg);

    }


    .nav-container-panther {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        list-style: none;
        padding: 0;
        width: 300px;
        justify-items: center;
        align-items: center;
    }

    .nav-container-panther-use {
        display: flex;
        flex-direction: column;
        display: flex;
        overflow: hidden;
        list-style: none;
        margin-right: auto;
        margin-left: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;

    }

    .h-nav-sub-title-2 {
        width: -webkit-fill-available;
        display: flex;
        justify-content: space-between;

    }
}


header nav .menu {
    z-index: 1;
}

header nav .menu-mobile {
    z-index: 1;
}

@media screen and (max-width: 768px) {
    header nav .menu-mobile .nav-btn {
        display: inline-block;
        right: 0px;
        top: 0px;
        padding: 10px;
    }
}

@media screen and (max-width: 768px) {
    header nav .menu-mobile .nav-btn label {
        display: inline-block;
        margin-bottom: 0px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    header nav .menu-mobile .nav-btn label span {
        display: block;
        width: 25px;
        height: 10px;
        border-top: 2px solid #000;
    }
}

.nav-link.solutions {
    display: flex;
    align-items: center;
    justify-content: center;
}



@media screen and (min-width: 1024px) and (max-width: 1024px) {
    header nav .menu {
        margin-left: 0;
        margin-right: 0;
        gap: 20px;
        margin-top: 10px;
    }
}

.resouce-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resouce-text a {
    text-transform: capitalize;
    text-decoration: none;
    font-family: 'Outfit', 'Roboto', sans-serif;
    display: block !important;
    text-align: justify;
    color: #0E0F26;
    border: none;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 24px !important;
    text-align: justify;
    display: flex !important;

}

.resouce-text a p {

    font-family: 'Outfit' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 16px !important;
    color: #929293 !important;

}

.languagedropdown {
    padding: 20px;
    background: linear-gradient(0deg, #F7FDFF, #F7FDFF);
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.2);
    border-radius: 24px;
}

/* ul.dropdown-menu.res-box.p-10.show {
    position: absolute;
    top: 100%;
    left: -600px;
    z-index: 1000;
    list-style-type: none;
    padding: 20px !important;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: max-content;
} */

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    list-style-type: none;
    padding: 10px !important;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: max-content;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    /* Center text within grid items */
}

.language-selector {
    position: relative;
    display: inline-block;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    color: white;
}

.dopdownlogo {
    background: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #F7FDFF;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    z-index: 1;
}

.language-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* Display 5 columns in one row */
    gap: 10px;
    /* Adjust the gap between grid items */
}

.language-grid li {
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin: 10px;
}

.language-grid li[data-image] {
    background-repeat: no-repeat;
    background-position: 5px 50%;
    padding-left: 30px;
    /* Adjust this value based on the flag size */
}

.language-grid li:hover {
    background-color: #e0f0ff;
    /* Adjust the hover background color */
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-languague {
    display: flex;
    color: black;
    cursor: pointer;
    flex: 0 0 auto;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
    padding: 0.15rem 0.15rem;
}

.megamenu-dropdown {
    width: 100%;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    height: auto;
    opacity: 0;
    visibility: hidden;
    /* background-color: #fff; */
    overflow: hidden;
    transition: all .15s ease-in-out .1s;
    z-index: 1050;
    padding: 0;
    top: 100%;
    /* border: 5px solid #fff; */
    /* border-radius: 37px; */
}

.usecase-content-keys {
    display: contents;
}

.menu-img {
    width: 60px;
    height: 60px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 10px;
}

.menu-img img {
    width: 100%;
    height: 100%;
}

.submenu-image {
    width: 40px;
    height: 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 10px;
}

.submenu-image img {
    width: 100%;
    height: 100%;
}



.megamenu-category-name {
    min-height: 600px;
    background-color: #f3f3f3 !important;
}

.megamenu-category-name>ul>li .tab-content {
    display: none;
}

.megamenu-category-name>ul>li.active .tab-content,
.megamenu-category-name>ul>li:hover .tab-content {
    display: block;
}

.active {
    display: block;
}

.hidden {
    display: none;
}

.megamenu:hover .megamenu-dropdown {
    opacity: 1;
    visibility: visible;
    justify-content: center;
}

.megamenu-category-name>ul>li.active:after,
.megamenu-category-name>ul>li:hover:after {
    content: 'a';
    display: block;
    font-size: 15px;
}

.sub-items-list a {
    width: 100%;
}

.megamenu-category-name>ul>li.active,
.megamenu-category-name>ul>li:hover {
    background-color: #e3e3e3;
}

.list-panther.use-cases {
    left: 42px;
    top: 82%;
    /* right: 42px; */
}

.list-panther {
    min-width: 100%;
}

.list-wrap-panther {
    padding: 24px;
    border-radius: 20px;
    width: -webkit-fill-available;
}



#resourcesmenu {
    list-style: none;
}


.megamenu-dropdown {
    box-shadow: 0px 0px 6px 1px rgb(0 0 0 / 20%);
    border-radius: 24px;
    justify-content: center;
    display: flex

}

.nav-sidebar-heading {
    width: auto !important;
    text-align: left !important;
    font-size: 40px !important;
    color: #474747 !important;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
    width: 100%;
    /* margin-bottom: -20px; */
}

.menu-sidebar-row {
    border-radius: 16px;
    transition: .2s;
    border: none !important;
    width: -webkit-fill-available;
}

.custom-menu-sidebar-row {
    border-radius: 16px;
    transition: .2s;
    border: none !important;
    width: -webkit-fill-available;
}

.custom-sidebar-menu-container {
    display: grid;
    align-items: center;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-template-columns: 48px 1.5fr;
    grid-template-rows: auto;
    padding: 10px;
}

@media screen and (max-width: 768px) {
    .menu-sidebar-row {
        padding: 0px;
    }
}

.sidebar-menu-container {
    display: grid;
    align-items: center;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-template-columns: 48px 1.5fr;
    grid-template-rows: auto;
    padding: 10px;
}

.menu-sidebar-row:hover {
    display: flex;
    flex-direction: row;
    gap: 10px;
    background: #F2F2F2;
    border-radius: 14px;
}

li.resouce-text:hover {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* align-items: center; */
    gap: 10px;
    background: #F2F2F2;
    border-radius: 14px;
}


.hover-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    /* Change the background color as needed */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Add shadow for a card-like effect */
    padding: 10px;
    z-index: 1000;
    /* Ensure it's above other elements */
}

.sidebar-menu-container:hover .hover-content {
    display: block;
}

.nav-sidebar-img {
    width: 48px;
}

.nav-sidebar-row-container {
    margin-left: 0;
}

.nav-sidebar-row-heading {
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: justify;
    color: #0E0F26;
}

@media screen and (max-width: 768px) {
    .nav-sidebar-row-heading {
        font-family: 'Outfit', 'Roboto', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 20px;
        text-align: start;
        color: #0E0F26;
    }

    /* .sidebar-menu-container {
        display: flex;
    } */

    .sidebar-menu-container:hover {

        background: #F2F2F2;
        border-radius: 14px;


    }


}

.nav-sidebar-row-p {
    margin-top: 4px;
    margin-bottom: 0;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #929293;
    text-align: start;
}



.link-menu-heading {
    color: #18191b;
}

@media screen and (min-width: 1440px) {
    .list-panther.w--open {
        left: 90px;
        right: 90px;
        width: 1260px;
        margin-right: 0;
        margin-left: 0;
    }
}

.list-panther.use-cases {
    top: 82%;
}

.list-panther.w--open {
    position: absolute;
    bottom: auto;
    min-width: auto;
    padding-top: 0;
    border-radius: 20px;
    background-color: transparent;
    box-shadow: 4px 70px 50px 0 rgb(0 0 0 / 8%);
}

.w-dropdown-list.w--open {
    display: block;
}

.dropdown-toggle::after {
    content: none;
}

.w-dropdown-list {
    background: white;
}

.nav-menu-full-container {
    color: #283338;
    font-size: 15px;
}

.nav-container-panther {
    /* display: flex;
    overflow: hidden;
    list-style: none;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    align-items: flex-start; */
}

.nav-grid-two-col {
    display: -ms-grid;
    display: flex;
    width: 100%;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 3fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.nav-grid-two-col1 {
    display: grid;
    grid-template-columns: 1fr 3fr;
}

.header-video video {
    width: -webkit-fill-available;
    height: auto;
    padding: 10px;
    border-radius: 24px;

}

ul.tab-menu {
    padding: 0 10px;
}

@media screen and (max-width: 768px) {
    .nav-grid-two-col {
        display: grid;
    }
}

@media(min-width: 992px) and (max-width: 1192.98px) {
    /* .div-menu-links-wrapper {
        grid-column-gap: 73px !important;
        grid-template-columns: 22fr 25fr 1fr 7fr 1fr !important;
    } */
}

#w-node-_4c3a60ec-7104-3ac2-dbd8-db196e0a7c4e-6e0a7b95 {
    -ms-grid-column-span: 1;
    -ms-grid-row: span 1;
    -ms-grid-row-span: 1;
}

.menu-sidebar {
    border-right: 1px solid #B2B2B4;
    padding: 10px;
}

.nav-img-c {
    display: flex;
    align-items: center;
}

.nav-img-c img {
    width: auto;
    height: auto;
}

.div-block-263 {
    width: -webkit-fill-available;
    justify-content: space-evenly;

}

@media screen and (max-width: 768px) {
    .div-block-263 {
        padding-top: 0px;
    }
}

.div-menu-links-wrapper {
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width: 768px) {
    .div-menu-links-wrapper {
        margin-top: 0px;
        grid-auto-columns: 0fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        grid-template-columns: 0fr;
        grid-template-rows: auto;
    }
}

.main-nav-links-flex {
    display: flex;
    min-width: 140px;
    padding-top: 0;
    padding-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 8px;
}

.main-nav-links-flex1 {
    display: flex;
    min-width: 140px;
    padding-top: 0;
    padding-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    border: 1.5px solid #eff0f2;
    border-radius: 8px;
}

.h-nav-sub-title-2 {
    overflow: visible;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    transition: color .2s;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    text-align: justify;
    background: linear-gradient(135deg, #7189FF -0.74%, #830C83 99.26%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.nav-main-link-block.light {
    text-align: left;
    white-space: normal;
    overflow: visible;
    width: 100%;
    border-radius: 6px;
    transition-property: background-color;
    color: rgba(38, 40, 43, .7);
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
}

.nav-main-link-block {
    padding: 8px;
    transition: color .2s;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .nav-main-link-block {
        padding: 0px;
    }

    p.blogdesc {
        font-size: 14px !important;
        text-align: start !important;
        color: #a19b9b !important;
        line-height: 15px !important;
    }
}

p.blogdesc {
    font-size: 14px !important;
    text-align: start !important;
    color: #a19b9b !important;
    line-height: 15px !important;
}

.div-menu-links-wrapper .main-nav-links-flex .nav-main-link-block {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #0E0F26;
    padding: 10px 30px;
}

.div-menu-links-wrapper .main-nav-links-flex .nav-main-link-block:hover {
    background: #F2F2F2;
    border-radius: 14px;
    width: auto;
}

@media screen and (max-width: 768px) {
    .div-menu-links-wrapper .main-nav-links-flex .nav-main-link-block {
        color: #676768;
    }

}

.div-menu-links-wrapper .main-nav-links-flex1 .nav-main-link-block {
    font-family: 'Outfit', 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: #676768;
}

@media screen and (max-width: 768px) {
    .div-menu-links-wrapper .main-nav-links-flex1 .nav-main-link-block {
        color: #676768;
    }
}

.features_btn {
    max-width: 581px;
    width: 100%;
    left: 61px;
    top: 484px;
    background: rgba(54, 194, 224, 0.1);
    border-radius: 9px;
    border-color: rgba(54, 194, 224, 0.1);
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #474747;
}

.tab-pane {
    display: none;
    /* Initially hide all tab panes */
    /* Add other styling as needed */
}

.show.active {
    display: block;
    /* Display active tab pane */
    /* Add other styling as needed */
}

@media screen and (max-width: 479px) {
    .list-panther.w--open {
        position: relative;
        left: 0;
        z-index: auto;
        overflow: auto;
        width: 100%;
        height: auto;
        margin-top: 12px;
        margin-right: 0;
        margin-left: 0;
        padding-right: 0;
        padding-left: 0;
    }
}

@media screen and (max-width: 991px) {
    .list-panther.w--open {
        position: static;
        top: auto;
        z-index: 5;
        overflow: auto;
        width: 97%;
        margin-right: 12px;
        margin-left: 12px;
        padding-top: 0;
        box-shadow: none;
    }

    .tab-pane {
        display: none;
        /* Initially hide all tab panes */
        /* Add other styling as needed */
    }

    .show.active {
        display: block;
        /* Display active tab pane */
        /* Add other styling as needed */
    }
}

@media (min-width: 1191.99px) and (max-width: 1341.99px) {
    .container {
        max-width: 1125px;
    }
}

.solution-content1 {
    display: grid;
    width: 1100px;
    grid-template-columns: 2fr 2fr 2fr;
}

.solution-content2 {
    display: grid;
    width: 1400px;
    grid-template-columns: 2fr 2fr 2fr 2fr;
}

.solution-content {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    gap: 20px;
}

.solution-content h2 {
    color: black;
}

@media (min-width: 767.99px) and (max-width: 991.99px) {
    .megamenu-dropdown {
        top: 15%;
        max-width: 100%;
    }

    .solution-content {
        flex-wrap: wrap !important;
    }

    .menu-sidebar {
        border-right: none;
    }

    .features_btn {
        max-width: 581px;
        min-height: 33px;
        left: 61px;
        top: 484px;
        background: rgba(54, 194, 224, 0.1);
        border-radius: 9px;
        border-color: rgba(54, 194, 224, 0.1);
        width: 100%;
    }

    .nav-grid-two-col {
        grid-template-columns: 417px 1fr;
    }

    .div-menu-links-wrapper {
        display: block;
    }


    .panel-group .div-menu-links-wrapper .main-nav-links-flex .panel-heading img {
        width: 48px;
        height: 48px;
        margin-top: 5px;
    }


    .panel-group .div-menu-links-wrapper .main-nav-links-flex1 .panel-heading img {
        width: 48px;
        height: 48px;
        margin-top: 5px;
    }

    #accordion {
        margin-top: 58px;
        margin: 0;
        padding: 16px;
        max-width: 100%;
        width: 100%;
    }

    .panel-heading {
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1450px) {
    .solution-content {
        flex-wrap: wrap !important;
        padding: 20px;
    }
}

@media (min-width: 991.99px) and (max-width: 1191.99px) {
    .nav-grid-two-col {
        display: inline-block !important;
    }

    .features_btn {
        width: 855px;
    }

    .menu-sidebar {
        border-right: none;
    }
}

.panel-heading a {
    display: block;
    position: relative;
    font-size: 14px !important;
    line-height: 14px !important;
}

.panel-heading a::after {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(45deg);
}

.panel-heading a[aria-expanded="true"]::after {
    transform: rotate(-135deg);
    top: 5px;
}

.panel-heading .arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(45deg);
}

@media (min-width: 279.99px) and (max-width: 767.99px) {
    .solution-content {
        flex-wrap: wrap !important;
    }

    .megamenu-dropdown {
        top: 15%;
        max-width: 61rem;
    }

    .nav-grid-two-col {
        grid: unset;
    }

    .div-menu-links-wrapper {
        display: grid;
        gap: 16px;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        align-items: start;
        justify-content: space-around;
        align-content: center;
    }

    .main-nav-links-flex {
        display: grid;
        gap: 16px;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        align-items: start;
        justify-content: space-around;
        align-content: center;
    }

    .main-nav-links-flex1 {
        display: grid;
        justify-items: center;
        align-items: start;
        justify-content: space-around;
        align-content: center;
    }

    .panel-group .div-menu-links-wrapper .main-nav-links-flex h4.h-nav-sub-title-2 a {
        margin-right: 8rem;
        font-family: 'Outfit', 'Roboto', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 20px;
        text-align: justify;
        color: #000000;
    }

    .panel-group .div-menu-links-wrapper .main-nav-links-flex .panel-heading img {
        width: 40px;
        height: 40px;
        margin-top: 5px;
    }

    .panel-group .div-menu-links-wrapper .main-nav-links-flex1 h4.h-nav-sub-title-2 a {
        margin-right: 8rem;
        font-family: 'Outfit', 'Roboto', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 20px;
        text-align: justify;
        color: #000000;
    }

    .panel-group .div-menu-links-wrapper .main-nav-links-flex1 .panel-heading img {
        width: 40px;
        height: 40px;
        margin-top: 5px;
    }


    .panel-heading:hover {
        background: #F2F2F2;
        border-radius: 14px;
    }

    .h-nav-sub-title-2:hover {
        background: linear-gradient(135deg, #7189FF -0.74%, #830C83 99.26%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .panel-collapse.collapse.show {
        background: #F2F2F2;
        border-radius: 0px 0px 14px 14px;


    }

    #accordion {
        margin: 0;
        padding: 16px;
        max-width: 100%;
        width: 100%;
    }

    .features_btn {
        max-width: 581px;
        min-height: 33px;
        left: 61px;
        top: 484px;
        background: rgba(54, 194, 224, 0.1);
        border-radius: 9px;
        border-color: rgba(54, 194, 224, 0.1);
        width: 100%;
    }

    .panel-heading {
        width: 100%;
    }



    .menu-sidebar {
        border-right: none;
    }
}

@media (min-width: 279.99px) and (max-width: 310.99px) {
    .panel-heading {
        width: 85%;
    }
}

#accordion {
    display: none;
}

@media screen and (max-width: 991.98px) {
    .div-block-263 .div-menu-links-wrapper.megamenu-wrapper {
        display: none;
    }

    #accordion {
        display: block;
    }
}

@media screen and (min-width: 991.98px) {
    .list-wrap-panther .close-btn .c-btn {
        display: none;
    }
}

@media (min-width: 767.99px) and (max-width: 991.99px) {
    .nav-grid-two-col {
        display: flex;
        grid-template-columns: none;
    }

    .menu-sidebar {
        /* max-width: 50%;
        width: 100%; */
    }

    .div-block-263 {}
}

.list-wrap-panther .close-btn {
    justify-content: flex-end;
}

.list-wrap-panther .close-btn button {
    background: none;
    border: none;
}

@media (max-width: 991.98px) {
    .solutions::after {
        border: solid white;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 3px;
        margin: 2px 5px;
        transform: rotate(45deg);
    }
}

@media (min-width: 1191.98px) and (max-width: 1450.98px) {
    .megamenu-dropdown {
        max-width: 1440px;
        /* margin-right: 5%;
        margin-left: 5%; */
    }
}

@media (min-width: 1451px) {
    .megamenu-dropdown {
        max-width: 1440px;
        /* margin-right: 5%;
        margin-left: 5%; */
    }


}

@media (min-width: 991.98px) and (max-width: 1400px) {
    .megamenu .megamenu-dropdown {
        height: 90vh;
        overflow-y: scroll;
    }

    .megamenu .megamenu-dropdown::-webkit-scrollbar {
        width: 5px;
    }

    .megamenu .megamenu-dropdown::-webkit-scrollbar-thumb {
        background: #BFC3D9;
        border-radius: 6px;
    }
}

.menu-sidebar .div-flex-wrapper-sidemenu .see-all-icon {
    display: flex;
    justify-content: center;
}

.usecase .solution-content {
    display: flex;
}

.usecase .nav-grid-two-col {
    grid-template-columns: 620px 1fr;
}

.usecase .div-menu-links-wrapper {
    grid-template-columns: 26fr 26fr 26fr 1fr 1fr;
}

.usecase .div-flex-wrapper-sidemenu .solution-content a:hover {
    background: rgba(0, 154, 241, 0.08);
    border-radius: 11px;
}

.usecase .div-flex-wrapper-sidemenu .solution-content a.active {
    background: rgba(0, 154, 241, 0.08);
    border-radius: 11px;
}



.usecase .main-nav-links-flex {
    min-width: 155px;
}

#accordion .panel-body a {
    display: block;
}

.usecase-mobile .div-flex-wrapper-sidemenu .solution-content a:hover {
    background: rgba(0, 154, 241, 0.08);
    border-radius: 11px;
}

.usecase-mobile .div-flex-wrapper-sidemenu .solution-content li.active {
    background: rgba(0, 154, 241, 0.08);
    border-radius: 11px;
}

@media (min-width: 992px) {
    .usecase-mobile {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .usecase {
        display: none;
    }
}

.usecase-mobile .div-block-263 {
    padding-top: 0 !important;
}



@media (min-width: 767.99px) and (max-width: 991.99px) {
    .usecase-mobile .div-block-263 {
        max-width: 100% !important;
        width: 100% !important;
    }
}

.usecase-mobile .main-nav-links-flex {
    display: block;
}

@media (min-width: 1451px) {
    header nav .menu .nav-links a.traslation-block {
        max-width: 268.5px;
    }

    .solution .transcription .sidebar-menu-container {
        margin-left: 1.5rem !important;
    }
}

@media (min-width: 767.99px) and (max-width: 991.99px) {
    .usecase-mobile .panel-heading {
        width: 100%;
        min-width: 20rem;
    }
}

.usecase-mobile .list-wrap-panther {
    box-shadow: none;
    width: 100%;
}

@media (min-width: 767.99px) and (max-width: 991.99px) {
    .usecase-mobile .nav-grid-two-col {
        display: block;
        width: 100%;
    }
}

@media (min-width: 576px) {
    .usecase .container {
        max-width: 1375px !important;
    }
}

.usecase .main-nav-links-flex a {
    font-family: 'Nunito';
    font-style: normal;
}

.usecase-mobile .main-nav-links-flex a {
    font-family: 'Nunito';
    font-style: normal;
}

@media (min-width: 1451px) {
    .usecase .container {
        max-width: 1375px;
    }
}


@media (min-width: 991.98px) and (max-width: 1400px) {
    .usecase .megamenu .megamenu-dropdown {
        height: auto;
        overflow-y: scroll;
    }
}

@media screen and (max-width: 768px) {

    #wavel_nav .nav-links.nav-open-link {
        height: max-content;
        padding: 20px;
        overflow-y: auto;
        margin: 20px 10px 10px 10px;
        display: flex;
        text-align: left;
        flex-direction: column;
        overflow-y: auto;
        max-height: 900px;
    }

    ul#resourcesmenu.collapse.show {
        list-style: none;
        display: grid;
        width: -webkit-fill-available;
        grid-template-columns: 1fr 1fr;
        padding: 0px;
        height: auto;
    }

    ul#resourcesmenu li:hover {
        background: #F2F2F2;
        border-radius: 14px;
    }

    #resourcesmenu a {
        display: grid;
        grid-template-columns: 60px 1fr;
        justify-items: center;
        padding: 0;
    }

    .btn-signup {
        padding: 9px 14px;
        width: -webkit-fill-available;
        text-align: center;
        margin: 40px 0px 0px 0px;
        background: #830C83;
        border-radius: 9px;
        color: white;
    }

    .btn-signup a {
        color: white !important;
        display: flex !important;
        align-items: center !important;
        margin: 0 35% !important;
    }

    .btnlogin {
        display: flex !important;
        align-items: center !important;

    }

    .btn-login {
        padding: 9px 14px;
        width: -webkit-fill-available;
        text-align: center;
        margin: 10px auto;
        border: 1px solid #830C83;
        filter: drop-shadow(0px 8px 24px rgba(20, 20, 26, 0.2));
        border-radius: 9px;
    }

    .btn-login a {
        display: flex;
        align-items: center;
        margin: 0 35% !important;
    }

    .login-btn {
        color: black;
    }

    .nav-sidebar-heading {
        font-size: 20px;
    }
}

/* Initial state for the text and image */
.menu .nav-link.solutions {
    color: black;
    /* Initial text color */
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.menu .nav-link.solutions img {
    transition: transform 0.3s ease;
    /* Smooth rotation */
}

/* Hover effect for the text and image */
.menu .nav-link.solutions:hover {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    text-align: justify;
    background: linear-gradient(135deg, #7189FF -0.74%, #830C83 99.26%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.menu .nav-link.solutions:hover img {
    transform: rotate(180deg);
    /* Rotate the image */
}


.menu a.resource {
    color: black;
    /* Initial text color */
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.menu a.resource img {
    transition: transform 0.3s ease;
    /* Smooth rotation */
}

/* Hover effect for the text and image */
.menu a.resource:hover {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    text-align: justify;
    background: linear-gradient(135deg, #7189FF -0.74%, #830C83 99.26%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* .menu a.resource:hover ul.dropdown-menu.res-box{
    display: flex;
} */

.menu a.resource:hover img {
    transform: rotate(180deg);
    /* Rotate the image */
}

/*Footer */
footer.footer {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 40px 20px;
    gap: 40px;
    background: #0E0F26;
    border-radius: 48px 48px 0px 0px;
    display: flex;
    justify-content: center;
}

@media (max-width:767.98px) {
    footer.footer .row {
        flex-direction: column-reverse
    }
}

footer.footer .div-3 {
    flex: 0 0 23%;
    max-width: 23%
}

@media (max-width:991.98px) {
    footer.footer .div-3 {
        flex: 0 0 49%;
        max-width: 49%
    }
}

@media (max-width:767.98px) {
    footer.footer .div-3 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

footer.footer .div-4 {
    flex: 0 0 31.3333333333%;
    max-width: 31.3333333333%
}

@media (max-width:991.98px) {
    footer.footer .div-4 {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media (max-width:767.98px) {
    footer.footer .div-4 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

footer.footer .div-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%
}

@media (max-width:991.98px) {
    footer.footer .div-8 {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media (max-width:767.98px) {
    footer.footer .div-8 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

footer.footer .div-6 {
    flex: 0 0 42.6666666667%;
    max-width: 42.6666666667%
}

@media (max-width:991.98px) {
    footer.footer .div-6 {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media (max-width:767.98px) {
    footer.footer .div-6 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

footer.footer h2 {
    font-weight: 700;
    color: #fff;
    width: 283px;
    line-height: 1.3;
    font-size: 2rem
}

@media (max-width:991.98px) {
    footer.footer h2 {
        width: 251px;
        font-size: 1.8rem
    }


}

footer.footer .navbar-brand img {
    width: 180px
}

footer.footer .copy-right {
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    margin: 0px;
}

footer.footer .copy-right a {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    margin: 0px;
}

.footer-dropdown a {
    color: white !important;
}

/* Hide the dropdown by default */
.dropdown-menufooter {
    display: none;
    position: absolute;
    background-color: white;
    list-style: none;
    padding: 10px;
    margin: 0;
    z-index: 1000;
    bottom: 100%;
    left: 0;
    width: max-content;
    border-radius: 14px;
}

/* Show the dropdown when the 'show' class is added */
.dropdown-menufooter.show {
    display: block;
}

.dropdownlistfooter {
    padding: 10px;
}

.dropdownlistfooter a {
    text-decoration: none;
    color: #333 !important;
    display: flex;
    align-items: center;
}

.footer-dropdown {
    position: relative;
    /* Make the parent container a reference for the absolute position */
}

.footer-dropdown a {
    cursor: pointer;
    display: flex;
    align-items: center;
}

@media (max-width: 600px) {
    .col-6 {
        flex: 0 0 70.6666666667%;
        max-width: 100.6666666667%;
    }

    .footer-right-bottom {
        flex-direction: column;
    }
}


footer.footer .flex-row {
    margin: 7px 0;
    display: flex;
    flex-direction: row
}

footer.footer .flex-row picture {
    margin-left: 15px
}

footer.footer .flex-row picture img {
    width: 40px;
    margin: 12px 0
}

footer.footer .flex-row picture.l0 {
    margin-left: 0
}

footer.footer .links {
    font-size: 1.1rem;
    color: #fff;
    padding: 40px !important;


}

.container-f {
    display: flex;
}

@media (max-width:1199.98px) {
    footer.footer .links {
        font-size: 1rem;
        padding: 10px !important;
    }
}

@media (max-width:991.98px) {
    footer.footer .links {
        row-gap: 0;
        /* margin: 25px 0; */
        padding: 10px !important;
    }
}

.flags {
    display: block;
}

.flags {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.flaglist {
    margin-right: 0;
}

.flaglist img {

    height: auto;
}

@media (max-width: 767px) {

    .flaglist {
        margin-right: 5px;
        /* Adjust the margin as needed */
    }

    .flaglist img {
        width: 30px;
    }
}

footer.footer .links .header {
    margin-bottom: 20px;
    font-family: Outfit;
    font-style: normal;
    font-weight: 500;
    font-size: 27.44px;
    line-height: 35px;
    color: #fcfcff;
}

@media (max-width:991px) {
    .videofooter video {
        width: -webkit-fill-available;
        height: -webkit-fill-available;
    }

    footer.footer .footercol {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start !important;
        padding: 0px;
        gap: 20px;
    }

    .footer-leftcol {
        display: flex;
        flex-direction: row;
        gap: 5px !important;
        align-items: center;
        flex-wrap: wrap !important;
    }

    footer.footer .copy-right {
        font-size: 14px;
    }

    footer.footer .flex-row {
        margin: 0px;
    }

    footer.footer {
        padding: 20px !important;
    }

    .footer .footer-right {
        align-items: flex-start !important;
        /* padding: 0px; */
    }
}

@media (max-width:767.98px) {
    footer.footer {
        padding: 20px !important;
    }

    footer.footer .footercol {
        display: flex;
        flex-direction: column !important;
        align-items: center !important;
    }

    footer.footer .links .header {
        margin-bottom: 5px
    }

    .container-f {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        width: inherit;
    }

    footer.footer .links ul li {
        line-height: normal;
    }

    footer.footer .links ul li a {
        padding: 2px;
        font-size: 14px;
        line-height: 20px;
    }

    .button-f {
        margin-right: 30%;
    }

}

footer.footer .links .togglebtn {
    display: none
}

footer.footer .container {
    display: flex;
}

footer.footer .footercol {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 20px;
}

.videofooter {
    background: #0E0F26;
    border-radius: 24px;

}

.footerbtn {

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 18.1059px 32.5907px;
    gap: 7.24px;
    background: linear-gradient(135deg, #7189FF -0.74%, #830C83 99.26%);
    border-radius: 651.813px;

}

.footerbtn a {

    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-size: 16px !important;
    line-height: 20px !important;
    color: #FCFCFF !important;

}

.footer-container {
    width: auto;
    max-width: 1440px;
}

.footer-leftcol {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

footer.footer .links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-weight: 300
}

footer.footer .links ul li {
    margin: 5px 0
}

footer.footer .links ul li a {
    text-transform: capitalize;
    text-decoration: none;
    font-family: Outfit;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #ceced0;
}

footer.footer .pp {
    font-family: Outfit;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: #ceced0;
    display: block !important;
}

@media (max-width:767.98px) {
    footer.footer .pp {
        margin-bottom: 20px
    }


}

footer.footer .pp span {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 300;
}

footer.footer .pp a {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
}

@media (max-width:1199.98px) {
    footer.footer .pp span {
        font-size: 20px
    }
}

footer.footer .foot_email form input {
    border: 0;
    border-radius: 25px;
    height: 27px;
    padding: 0 6px
}

footer.footer .foot_email form .btn-foot {
    display: table-caption
}

footer.footer .foot_email form button {
    width: 95px;
    height: 27px;
    margin-left: 5px;
    font-size: .938rem;
    border-radius: 25px;
    font-weight: 600;
    color: #fff;
    background-color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 3px rgba(0, 0, 0, .25);
    margin-top: 10px
}

.footer-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    align-content: space-between;
    justify-content: flex-end;
}

.footer-icons .flex-row {}

.footer-icons picture img {
    width: 42px;
}

@media (max-width: 575.98px) {
    .footer-icons {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: center;
    }

    .footer-icons .flex-row {}

    .footer-bottom {
        display: block !important;
        padding: 0;
    }

    footer.footer .navbar-brand {
        margin-left: 0px !important;
    }
}

@media (max-width: 991.98px) {
    .footer-icons {
        justify-content: flex-start;
    }

    .footer-bottom {
        padding: 0 !important;
        grid-template-columns: 1.5fr 0.8fr 2fr !important;
    }

    .footer-icons .flex-row {
        display: flex !important;
        margin-top: 0 !important;
    }

    footer.footer .container-f {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        width: -webkit-fill-available;
    }

    footer.footer .container-f .links .header {
        font-family: 'Outfit', 'Roboto', sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 27.44px;
        line-height: 35px;
        text-align: center;
        color: #fcfcff;
    }
}

.footer-bottom {
    display: flex;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    justify-content: space-between;
    padding: 10px 0 0 30px;
}

.footer .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-right-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.footer-right-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;

}

/* @media screen and (min-width: 1024px) and (max-width: 1024px) {
    .footer-icons .flex-row {
       
    }
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
    .footer-icons .flex-row {
        margin-top: -19% !important;
        margin-right: 12% !important;
    }
}

@media screen and (min-width: 1440px) and (max-width: 1550px) {
    .footer-icons .flex-row {
        margin-top: -15% !important;
        margin-right: 13% !important;
    }
}

@media screen and (min-width: 1550px) and (max-width: 1660px) {
    .footer-icons .flex-row {
        margin-top: -15% !important;
        margin-right: 17% !important;
    }
}

@media screen and (min-width: 1660px) and (max-width: 1760px) {
    .footer-icons .flex-row {
        margin-top: -12% !important;
        margin-right: 19% !important;
    }
}

@media screen and (min-width: 1760px) and (max-width: 1820px) {
    .footer-icons .flex-row {
        margin-top: -12% !important;
        margin-right: 20% !important;
    }
}

@media screen and (min-width: 1820px) and (max-width: 1860px) {
    .footer-icons .flex-row {
        margin-top: -12% !important;
        margin-right: 20% !important;
    }
}

@media screen and (min-width: 1860px) and (max-width: 1890px) {
    .footer-icons .flex-row {
        margin-top: -12% !important;
        margin-right: 21% !important;
    }
}

@media screen and (min-width: 1890px) and (max-width: 1990px) {
    .footer-icons .flex-row {
        margin-top: -12% !important;
        margin-right: 22% !important;
    }
} */

