* {
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
#loader {
    position: fixed;
    inset: 0;
    background: rgba(8, 16, 74, 1); /* or dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    z-index: 9999;
    transition: 1s;
  }
  
  /* Spinner */
  .spinner {
    width: 300px;
    position: relative;
  }
  .spinner img{
    width: 300px;
    position: relative;
    height: 150px;
  }
  .spinner::after{
    content: "";
    background-color: rgba(8, 16, 74, 0.701);
    height: 60px;
    width: 300px;
    position: absolute;
    left: 0;
    bottom: -30px;
    animation: spin 5s infinite;
  }
  
  @keyframes spin {
    to { transform: translateY(-130px); }
  }
button, a{
    cursor: pointer;
}
header-mobile{
    display: none;
}
.mobileHeaderSection{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    left: 0;
    background-color: white;
}
.removeSolutionMobileSection{
    padding: 0px 0;
    display: flex;
    justify-content: end;
    padding: 15px 25px 0 0;
}
.removeSolutionMobileSection button{
    background-color: transparent;
    border: none;
}
.solutionMobileSection{
    position: absolute;
    background-color: white;
    max-width: 450px;
    width: 85%;
    display: none;
    opacity: 0;
    transition: .5s;
    box-shadow: 0px 3px 30px 0px rgba(0, 46, 197, 0.256);
    border-radius: 6px;
    right: 0;
    z-index: 999;
    border-top: 1px solid rgb(221, 221, 221);
}
.solutionMobileSection ul{
    padding: 0;
    list-style-type: none;
}
.solutionMobileSection ul li a{
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(48, 86, 211, 0.3);
    color: rgba(8, 16, 74, 1);
}
#hamburgermenu{
    display: inline-block;
    visibility: visible;
    opacity: 1;
    transition: .3s;
}
#closeMenu{
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}
.mobileHeader{
    display: flex;
    justify-content: space-between;
    padding: 25px 100px;
    align-items: center;
}
.rightSideMobileHeader{
    display: flex;
    align-items: center;
    gap: 15px;
}
.mobileHeaderMenuSection{
    position: absolute;
    display: none;
    visibility: visible;
    opacity: 0;
    height: 0;
    transition: .5s;
    right: 0;
    max-width: 500px;
    background-color: white;
    width: 100%;
    border-top: 1px solid rgb(152, 152, 152);
    z-index: 90;
    height: max-content;
}
.mobileHeaderMenuSection ul{
    padding: 0;
    list-style-type: none;
}
.mobileHeaderMenuSection ul li a, .mobileHeaderMenuSection .mobileLink{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 15px 23px;
    border-bottom: 1px solid rgba(48, 86, 211, 0.3);
    line-height: 150%;
    color: rgba(8, 16, 74, 1);
    text-decoration: none;
}
.mobileHeaderMenuSection .mobileLink{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobileHeaderMenuSection .headerButtonMobile{
    display: block;
    margin: 23px;
    text-decoration: none;
    text-align: center;
    width: calc(100% - 78px);
    padding: 16px;
    border: none;
    border-radius: 8px;
    background-color: rgba(48, 86, 211, 1);

    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: white;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 150px;
    position: relative;
    width: calc(100% - 300px);
    left: 0;
    top: 0;
    transition: top 0.5s, background-color 0.8s, position 0.8s;
    z-index: 99;
}
.firstLineOfHeader{
    background-color:rgba(5, 12, 62, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 150px;
}
.firstLineOfHeader p, .firstLineOfHeader a{
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.5px;
    color: white;
    text-decoration: none;
}
.firstLineOfHeader a{
    font-weight: 400 !important;
}
.active{
    position: relative;
}
.active::after{
    content: "";
    bottom: 5px;
    left: 15px;
    width: calc(100% - 30px);
    position: absolute;
    height: 1px;
    background-color: white;
}
.menuBar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    background-color: white;
    width: calc(100% - 300px);
    display: none;
    height: 0;
    opacity: 0;
    transition: height 1.2s, opacity 1s;
    padding: 40px 0;
    max-width: 1168px;
    border-radius: 16px;
    box-shadow: 0px 3px 30px 0px rgba(0, 46, 197, 0.51);
}

.menuBarCol {
    padding: 0 60px;
    flex-basis: 33%;
}



.secondMenuBarCol {
    border-left: 1px solid rgba(48, 86, 211, 0.3);
}

.menuBar h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -2%;
    color: rgba(8, 16, 74, 1);
}

.menuBar h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: rgba(8, 16, 74, 1);
}

.menuBar h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 16px;
    line-height: 24px;
    color: #100A55;
    margin: 20px 0;
}

.menuBar p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    margin: 10px 0 15px 0;
    line-height: 20px;
    color: rgba(0, 0, 0, 1);
}

.menuBar button {
    padding: 20.5px 20px;
    display: block;
    width: 100%;
    background-color: rgba(48, 86, 211, 1);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 24px;
}

.rowMenuBarContent {
    width: calc(100% - 50px);
}
.rowMenuBarContent h3{
    transition: .2s;
}
.rowMenuBarContent h3:hover{
    color: rgba(48, 86, 211, 1);
}

.menuNavbar ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

#closeMenu {
    display: none;
}

#openmenu {
    margin-left: 10px;
    transition: transform 1s;
}
.navBarButtonsDiv{
    display: flex;
    gap: 15px;
    align-items: center;
}


.menuNavbar ul li a:not(.rowMenuBarCol, .headerButtonLink),
#solutions {
    padding: 7px 15px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 400;
    margin: 0 5px;
    color: white;
}
.rowMenuBarCol {
    display: flex !important;
    gap: 21px;
    text-decoration: none;
    align-items: flex-start;
}

header .headerButtonLink {
    padding: 12px 24px;
    background-color: rgba(48, 86, 211, 1);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin: 0;
    border: none;
    transition: .5s;
    border-radius: 8px;
}
.languagebuttonLink{
    background: transparent !important;
    border: 1px solid white !important;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    color: white !important;
}
header .headerButtonLink:hover{
    background-color: rgb(18, 51, 160);
}
.navAndButtonHeader{
    display: flex;
    gap: 30px;
}
.menuBar .headerButtonLink {
    padding: 20.5px 20px;
    display: block;
    width: calc(100% - 40px);
    background-color: rgba(48, 86, 211, 1);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 24px;
    text-align: center;
}

.mainSection {
    min-height: calc(100vh - 256px);
    background: linear-gradient(rgba(102, 4, 122, 0.41), rgba(102, 4, 122, 0.41)), url(./images/cd509057b1f6d342df1589ba8b12560512f18e00.jpg);
    background-position: center;
    background-color: rgba(8, 16, 74, 1);
    background-size: cover;
    padding-top: 200px;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.centeredMainText {
    width: 50%;
    margin: 0 auto;
}

.centeredMainText h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 54px;
    letter-spacing: 0;
}
.mainSectionButtonRows{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.mainSectionButtonRows .firstMainSectionButton{
    padding: 12px 24px;
    background-color: white;
    border: 1px solid rgba(48, 86, 211, 1);
    border-radius: 8px;
    color: rgba(48, 86, 211, 1);
    transition: .5s;
    text-decoration: none;

    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    transition: .5s;
}

.mainSectionButtonRows .secondMainSectionButton{
    background-color: rgba(48, 86, 211, 1);
    padding: 12px 40px;
    border: 1px solid rgba(48, 86, 211, 1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    transition: .5s;
    font-size: 16px;
    
    line-height: 150%;
    transition: .5s;

}
.secondMainSectionButton:hover{
    background-color: rgb(28, 60, 164);
}
.firstMainSectionButton:hover{
    background-color: rgba(234, 236, 251, 1);
}
.centeredMainText h1 span {
    font-weight: 700;
}

.centeredMainText p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: white;
    margin-top: 25px;
}

.mainTargetRow {
    display: flex;
    justify-content: end;
}

.mainTargetContainer {
    display: flex;
    align-items: center;
}

.leftColTarget {
    width: 350px;
    padding: 25px;
    background-color: white;
}

.leftColTarget h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: rgba(8, 16, 74, 1);
}

.leftColTarget p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: rgba(8, 16, 74, 1);
    font-size: 16px;
    margin-top: 15px;
    line-height: 24px;
    letter-spacing: 0.5px;
}

.rightColTarget {
    background-color: rgba(48, 86, 211, 1);
    padding: 25px;
    text-decoration: none;
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.rightColTarget h2 {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
}
.demoRequestUnderTitle{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 32px;
    color: white;
    margin-top: 30px;
}
.secondSection {
    padding: 150px;
    background-color: rgba(8, 16, 74, 1);
    position: relative;
    background-image: url(./images/mapi.png);
    background-position: right;
    background-size: 50%;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: space-between;
    gap: 50px 100px;
}

.airlineSolutionsProvider {
    z-index: 2;
    flex-basis: 45%;
}

.airlineSolutionsProvider h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 48px;
    color: white;
    width: 70%;
}

.airlineSolutionsProvider h1 span {
    color: rgba(74, 107, 216, 1);
}

.airlineSolutionsProvider p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    margin: 40px 0;
    line-height: 28px;
    color: white;
    letter-spacing: 0.5px;
}

.airlineSolutionsProvider a {
    padding: 12px 24px;
    text-decoration: none;
    border: 1px solid rgba(48, 86, 211, 1);
    background-color: rgba(48, 86, 211, 1);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    color: white;
    border: none;
    transition: .5s;
    border-radius: 8px;
    width: 214px;
}
.airlineSolutionsProvider button:hover{
    background-color: rgb(18, 51, 160);
}


.solutionStatistics {
    flex-basis: 45%;
    display: flex;
    z-index: 2;
    align-items: flex-start;
    gap: 25px 50px;
}

.statisticsColumn {
    border-radius: 12px;
    padding: 20px;

    background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.29);
  backdrop-filter: blur(13.2px);
  -webkit-backdrop-filter: blur(13.2px);
}

.statisticsColumn h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 36px;
}

.statisticsColumn h2 span {
    font-weight: 200;
}

.statisticsColumn p {
    font-family: 'Manrope', sans-serif;
    font-weight: 200;
    margin-top: 25px;
    font-size: 16px;
    color: white;
}

.secondSection::after {
    content: url(./images/_ÎÓÈ_1.png);
    height: 100%;
    position: absolute;
    top: 50px;
    right: -50px;
    z-index: 1;
}

.thirdBar {
    background: linear-gradient(rgba(3, 17, 124, 0.7), rgba(3, 17, 124, 0.7)), url(./images/301c1ec931c71bca37b693477e98b52e1a2cf577.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px;
}

.textOnlyContainer {
    text-align: center;
    margin: auto;
}
.demoRequestRowCheck{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin: 30px 0;
}
.demoRequestColCheck{
    display: flex;
    align-items: center;
    gap: 10px;
}
.demoRequestColCheck h5{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -2%;
    color: white;
    font-size: 16px;
}

.textOnlyContainer h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 48px;
}

.textOnlyContainer p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 2px;
    color: rgba(193, 204, 241, 1);
    margin: 35px 0;
    line-height: 25px;
}
.textOnlyContainer p b{
    color: white;
}

.textOnlyContainer a {
    padding: 15px 24px;
    transition: .5s;
    text-decoration: none;
    background-color: rgba(48, 86, 211, 1);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: white;
    border: none;
    border-radius: 8px;
    display: inline-block;
    width: 214px;
}
.textOnlyContainer button:hover{
    background-color: rgb(21, 56, 170);
}

.thirsSolutionsRow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.thirdSolutionsContainer {
    text-align: center;
    padding: 0px 40px;
    color: white;
}

.thirdSolutionsContainer h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-top: -17.5px;
}

.thirdSolutionsContainer p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 100;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: -10px;
}

.thirsSolutionsRow .secondContainer {
    border-right: 1px solid white;
    border-left: 1px solid white;
}

.fourthSection {
    display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        padding: 150px;
        margin: auto;
}


.fourthSection .card {
    padding: 30px;

}

.fourthSection .secondaryCards {
    border-radius: 16px;
    box-shadow: 0px 3px 30px 0px rgba(0, 59, 255, 0.05);
}

.fourthSection .contentCard {
    padding-left: 0;
    padding-top: 0;
}
.fourthSection .card .imageContent {
    width: 100%;
    background-color: rgba(234, 236, 251, 1);
    border-radius: 12px;
    height: 200px; /* or any fixed height */
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}

.fourthSection .card .imageContent img {
    
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.fourthSection .card .cardContent h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -2%;
    color: rgba(8, 16, 74, 1);
    font-size: 32px;
    margin-top: 20px;
}

.fourthSection .card .cardContent a {
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid rgba(48, 86, 211, 1);
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: .5s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: rgba(48, 86, 211, 1);
}
.fourthSection .card .cardContent a:hover{
    background-color: rgba(48, 86, 211, 1);
    color: white;
}

.fourthSection h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -2%;
}

.fourthSection p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 200;
    margin: 20px 0;
    line-height: 24px;
    letter-spacing: 0;
    color: rgba(8, 16, 74, 1);
}

.newsSection {
    padding: 150px;
    background-color: rgba(234, 236, 251, 1);
}

.entryDivNews {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.entryDivNews .contentOnly h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: rgba(8, 16, 74, 1);
}

.entryDivNews .contentOnly p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin: 20px 0;
    color: rgba(8, 16, 74, 1)
}

.entryDivNews .navButtons {
    display: flex;
    column-gap: 8px;
}

.entryDivNews .navButtons button {
    padding: 20.5px 20px;
    background-color: rgba(48, 86, 211, 1);
    color: white;
    font-size: 0;
    border: none;
    border-radius: 8px;
}

#postsArticle {
    width: 100%;
    display: flex;
    gap: 33px;
    
    margin-top: 75px;
    scroll-behavior: smooth;
    /* Firefox */
    -ms-overflow-style: none;
    overflow-x: auto;
}
.oneSectionNews{
    display: grid;
    max-width: calc(100% - 33px);
    flex-shrink: 0;
    grid-template-columns: 1fr 1fr;
    /* two equal halves */
    gap: 33px;
    padding-bottom: 20px;
}

#postsArticle::-webkit-scrollbar {
    height: 8px; /* Horizontal scrollbar height */
  }
  
  #postsArticle::-webkit-scrollbar-track {
    background: rgba(8, 16, 74, 0.142); /* Track background */
  }
  
  #postsArticle::-webkit-scrollbar-thumb {
    background-color: rgba(8, 16, 74, 1); /* Thumb color */
    border-radius: 4px;
  }
  
  #postsArticle::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.4); /* On hover */
  }

.postsContainer .leftColPostContainer{
    padding: 20px;
    display: flex;
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    flex-direction: column;
}
.postsContainer .postImgContainer{
    width: 100%;
}
.postsContainer .postImgContainer img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 100%;
    border-radius: 10px;
}
.postsContainer .horizontalCardContainer{
    display: flex;
    gap: 20px;
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    align-items: stretch;
}
.postsContainer .horizontalCardContainer .postImgContainer{
    width: 50%;
    overflow: hidden;
}
.postsContainer .horizontalCardContainer .postImgContainer img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.postsContainer .publishedDate{
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
    line-height: 150%;
    color: rgba(8, 16, 74, 1);
}
.postsContainer .postContent{
    flex-basis: 50%;
}
.postsContainer .rightColPostContainer{
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 33px;
}
.postsContainer h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: -2%;
    color: rgba(8, 16, 74, 1);
}

.postsContainer p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin: 20px 0;
    color: rgba(8, 16, 74, 1);
    margin: 25px 0;
}

.postsContainer a {
    color: rgba(48, 86, 211, 1);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.postsContainer a svg {
    display: inline-block;
    margin-left: 5px;
}

.allPostsParent {
    position: relative;
    min-height: 660px;
}



footer {
    padding: 150px;
    background-color: #100A55;
    display: flex;
    gap: 50px;
    justify-content: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    flex-wrap: wrap;
}
footer h2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 25px;
    color: white;
}
footer ul{
    padding: 0;
    list-style-type: none;
    margin-bottom: 20px;
}
footer ul li a{
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: white;
    text-decoration: none;
}
.fifthColFooterHeading{
    margin-bottom: 10px !important;
}



.firstColFooter p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin: 20px 0;
    color: white;
    margin: 25px 0;
}



.underFooterDiv{
    background-color: white;
    padding: 15px 150px;
}
.underFooterDiv h4{
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    margin: 0;
    line-height: 20px;
    color: rgba(0, 0, 0, 1);
}



.fifthColFooter p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: rgba(183, 190, 196, 1);
    text-decoration: none;
}



.fifthColFooter {
    flex: 1;
}

.footerInput {
    position: relative;
    margin-top: 15px;
}

.footerInput input {
    font-size: 14px;
    padding: 12px 20px;
    font-family: 'Nunito', sans-serif;
    display: block;
    font-weight: 300;
    width: calc(100% - 40px);
    border-radius: 24px;
    line-height: 26px;
    letter-spacing: 0.5px;
}

.emailInputIcon {
    position: absolute;
    top: 0;
    right: 0;
    
}
.emailInputIcon button{
    padding: 14px;
    background-color: rgba(48, 86, 211, 1);
    border-radius: 50%;
    display: inline-block;
    transform: translate(-28px, 4px);
    border: none;
}



.questionContainer {
    display: flex;
    gap: 75px;
    padding: 100px 150px;
    align-items: center;
}

.questionIcon {
    background-color: rgba(48, 86, 211, 1);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 50px;
    min-width: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 16px;
    border-radius: 50%;
}

.secondQuestionContainer {
    flex-direction: row-reverse;
}

.secondQuestionContainerPss {
    flex-direction: row-reverse;
    background-color: rgba(234, 236, 251, 1);
}

.questionCol {
    flex-basis: 50%;
    width: 100%;
}

.questionCol img {
    width: 100%;
    border-radius: 8px;
}

.questionContainer h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: rgba(48, 86, 211, 1);
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
    margin: 40px 0;
    margin-top: 0;
}

.questionContainer h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: rgba(8, 16, 74, 1);
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -2%;
    margin: 30px 0;
}

.questionContainer h1 span {
    color: rgba(48, 86, 211, 1);
}

.questionContentRow {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(48, 86, 211, 0.38);
    padding: 20px;
}

.lastQuestionContentRow {
    border: none;
}

.questionRowContent h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: rgba(8, 16, 74, 1);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -2%;
    margin-top: 0;
    margin-bottom: 0;
}

.questionRowContent p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: rgba(8, 16, 74, 1);
    font-size: 16px;
    margin: 0;
    margin-top: 10px;
    line-height: 24px;
    letter-spacing: -2%;
}




@media screen and (max-width: 1300px) {
    .gridCardsFourthSection {
        flex-direction: column;
    }
    footer{
        grid-template-columns: 1fr 1fr;
    }
    .navButtons{
        display: none !important;
    }
    .postsContainer{
        scroll-snap-type: x mandatory;
    }
    .leftColPostContainer{
        scroll-snap-align: end;
    }
    .horizontalCardContainer{
        scroll-snap-align: end;
    }

    .newsSection{
        padding: 150px 25px;
        padding-bottom: 50px;
    }
    .oneSectionNews{
        grid-template-columns: 1fr 2fr;
        min-width:  1000px;
    }
    .postsContainer .rightColPostContainer{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr ;
    }
    .postsContainer p{
        display: none;
    }
    .postsContainer .horizontalCardContainer .postImgContainer{
        width: 100%;
        height: 300px !important;
    }
    .postsContainer .postImgContainer{
        width: 100%;
        height: 300px !important;
    }
    .postsContainer .horizontalCardContainer {
        flex-direction: column;
        gap: 0;
    }
    .postsContainer h1{
        font-size: 26px;
        line-height: 32px;
    }
    .menuBarCol {
        padding: 0 20px;
    }

    .gridCardsFourthSection .verticalCard {
        flex-direction: row;
    }

    .gridCardsFourthSection .card .cardContent {
        padding: 20px;
    }

    .gridCardsFourthSection .imgContainer {
        flex-basis: 35% !important;
    }
}

@media screen and (max-width: 1050px) {
    footer{
        padding: 100px;
    }
    .questionContainer{
        padding: 100px;
        flex-direction: column;
    }
    .questionContainer h1{
        text-align: center;
    }
    .underFooterDiv{
        padding-left: 100px;
        padding-right: 100px;
    }
    .fourthSection{
        padding: 100px;
    }
    .fourthSection {
        grid-template-columns: repeat(2, 1fr);
    }
    header, .firstLineOfHeader{
        padding: 20px 100px !important;
        width: calc(100% - 200px);
    }
    .secondSection {
        padding: 100px 50px;
        flex-direction: column;
        text-align: center;
    }

    .textOnlyContainer {
        width: 100%;
    }

    .thirdBar {
        padding: 100px 50px;
    }

    .airlineSolutionsProvider h1 {
        width: 100%;
    }

    .centeredMainText {
        width: 75%;
    }
}
@media screen and (max-width: 1200px){
    my-header{
        display: none;
    }
    header-mobile{
        display: block;
    }
    .mainSection{
        padding-top: 150px;
    }
    .fourthSection .contentCard{
        padding: 30px ;
    }
    .fourthSection {
        grid-template-columns: 1fr 1fr;
        padding: 75px 25px;
    }
}
@media screen and (max-width: 725px) {
    footer{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .demoRequestRowCheck{
        flex-direction: column;
    }
    .fifthColFooter ul{
        justify-content: center;
    } 
    .mainSectionButtonRows{
        justify-content: center;
    }
    .mobileHeader{
        padding: 25px;
    }
    .fourthSection .contentCard{
        text-align: center;
    }

    .centeredMainText h1 {
        font-size: 32px;
    }

    .centeredMainText {
        width: calc(100% - 20px);
        padding: 10px;
        text-align: center;
    }

    /* .centeredMainText p {
        display: none;
    } */

    .mainSection {
        padding-top: 150px;
        min-height: calc(90vh - 150px);
    }

    .mainTargetRow {
        width: 90%;
        margin: auto;
    }

    .mainTargetRow .rightColTarget h2 {
        display: none;
    }

    .mainTargetRow .leftColTarget {
        width: 100%;
    }

    .secondSection {
        padding: 75px 25px;
        flex-direction: column;
        background-size: 100%;
        background-position: bottom;
    }

    .secondSection::after {
        right: -50%;
        top: 40%;
    }

    .airlineSolutionsProvider h1 {
        font-size: 32px;
        width: 100%;
        text-align: center;
    }

    .airlineSolutionsProvider p {
        text-align: center;
    }

    .airlineSolutionsProvider button {
        width: 100%;
    }

    .solutionStatistics {
        flex-direction: column;
    }

    .solutionStatistics .statisticsColumn {
        width: calc(100% - 40px);
        text-align: center;
    }

    .thirdBar {
        padding: 75px 25px;
    }

    .textOnlyContainer {
        width: 100%;
    }

    .textOnlyContainer h1 {
        font-size: 32px;
    }

    .thirsSolutionsRow {
        flex-direction: column;
    }
    .questionContainer{
        padding: 50px 25px;
    }

    .thirsSolutionsRow h1,
    .thirsSolutionsRow p {
        margin: 5px 0;
    }

    .thirsSolutionsRow .secondContainer {
        border: none;
        border-top: 1px solid white;
        border-bottom: 1px solid white;
    }

    .thirdSolutionsContainer {
        padding: 15px 0;
        width: 100%;
    }
    .fourthSection{
        grid-template-columns: 1fr;
    }

}
@media screen and (max-width: 500px){
    .allLinksFooter{
        grid-template-columns: 1fr 1fr;
    }
    .underFooterDiv{
        padding: 20px 0;
        text-align: center;
    }
    .questionContainer h1, .fourthSection h1  {
        font-size: 32px;
        line-height: 40px;
    }
    .secondMainSectionButton{
        width: calc(100% - 80px);
    }
    .questionContentRow{
        padding: 20px 0;
    }
    .mainSectionButtonRows{
        flex-direction: column;
    }
    .mainSectionButtonRows button{
        width: 100%;
    }
    .secondSection {
        background-size: 200%;
        background-position: bottom;
    }
    .fourthSection .card .cardContent,.entryDivNews .contentOnly{
        text-align: center;
    }
    
    footer{
        padding: 50px 25px !important;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}