* {
    margin: 0;
    padding: 0;
}

.top-bar {
    background-color: #090808;
    margin-bottom: 1px;
    height: 25px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    color: #fff;
    box-sizing: border-box;
    font-family: Gotham, ZaridSans-Regular, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    scroll-behavior: smooth;

}

.top-bar ul li {
    margin-left: 20px;
}

.top-bar ul li a {
    color: #87e19b;
    text-decoration: none;
}

.top-bar ul li a:hover {
    color: #e95a5a;
}

/*  */
.sc-567480f5-2 {
    background-color: #f2f2f2;
    padding: 20px 0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left {
    display: flex;
    align-items: center;
}

h1 {
    margin: 0;
    padding: 0;
}

h1 a {
    display: block;
    width: 120px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#navLinks {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-left: 70px;
}

#navLinks li {
    margin-left: 20px;
}

#navLinks a {
    text-decoration: none;
    color: #333;
}

#navLinks a:hover {
    text-decoration: underline;
}

#btn {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button.sc-567480f5-4 {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

button.sc-567480f5-4 span {
    display: block;
    width: 28px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

button.sc-567480f5-4 span img {
    display: block;
    width: 100%;
    height: 100%;
}



.cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #242323;
}

.left {
    display: flex;
    align-items: center;
}

.logo {
    background-image: url(./images/final\ logo.png);
    width: 200px;
    height: 100px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 20px;
    margin-top: 10px;
}

.Iata {
    background-image: url(./images/iata.png);
    width: 200px;
    height: 80px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* margin-left: 20px; */
    margin-bottom: 3px;
}

#navLinks {
    list-style: none;
    padding: 0
}

#navLinks li {
    margin-left: 30px;
}

#navLinks li a {
    text-decoration: none;
    color: rgb(245, 245, 245);
    text-shadow: rgba(0, 0, 0, 0.125) 2px 2px 2px;
    display: block;
    position: relative;
    font-size: 1rem !important;
}

#btn {
    background-color: #464747;
    font-size: 1rem;
    margin: 10px;
    overflow: hidden;
    clip: rect(0px, 0px, 0px, 0px);
    white-space: nowrap;
    border-radius: 10px;
}
.divider {
    /* border-bottom: 1px solid #1b1818; */
    margin-top: 50px;
    padding: 2px 0;
    text-align: center;
}

.divider-text {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #464747; */
    color: #000000;
    padding: 5px 20px;
    position: relative;
    font-size: 3rem;
    font-family: "Raleway", Sans-serif;
}

 /* web css */

 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #eaeaea;
    /* overflow:scroll; */
}

.container2{
    position: absolute;
    top: 105%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 600px;
    background: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
}

.container2 .slide .item{
    width: 200px;
    height: 210px;
    position: absolute;
    top: 65%;
    /* transform: translate(0, -50%); */
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 20px;
    width: 100%;
    height: 100%;
}


.slide .item:nth-child(3){
    left: 18%;
}
.slide .item:nth-child(4){
    left: calc(18% + 220px);
}
.slide .item:nth-child(5){
    left: calc(18% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 6){
    left: calc(18% + 660px);
    opacity: 0;
}



.item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: system-ui;
    display: none;
}


.slide .item:nth-child(2) .content{
    display: block;
}


.content .name{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

/* .content button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
} */


@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}



.button{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

.button button{
    width: 45px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #000;
    transition: 0.3s;
}

.button button:hover{
    background: #ababab;
    color: #fff;
}

.divider1 {
    margin-top: 80px;
    padding: 2px 0;
    text-align: center;
}

.divider-text1 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 5px 20px;
    position: relative;
    font-size: 3rem;
    font-family: "Raleway", Sans-serif;
}


/* web css */


