@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'IBM Plex Sans';
    text-align: center;
}

h1 {
    font-size: 24px;
    margin: 20px;
}

a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    font-family: 'IBM Plex Sans';
    display: flex;
    position: relative;
    z-index: 1;
    text-align: left;
}

span {
    display: inline-block;
}

object {
    position: relative; 
    z-index: -1
}

.directoryHeader {
    background-image: url("../images/flight-directory.svg");
    position: relative;
    width: -webkit-calc(100%);
    width: -moz-calc(100%);
    width: calc(100%);
    height: 350px;
    top: 0px;
    margin: 0px;
    z-index: 11;
    background-repeat: no-repeat;
    background-size: cover;
}

.content {
    position: relative;
}

#directory {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.pagination {
    display: flex;
    flex-direction: row;
    margin: 20px 0;
    justify-content: center;
    align-items: center;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.column {
    width: calc(25% - 10px);
    margin-right: 10px;
    margin-bottom: 20px;
}

.column ul {
    padding: 0;
    padding-left: 20px;
}

.header {
    position: relative;
    width: -webkit-calc(100%);
    width: -moz-calc(100%);
    width: calc(100%);
    top: 0px;
    margin: 0px;
    z-index: 11;
    box-shadow: 0px 10px 18px 0px rgba(0,0,0,0.05);
    -webkit-box-shadow: 0px 10px 18px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 10px 18px 0px rgba(0,0,0,0.05);
    background-color: rgba(255, 255, 255, 1);
  }
  .header_container {
    margin-left: 20px;
    margin-top: 10px;
  }
  .directoryHeading {
    display: flex;
    position: relative;
    color: #FFFFFF;
    font-size: 48px;
    line-height: 62.4px;
    font-weight: 600;
    top: 50%;
    left: 10%;
    width: 300px;
  }
  .top_nav_bg{
    background-color: rgba(255, 255, 255, 1);
    padding: 5px 0;
  }

  .header .logo-top {
    display: flex;
    width: 120px;
    height: 30px;
    background-image: url("https://static.udchalo.com/client_assets/img/logo/logo.png");
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
  }

.pageInfo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
}
.routeInfo {
    color: #858585;
    font-size: 18px;
    font-weight: 400;
}

.pageNumber {
    display: flex;
    flex-direction: row;
    padding-left: 20px;
    padding-right: 20px;
}

#nextPage {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
}

#page1 {
    border-radius: 36px;
    background-color: #1E54B0;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: #FFFFFF;
    margin: 5px;

}
#page2 {
    border-radius: 36px;
    background-color: #FFFFFF;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: #000000;
    margin: 5px;

}
#page3 {
    border-radius: 36px;
    background-color: #FFFFFF;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: #000000;
    margin: 5px;

}
#page4 {
    border-radius: 36px;
    background-color: #FFFFFF;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: #000000;
    margin: 5px;

}
.footer {
    background-color: #f0f6f8;
    padding-top: 20px;
    padding-bottom: 20px;
}
.footerContent {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.contactUs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.contactUsInfo {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}
.contactUsText {
    margin: 0;
}
.subTextContainer {
    padding-top: 5px;
}
.contactTextHeading {
    line-height: 21px;
    font-size: 18px;
    color: #000000;
}
.contactTextSubHeading {
    line-height: 21px;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
}
.contactUsIcon {
    z-index: 0;
}

@media (max-width: 600px) {
    .directoryHeader {
    background-image: url("../images/flight-directory-mobile.svg");
    height: 217px;
    }

    .directoryHeading {
        font-size: 21px;
        line-height: 31.2px;
        top: 39%;
        left: 0%;
    }

    .columns {
        flex-direction: column;
        padding-top: 20px;
    }
    .column {
        width: 100%;
        margin: 0;
    }
    ul {
        margin: 0;
    }
    .pageInfo {
        flex-direction: column-reverse;
    }
    .pagination {
        margin-top: 10;
        margin-bottom: 0;
    }
    .footerContent {
        flex-direction: column;
    }
    .contactUs {
        justify-content: flex-start;
    }
    .footerHeading {
        display: flex;
    }
    h2 {
        font-size: 14px;
        font-weight: 600;
    }
    .subTextContainer {
        padding: 0px;
    }
    .contactTextHeading {
        font-size: 10px;
        font-weight: 400;
    }
    .contactTextSubHeading {
        font-size: 12px;
        font-weight: 400;
    }
    a {
        font-size: 14px;
    }
    .routeInfo {
        font-size: 10px;
        line-height: 13px;
    }
    #page1 {
        font-size: 14px;
        height: 24px;
        width: 24px;
        border-radius: 24px;
    }
    #page2 {
        font-size: 14px;
        height: 24px;
        width: 24px;
        border-radius: 24px;
    }
    #page3 {
        font-size: 14px;
        height: 24px;
        width: 24px;
        border-radius: 24px;
    }
    #page4 {
        font-size: 14px;
        height: 24px;
        width: 24px;
        border-radius: 24px;
    }
}