/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #797979;
    background: #ffffff;
    font-family: 'Lato', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #092a49;
    font-family: 'Oswald', sans-serif;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #092a49;
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #0796fe;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #092a49;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #092a49;
}

.back-to-top:hover i {
    color: #0796fe;
}

@media (min-width: 992px) {
    .mt-125 {
        margin-top: 125px;
    }
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 35px;
    background-image: linear-gradient(to right, #0796fe, #092a49);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 35px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text i {
    font-size: 14px;
    color: #ffffff;
    margin-right: 5px;
}

.top-bar .text h2 {
    color: #eeeeee;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}

.top-bar .text p {
    color: #eeeeee;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 0 5px;
}

.top-bar .social {
    display: flex;
    height: 35px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 100%;
    font-size: 16px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
    color: #092a49;
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    font-weight: 300;
    text-transform: none;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    bottom: 6px;
}

.navbar .navbar-brand img {
    max-height: 45px;
    width: auto;
    margin-right: 12px;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #0796fe;
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 35px;
        padding: 20px 60px 0;
        background: rgba(9, 42, 73, .2)!important;
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #092a49 !important;
    }
    
    .page .navbar {
        background: #092a49 !important;
    }
    
    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: #092a49 !important;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/**********************************/
/******** Mega Menu CSS ***********/
/**********************************/
.mega-dropdown {
    position: static !important;
}

.mega-dropdown .mega-menu {
    position: absolute;
    width: calc(100% + 120px);
    padding: 30px 60px;
    background: #ffffff;
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    left: -60px;
    right: auto;
    top: 100%;
    transform: none;
    margin-top: 0;
}

.mega-menu-header {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 400;
}

.mega-menu-title {
    font-size: 28px;
    font-weight: 300;
    color: #092a49;
    margin-bottom: 25px;
    line-height: 1.2;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-links li {
    margin-bottom: 12px;
}

.mega-menu-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: block;
}

.mega-menu-links a:hover {
    color: #0796fe;
    padding-left: 5px;
}

.mega-menu-subheader {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 15px;
    font-weight: 600;
}

.mega-menu-platforms {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-platforms li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.mega-menu-platforms li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0796fe;
}

.mega-menu-metrics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-metrics li {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
}

.mega-menu-metrics li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0796fe;
    font-weight: bold;
}

.mega-menu-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mega-menu-footer .btn {
    padding: 8px 20px;
    font-size: 14px;
    background: #092a49;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    transition: all 0.3s;
}

.mega-menu-footer .btn:hover {
    background: #0796fe;
}

@media (min-width: 992px) {
    /* Full-width, equal mega menu dropdowns - inherit base full width */
    .mega-dropdown .mega-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        pointer-events: none;
    }
    
    /* Show dropdown on hover / JS open class */
    .mega-dropdown:hover .mega-menu,
    .mega-dropdown .mega-menu:hover,
    .mega-dropdown.show .mega-menu {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Prevent Bootstrap click behavior on desktop */
    .mega-dropdown .dropdown-toggle::after {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .mega-dropdown .mega-menu {
        position: static;
        width: 100%;
        left: 0;
        transform: none;
        box-shadow: none;
        padding: 15px;
    }
    
    .mega-menu-title {
        font-size: 22px;
    }
}


/********************************/
/******** Page Content CSS *******/
/********************************/
.page-content {
    margin-top: 125px;
    margin-bottom: 60px;
}

.page-content h1 {
    color: #092a49;
    font-size: 42px;
    font-weight: 300;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-content h2 {
    color: #092a49;
    font-size: 28px;
    font-weight: 300;
    margin-top: 40px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-content h3 {
    color: #092a49;
    font-size: 22px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content svg {
    max-width: 100px;
    max-height: 100px;
    width: 100px;
    height: auto;
    display: block;
    margin: 15px 0;
}

.page-content section {
    margin-bottom: 40px;
}

.page-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.page-content ul,
.page-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.page-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.page-content a {
    color: #0796fe;
    text-decoration: none;
}

.page-content a:hover {
    color: #092a49;
    text-decoration: underline;
}

.page-content b,
.page-content strong {
    color: #092a49;
}

/* Handle Elementor-style nested divs and subtitles */
.page-content h2 > span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.page-content h2 + h2 {
    margin-top: 5px;
    font-size: 20px;
    color: #555;
    font-weight: 300;
}

.page-content h2 + h4,
.page-content h2 + div h4 {
    margin-top: 5px;
    font-size: 18px;
    color: #666;
    font-weight: 400;
    margin-bottom: 15px;
}

.page-content h4 {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.page-content div:empty {
    display: none;
    margin: 0;
    padding: 0;
}

.page-content h2 + p,
.page-content h2 + div > p:first-child {
    margin-top: 15px;
}

.page-content p + p {
    margin-top: 10px;
}

.page-content i,
.page-content em {
    font-style: italic;
}

@media (max-width: 991.98px) {
    .page-content h1 {
        font-size: 32px;
    }
    
    .page-content h2 {
        font-size: 24px;
    }
    
    .page-content h2 + h2 {
        font-size: 18px;
    }
    
    .page-content svg {
        max-width: 80px;
        max-height: 80px;
        width: 80px;
    }
    
    .page-content {
        margin-top: 80px;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    min-height: 400px;
    background: #092a49;
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(9, 42, 73, .7);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 60px;
    font-weight: 200;
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.carousel .carousel-text .btn {
    padding: 15px 30px;
    font-size: 16px;
    letter-spacing: 1px;
    color: #ffffff;
    background: none;
    border: 2px solid #ffffff;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-text .btn i {
    margin-right: 5px;
}

.carousel .carousel-text .btn:hover {
    color: #0796fe;
    background: #ffffff;
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 122px;
    right: 2px;
    bottom: 2px;
    display: flex;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0796fe;
    background: #092a49;
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #0796fe;
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 105px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 35px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 70px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    text-align: left;
    margin-bottom: 45px;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 16px;
}

.section-header h2 {
    margin: 0 0 0 40px;
    position: relative;
    font-size: 50px;
    font-weight: 200;
}

.section-header h2::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 0;
    top: 23px;
    left: -40px;
    border-bottom: 30px solid;
    border-image: repeating-linear-gradient( 60deg, rgba(0,0,0,.05), rgba(0,0,0,.05) 1.5%, rgba(0,0,0,.1) 1.5%, rgba(0,0,0,.1) 3%) 30;
}

.section-header h2:hover::after {
    border-image: repeating-linear-gradient( 60deg, rgba(0,0,0,.1), rgba(0,0,0,.1) 1.5%, rgba(0,0,0,.05) 1.5%, rgba(0,0,0,.05) 3%) 30;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.fact .fact-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px 0 25px 0;
    text-align: center;
    background: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    transition: .3s;
}

.fact .fact-item:hover {
    border-color: rgba(0, 0, 0, .1);
    box-shadow: none;
}

.fact .fact-item img {
    max-height: 50px;
    margin-bottom: 15px;
}

.fact .fact-item h2 {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: .5s;
}

.about .about-img::after {
    position: absolute;
    content: "";
    top: 60px;
    right: 60px;
    bottom: 60px;
    left: 60px;
    background: transparent;
    border: 30px solid;
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.05), rgba(0,0,0,.05) .5%, rgba(0,0,0,.1) .5%, rgba(0,0,0,.1) 1%) 30;
    z-index: 1;
}

.about .about-img:hover::after {
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.1), rgba(0,0,0,.1) .5%, rgba(0,0,0,.05) .5%, rgba(0,0,0,.05) 1%) 30;
}

.about .about-img-1 {
    position: relative;
    height: 100%;
    height: 100%;
    margin: 0 150px 150px 0;
}

.about .about-img-2 {
    position: absolute;
    height: 100%;
    height: 100%;
    top: 150px;
    left: 150px;
    z-index: 1;
}

.about .about-img-1 img,
.about .about-img-2 img {
    position: relative;
    width: 100%;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #092a49;
    border: 2px solid #092a49;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #0796fe;
    background: #092a49;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .3s;
}

.service .service-item:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.service .service-item img {
    max-height: 50px;
    margin-bottom: 20px;
}

.service .service-item h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
}

.service .service-item p {
    margin-bottom: 10px;
    font-size: 16px;
}

.service .service-item a {
    position: relative;
    font-size: 16px;
    color: #0796fe;
    transition: .3s;
}

.service .service-item a::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    bottom: -3px;
    left: 10%;
    background: #0796fe;
}

.service .service-item:hover a.btn {
    color: #092a49;
    background: #1d2434;
    border-color: #1d2434;
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.feature .col-md-6 {
    height: 100%;
}

.feature .feature-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.feature .feature-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 70%;
    top: 30%;
    left: 0;
    border: 30px solid;
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.05), rgba(0,0,0,.05) .5%, rgba(0,0,0,.1) .5%, rgba(0,0,0,.1) 1%) 30;
    z-index: 1;
}

.feature .feature-img:hover::after {
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.1), rgba(0,0,0,.1) .5%, rgba(0,0,0,.05) .5%, rgba(0,0,0,.05) 1%) 30;
}

.feature .feature-img img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    margin: 0 30px 30px 30px;
    z-index: 2;
}

@media (max-width: 767.98px) {
    .feature .feature-img {
        margin-bottom: 45px;
    }
}

.feature .counters .col-6 {
    padding-top: 25px;
    display: flex;
    flex-direction: row;
}

.feature .counters i {
    padding: 5px 15px 0 0;
    font-size: 28px;
    color: #0796fe;
}

.feature .counters h2 {
    position: relative;
    display: inline-block;
    color: #0796fe;
    font-size: 30px;
    font-weight: 300;
}

.feature .counters h2::after {
    position: absolute;
    content: "+";
    top: -15px;
    right: -15px;
}

.feature .counters p {
    color: #092a49;
    font-size: 20px;
    margin: 0;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 75px;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: absolute;
    width: calc(100% - 30px);
    height: 96px;
    bottom: -46px;
    left: 15px;
    padding: 25px 15px;
    text-align: center;
    background: rgba(256, 256, 256, .9);
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    transition: .3s;
    overflow: hidden;
}

.team .team-text h2 {
    color: #0796fe;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team .team-text p {
    margin-bottom: 20px;
    color: #092a49;
}

.team .team-social {
    position: relative;
    font-size: 0;
}

.team .team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 3px;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    color: #092a49;
    border: 2px solid #092a49;
    transition: .3s;
}

.team .team-social a:hover {
    color: #0796fe;
    border-color: #0796fe;
}

.team .team-item:hover .team-text {
    height: 160px;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-item img {
    position: relative;
    width: 80px;
    border-radius: 80px;
    margin-bottom: 15px;
}

.testimonial .testimonial-item p {
    margin-bottom: 15px;
}

.testimonial .testimonial-item h2 {
    position: relative;
    color: #092a49;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    padding-bottom: 3px;
}

.testimonial .testimonial-item h2::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #0796fe;
    transition: .3s;
}

.testimonial .testimonial-item:hover h2::before {
    width: 60px;
}

.testimonial .testimonial-item h3 {
    color: #999999;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}

.testimonial .owl-nav {
    position: relative;
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0796fe;
    font-size: 25px;
    transition: .3s;
}

.testimonial .owl-nav .owl-prev {
    padding-right: 80px;
}

.testimonial .owl-nav .owl-next {
    padding-left: 80px;
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
    color: #092a49;
}

.testimonial .owl-nav .owl-prev::after,
.testimonial .owl-nav .owl-next::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    top: 11px;
    background: #0796fe;
    transition: .3s;
}

.testimonial .owl-nav .owl-prev::after {
    left: 9px;
}

.testimonial .owl-nav .owl-next::after {
    right: 9px;
}

.testimonial .owl-nav .owl-prev:hover::after {
    background: #092a49;
}

.testimonial .owl-nav .owl-next:hover::after {
    background: #092a49;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.blog .section-header {
    margin-bottom: 75px;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
}

.blog.blog-page .blog-item {
    margin: -30px 0 0 0;
}

.blog .blog-img {
    position: relative;
    width: 100%;
    z-index: 1;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-content {
    position: relative;
    width: calc(100% - 60px);
    top: -60px;
    left: 30px;
    padding: 25px 30px;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    z-index: 2;
}

.blog .blog-content h2.blog-title {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.blog .blog-meta {
    position: relative;
    margin-bottom: 15px;
}

.blog .blog-meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    color: #797979;
}

.blog .blog-meta i {
    color: #0796fe;
    margin: 0 2px 0 10px;
}

.blog .blog-meta i:first-child {
    margin-left: 0;
}

.blog .blog-text {
    position: relative;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    position: relative;
    padding: 0 0 0 35px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #0796fe;
    transition: .3s;
}

.blog .blog-item a.btn:hover {
    color: #092a49;
}

.blog .blog-item a.btn::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    top: 10px;
    left: 0;
    background: #0796fe;
}

.blog .owl-nav {
    position: relative;
    width: 100%;
    margin-top: -30px;
    display: flex;
    justify-content: center;
}

.blog .owl-nav .owl-prev,
.blog .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0796fe;
    font-size: 25px;
    transition: .3s;
}

.blog .owl-nav .owl-prev {
    padding-right: 80px;
}

.blog .owl-nav .owl-next {
    padding-left: 80px;
}

.blog .owl-nav .owl-prev:hover,
.blog .owl-nav .owl-next:hover {
    color: #092a49;
}

.blog .owl-nav .owl-prev::after,
.blog .owl-nav .owl-next::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    top: 11px;
    background: #0796fe;
    transition: .3s;
}

.blog .owl-nav .owl-prev::after {
    left: 9px;
}

.blog .owl-nav .owl-next::after {
    right: 9px;
}

.blog .owl-nav .owl-prev:hover::after {
    background: #092a49;
}

.blog .owl-nav .owl-next:hover::after {
    background: #092a49;
}

.blog .pagination {
    margin-bottom: 0;
}

.blog .pagination .page-link {
    margin-top: -30px;
    color: #092a49;
    border-radius: 0;
    border-color: #092a49;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #0796fe;
    background: #092a49;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-info {
    position: relative;
    display: flex;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-info:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-icon i {
    font-size: 18px;
    color: #0796fe;
}

.contact .contact-text {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 16px;
    font-weight: 400;
    color: #092a49;
    letter-spacing: 1px;
}

.contact .contact-text p {
    margin: 0;
    font-size: 16px;
}

.contact .contact-form {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-form:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 100px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #092a49;
    background: none;
    border: 2px solid #092a49;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #0796fe;
    background: #092a49;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.single img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 0 25px 0;
}

.single .col-12 img:first-of-type {
    max-height: 350px;
    object-fit: cover;
    object-position: center;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #092a49;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #0796fe;
}

.footer .footer-contact.text-center h2::after,
.footer .footer-link.text-center h2::after,
.footer .footer-newsletter.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link.text-center a {
    text-align: center;
}

.footer .footer-link a.no-arrow::before {
    display: none;
}

.footer .footer-link a.no-arrow {
    display: inline-block;
}

.footer .footer-link a:hover {
    color: #0796fe;
    letter-spacing: 1px;
}

.footer .row > .col-lg-4:nth-child(2) {
    text-align: center;
}

.footer .row > .col-lg-4:nth-child(2) h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer .footer-link a:has(img) {
    display: inline-block;
}

.footer .footer-link a:has(img)::before {
    display: none;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: #092a49;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #999999;
}

.footer .footer-newsletter .form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    height: 60px;
    border: 2px solid #1d2434;
    border-radius: 0;
}

.footer .footer-newsletter .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 44px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #092a49;
    background: none;
    border-radius: 0;
    border: 2px solid #092a49;
    transition: .3s;
}

.footer .footer-newsletter .btn:hover {
    color: #0796fe;
    background: #092a49;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a {
    color: #ffffff;
    text-decoration: underline;
    margin: 0 5px;
}

.footer .copyright a:hover {
    color: #0796fe;
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: #0796fe;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}


/************************************/
/******** Service Buttons CSS *******/
/************************************/
.service .service-item a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #092a49;
    background: none;
    border: 2px solid #092a49;
    border-radius: 0;
    text-decoration: none;
    transition: .3s;
}

.service .service-item a::after,
.service .service-item a:hover::after {
    display: none;
}

.service .service-item a:hover {
    color: #ffffff;
    background: #092a49;
}

.page-content p > a,
.page-content li a {
    color: #0796fe;
    text-decoration: none;
    font-weight: 600;
}

.page-content p > a:hover,
.page-content li a:hover {
    color: #092a49;
    text-decoration: underline;
}


/************************************/
/******** Responsive Hero CSS *******/
/************************************/
.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-video video,
.hero-video img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hero-title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
}

.page-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .hero-video {
        height: 60vh;
        min-height: 300px;
    }
    
    .page-hero {
        min-height: 300px;
    }
    
    .service .service-item a {
        display: inline-block;
        margin-top: 10px;
        padding: 10px 25px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #092a49;
        background: none;
        border: 2px solid #092a49;
        border-radius: 0;
        text-decoration: none;
        transition: .3s;
    }
    
    .service .service-item a::after,
    .service .service-item a:hover::after {
        display: none;
    }
    
    .service .service-item a:hover {
        color: #ffffff;
        background: #092a49;
    }
    
    .service .service-item h3 {
        font-size: 18px;
        word-wrap: break-word;
    }
    
    .service .service-item {
        padding: 20px 15px;
    }
}


/************************************/
/***** Solution Detail Pages CSS *****/
/************************************/
.solution-detail .page-content {
    padding-top: 40px;
    padding-bottom: 80px;
}

.solution-detail .page-content h1 {
    color: #092a49;
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.solution-detail .page-content h2 {
    color: #092a49;
    font-size: 30px;
    font-weight: 300;
    margin: 60px 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0796fe;
    position: relative;
    line-height: 1.3;
}

.solution-detail .page-content h2:first-of-type {
    font-size: 46px;
    text-align: center;
    border-bottom: none;
    margin: 0 0 15px;
    padding-bottom: 0;
}

.solution-detail .page-content h2:first-of-type::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #0796fe;
    margin: 20px auto 0;
}

.solution-detail .page-content h3 {
    color: #0796fe;
    font-size: 22px;
    font-weight: 400;
    margin: 35px 0 15px;
    line-height: 1.4;
}

.solution-detail .page-content p:first-of-type {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.solution-detail .page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.solution-detail .page-content b,
.solution-detail .page-content strong {
    color: #092a49;
    font-weight: 600;
}

.solution-detail .page-content img {
    display: block;
    max-width: 100%;
    max-height: 450px;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.solution-detail .page-content svg {
    max-width: 120px;
    max-height: 120px;
    width: 120px;
    height: auto;
    display: block;
    margin: 20px auto;
}

.solution-detail .page-content ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.solution-detail .page-content ul li {
    position: relative;
    background: #f8f9fa;
    border-left: 4px solid #0796fe;
    padding: 16px 20px 16px 55px;
    margin-bottom: 15px;
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    transition: .3s;
}

.solution-detail .page-content ul li:hover {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.solution-detail .page-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0796fe;
    position: absolute;
    left: 20px;
    top: 18px;
    font-size: 18px;
}

.solution-detail .page-content ol {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.solution-detail .page-content ol li {
    position: relative;
    background: #ffffff;
    border: 1px solid #e9ecef;
    padding: 20px 20px 20px 70px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.solution-detail .page-content ol li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    background: #0796fe;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 15px;
}

@media (max-width: 767.98px) {
    .solution-detail .page-content h1 {
        font-size: 32px;
    }
    
    .solution-detail .page-content h2 {
        font-size: 26px;
        margin: 40px 0 20px;
    }
    
    .solution-detail .page-content h2:first-of-type {
        font-size: 34px;
    }
    
    .solution-detail .page-content h3 {
        font-size: 20px;
    }
    
    .solution-detail .page-content p:first-of-type {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .solution-detail .page-content p {
        font-size: 15px;
    }
    
    .solution-detail .page-content ul li {
        padding: 14px 15px 14px 45px;
        font-size: 15px;
    }
    
    .solution-detail .page-content ul li::before {
        left: 15px;
        font-size: 16px;
    }
    
    .solution-detail .page-content ol li {
        padding: 16px 15px 16px 60px;
        font-size: 15px;
    }
    
    .solution-detail .page-content ol li::before {
        left: 12px;
        top: 14px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
    
    .solution-detail .page-content svg {
        max-width: 80px;
        max-height: 80px;
        width: 80px;
    }
}


/************************************/
/******** Alternating Layout CSS *****/
/************************************/
.alt-layout {
    padding: 60px 0;
}

.alt-layout .alt-intro {
    text-align: center;
    margin-bottom: 60px;
}

.alt-layout .alt-intro h2 {
    color: #092a49;
    font-size: 46px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.alt-layout .alt-intro p {
    font-size: 18px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.alt-section {
    padding: 40px 0;
}

.alt-section:nth-child(odd) {
    background: #f8f9fa;
}

.alt-section .alt-img img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.alt-section .alt-content h2,
.alt-section .alt-content h3 {
    color: #092a49;
    font-size: 28px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.3;
}

.alt-section .alt-content h3 {
    color: #0796fe;
    font-size: 22px;
}

.alt-section .alt-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.alt-section .alt-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.alt-section .alt-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.alt-section .alt-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0796fe;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 16px;
}

.alt-section .alt-content ol {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.alt-section .alt-content ol li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.alt-section .alt-content ol li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: #0796fe;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

.alt-section .alt-content b,
.alt-section .alt-content strong {
    color: #092a49;
    font-weight: 600;
}

/************************************/
/******** Contact Form Card CSS *******/
/************************************/
.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    margin: 60px auto;
}

.contact-form-card h2 {
    font-size: 36px;
    font-weight: 700;
    color: #092a49;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form-card .form-group {
    margin-bottom: 25px;
}

.contact-form-card label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.contact-form-card .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    font-size: 15px;
    background: #ffffff;
    color: #333;
    height: auto;
}

.contact-form-card .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, .25);
}

.contact-form-card .btn-send {
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    transition: .3s;
    width: 100%;
}

.contact-form-card .btn-send:hover {
    background: #1d4ed8;
}

@media (max-width: 767.98px) {
    .contact-form-card {
        padding: 30px;
    }
    
    .contact-form-card h2 {
        font-size: 28px;
    }
}


/************************************/
/******** Partners Ecosystem CSS *****/
/************************************/
.partners-ecosystem {
    padding: 80px 0;
    background: #f8f9fa;
}

.partners-ecosystem .partners-label {
    font-size: 16px;
    font-weight: 600;
    color: #0796fe;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.partners-ecosystem h2 {
    font-size: 46px;
    font-weight: 700;
    color: #092a49;
    margin-bottom: 20px;
    line-height: 1.2;
}

.partners-ecosystem p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.partners-ecosystem img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .partners-ecosystem {
        padding: 60px 0;
    }
    
    .partners-ecosystem h2 {
        font-size: 36px;
    }
    
    .partners-ecosystem img {
        margin-top: 30px;
    }
}

.alt-section .alt-img {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.alt-section .alt-img > div {
    width: 100%;
}

.alt-section .alt-content h2,
.alt-section .alt-content h3 {
    width: 100%;
}

.alt-section .row {
    align-items: flex-start !important;
}

.alt-section .row .alt-img {
    position: relative;
}

.alt-section .row .alt-img.col-md-6 {
    flex: 0 0 42%;
    max-width: 42%;
    padding-right: 30px;
    padding-left: 30px;
}

.alt-section .row .alt-content.col-md-6 {
    flex: 0 0 58%;
    max-width: 58%;
}

.alt-section .alt-img img {
    width: 100%;
    height: auto;
    max-height: 320px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.alt-section .alt-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.alt-section .alt-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

@media (max-width: 767.98px) {
    .alt-layout .alt-intro h2 {
        font-size: 32px;
    }
    
    .alt-layout .alt-intro p {
        font-size: 16px;
    }
    
    .alt-section {
        padding: 30px 0;
    }
    
    .alt-section .row .alt-img.col-md-6,
    .alt-section .row .alt-content.col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
    
    .alt-section .alt-img {
        margin-bottom: 25px;
    }
    
    .alt-section .alt-content h2,
    .alt-section .alt-content h3 {
        font-size: 24px;
    }
    
    .alt-section .alt-content h3 {
        font-size: 20px;
    }
    
    .alt-section .alt-content p,
    .alt-section .alt-content li {
        font-size: 15px;
    }
    
    .order-md-1 {
        order: 1;
    }
    
    .order-md-2 {
        order: 2;
    }
}

.hero-video {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    min-height: 400px;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/**********************************/
/******** WordPress Fixes *********/
/**********************************/

/* Footer company column left aligned */
.footer .footer-link:not(.text-center) h2,
.footer .footer-link:not(.text-center) a {
    text-align: left;
}

/* Mega menu hover fallback */
@media (min-width: 992px) {
    .mega-dropdown .mega-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .mega-dropdown:hover .mega-menu,
    .mega-dropdown .mega-menu:hover,
    .mega-dropdown.show .mega-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Bridge the gap between nav link and mega menu so it stays open */
    .mega-dropdown .mega-menu::before {
        content: '';
        position: absolute;
        top: -25px;
        left: 0;
        width: 100%;
        height: 25px;
    }
}

/* Careers form file input spacing */
.contact .contact-form input[type="file"] {
    margin-bottom: 25px;
    padding: 10px 15px;
}
