body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #898989;
    overflow-x: hidden;
}
body:has(.home-page) {
    background-image: url(images/vertical_line.png);
    background-position: center;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border-bottom: 1px solid #ebebeb;
    z-index: 100;
}
@media (min-width: 1200px) {
    .navbar {
        height: 99px;
        display: flex;
        align-items: center;
        padding: 0 45px;
        box-sizing: border-box;
    }
    .nav-menu li {
        line-height: 89px;
    }
    .nav-menu li.active {
        border-top: 3px solid #2e3192;
    }
}
.nav-menu {
    display: none;
    gap: 40px;
    padding: 0;
    margin: 0;
}
@media (min-width: 1200px) {
    .nav-menu {
        display: flex;
    }
    .sidebar .menu-sec {
        display: none;
    }
}
.sidebar .menu-sec ul.nav-menu {
    display: block;
}
.sidebar .menu-sec ul.nav-menu li {
    color: #fff;
    width: fit-content;
    margin-bottom: 20px;
}
.sidebar .menu-sec ul.nav-menu li.active {
    border-bottom: 2px solid #ffffff50;
}
.nav-menu li {
    list-style: none;
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
    font-size: smaller;
}
.nav-menu li a {
    color: inherit;
    text-decoration: none;
}
.logo-sec {
    width: 100%;
    padding: 10px 30px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
@media (min-width: 1200px) {
    .logo-sec {
        width: fit-content;
        flex-direction: row;
        padding: 0;
    }
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 120px;
}
.hamburger {
    cursor: pointer;
}
.hamburger .line {
    width: 20px;
    border-top: 1px solid rgb(0, 0, 0);
    border-bottom: 1px solid rgb(0, 0, 0);
    height: 0;
    position: relative;
}
.hamburger .line::before {
    content: '';
    width: 26px;
    border-top: 3px solid rgb(0, 0, 0);
    position: absolute;
    top: -7px;
    left: 0;
}
.hamburger .line::after {
    content: '';
    width: 26px;
    border-top: 3px solid rgb(0, 0, 0);
    position: absolute;
    bottom: -7px;
    left: 0;
}
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    padding: 32px 36px 32px 36px;
    background: #2e3192;
    transform: translateX(-100%);
    transition: all 0.4s ease-out;
    overflow-y: auto;
}
@media (min-width: 992px) {
    .sidebar {
        width: 397px;
        padding: 32px 36px 32px 95px;
    }
}
.sidebar .logo-sec {
    gap: 0px;
    margin-bottom: 90px;
}
.sidebar .logo-sec {
    flex-direction: row-reverse;
    justify-content: space-between;
}
@media (min-width: 992px) {
    .sidebar .logo-sec {
        flex-direction: initial;
        justify-content: initial;
    }
}

@media (min-width: 992px) {
    .sidebar .hamburger {
        margin-left: -47.5px;
        transform: translateX(-50%);
    }
}
.sidebar .hamburger .line {
    border-top-color: transparent;
    border-bottom-color: transparent;
}
.sidebar .hamburger .line::before {
    content: '';
    width: 20px;
    border-top: 1.5px solid rgb(255, 255, 255);
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(45deg);
}
.sidebar .hamburger .line::after {
    content: '';
    width: 20px;
    border-top: 1.5px solid rgb(255, 255, 255);
    position: absolute;
    bottom: 0;
    left: 0;
    transform: rotate(-45deg);
}
.sidebar .form-sec .txt {
    background: none;
    color: #fff;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ffffff9c;
}
.sidebar .form-sec .txt:focus {
    outline: none;
    box-shadow: none;
}
#hamburger-btn:checked ~ .sidebar {
    transform: translateX(0);
}
.banner-sec.home-page .banner-title {
    color: #1e1e2d;
}
.banner-sec.inner-page .banner-title {
    color: #ffffff;
}
.banner-title {
    font-size: 30px;
    line-height: 1.48;
    font-weight: 700;
    margin-top: 18px;
    letter-spacing: -.025em;
}
@media (min-width: 1025px) {
    .banner-sec {
        margin-top: 98px;
    }
}
@media (min-width: 791px) {
    .banner-title {
        font-size: 40px;
        margin-top: 29px;
    }
}
@media (min-width: 1025px) {
    .banner-title {
        font-size: 50px;
    }
}
@media (min-width: 1230px) {
    .banner-title {
        font-size: 60px;
        line-height: 65px;
    }
}
.banner-sec.home-page .banner-sub-title {
    border-left: 2.3px solid #2e3192;
    color: #2e3192;
}
.banner-sec.inner-page .banner-sub-title {
    color: #b7b8f3;
}
.banner-sub-title {
    font-weight: 600;
    line-height: 25px;
}
@media (min-width: 791px) {
    .banner-sec.home-page .banner-sub-title {
        padding: 2px 0 2px 20px;
    }
    .banner-sub-title {
        font-size: 18px;
    }
}
@media (min-width: 1025px) {
    .banner-sub-title {
        font-size: 20px;
    }
}
@media (min-width: 1230px) {
    .banner-sub-title {
        font-size: 20px;
    }
}
.banner-sec.home-page {
    height: 86vh;
    background-position-x: right;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.banner-sec.inner-page {
    height: 65vh;
    background-position: center bottom;
    background-size: cover;
    position: relative;
}
.banner-sec .title-bg {
    width: fit-content;
    background-image: linear-gradient(90deg, #2e3192 100%, transparent 0%);
    margin-bottom: -40px;
    padding: 40px 40px;
}
.products .title-bg {
    background-image: linear-gradient(90deg, #afb0b0  100%, transparent 0%);
}
.products .banner-sub-title img{
    width: 110px;
}
@media (min-width: 576px) {
    .banner-sec .title-bg {
        background-image: linear-gradient(90deg, #2e3192 95%, transparent 0%);
        margin-bottom: -40px;
        padding: 50px 50px;
    }
    .products .title-bg {
        background-image: linear-gradient(90deg, #afb0b0  95%, transparent 0%);
    }
}
@media (min-width: 1025px) {
    .banner-sec .title-bg  {
        background-image: linear-gradient(90deg, #2e3192 63%, transparent 0%);
        margin-bottom: -40px;
        padding: 52px 75px;
    }
    .products .title-bg {
        background-image: linear-gradient(90deg, #afb0b0  63%, transparent 0%);
    }
}
@media (min-width: 791px) {
    .banner-sec {
        padding-left: 55px;
        padding-right: 55px;
    }
}
@media (min-width: 576px) {
    .container {
        max-width: 546px;
    }
}
@media (min-width: 791px) {
    .container {
        max-width: 770px;
    }
}
@media (min-width: 1025px) {
    .container {
        max-width: 990px;
    }
}
@media (min-width: 1230px) {
    .container {
        max-width: 1200px;
    }
}
.discover-btn {
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #2e3192;
    font-size: smaller;
    margin: 35px 0;
}
.discover-btn .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6d6d6;
    border-radius: 100%;
    transition: all 0.2s linear;
}
.discover-btn:hover .icon {
    background-color: #2e3192;
    color: #fff;
}
.discover-btn .text {
    font-weight: 600;
    letter-spacing: .14em;
}
.body-sec {
    border: #f0f1f2;
}
.drasta {
    background-color: #ffffff;
    background-image: url(images/vertical_line.png);
    background-position: center;
    padding: 100px 0;
}
.drasta .image-sec {
    position: relative;
    background-image: linear-gradient(90deg, #cdcdcd 70%, transparent 0%);
}
.drasta .image-sec img {
    width: 100%;
}
.about-page .image-sec{
    position: relative;
}
.about-page .image-sec .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 90px;
    width: 90px;
    border-radius: 100%;
    border: 1px solid #ffffff;
    background-color: #fff;
    color: #2e3192;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
}
.about-page .image-sec:hover .play-button {
    height: 110px;
    width: 110px;
    background-color: #ffffff00;
    color: #ffffff;
}
@media (min-width: 791px) {
    .drasta .image-sec img  {
        /* margin-bottom: -100px;
        margin-left: 50px;
        width: 125%; */
    }
}
.services .promo-box {
    position: absolute;
    top: 0;
    right: 0;
    left: 0%;
    transform: translateY(-50%);
    background-color: #2e3192;
}

@media (min-width: 791px) {
    .services .promo-box {
        left: 12.25%;
    }
}
.services .promo-box .promo-box-img {
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 183.39px;
}
.services .promo-box .address, .services .promo-box .contact {
    color: #fff;
    font-size: smaller;
    position: relative;
}
.services .promo-box .address::before, .services .promo-box .contact::before {
    content: '';
    width: 44px;
    position: absolute;
    left: -70px;
    top: 11px;
    border-top: 1px solid #5659b6;
}
.media ul.social-icon {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 12.5px
}
.media ul.social-icon li a {
    text-decoration: none;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #7f81b3;
    border-radius: 100%;
    transition: background-color 0.2s linear;
}
.media ul.social-icon li a:hover {
    background-color: rgba(255,255,255,.3)
}
.services {
    background-color: #f0f1f2;
    background-image: url(images/vertical_line.png);
    background-position: center;
    padding: 100px 0;
    padding-top: 250px;
    position: relative;
}
.services .icon {
    padding: 75px;
    background: #fff;
    position: relative;
    box-shadow: 0 7px 14px rgba(17, 19, 91, .1);
}
.services .icon svg {
    width: 50px;
    height: 50px;
    fill: #2e3192;
}
.services .icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #2e3192;
    transition: height 0.2s linear;
}
.services .icon:hover::before {
    height: 20px;
}
.services .text {
    margin-left: -35px;
    z-index: 0;
}
.services .number {
    color: #2e3192;
    font-weight: 600;
}
.services .title {
    font-size: 25px;
    line-height: 30px;
    color: #000;
    font-weight: 600;
}
.about-us {
    background-color: #ffffff;
    background-image: url(images/vertical_line.png);
    background-position: center;
    padding: 100px 0;
    padding-bottom: 200px;
    position: relative;
}
.products-sec-home {
    background-color: #f0f1f2;
    background-image: url(images/vertical_line.png);
    background-position: center;
    padding: 100px 0;
    padding-bottom: 150px;
    position: relative;
}
.products-sec-home .date {
    font-size: smaller;
    font-weight: 500;
}
.products-sec-home .title {
    font-size: x-large;
    color: #000;
    font-weight: 600;
}
.products-sec-home .background-overlay {
    width: 100%;
    background-image: linear-gradient(0deg, #fff, transparent);
    transition: all 0.2s linear;
}
.products-sec-home .background-overlay:hover {
    border-top: 2px solid #2e3192;
}
.products-sec-home .item-container {
    box-shadow: 0px 0px 7px -1px #00000075;
}
@media (max-width: 991px) {
    .products-sec-home #desktop {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .products-sec-home #mobile {
        display: none !important;
    }
}
.products-sec-home .carousel-control-prev {
    left: 100%;
    top: 50%;
    transform: translate(100%, -120%);
    background: white;
    border: 1px solid #d6d6d6;
    color: #2e3192;
    width: fit-content;
    height: fit-content;
    border-radius: 100%;
    padding: 5px;
    transition: all 0.2s linear;
}
@media (max-width: 991px) {
    .products-sec-home .carousel-control-prev {
        left: 50% !important;
        top: 100% !important;
        transform: translate(-125%, 100%) !important;
    }
    .products-sec-home .carousel-control-next {
        top: 100% !important;
        right: 50% !important;
        transform: translate(125%, 100%) !important;
    }
}
.products-sec-home .carousel-control-prev:hover {
    background: #2e3192;
    color: #fff;
}
.products-sec-home .carousel-control-next {
    top: 50%;
    transform: translate(200%, 20%);
    background: white;
    border: 1px solid #d6d6d6;
    color: #2e3192;
    width: fit-content;
    height: fit-content;
    border-radius: 100%;
    padding: 5px;
    transition: all 0.2s linear;
}
.products-sec-home .carousel-control-next:hover {
    background: #2e3192;
    color: #fff;
}
.products-sec-home .carousel-control-prev-icon {
    background: none;
}
.products-sec-home .carousel-control-next-icon {
    background: none;
}
.certifications-sec {
    background-color: #f0f1f2;
    background-image: url(images/vertical_line.png);
    background-position: center;
    padding: 100px 0;
    padding-bottom: 150px;
    position: relative;
}
.certifications-sec .row {
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    box-shadow: -7px 0px 14px rgba(17, 19, 91, .1);
}
.certifications-sec .row > div:first-child {
    background-color: #ffffff;
    padding: 30px;
}
.certifications-sec .row > div:last-child {
    background-color: #2e3192;
    display: flex;
    justify-content: center;
    align-items: center;
}
.certifications-sec .row div:last-child a {
    color: #fff;
}
.about-us .image-sec img, .about-page .image-sec img {
    width: 100%;
}
@media (min-width: 768px) {
    .about-us .image-sec img {
        margin-top: -150px;
        margin-left: -50px;
    }
}
.body-sub-title {
    position: relative;
    padding-left: 60px;
    color: #2e3192;
    font-weight: 600;
}
.contact-us {
    padding: 100px 0;
}
.products-sec {
    padding: 40px 0;
}
.products-sec:first-child
{
    padding-top: 100px;
}
.products-sec:last-child{
    padding-bottom: 100px;
}
.products-sec:nth-child(odd)
{
    background-color: #f0f1f3;
}
.about-page{
    background-color: #f0f1f2;
    padding: 150px 0;
}
.about-page .body-description.highlighted{
    color: #2e3192;
    font-weight: 600;
}
.about-page .body-description .logo{
   width: 80%;
}
.body-title {
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
    color: #000;
}
.body-sub-title::before {
    content: "";
    width: 30px;
    height: 2px;
    border: 1px solid #2e3192;
    background-color: #2e3192;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.body-sub-title-inner {
    position: relative;
    padding-left: 60px;
    margin-top: 38px;
    padding-bottom: 30px;
    color: #ffffff;
    font-weight: 600;
}
.body-sub-title-inner::before {
    content: "";
    width: 30px;
    height: 2px;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.body-sub-title-inner::after {
    content: "";
    width: 61px;
    height: 2px;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    opacity: .18;
}

.products .body-sub-title-inner::after {
    opacity: .5;
}
.contact-form {
    padding-top: 50px;
}
.contact-form .input-box {
    position: relative;
}
.contact-form .lbl {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-weight: 600;
}
.contact-form .lbl.msg {
    top: 12%;
}
.contact-form .txt {
    width: 100%;
    padding: 20px;
    border-radius: 5px;
    border-width: 1px;
}
.contact-form .txt:focus {
    box-shadow: none;
    padding-top: 25px;
    padding-bottom: 15px;
}
.contact-form .txt:focus + .lbl {
    font-size: small;
    top: 20%;
}
.contact-form .txt:focus + .lbl.msg {
    font-size: small;
    top: 5%;
}
.contact-form .opt {
    padding-top: 25px;
    padding-bottom: 15px;
    appearance: none;
}
.contact-form .opt:focus {
    box-shadow: none;
}
.contact-form .opt + .lbl, .contact-form .opt:focus + .lbl {
    font-size: small;
    top: 20%;
    background: red;
}
.contact-form .btn {
    width: fit-content;
    background-color: #2e3192;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 100px;
}
.contact-us .map-sec {
    padding-top: 150px;
}
.contact-us .contact-details-sec {
    border-right: 15px solid #2e3192;
}
.contact-us .heading {
    color: #2e3192;
    font-weight: 600;
    font-size: smaller;
}
.contact-us .description {
    color: #000000;
    font-weight: 600;
    font-size: x-large;
}
.vision.title-bg {
    font-size: 4rem;
    font-weight: 600;
    padding: 100px;
    padding-right: 0;
    background-image: linear-gradient(90deg, #d3f4f5 50%, #ff000000 0);
    color: #2e3192;
}
.mission.title-bg {
    font-size: 4rem;
    font-weight: 600;
    padding: 100px;
    padding-right: 0;
    background-image: linear-gradient(90deg, #dcdff7 50%, #ff000000 0);
    color: #2e3192;
}
.our-values.title-bg {
    font-size: 4rem;
    font-weight: 600;
    padding: 100px;
    padding-right: 0;
    background-image: linear-gradient(90deg, #ffebbd 50%, #ff000000 0);
    color: #2e3192;
}
.tab {
    border-bottom: 2px solid #e1e1e1;
    display: flex;
    flex-direction: column;
    column-gap: 75px;
}
@media (min-width: 768px) {
    .tab {
        flex-direction: row;
        row-gap: 75px;
    }
}
.tablinks {
    border: none;
    background: none;
    width: 200px;
    padding: 5px 20px;
    text-align: left;
    font-weight: 600;
}
.tablinks.active {
    border-bottom: 2px solid #2e3192;
}
.tabcontent {
    display: none;
    padding: 30px 50px;
}
.tabcontent .list-heading {
    width: fit-content;
    color: #2d75b6;
    font-weight: 800;
}
#KeyFeatures .list-heading {
    padding: 0 8px;
    border-left: 2px solid #c00000;
    border-bottom: 2px solid #c00000;
}
#KeySectors .list-heading {
    color: #000000;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
}
.tabcontent .list-description {
    padding-left: 45px;
    color: #000;
}
.footer {
    background-color: #2e3192;
    color: #fff;
}
.footer a {
    text-decoration: none;
    color: inherit;
}
.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer ul li {
    padding: 6px 0;
}
.footer .footer-top {
    padding: 43px 0;
}
@media (min-width: 791px) {
    .footer .footer-top {
        padding: 100px 0 91px;
    }
}
.footer .footer-top ul.social-icon {
    display: flex;
    gap: 12.5px
}
.footer .footer-top ul.social-icon li a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #7f81b3;
    border-radius: 100%;
    transition: background-color 0.2s linear;
}
.footer .footer-top ul.social-icon li a:hover {
    background-color: rgba(255,255,255,.3)
}
.footer .footer-top .footer-title {
    font-weight: 700;
    margin-bottom: 25px;
}
.footer .footer-bottom {
    border-top: 1px solid #848484;
}
.footer .footer-bottom .copyright {
    color: #a6a6a6;
    font-size: 15px;
    line-height: 1;
    padding: 32px 0 0;
}
@media (min-width: 791px) {
    .footer .footer-bottom .copyright {
        padding: 32px 0 30px;
    }
}
.footer .footer-bottom .copyright {
    text-align: center;
}
.footer .footer-bottom .copyright a {
    color: #e3e3e3;
}

.box-shaddow {
    box-shadow: 0 0px 21px 7px rgba(17, 19, 91, .1);
}