/* ==== ROOT RESET ==== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* ==== CSS VARIABLES ==== */

:root {
    --primary-color: #335eea;
    --link-color: #506690;
    --btn-hover-color: #2b50c7;
    --lg-heading: #161c2d;
    --text-content: #869ab8;
    --fixed-header-height: 4.5rem;
    --font-size-body-text: clamp(14px, 1.6vw, 16px);
    --h1-font-size: calc(var(--font-size-body-text) * 2.4);
    --h2-font-size: calc(var(--h1-font-size) - 15px);
    --h3-font-size: calc(var(var(--h2-font-size)) - 8px);
}


/* ==== RESET HTML ==== */

body {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: #fafbfb;
}

ul li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}


/* ==== CONTAINER ==== */

.container {
    width: 100%;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.heroContent {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 50%);
}

img {
    vertical-align: middle;
    border-style: none;
}

.subHeadingBanner {
    font-family: "Be Vietnam Pro";
    font-weight: 500;
    font-size: 40px;
    text-align: center;
    color: #e26027;
}

.headingBanner {
    font-family: "Be Vietnam Pro";
    font-weight: bold;
    font-size: 80px;
    text-align: center;
    color: #fff;
    padding-top: 30px;
}

.subHeadingBannerBottom {
    font-family: "Be Vietnam Pro";
    font-weight: 500;
    font-size: 25px;
    text-align: center;
    color: #fff;
    padding-top: 30px;
}

.bannerButton {
    font-family: "Be Vietnam Pro";
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: #fff;
}

.banner {
    height: 679px;
}


/* ========= Text section ======= */

.text_section {
    margin: 100px 150px;
    font-family: "Be Vietnam Pro";
    font-weight: normal;
    font-size: 32px;
    line-height: 47px;
    text-align: center;
    color: #000;
}

.bottom-banner-content {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 1920px;
    padding: 100px 220px;
}

img {
    vertical-align: middle;
    border-style: none;
}

.bottom-banner-content>.sub-heading {
    font-family: "Be Vietnam Pro";
    font-weight: 500;
    font-size: 45px;
    line-height: 47px;
    text-align: center;
    color: #fff;
}

.bottom-banner-content>.sub-text {
    font-family: "Be Vietnam Pro";
    font-weight: normal;
    font-size: 32px;
    line-height: 47px;
    text-align: center;
    color: #fff;
    margin-top: 57px;
}

.section-3-bg {
    background-color: #4D4D4D;
}

.section-3 {
    padding-top: 100px;
    padding-bottom: 50px;
}

.section-2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.05);
    padding: 70px 30px 120px 30px;
}

.card-one {
    width: 760px;
}

.card-two {
    width: 704px;
    margin-bottom: 90px;
}

.card-three {
    width: 704px;
    margin-bottom: 90px;
}

.card-three-heading {
    font-family: "Be Vietnam Pro";
    font-weight: 500;
    font-size: 45px;
    line-height: 47px;
    text-align: center;
    color: #e26027;
    padding-top: 30px;
}

.banner02 {
    position: relative;
    top: -600px;
    z-index: -100;
    height: 50px;
}

.card-heading {
    font-family: "Be Vietnam Pro";
    font-weight: 500;
    font-size: 45px;
    line-height: 52px;
    text-align: center;
    color: #000;
}

.card-txt-section {
    font-family: "Be Vietnam Pro";
    font-weight: normal;
    font-size: 24px;
    line-height: 37px;
    text-align: left;
    color: #000;
}

.card-txt-section ul {
    padding-top: 26px;
    padding-left: 50px;
    padding-right: 50px;
}

.card-txt-section ul li {
    padding-top: 20px;
    display: flex;
}

.card-txt-section ul li .circle-svg {
    width: 50px;
    display: inline-block;
    text-align: start;
}

.card-txt-section ul li .list-text {
    width: 600px;
    display: inline-block;
}

.text-bold-orange {
    font-weight: bold;
    color: #E26027;
}

.padding-top-50 {
    padding-top: 50px !important;
}

.card-three-table-section li {
    padding-top: 20px;
    display: flex;
}

.card-three-table-heading {
    width: 150px;
    display: inline-block;
    text-align: start;
    font-family: "Be Vietnam Pro";
    font-weight: bold;
    font-size: 24px;
    line-height: 37px;
    color: #000;
}

.card-three-table-txt {
    width: 320px;
    display: inline-block;
    font-family: "Be Vietnam Pro";
    font-weight: normal;
    font-size: 24px;
    line-height: 37px;
    text-align: left;
    color: #000;
}

.card-three-table-section {
    padding-left: 100px;
    padding-right: 100px;
}

@media screen and (max-width: 1040px) {
    .container {
        width: 1040px;
        margin: 0 auto;
    }
    .subHeadingBanner {
        font-size: 26px;
        font-weight: 400;
    }
    .headingBanner {
        font-size: 40px;
        padding-top: 20px;
    }
    .subHeadingBannerBottom {
        font-size: 16px;
        font-weight: 400;
        padding-top: 20px;
    }
    .register_now_btn {
        width: 192px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        letter-spacing: 0;
        color: #fff;
        font-weight: 400;
        margin-right: 10px;
        background-color: #FA6B05;
        margin: 0 auto;
        margin-top: 30px;
        font-family: "Be Vietnam Pro";
    }
}


/* ==== HEADER ==== */

.header {
    height: var(--fixed-header-height);
    padding: 0 1.7rem;
}


/* ==== NAV ==== */

.nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ==== LOGO ==== */

.logo h2 {
    font-size: var(--h2-font-size);
    color: var(--primary-color);
}


/* ====  NAV-MENU  ==== */

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

.nav_menu_list .nav_menu_item {
    margin: 0 2rem;
}

.nav_menu_item .nav_menu_link {
    font-size: 16.5px;
    line-height: 27px;
    color: var(--link-color);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.nav_menu_link:hover {
    color: var(--primary-color);
}

.toggle_btn {
    font-size: 20px;
    font-weight: 600;
    color: var(--lg-heading);
    z-index: 4;
}

.nav_menu,
.close_btn {
    display: none;
}

.show {
    right: 3% !important;
}


/* ====  WRAPPER ==== */

.wrapper {
    width: 100%;
    /*
  padding-left: 1.7rem;
  padding-right: 1.7rem;
  padding-top: 5rem;
  margin-bottom: 5rem;
*/
}

.wrapper .title {
    font-size: var(--h2-font-size);
}

.grid-cols-2 {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.grid-item-1 {
    padding-top: 5rem;
    padding-left: 1.5rem;
}

.main-heading {
    font-weight: 300;
    font-size: var(--h1-font-size);
    line-height: 1.1;
}

.main-heading span {
    color: var(--primary-color);
}

.info-text {
    margin-top: 1.5rem;
    font-size: 19px;
    line-height: 28px;
    color: #334157;
}

.btn_wrapper {
    margin-top: 3.5rem;
    display: flex;
    width: 100%;
}

.btn {
    width: 110px;
    height: 50px;
    background-color: var(--primary-color);
    display: block;
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    border-radius: 7px;
    letter-spacing: 1px;
    transition: 0.4s;
}

.btn:hover {
    transform: translateY(-3px);
    background-color: var(--btn-hover-color);
}

.view_more_btn {
    width: 180px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 0;
    color: #fff;
    font-weight: 500;
    margin-right: 10px;
    box-shadow: 0 0.5rem 1.5rem rgba(22, 28, 45, 0.1);
}

.register_now_btn {
    width: 192px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    letter-spacing: 0;
    color: #fff;
    font-weight: 500;
    margin-right: 10px;
    background-color: #FA6B05;
    margin: 0 auto;
    margin-top: 30px;
    font-family: "Be Vietnam Pro";
}

.register_now_btn_card {
    width: 192px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    letter-spacing: 0;
    color: #fff;
    font-weight: 500;
    margin-right: 10px;
    background-color: #FA6B05;
    margin-top: 50px;
    font-family: "Be Vietnam Pro";
}

.case_study_btn {
    width: 262px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    letter-spacing: 0;
    color: #fff;
    font-weight: 500;
    margin-right: 10px;
    background-color: #e26027;
    margin: 0 auto;
    /* margin-top: 30px; */
    font-family: "Be Vietnam Pro";
}

.view_more_btn i {
    margin-left: 0.7rem;
}

.view_more_btn:hover {
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.documentation_btn {
    width: 150px;
    height: 55px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0;
    background-color: #e1e7fc;
    color: #0e2a86;
    box-shadow: 0 0.5rem 1.5rem rgba(22, 28, 45, 0.1);
}

.documentation_btn:hover {
    background-color: #d7ddf1;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.grid-item-2 {
    width: 100%;
    height: 100%;
}

.team_img_wrapper {
    width: 500px;
    max-width: 100%;
    height: 440px;
}

.team_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.grid-cols-3 {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3rem;
    row-gap: 2rem;
    padding: 1rem;
}

.grid-col-item {
    height: 100%;
}

.icon {
    width: 100%;
    line-height: 40px;
}

.icon svg {
    width: 30px;
    height: 30px;
    color: #6b85d8;
}

.featured_info {
    width: 100%;
}

.featured_info span {
    width: 100%;
    display: block;
    font-size: 21px;
    line-height: 33px;
    color: var(--lg-heading);
}

.featured_info p {
    display: block;
    width: 100%;
    margin-top: 7px;
    font-weight: 400;
    color: #334157;
    line-height: 25px;
    font-size: 15.5px;
}

footer {
    width: 100%;
    background-color: var(--primary-color);
    height: 12px;
    margin-top: 8rem;
}

.conintainer-fluid {
    width: 100%;
    height: auto;
}

.carousel-item {
    position: relative;
    float: left;
    width: 100%;
    margin-right: -100%;
}

.carousel-img-fit {
    min-width: 1920px;
    min-height: 480px;
    object-fit: cover;
    object-position: 50% 50%;
}

.carousel-banner {
    max-height: 600px !important;
    min-height: 500px;
}

.w-100 {
    width: 100% !important;
}

.d-block {
    display: block !important;
}

img {
    vertical-align: middle;
    border-style: none;
}

.carousel-ban-text-adj {
    position: absolute;
    width: 800px;
    display: flex;
    margin-left: 18px;
    bottom: 180px;
    background-color: #000000a8;
    border-radius: 12px;
    padding: 8px;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.section-3-heading {
    font-family: "Be Vietnam Pro";
    font-weight: 500;
    font-size: 45px;
    line-height: 52px;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.section-3-left {
    font-family: "Be Vietnam Pro";
    font-weight: normal;
    font-size: 24px;
    line-height: 37px;
    text-align: left;
    color: #fff;
    margin-left: 140px;
    width: 525px;
}

.section-3-right {
    width: 700px;
    font-family: "Be Vietnam Pro";
    font-weight: normal;
    font-size: 24px;
    line-height: 37px;
    text-align: left;
    color: #fff;
}

.text-bold {
    font-weight: bold;
}

.section-3-right-text {
    font-family: "Be Vietnam Pro";
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    text-align: left;
    color: #fff;
}

.section-3-right ul {
    padding-top: 26px;
}

.section-3-right ul li {
    padding-top: 16px;
    display: flex;
}

.section-3-right ul li .circle-svg {
    width: 50px;
    display: inline-block;
    text-align: start;
}

.section-3-right ul li .list-text {
    width: 600px;
    display: inline-block;
}


/* ==== MEDIA QURIES FOR RESPONSIVE DESIGN ==== */

@media screen and (min-width: 768px) {
    .toggle_btn {
        display: none;
    }
    .nav_menu {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .logo h2 {
        font-size: var(--h2-font-size);
    }
    .nav_menu {
        position: fixed;
        width: 93%;
        height: 100%;
        display: block;
        top: 2.5%;
        right: -100%;
        background-color: #fff;
        padding: 3rem;
        border-radius: 10px;
        box-shadow: 0 0.5rem 1.5rem rgba(22, 28, 45, 0.1);
        z-index: 50;
        transition: 0.4s;
    }
    .nav_menu_list {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 4rem;
    }
    .nav_menu_list .nav_menu_item {
        margin: 1rem 0;
    }
    .nav_menu_item .nav_menu_link {
        font-size: 18px;
    }
    .close_btn {
        display: block;
        position: absolute;
        right: 10%;
        font-size: 25px;
        color: #50689e;
    }
    .close_btn:hover {
        color: #000;
    }
    .wrapper {
        padding: 0 0.7rem;
    }
    .grid-item-1 {
        padding-left: 0rem;
    }
    .main-heading {
        font-size: var(--h1-font-size);
        line-height: 1.1;
    }
    .view_more_btn {
        width: 140px;
        height: 55px;
        font-size: 13.5px;
        margin-right: 1rem;
    }
    .grid-cols-3 {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    .featured_info p {
        line-height: 23px;
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    /* .wrapper {
        padding-top: 3rem;
    } */
    .grid-cols-2 {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    .grid-item-1 {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 0;
    }
    .main-heading {
        font-size: var(--h1-font-size);
        text-align: center;
        line-height: 1.1;
    }
    .info-text {
        font-size: 16px;
        text-align: center;
        padding: 0.7rem;
    }
    .btn_wrapper {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .grid-item-2 {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .team_img_wrapper {
        width: 350px;
        height: 350px;
    }
    .featured_info span {
        font-size: 19px;
    }
}


/* Extra small devices (phones, 600px and down) */

@media only screen and (max-width: 600px) {
    .headingBanner {
        font-weight: 400;
        font-size: 26px;
        padding-top: 10px;
        width: 360px;
    }
    .container {
        width: 360px;
        margin: 0 auto;
    }
    .subHeadingBanner {
        font-size: 12px;
        font-weight: 400;
        padding-top: 5px;
    }
    .headingBanner {
        font-weight: 400;
        font-size: 22px;
        padding-top: 0px;
    }
    .subHeadingBannerBottom {
        font-size: 12px;
        font-weight: 400;
        padding-top: 10px;
    }
    .register_now_btn {
        width: 122px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        letter-spacing: 0;
        color: #fff;
        font-weight: 400;
        margin-right: 10px;
        background-color: #FA6B05;
        margin: 0 auto;
        margin-top: 10px;
        font-family: "Be Vietnam Pro";
    }
    br {
        display: none;
    }
    .banner {
        height: auto;
    }
    .text_section {
        margin: 20px 30px;
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        color: #000;
    }
    .card-one {
        width: 360px;
    }
    .card {
        border-radius: 20px;
        background: #fff;
        box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.05);
        padding: 10px 10px 10px 10px;
    }
    .card-heading {
        font-family: "Be Vietnam Pro";
        font-weight: 400;
        font-size: 32px;
        line-height: 40px;
        text-align: center;
        color: #000;
    }
    .card-txt-section ul {
        padding-top: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .card-txt-section ul li .list-text {
        width: 300px;
        display: inline-block;
    }
    .card-two {
        width: 360px;
        margin-bottom: 10px;
    }
    .card-three {
        width: 360px;
        margin-bottom: 10px;
    }
    .card-three svg {
        width: 200px;
    }
    .card-three-heading {
        font-family: "Be Vietnam Pro";
        font-weight: 400;
        font-size: 28px;
        line-height: 34px;
        text-align: center;
        color: #e26027;
        padding-top: 30px;
    }
    .card-three-table-section {
        padding-left: 10px;
        padding-right: 10px;
    }
    .card-three-table-txt {
        width: 220px;
        display: inline-block;
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 24px;
        line-height: 37px;
        text-align: left;
        color: #000;
    }
    .section-3-left {
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 24px;
        line-height: 37px;
        text-align: left;
        color: #fff;
        margin-left: 10px;
        width: 360px;
    }
    .section-3-right {
        width: 360px;
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 24px;
        line-height: 37px;
        text-align: left;
        color: #fff;
    }
    .carousel-banner {
        max-height: 600px !important;
        min-height: 500px;
    }
    .carousel-img-fit {
        min-width: 360px;
        min-height: 480px;
        object-fit: cover;
    }
    .bottom-banner-content>.sub-heading {
        font-family: "Be Vietnam Pro";
        font-weight: 400;
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        color: #fff;
    }
    .carousel-banner {
        max-height: auto !important;
        min-height: 100px;
    }
    .bottom-banner-content {
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, 0%);
        width: 360px;
        padding: 0px 0px;
    }
    .bottom-banner-content>.sub-text {
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #fff;
        margin-top: 10px;
    }
    .wrapper {
        padding: 0 0em;
    }
}


/* Small devices (portrait tablets and large phones, 600px and up) */

@media only screen and (min-width: 600px) {
    .headingBanner {
        font-weight: 400;
        font-size: 46px;
        padding-top: 30px;
    }
    .container {
        width: 600px;
        margin: 0 auto;
    }
}


/* Medium devices (landscape tablets, 768px and up) */

@media only screen and (min-width: 768px) {
    .container {
        width: 768px;
        margin: 0 auto;
    }
    .headingBanner {
        font-weight: 400;
        font-size: 34px;
        padding-top: 30px;
    }
    .subHeadingBanner {
        font-size: 16px;
        font-weight: 400;
    }
    .register_now_btn {
        width: 152px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        letter-spacing: 0;
        color: #fff;
        font-weight: 400;
        margin-right: 10px;
        background-color: #FA6B05;
        margin: 0 auto;
        margin-top: 30px;
        font-family: "Be Vietnam Pro";
    }
    .banner {
        height: auto;
    }
    .text_section {
        margin: 30px 0px;
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #000;
    }
    .bottom-banner-content {
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, 0%);
        width: 900px;
        padding: 30px 20px;
    }
    .bottom-banner-content>.sub-heading {
        font-family: "Be Vietnam Pro";
        font-weight: 400;
        font-size: 34px;
        line-height: 34px;
        text-align: center;
        color: #fff;
    }
    .bottom-banner-content>.sub-text {
        font-family: "Be Vietnam Pro";
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        text-align: center;
        color: #fff;
        margin-top: 30px;
    }
    .carousel-img-fit {
        min-width: 768px;
        min-height: 200px;
        object-fit: cover;
        object-position: 50% 50%;
    }
    .carousel-banner {
        max-height: 600px !important;
        min-height: auto;
    }
    .banner02 {
        position: relative;
        top: -50px;
        z-index: -100;
        height: 250px;
    }
}


/* Large devices (laptops/desktops, 992px and up) */

@media only screen and (min-width: 992px) {
    .container {
        width: 992px;
        margin: 0 auto;
    }
    .headingBanner {
        font-weight: 400;
        font-size: 40px;
        padding-top: 30px;
    }
    .container {
        width: 1200px;
        margin: 0 auto;
    }
    .subHeadingBanner {
        font-family: "Be Vietnam Pro";
        font-weight: 400;
        font-size: 30px;
    }
    .subHeadingBannerBottom {
        font-family: "Be Vietnam Pro";
        font-weight: 400;
        font-size: 18px;
    }
    .register_now_btn {
        font-size: 16px;
        font-weight: 400;
        margin-right: 10px;
        margin: 0 auto;
        margin-top: 30px;
        font-family: "Be Vietnam Pro";
    }
    .banner {
        height: auto;
    }
    .bottom-banner-content {
        width: 1400px;
    }
    .bottom-banner-content>.sub-heading {
        font-family: "Be Vietnam Pro";
        font-weight: 500;
        font-size: 28px;
        line-height: 32px;
        text-align: center;
        color: #fff;
    }
    .bottom-banner-content>.sub-text {
        font-family: "Be Vietnam Pro";
        font-weight: 400;
        font-size: 26px;
        line-height: 40px;
        text-align: center;
        color: #fff;
        margin-top: 57px;
    }
    .section-3-left {
        font-size: 22px;
        line-height: 28px;
        text-align: left;
        color: #fff;
        margin-left: 0px;
        width: auto;
    }
    .section-3-right {
        width: auto;
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 22px;
        line-height: 28px;
        text-align: left;
        color: #fff;
    }
    .section-3-right-text {
        font-family: "Be Vietnam Pro";
        font-weight: bold;
        font-size: 22px;
        line-height: 28px;
        text-align: left;
        color: #fff;
    }
    .section-3-right ul li .list-text {
        width: 550px;
    }
    .text_section {
        margin: 60px 140px;
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 22px;
        line-height: 34px;
        text-align: center;
        color: #000;
    }
    .card-one {
        width: 560px;
    }
    .card-two {
        width: 504px;
        margin-bottom: 60px;
    }
    .card-three {
        width: 504px;
        margin-bottom: 60px;
    }
    .card-heading {
        font-family: "Be Vietnam Pro";
        font-weight: 500;
        font-size: 35px;
        line-height: 42px;
        text-align: center;
        color: #000;
    }
    .card-txt-section {
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 20px;
        line-height: 28px;
        text-align: left;
        color: #000;
    }
    .padding-top-50 {
        padding-top: 30px !important;
    }
    .card {
        border-radius: 20px;
        background: #fff;
        box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.05);
        padding: 50px 20px 70px 30px;
    }
    .card-txt-section ul {
        padding-top: 26px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .card-three svg {
        width: 400px;
    }
    .card-three-heading {
        font-family: "Be Vietnam Pro";
        font-weight: 500;
        font-size: 35px;
        line-height: 47px;
        text-align: center;
        color: #e26027;
        padding-top: 10px;
    }
    .card-three-table-section {
        padding-left: 50px;
        padding-right: 50px;
    }
    .card-three-table-heading {
        width: 150px;
        display: inline-block;
        text-align: start;
        font-family: "Be Vietnam Pro";
        font-weight: bold;
        font-size: 18px;
        line-height: 28px;
        color: #000;
    }
    .card-three-table-txt {
        width: 320px;
        display: inline-block;
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 18px;
        line-height: 28px;
        text-align: left;
        color: #000;
    }
    .register_now_btn_card {
        width: 192px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
        color: #fff;
        margin-right: 10px;
        background-color: #FA6B05;
        margin-top: 10px;
        font-family: "Be Vietnam Pro";
    }
    .banner02 {
        position: relative;
        top: -400px;
        z-index: -100;
        height: 50px;
    }
    .card-three-table-section li {
        padding-top: 10px;
        display: flex;
    }
}


/* Extra large devices (large laptops and desktops, 1200px and up) */

@media only screen and (min-width: 1200px) {
    .headingBanner {
        font-weight: 400;
        font-size: 40px;
        padding-top: 30px;
    }
    .container {
        width: 1200px;
        margin: 0 auto;
    }
    .subHeadingBanner {
        font-family: "Be Vietnam Pro";
        font-weight: 400;
        font-size: 30px;
    }
    .subHeadingBannerBottom {
        font-family: "Be Vietnam Pro";
        font-weight: 400;
        font-size: 18px;
    }
    .register_now_btn {
        font-size: 16px;
        font-weight: 400;
        margin-right: 10px;
        margin: 0 auto;
        margin-top: 30px;
        font-family: "Be Vietnam Pro";
    }
    .banner {
        height: auto;
    }
    .bottom-banner-content {
        width: 1400px;
    }
    .bottom-banner-content>.sub-heading {
        font-family: "Be Vietnam Pro";
        font-weight: 500;
        font-size: 28px;
        line-height: 32px;
        text-align: center;
        color: #fff;
    }
    .bottom-banner-content>.sub-text {
        font-family: "Be Vietnam Pro";
        font-weight: 400;
        font-size: 26px;
        line-height: 40px;
        text-align: center;
        color: #fff;
        margin-top: 57px;
    }
    .section-3-left {
        font-size: 22px;
        line-height: 28px;
        text-align: left;
        color: #fff;
        margin-left: 0px;
        width: auto;
    }
    .section-3-right {
        width: auto;
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 22px;
        line-height: 28px;
        text-align: left;
        color: #fff;
    }
    .section-3-right-text {
        font-family: "Be Vietnam Pro";
        font-weight: bold;
        font-size: 22px;
        line-height: 28px;
        text-align: left;
        color: #fff;
    }
    .section-3-right ul li .list-text {
        width: 550px;
    }
    .text_section {
        margin: 60px 140px;
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 22px;
        line-height: 34px;
        text-align: center;
        color: #000;
    }
    .card-one {
        width: 560px;
    }
    .card-two {
        width: 504px;
        margin-bottom: 60px;
    }
    .card-three {
        width: 504px;
        margin-bottom: 60px;
    }
    .card-heading {
        font-family: "Be Vietnam Pro";
        font-weight: 500;
        font-size: 35px;
        line-height: 42px;
        text-align: center;
        color: #000;
    }
    .card-txt-section {
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 20px;
        line-height: 28px;
        text-align: left;
        color: #000;
    }
    .padding-top-50 {
        padding-top: 30px !important;
    }
    .card {
        border-radius: 20px;
        background: #fff;
        box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.05);
        padding: 50px 20px 70px 30px;
    }
    .card-txt-section ul {
        padding-top: 26px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .card-three svg {
        width: 400px;
    }
    .card-three-heading {
        font-family: "Be Vietnam Pro";
        font-weight: 500;
        font-size: 35px;
        line-height: 47px;
        text-align: center;
        color: #e26027;
        padding-top: 10px;
    }
    .card-three-table-section {
        padding-left: 50px;
        padding-right: 50px;
    }
    .card-three-table-heading {
        width: 150px;
        display: inline-block;
        text-align: start;
        font-family: "Be Vietnam Pro";
        font-weight: bold;
        font-size: 18px;
        line-height: 28px;
        color: #000;
    }
    .card-three-table-txt {
        width: 320px;
        display: inline-block;
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 18px;
        line-height: 28px;
        text-align: left;
        color: #000;
    }
    .register_now_btn_card {
        width: 192px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
        color: #fff;
        margin-right: 10px;
        background-color: #FA6B05;
        margin-top: 10px;
        font-family: "Be Vietnam Pro";
    }
    .banner02 {
        position: relative;
        top: -400px;
        z-index: -100;
        height: 50px;
    }
    .card-three-table-section li {
        padding-top: 10px;
        display: flex;
    }
}

@media only screen and (min-width: 1840px) {
    .container {
        width: 1640px;
        margin: 0 auto;
    }
    .banner {
        height: 679px;
    }
    .subHeadingBanner {
        font-family: "Be Vietnam Pro";
        font-weight: 500;
        font-size: 40px;
        text-align: center;
        color: #e26027;
    }
    .headingBanner {
        font-family: "Be Vietnam Pro";
        font-weight: bold;
        font-size: 80px;
        text-align: center;
        color: #fff;
        padding-top: 30px;
        width: 1640px;
    }
    .subHeadingBannerBottom {
        font-family: "Be Vietnam Pro";
        font-weight: 500;
        font-size: 25px;
        text-align: center;
        color: #fff;
        padding-top: 30px;
    }
    .bannerButton {
        font-family: "Be Vietnam Pro";
        font-weight: 500;
        font-size: 20px;
        text-align: center;
        color: #fff;
    }
    .text_section {
        margin: 100px 150px;
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 32px;
        line-height: 47px;
        text-align: center;
        color: #000;
    }
    .bottom-banner-content {
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, 0%);
        width: 1920px;
        padding: 100px 220px;
    }
    img {
        vertical-align: middle;
        border-style: none;
    }
    .bottom-banner-content>.sub-heading {
        font-family: "Be Vietnam Pro";
        font-weight: 500;
        font-size: 45px;
        line-height: 47px;
        text-align: center;
        color: #fff;
    }
    .bottom-banner-content>.sub-text {
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 32px;
        line-height: 47px;
        text-align: center;
        color: #fff;
        margin-top: 57px;
    }
    .section-3-bg {
        background-color: #4D4D4D;
    }
    .section-3 {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .section-2 {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .card {
        border-radius: 20px;
        background: #fff;
        box-shadow: 0px 30px 80px rgba(0, 0, 0, 0.05);
        padding: 70px 30px 120px 30px;
    }
    .card-one {
        width: 760px;
    }
    .card-two {
        width: 704px;
        margin-bottom: 90px;
    }
    .card-three {
        width: 704px;
        margin-bottom: 90px;
    }
    .card-three-heading {
        font-family: "Be Vietnam Pro";
        font-weight: 500;
        font-size: 45px;
        line-height: 47px;
        text-align: center;
        color: #e26027;
        padding-top: 30px;
    }
    .banner02 {
        position: relative;
        top: -600px;
        z-index: -100;
        height: 50px;
    }
    .card-heading {
        font-family: "Be Vietnam Pro";
        font-weight: 500;
        font-size: 45px;
        line-height: 52px;
        text-align: center;
        color: #000;
    }
    .card-txt-section {
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 24px;
        line-height: 37px;
        text-align: left;
        color: #000;
    }
    .card-txt-section ul {
        padding-top: 26px;
        padding-left: 50px;
        padding-right: 50px;
    }
    .card-txt-section ul li {
        padding-top: 20px;
        display: flex;
    }
    .card-txt-section ul li .circle-svg {
        width: 50px;
        display: inline-block;
        text-align: start;
    }
    .card-txt-section ul li .list-text {
        width: 600px;
        display: inline-block;
    }
    .text-bold-orange {
        font-weight: bold;
        color: #E26027;
    }
    .padding-top-50 {
        padding-top: 50px !important;
    }
    .card-three-table-section li {
        padding-top: 20px;
        display: flex;
    }
    .card-three-table-heading {
        width: 150px;
        display: inline-block;
        text-align: start;
        font-family: "Be Vietnam Pro";
        font-weight: bold;
        font-size: 24px;
        line-height: 37px;
        color: #000;
    }
    .card-three-table-txt {
        width: 320px;
        display: inline-block;
        font-family: "Be Vietnam Pro";
        font-weight: normal;
        font-size: 24px;
        line-height: 37px;
        text-align: left;
        color: #000;
    }
    .card-three-table-section {
        padding-left: 100px;
        padding-right: 100px;
    }
    .register_now_btn {
        width: 192px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        letter-spacing: 0;
        color: #fff;
        font-weight: 500;
        margin-right: 10px;
        background-color: #FA6B05;
        margin: 0 auto;
        margin-top: 30px;
        font-family: "Be Vietnam Pro";
    }
}