html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

:root {
    --primary: #001F4B;
    --secondary: #007BFF;
}

.row {
    margin: 0;
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background: rgb(221, 218, 218)
}

::-webkit-scrollbar-thumb {
    background: #888
}

::-webkit-scrollbar-thumb:hover {
    background: #555
}

.navbar-brand {
    font-size: 30px;
}

.navbar {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.199);
    background-color: #34517c;
    padding: 10px 25px;
}

.homeContainer {
    margin-top: 90px;
    height: 88vh;
    background-image: url(images/home.png);
    background-repeat: no-repeat;
    background-position: center;
}

.navbar-light .navbar-nav .nav-link {
    color: white;
    font-size: 18px;
    transition: all 0.5s;
    margin: 0px 10px;
}

#nav-item:hover .nav-link {
    color: var(--secondary);
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link.active {
    color: var(--secondary) !important;
}

.btn-lite {
    padding: 10px 35px;
    width: fit-content;
    background-color: white;
    border: none;
    color: var(--primary);
    transition: all 0.5s;
}

.btn-lite:hover {
    color: white;
    background-color: var(--primary);
}

.main-post__subtitle {
    margin: 0 0 1.5rem 0;
}

.carousel {
    min-height: 100vh;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr 3fr 1.5fr;
    grid-template-rows: 1fr 3fr 1.5fr;
    -ms-grid-columns: 50px 1fr 1fr 1fr 1fr 50px;
    grid-template-columns: 50px 1fr 1fr 1fr 1fr 50px;
    row-gap: 2vh;
    position: relative;
}

.progress-bars {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
}

.progress-bars__fill {
    width: 0;
    height: inherit;
    background: var(--secondary);
    -webkit-transition: all 0.16s;
    transition: all 0.16s;
}

.progress-bars--primary {
    z-index: 2;
}

.main-post-wrapper {
    margin-top: -5px;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-column: 1 / 7;
    position: relative;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.main-post {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin-top: 80px;
}

.main-post__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
}

.main-post__image img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: center;
}

.main-post__image::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-post__content {
    padding-left: 45px;
    margin-top: 20vh;
    color: #fff;
}

.main-post__content__image {
    padding-right: 45px;
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
    margin-top: 30vh;
}

.main-post__content__image img {
    width: 100%;
}

.main-post__title {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 1.5em;
    line-height: 1.75;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.main-post__link {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-post__link-text {
    font-size: 0.9em;
}

.main-post__link-icon--arrow {
    margin-left: 12px;
}

.main-post__link-icon--play-btn {
    margin-right: 12px;
}

.main-post__link:hover .main-post__link-text,
.main-post__link:hover .main-post__link-icon--arrow path {
    color: #650010;
    stroke: #650010;
}

.main-post--active {
    top: 0;
    z-index: 1;
    -webkit-transition: top 0.9s 0.4s ease-out;
    transition: top 0.9s 0.4s ease-out;
}

.main-post--not-active {
    top: 100%;
    z-index: 0;
    -webkit-transition: top 0.75s 2s;
    transition: top 0.75s 2s;
}

.main-post.main-post--active .main-post__title,
.main-post.main-post--active .main-post__subtitle {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity 0.8s 1.42s, -webkit-transform 0.5s 1.4s;
    transition: opacity 0.8s 1.42s, -webkit-transform 0.5s 1.4s;
    transition: opacity 0.8s 1.42s, transform 0.5s 1.4s;
    transition: opacity 0.8s 1.42s, transform 0.5s 1.4s, -webkit-transform 0.5s 1.4s;
}

.main-post.main-post--not-active .main-post__title,
.main-post.main-post--not-active .main-post__subtitle {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    opacity: 0;
    -webkit-transition: opacity 0.5s 0.2s, -webkit-transform 0.2s 0.35s;
    transition: opacity 0.5s 0.2s, -webkit-transform 0.2s 0.35s;
    transition: transform 0.2s 0.35s, opacity 0.5s 0.2s;
    transition: transform 0.2s 0.35s, opacity 0.5s 0.2s, -webkit-transform 0.2s 0.35s;
}

.main-post.main-post--active .main-post__link {
    opacity: 1;
    -webkit-transition: opacity 0.9s 2.2s;
    transition: opacity 0.9s 2.2s;
}

.main-post.main-post--not-active .main-post__link {
    opacity: 0;
    -webkit-transition: opacity 0.5s 0.2s;
    transition: opacity 0.5s 0.2s;
}

.posts-wrapper {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
    grid-column: 3 / 6;
    display: -ms-grid;
    display: grid;
    /* -ms-grid-columns: (1fr)[3]; */
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 14px;
    column-gap: 14px;
    z-index: 1;
}

.post {
    background-color: rgba(255, 255, 255, 0.082);
    backdrop-filter: blur(5px);
    opacity: 1;
    color: #fff;
    position: relative;
    padding: 30px 30px;
    /* height:250px; */
}

.post__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.8em;
}

.post__tag {
    color: #80837e;
}

.post__title {
    font-weight: 400;
    font-size: 0.95em;
    line-height: 1.5;
}

.post--active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.192);
}

.post:not(.post--active) {
    pointer-events: none;
}

.hide-on-mobile {
    display: none;
}

@media screen and (min-width: 768px) {
    .main-post__title {
        font-size: 3.0em;
        letter-spacing: 0.02em;
    }
    .main-post__subtitle {
        font-size: 1.3em;
    }
}

@media screen and (min-width: 1024px) {
    .hide-on-mobile {
        display: -ms-grid;
        display: grid;
    }
    .posts-wrapper {
        -ms-grid-column: 2;
        -ms-grid-column-span: 4;
        grid-column: 2 / 6;
    }
    .hide-on-desktop {
        display: none;
    }
}

@media screen and (min-width: 1440px) {
    .main-post__content {
        width: 55%;
    }
    .posts-wrapper {
        -ms-grid-column: 3;
        -ms-grid-column-span: 3;
        grid-column: 3 / 6;
    }
}

button.enter {
    font-size: 20px;
}

button.enter:hover {
    text-decoration: none;
}

.post__title {
    font-weight: bold;
    font-size: 18px;
}

.post__subtitle {
    font-weight: 400;
}

.about__section {
    max-width: 1390px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 40px auto;
    margin-bottom: 100px;
    font-size: 18px;
}

.about__section h1 {
    margin: 25px 0px;
}

.about__section p {
    margin: 20px 0px;
}

.about__right {
    padding-left: 150px;
    height: 100%;
}

.about__right .about__image {
    height: 100%;
    width: 100%;
}

.about__right__content {
    background-color: white;
    box-shadow: -11px -6px 26px rgba(0, 0, 0, 0.15), 12px 19px 22px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    font-weight: bold;
    font-size: 18px;
    padding: 40px 30px 30px 30px;
    width: 70%;
    margin: -80px 0px 0px -30px;
    position: relative;
}

.about__string_image {
    width: 30px;
    height: 30px;
    margin-top: -20px;
    margin-right: 5px;
}

.solutions__section {
    font-size: 18px;
    background-color: #EDFFFE;
}

.solutions__section__inner {
    max-width: 1390px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0px auto;
    padding: 50px 0px;
    height: 700px;
}

.options__container {
    animation: back-left 3s ease-in-out infinite;
    padding: 40px;
    background-image: url(images/solutions__top.png);
    background-position: left top;
    background-size: 80px;
    background-repeat: no-repeat;
}

@keyframes back-left {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 0 50px;
    }
    100% {
        background-position: 0 0;
    }
}

.options__container .inner:hover {
    cursor: pointer;
}

.option__container .inner {
    display: flex;
    background: #F9F9F9;
    box-shadow: 14.1237px 14.1237px 25.8935px rgba(0, 123, 255, 0.31);
    border-radius: 11.7698px;
    padding: 20px;
    align-items: center;
}

.option__container .inner {
    display: flex;
    align-items: center;
}

.option__container .inner.selected_solution {
    background: linear-gradient(98.2deg, #002E85 1.28%, #007BFF 102.12%);
    color: white;
}

.option__container .inner.selected_solution i {
    background-color: white;
    color: var(--primary);
}

.option__container .inner i {
    background-color: var(--primary);
    color: white;
    font-size: 20px;
    padding: 15px;
    border-radius: 50%;
    margin: 0px 10px 0px 0px;
}

.content__container {
    margin: 65px 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#solution__heading {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

#solution__content {
    display: flex;
    font-weight: 200;
}

#solution__image {
    height: 300px;
    text-align: center;
}

#solution__image img {
    height: 100%;
}

.content__container {
    animation: back-right infinite 3s ease-in-out;
    background-image: url(images/solutions_bottom.png);
    background-position: bottom right;
    background-size: 100px;
    background-repeat: no-repeat;
}

@keyframes back-right {
    0% {
        background-position: 100% 100%;
    }
    50% {
        background-position: 100% calc(100% - 50px);
    }
    100% {
        background-position: 100% 100%;
    }
}

.work__section {
    max-width: 1390px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0px auto;
    padding: 50px 0px;
}

.youtube {
    animation: back-left 3s infinite ease-in-out;
    padding: 40px 60px;
    width: fit-content;
    margin: 0 auto;
    background-image: url(images/how.png);
    background-size: 100px;
    background-position: top left;
    background-repeat: no-repeat;
}

.getstarted__section {
    background: linear-gradient(93.94deg, #007BFF 0.25%, #132547 100%);
    color: white;
}

.getstarted__section__inner {
    max-width: 1240px;
    margin: 0px auto;
    padding: 50px 20px;
    display: flex;
    align-items: center;
}

.getstarted__section__inner .left {
    background-image: url(images/started_left.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: bottom left;
    padding-left: 60px;
}

.getstarted__section__inner .middle {
    height: 100%;
}

.getstarted__section__inner .middle img {
    height: 120px;
}

.getstarted__section__inner .right {
    background-image: url(images/started_left.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 30px;
}

.getstarted__section__inner .right .btn-lite {
    margin-top: 20px;
}

.team__section__inner {
    max-width: 1240px;
    margin: 0px auto;
    padding: 50px 20px;
    text-align: center;
}

.team__section__inner .team__section__header {
    text-align: center;
    margin-bottom: 20px;
}

.team__card__wrapper {
    padding: 20px;
}

.team__card__inner {
    box-shadow: -7.88358px -7.88358px 30.6584px rgba(0, 123, 255, 0.1), 7.88358px 7.88358px 30.6584px rgba(0, 0, 0, 0.13);
    padding: 50px 35px;
    height: 100%;
}

.team__card__inner:hover {
    background: linear-gradient(152.23deg, #007BFF -0.03%, #004794 99.06%);
    color: white;
}

.team__card__inner img {
    width: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team__card__name {
    font-weight: bold;
}

.team__card__pos {
    margin-bottom: 20px;
}

.btn-secondary {
    background-color: var(--secondary);
}

h1 {
    font-weight: bold;
}

.team__section__header {
    background-image: url(images/team_top.png);
    background-position: top left;
    background-size: 120px;
    background-repeat: no-repeat;
}

.footer {
    background-image: url(images/footer_back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer__inner {
    color: white;
    max-width: 1200px;
    margin: 0px auto;
    padding: 100px 0px 30px 0px;
}

.footer__header {
    margin-bottom: 40px;
}

.footer__elipse {
    text-align: center;
}

.footer__elipse img {
    width: 200px;
}

iframe {
    width: 900px;
    height: 515px;
}

.navbar-brand img {
    height: 50px;
}

@media screen and (max-width: 1200px) {
    .option__container {
        padding: 0;
    }
    .footer__inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 900px) {
    iframe {
        width: 80vw;
        height: 40vh;
    }
    .about__section {
        margin-bottom: 25px;
    }
    .about__right {
        padding-left: 30px;
    }
    .team__card__inner {
        margin: 0 auto;
    }
    .option__container {
        padding: 0;
    }
    .footer__inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 600px) {
    .navbar-brand img {
        height: 40px;
    }
    iframe {
        width: 90vw;
        height: 30vh;
    }
    .about__section,
    .solutions__section,
    .about__right__content {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .about__right {
        padding-left: 40px;
    }
    .getstarted__section__inner .middle {
        display: none;
    }
    .getstarted__section__inner .left {
        padding-left: 30px;
        padding-right: 25px;
    }
    .getstarted__section__inner .right {
        padding-left: 30px;
        padding-right: 25px;
    }
    .youtube {
        padding: 10px;
    }
    .team__card__inner {
        margin: 0 auto;
    }
    .footer__elipse {
        display: none;
    }
    .footer {
        padding: 15px;
    }
    .solution_option_text {
        display: none;
    }
    .options__container {
        padding: 25px;
    }
    .option__container {
        margin: 0;
        padding: 5px;
        width: fit-content;
        text-align: center;
    }
    .option__container .inner {
        margin: 0 auto;
        padding: 16px 0px;
    }
    .option__container .inner i {
        margin: 0 auto;
        font-size: 16px;
    }
    .content__container {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    #solution__image img {
        width: 90vw;
        height: auto;
    }
    .main-post__content__image {
        margin-top: 20vh;
    }
    #solution__heading,
    #solution__content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .solutions__section__inner {
        height: fit-content;
    }
}

.anchor {
    display: block;
    height: 75px;
    margin-top: -75px;
    visibility: hidden;
}

.btn-secondary {
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    transition: all 0.5s;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--secondary);
}