@font-face {
    font-family: 'slate bold';
    src: url('../fonts/SlateBold.woff2') format('woff2');
    src: url('../fonts/SlateBold.woff') format('woff');
}

@font-face {
    font-family: 'slate medium';
    src: url('../fonts/SlateMedium.woff2') format('woff2');
    src: url('../fonts/SlateMedium.woff') format('woff');
}

@font-face {
    font-family: 'slate regular';
    src: url('../fonts/SlateRg.woff2') format('woff2');
    src: url('../fonts/SlateRg.woff') format('woff');
}


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.blue_text {
    color: #21409a;
}

h1,
h2,
h3 {
    font-family: 'slate medium';
}


body {
    font-family: 'slate regular', sans-serif;
    color: #000000;
}

header {
/*    background-color: transparent;*/
/*    background: rgb(2,0,36);*/
background: linear-gradient(90deg, rgb(224 225 229 / 0%) 0%, rgb(142 161 172 / 0%) 35%);
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 2;
    padding: 35px 50px;
    /* padding: 4rem; */
}


.fly_main {
    background-image: url(../images/tgp-desktop.png);
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow-x: hidden;
    /* background-size: cover; */
}

.fly_main .bg-img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.fly_main .img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 50px;
}

.fly_main .text_img_wrapper {
    position: absolute;
    bottom: 130px;
    width: 85vw;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
}

.fly_main .hero_img {
    width: 600px;
}

.fly_main figcaption {
    padding: 20px 0px 20px 90px;
    border-left: 3px solid #21409a;
    width: 560px;
}


header .left_logo {
    width: 250px;
}

header .right_logo {
    width: 150px;
}

.main_heading {
    font-size: 60px;
    line-height: 65px;
    margin-bottom: 15px;
}

.fly_main .register_text {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
    
}

.fly_main form .input-wrapper {
    height: 70px;
    border-radius: 20px;
    border: 1px solid #000;
    background-color: rgb(255 255 255 / 100%);
    position: relative;
}

.fly_main form input.form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0px;
    height: 55px;
    width: 94%;
    margin: auto;
}

.fly_main form input.form-control:focus{
    box-shadow: none;

}


.primary_btn {
    background-color: #21409a;
    color: #ffffff;
}

.primary_btn:hover {
    color: #21409a;
    background-color: #ffffff;
}

.fly_main form .primary_btn {
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    font-family: 'slate regular';
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 10px;
    box-shadow: rgba(0, 0, 0, 0.7) 3px 3px 4px;
}


figure {
    margin-bottom: 0px;
}

/* dashboard page */
.dash_main .user_detail {
    /* padding: 0; */
    display: flex;
    flex-direction: column;
    list-style: none;
    row-gap: 5px;
}
.dash_main .user_detail li {
    display: flex;
    column-gap: 5px;
    font-size: 20px;
    line-height: 25px;
}
.dash_main .user_detail li p {
    margin: 0px;
    color: #0A0A5F;
}
.dash_main .price_chart {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.5) 3px 3px 10px 3px, rgba(0, 0, 0, 0.1) -2px -2px 0px 0px;
}

/*.dash_main .table-outer {
    overflow: auto;
    height: 240px;
    border-radius: 10px !important;
}*/


.dash_main .price_chart th {
    padding: 13px  20px!important;
}
.dash_main .price_chart tr td {
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    color: #000000;
} 
.dash_main .price_chart tr th {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.dash_main .price_chart thead th {
    text-align: center;
    font-weight: 800;
    font-size: 20px;
    vertical-align: middle;
}
.fly_main.dash_main .text_img_wrapper {
    bottom: 10px;
    height: calc(100vh - 250px);
    left: 54%;
}


img.dash-logo {
    width: 200px;
    margin-left: auto;
}

.footer_img {
    width: 15vw;
}

.price_chart tbody tr:nth-last-child(-n+2) {
    background-color: #a2d2ff;
}
.price-note {
    font-size: 16px;
    line-height: 20px;
    padding-left: 20px;
}

.text-para {
    font-size: 18.5px;
    line-height: 23px;
    margin-bottom: 00px;
}


.terms_heading {
    font-size: 21px;
    line-height: 25px;
}



@media only screen and (min-width:1599px) {
    .fly_main {
        background-size: cover;
    }
}

@media only screen and (max-width:1599px) {
    .fly_main .bg-img {
        height: auto;
    }
}

@media only screen and (max-width:1399px) {
    header {
        padding: 30px;
    }

    .fly_main form .primary_btn {
        font-size: 30px;
        line-height: 35px;
        margin-top: 10px;
    }
    .fly_main {
        background-size: cover;
    }
    .fly_main .text_img_wrapper {
        bottom: 40px;
    }
    .main_heading {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 10px;
    }
    .fly_main .register_text {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 10px;
    }
      .fly_main.dash_main .text_img_wrapper {
        height: calc(100vh - 170px);
    }
    img.dash-logo {
        width: 120px;
    }
     .dash_main .price_chart tr td, .dash_main .price_chart tr th {
        font-size: 16px;
    }
    .text-para {
        font-size: 14px;
        line-height: 16px;
    }


}

@media only screen and (max-width:1199px) {

    .fly_main .register_text {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .fly_main form .primary_btn {
        font-size: 30px;
        line-height: 35px;
    }

    .fly_main figcaption {
        padding: 20px 0px 20px 50px;
        width: 490px;
    }
   
}


@media only screen and (max-width:991px) {
    .fly_main .text_img_wrapper {
        bottom: 75px;
        left: 55%;
    }
    .main_heading {
        font-size: 45px;
        line-height: 51px;
        margin-bottom: 15px;
    }

    .fly_main .hero_img {
        width: 404px;
    }
    .fly_main figcaption {
        padding: 20px 0px 20px 00px;
        width: 100%;
        text-align: center;
        border-left: none;
    }


    .fly_main .register_text {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .fly_main form .primary_btn {
        font-size: 30px;
        line-height: 35px;
    }
    /*.fly_main{
        overflow: hidden;
    }*/
    .fly_main form .input-wrapper {
        width: 60%;
        margin: auto;
    }


    /* dashboard page */
    .dash_main .price_chart thead th {
        font-size: 16px;
    }
    .dash_main .price_chart th {
        padding: 10px  20px!important;
    }



}
@media only screen and (max-width:800px) {

}

@media only screen and (max-width:767px) {
    .fly_main .bg-img {
        height: 100vh;
    }
    .footer_img {
        width: 26vw;
        margin-top: 20px;
    }
    img.dash-logo {
        width: 150px;
    }
    .dash_main .user_detail {
        row-gap: 0px;
    }
    .dash_main .price_chart thead th{
        font-size: 16px;
    }
   .dash_main .price_chart tr td, .dash_main .price_chart tr th {
        font-size: 14px;
    }
    .terms_heading {
    font-size: 14px;
    line-height: 18px;
}
}

@media only screen and (max-width:640px) {

    header .right_logo {
        width: 120px;
    }

    header .left_logo {
        width: 220px;
    }
    .fly_main .bg-img {
        object-position: left;
    }
    .fly_main form .input-wrapper {
        width: 80%;
    }
    .fly_main .hero_img {
        width: 349px;
    }
    .main_heading {
        font-size: 40px;
        line-height: 45px;
    }

    .dash_main .user_detail li {
        column-gap: 5px;
        font-size: 16px;
        line-height: 20px;
    }
      img.dash-logo {
        width: 100px;
        margin-bottom: 15px;
        margin: auto;
    }

}

 
@media only screen and (max-width:440px) {
    .fly_main {
        background-image: url(../images/tgp-mobile.png);
        background-size: cover;
    }
    header {
        padding: 25px 12px;
    }

    .fly_main .main_heading {
        font-size: 30px;
        line-height: 36px;
    }
    .fly_main .register_text {
        font-size: 16px;
        line-height: 20px;
    }
    .fly_main .text_img_wrapper {
        bottom: 30px;
        left: 55%;
    }
    .fly_main form .primary_btn {
        font-size: 25px;
        line-height: 28px;
    }
    .dash_main .price_chart th {
        padding: 5px  20px!important;
    }
    .dash_main .price_chart tr td, .dash_main .price_chart tr th, .price-note {
        font-size: 10px;
        line-height: 14px;
    }
    .fly_main.dash_main .text_img_wrapper {
        bottom: 10px;
        height: calc(100vh - 130px);
    }
  
    .dash_main .user_detail li {
        font-size: 12px;
        line-height: 15px;
    }
    .footer_img {
        width: 40vw;
        margin-top: 5px;
        margin-bottom: 10px;
    }
    .text-para {
        font-size: 10px;
        line-height: 12px;
    }
}

@media only screen and (min-width:992px) and (max-width:1025px) {
    .fly_main .text_img_wrapper {
        bottom: 50px;
    }
}