/* hero section */

.hero-content h1 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 36px;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 16px;
        line-height: 24px;
    }
}

.hero-content h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 38px;
    line-height: 36px;
}

@media (max-width: 1024px) {
    .hero-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 16px;
        margin-bottom: 16px;
        line-height: 24px;
    }
}

.hero-buttons {
    display: inline-flex;
    column-gap: 29px;
    flex-wrap: wrap;
    row-gap: 20px;
}

.hero-banner {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    padding: 344px 0 45px;
    overflow: hidden;
}

/* Overlay */
.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #232730 0%,
        rgba(30, 37, 45, 0.5) 50%,
        #1e252d 100%
    );
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .hero-banner {
        padding: 280px 0 45px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 260px 0 45px;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: left;
    position: relative;
    max-width: 878px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 1400px) {
    .hero-content {
        max-width: 55%;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
    }
}

.certifications {
    display: flex;
    gap: 12px;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    color: #8492A2;
}

.certifications p {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

.certifications span {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 28px;
}

.container.hero-container {
    display: flex;
    column-gap: 100px;
    color: #fff;
    padding: 0 20px 160px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .container.hero-container {
        flex-direction: column;
        row-gap: 50px;
        padding-bottom: 50px;
    }
}

.video-section {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 418px;
}

.video-section a {
    background: rgba(0, 81, 181, 0.6);
    padding: 28px 29px 28px 35px;
    border-radius: 100%;
    border: 6px solid rgba(255, 255, 255, 0.6);
}

.video-section a:hover {
    background: rgba(0, 81, 181, 0.9);
    border: 6px solid rgba(255, 255, 255, 0.9);
}

.modal-backdrop.fade.show {
    z-index: 0;
}

.fa-play:before {
    color: #FFF;
    font-size: 27px;
}

.trust-img {
    display: flex;
    align-items: center;
    column-gap: 100px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 30px;
}

@media (max-width: 1024px) {
    .trust-img {
        column-gap: 50px;
    }
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 800px;
        margin: 1.75rem auto;
        padding: 0 20px;
    }
}

p.title-hero {
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 72px;
}

@media (max-width: 1024px) {
    p.title-hero {
        font-size: 48px;
        line-height: 58px;
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    p.title-hero {
        font-size: 39px;
        line-height: 44px;
        margin-bottom: 0px;
    }
}

/* services section */

.services-section {
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 8.8px 1px rgba(29, 61, 100, 0.22);
}

.services-section .container {
    padding: 115px 20px;
}

@media (max-width: 1024px) {
    .services-section .container {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .services-section .container {
        padding: 45px 20px;
    }
}

.services-section h2 {
    color: #1F2732;
    text-align: center;
}

.services-section .services-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding-bottom: 48px;
}

@media (max-width: 768px) {
    .services-section .services-cards {
        padding-bottom: 25px;
    }
}

.services-section .service-card {
    background: #1F2732;
    color: #FFF;
    width: 100%;
    max-width: 277px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 1222px) and (max-width: 1525px) {
    .services-section .service-card {
        max-width: 18%;
    }
}

@media (max-width: 618px) {
    .services-section .service-card {
        max-width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services-section .service-card .card-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 214px;
}

.services-section .service-card .card-content {
    padding: 20px 24px 47px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.services-section .service-card h3 {
    color: #F6FAFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 10px;
}

.services-section .service-card p {
    color: #F6FAFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 24px;
}

.services-section .services-buttons {
    display: inline-flex;
    column-gap: 29px;
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: center;
}

.services-section .btn-secondary {
    padding: 12px 20px;
    width: 100%;
}

.section-description {
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.section-description p {
    max-width: 1040px;
    color: #1F2732;
}

@media (max-width: 1024px) {
    .section-description {
        padding-bottom: 40px;
    }
}

@media (max-width: 769px) {
    .section-description {
        padding-bottom: 30px;
    }
}


/* industry section */

.industry-section {
    text-align: center;
    background: linear-gradient(0deg, #EFF7FF 99%, rgba(239, 247, 255, 0) 100%);
}

.industry-section .container {
    padding: 115px 20px;
}

@media (max-width: 1024px) {
    .industry-section .container {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .industry-section .container {
        padding: 45px 20px;
    }
}

.industry-section .section-title,
.industry-section .subtitle {
    color: #1F2732;
    text-align: center;
}

.industry-section .subtitle {
    max-width: 960px;
    margin: 0;
}

.industry-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    padding-bottom: 48px;
}

@media (max-width: 768px) {
    .industry-cards {
        padding-bottom: 25px;
    }
}

.industry-card {
    display: flex;
    background-color: #FFF;
    border-radius: 6px;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
}

.industry-card .card-image {
    width: 60%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.industry-card .card-content {
    padding: 55px 27px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    text-align: left;
    background: #233E5E;
}

@media (max-width: 500px) {
    .industry-card {
        flex-direction: column;
    }

    .industry-card .card-image {
        width: 100%;
        height: 20vh;
    }

    .industry-card .card-content {
        width: 100%;
    }
}

.industry-card h3 {
    color: #F6FAFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
}

.industry-card p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #F6FAFF;
    line-height: 22px;
}

.industry-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.industry-buttons .btn-primary-blue,
.industry-buttons .btn-secondary-black {
    width: auto;
}

@media (max-width: 490px) {
    .industry-buttons .btn-primary-blue,
    .industry-buttons .btn-secondary-black {
        width: 100%;
    }
}

.industry-cards .btn-secondary {
    padding: 12px 20px;
}


/* about section */

.about-section {
    background-color: #E2EFFF;
    color: #1F2732;
    display: flex;
    align-items: stretch;
}

.about-section .container {
    padding: 0 20px;
}

.about-container {
    display: flex;
    gap: 45px;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 1023px) {
    .about-section .container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 25px;
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .about-section .container {
        padding: 45px 20px;
    }
}

.about-content {
    padding: 115px 0;
    flex: 6;
}

.about-section .section-description {
    justify-content: flex-start;
    padding-bottom: 20px;
}

@media (max-width: 1180px) {
    .about-content {
        max-width: 50%;
        padding: 80px 0;
    }
}

@media (max-width: 1023px) {
    .about-content {
        max-width: 100%;
        padding: 0;
        flex: none;
    }

    .about-section .section-description {
        justify-content: center;
    }
}

.about-content p.subtitle {
    margin-bottom: 0;
}

.about-content p {
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .about-content p {
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .about-content p {
        margin-bottom: 0;
    }
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

@media (max-width: 1023px) {
    .about-buttons {
        justify-content: center;
    }
}

@media (max-width: 490px) {
    .about-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

.about-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: url('../img/new-homepage/who-we-are-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 604px;
    width: 100%;
    display: flex;
}

.about-image-container {
  flex: 5;
  position: relative;
  height: auto;
}

@media (max-width: 1023px) {
    .about-image-container {
      flex: none;
      position: relative;
      height: 410px;
    }
    .about-image {
        margin: 0 auto;
        left: 0;
    }
}

.check-fla:before {
    content: url('/img/new-homepage/check-fla.png');
}


/* solutions section */

.solutions-section {
    text-align: center;
    background-color: #1D3D64;
    padding: 115px 20px;
}

@media (max-width: 1024px) {
    .solutions-section {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 45px 20px;
    }
}

.solutions-section .container {
    max-width: 100%;
    padding: 0;
}

.solutions-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.solutions-buttons .btn-primary-blue,
.solutions-buttons .btn-secondary-black {
    width: auto;
}

@media (max-width: 490px) {
    .solutions-buttons .btn-primary-blue,
    .solutions-buttons .btn-secondary-black {
        width: 100%;
    }
}

.solutions-section h2,
.solutions-section .subtitle {
    color: #F6FAFF;
}

.solutions-card-text {
    padding: 35px 33px;
}

.solutions-card-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    color: #1F2732;
}

.solutions-card-text h3 {
    color: #1F2732;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
}

.solutions-section .service-card p {
    color: #1F2732;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 0;
}

/* owl style */

.owl-item {
    padding: 0 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 1023px) {
    .owl-item {
        transform: scale(1) !important;
        opacity: 1 !important;
    }
}

.owl-nav {
    display: flex !important;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    background: #0051B5;
    color: #FFF;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    background: #002f7b;
}

.owl-dots {
    text-align: center;
    margin-top: 15px;
    display: flex !important;
    justify-content: center;
}

.owl-dots .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #0051B5;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
}

.owl-dots .owl-dot.active {
    opacity: 1;
    background: #fff;
}

.owl-dots .owl-dot {
    border: 2px solid #fff !important;
}

.owl-item.active .item {
    border-radius: 16px;
    border: 4px solid #FFF;
    background: #FFF;
}

.owl-item.active {
    transform: scale(1);
    opacity: 1;
}

.owl-item.in-transition {
    transform: scale(0.9);
    opacity: 0.8;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.card-text {
    padding: 38px 3px;
}

.owl-carousel.owl-loaded.owl-drag {
    padding-bottom: 45px;
}

@media (max-width: 1023px) {
    .owl-carousel.owl-loaded.owl-drag {
        padding-bottom: 30px;
    }
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    color: #fff !important;
}

.fa-chevron-right:before,
.fa-chevron-left:before {
    font-size: 25px;
}

.owl-carousel .owl-nav button.owl-next:focus-visible,
.owl-carousel .owl-nav button.owl-prev:focus-visible,
.owl-carousel .owl-nav button.owl-next:focus,
.owl-carousel .owl-nav button.owl-prev:focus {
    outline: none !important;
}

@media (min-width: 1024px) {
    .owl-nav .owl-prev,
    .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .owl-nav .owl-prev {
        left: calc(50% - var(--item-width) - 30px);
    }

    .owl-nav .owl-next {
        right: calc(50% - var(--item-width) - 30px);
    }
}

.owl-item a {
    text-decoration: none;
}

/* demo section */

.demo-section {
    background-color: #EFF7FF;
    color: #1F2732;
    display: flex;
    align-items: stretch;
}

.demo-section .container {
    padding: 0 20px;
}

.demo-container {
    display: flex;
    gap: 45px;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 1023px) {
    .demo-section .container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .demo-section .container {
        padding: 45px 20px;
    }
}

.demo-content {
    padding: 115px 0;
    flex: 6;
}

@media (max-width: 1180px) {
    .demo-content {
        max-width: 60%;
    }
}

@media (max-width: 1024px) {
    .demo-content {
        padding: 80px 0;
    }
}

@media (max-width: 1023px) {
    .demo-content {
        padding: 0;
        max-width: 100%;
        flex: none;
    }
}

@media (max-width: 768px) {
    .demo-content {
        padding: 0px;
    }
}

.demo-section .section-description {
    justify-content: flex-start;
    padding-bottom: 20px;
}

.demo-section .section-description p {
    text-align: left;
}

.demo-buttons {
    display: flex;
    gap: 20px;
    margin-top: 13px;
    flex-wrap: wrap;
}

@media (max-width: 1023px) {
    .demo-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 490px) {
    .demo-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

.demo-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: url('../img/new-homepage/demo-img.jpg') no-repeat center center / cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 604px;
    width: 100%;
    display: flex;
}

.demo-image-container {
  flex: 5;
  position: relative;
  height: auto;
}

@media (max-width: 1023px) {
    .demo-image-container {
      flex: none;
      position: relative;
      height: 410px;
    }
    .demo-image {
        margin: 0 auto;
        right: 0;
    }
}

.demo-section .fla-list {
    margin: 0 0 0 50px;
}

@media (max-width: 1180px) {
    .demo-section .fla-list {
        margin: 20px 0;
    }
}

.demo-section p {
    padding-bottom: 35px;
}

@media (max-width: 1023px) {
    .demo-section p {
        padding-bottom: 20px;
    }
}

.demo-content h2 {
    margin-bottom: 24px;
}

.contact-form .form-msg span {
    color: #fff;
    padding: 5px 10px;
    display: block;
    border-radius: 3px;
    font-size: 15px
}

.contact-form .form-msg span.error {
    background: #ffa8a8
}

.contact-form .form-msg span.success {
    background: #069106
}

.contact-form label[for=latest-news] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    margin: 15px 0
}

.contact-form label[for=latest-news] input {
    width: auto;
    margin: 0 12px 0 0
}

.contact-form label[for=latest-news] span {
    line-height: 0;
    font-size: 15px
}

.contact-form .contact-wrapper {
    background: #fff;
    -webkit-box-shadow: 0 20px 20px 0 rgba(0,0,0,.05);
    box-shadow: 0 20px 20px 0 rgba(0,0,0,.05);
    padding: 50px 40px
}

.contact-form form {
    font-size: 1.2rem
}

.contact-form button {
    margin-top: 15px
}

.contact-form ::-webkit-input-placeholder {
    color: #737373;
    opacity: 1
}

.contact-form ::-moz-placeholder {
    color: #737373;
    opacity: 1
}

.contact-form :-ms-input-placeholder {
    opacity: 1
}

.contact-form ::-ms-input-placeholder {
    opacity: 1
}

.contact-form ::placeholder {
    color: #737373;
    opacity: 1
}

.contact-form :-ms-input-placeholder {
    color: #737373
}

.contact-form ::-ms-input-placeholder {
    color: #737373
}

.contact-form input,.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none
}

.contact-form input:focus,.contact-form textarea:focus {
    border-color: #0051b5
}

.contact-form input {
    padding: 10px 0;
    margin-bottom: 40px
}

.contact-form textarea {
    height: 250px
}

@media (max-width: 767px) {
    .contact-form .contact-wrapper {
        padding:20px
    }

    .contact-form .title {
        font-size: 1.8rem
    }

    .contact-form .left-side {
        margin-bottom: 30px
    }
}

@media (max-width: 480px) {
    .contact-form input,.contact-form textarea {
        font-size:1rem
    }

    .contact-form label[for=latest-news] span {
        font-size: 13px;
        line-height: 1.1
    }

    .contact-form .button-primary {
        font-size: .9rem
    }

    .contact-form .left-side .menu {
        font-size: 1rem
    }
}

.modal-header {
    display: flex;
    flex-direction: column;
    padding-left: 36px;
    padding-right: 36px;
}

.modal-header button {
    order: 1;
}

.modal-header h5 {
    order: 2;
}

.modal-header p {
    order: 3;
    padding-bottom: 10px;
}

.modal-body {
    padding-bottom: 40px;
}


/* newsletter section */

.newsletter-container {
    background: #1D3D64;
    color: #fff;
}

.newsletter-container .container {
    padding: 45px 20px;
}

@media (max-width: 1024px) {
    .newsletter-container .container {
        padding: 35px 20px;
    }
}

@media (max-width: 768px) {
    .newsletter-container .container {
        padding: 30px 20px;
    }
}

.newsletter-container .container .row {
    display: flex;
}

@media (max-width: 955px) {
    .newsletter-container .container .row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

.newsletter-container .container .row .form-input {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 952px) {
    .newsletter-container .container .row .form-input {
        justify-content: center;
    }

    .newsletter-container .container .row .form-input form {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        width: 100%;
    }
}

.newsletter-container form .newsletter-email {
    border-radius: 6px;
    border: 1px solid #697077;
    background: #FFF;
    width: 500px;
    height: 48px;
    padding: 5px 10px;
    margin-right: 17px;
    order: 1;
}

@media (max-width: 952px) {
    .newsletter-container form .newsletter-email {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .navbar-brand {
        display: flex;
        justify-content: center;
    }
}

.newsletter-container form {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.newsletter-container .form-msg {
    width: 100%;
    order: 3;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.newsletter-container button.button-submit.btn-secondary {
    order: 2;
}

.menu-contact .phone::before {
    content: "\f879";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}

.menu-contact .phone a {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
}

.menu-contact {
    display: flex;
    gap: 10px;
    align-items: center;
}

@media (max-width: 600px) {
    .menu-contact {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 952px) {
    .newsletter-container .form-msg {
        order: 2;
        padding-bottom: 10px;
        padding-top: 0px;
    }
}