@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Red Hat Display", serif;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
    color: #636262;
    background: #FFFFFF;
    overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 700;
    color: #000000;
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #0b5798;
}

:focus {
    outline: none !important;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
}

label {
    display: inline-block;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
}

textarea {
    width: 100%;
    height: 120px;
    border: 1px solid #5a5a5a;
    outline: none;
    padding: 9px 14px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #707070;
    border-radius: 0px;
    transition: 0.2s ease all;
    background: #f0f0f0;
    resize: none;
}

[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
    width: 100%;
    height: 42px;
    border: 1px solid rgba(17, 12, 48, 0.4);
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: rgba(8, 27, 45, 0.53);
    border-radius: 15px;
    transition: 0.2s ease all;
    background: #FFFFFF;
}

input::-webkit-input-placeholder {
    color: #707070;
    opacity: 1;
}

textarea::placeholder,
input::placeholder {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #707070;
    opacity: 100;
}

[type="submit"] {
    border: 1px solid #292929;
    outline: none;
    padding: 13px 25px;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    color: #292929;
    border-radius: 0px;
    transition: 0.2s ease all;
    background: #fff;
    text-align: center;
    display: inline-block;
}

[type="submit"]:hover {
    background: #ea3319;
}

.btns {
    position: relative;
    font-size: 15px;
    line-height: 0.9em;
    font-weight: 500;
    text-transform: capitalize;
    color: #1A1718;
    border-radius: 50px;
    padding: 17px 100px 17px 20px;
    /* padding: 19.5px 122px 19.5px 25px; */
}

.btns::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: url(../img/btns-arrow-black.svg) no-repeat center center;
    transition: 0.3s linear;
}

.primary-btn {
    background: #DEE0E1;
}

.btn-blackbg {
    background: #1A1718;
    color: #FFFFFF;
}

.btn-blackbg::after {
    background: url(../img/btns-arrow-white.svg) no-repeat center center;
}

.btn-blackbg:hover {
    background: #DEE0E1;
    color: #1A1718;
}

.btn-blackbg:hover:after {
    background: url(../img/btns-arrow-black.svg) no-repeat center center;
}

h1 {
    font-weight: 700;
    font-size: 35px;
    line-height: 1.1;
    color: #fff;
}

h2 {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
}

h4 {
    font-size: 22px;
    line-height: 1.3076923076923077em;
    font-weight: 600;
}

h5 {
    font-size: 20px;
    line-height: 1.3181em;
    font-weight: 700;
    color: #000000;
}

p {
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 400;
    margin: 0;
}

.sub-text {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    color: #595959;
    margin-top: 15px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 38px;
    }

    h4 {
        font-size: 26px;
    }

    h5 {
        font-size: 22px;
    }

    p {
        font-size: 16px;
    }

    .sub-text {
        font-size: 20px;
    }

    .btns {
        font-size: 18px;
    }

    .btns::after {
        width: 25px;
        height: 25px;
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 45px;
        line-height: 0.7111111111111111em;
    }

    .sub-text {
        margin-top: 25px;
    }

    .container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .btns {
        font-size: 20px;
        padding: 17px 102px 19px 25px;
    }

    .primary-btn:hover {
        background: #001529;
        color: #FFFFFF;
    }

    .primary-btn:hover::after {
        right: 28%;
        background: url(../img/btns-arrow-white.svg) no-repeat center center;
    }

    .btn-blackbg:hover::after {
        right: 28%;
    }
}

/* header css start */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    transition: 0.3s linear;
    padding: 10px 0 0 0;
}

.header.sticky {
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(8, 27, 45, 0.1);
    padding: 15px 0;
}

.header-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid #AECBE5;
    border-radius: 20px;
    transition: 0.3s linear;
    padding: 12px;
}

.header.sticky .header-wrapper {
    border: none;
    padding: 0;
}

.logo a {
    display: block;
    max-width: 50px;
}

.header.sticky .logo a {
    max-width: 50px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-right a:last-of-type {
    display: none;
}

.header-right a {
    padding: 15px 45px 15px 15px;
}

.header-right a.border-btn {
    border: 2px solid #000000;
    padding: 14px 45px 14px 15px;
}

.header-right a.border-btn:hover {
    background: #000000;
    color: #FFFFFF;
}

.header-right a.border-btn:hover::after {
    background: url(../img/btns-arrow-white.svg) no-repeat center center;
}

.menu-bar {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 99;
    height: 100%;
    width: 300px;
    background: #000000;
    opacity: 0;
    transition: 0.4s;
    padding: 30px 0 0 30px;
}

.menu-bar.show {
    left: 0;
    opacity: 1;
}

.menu-bar li {
    margin-bottom: 20px;
}

.menu-bar li a {
    position: relative;
    font-weight: 600;
    color: #FFFFFF;
    padding-bottom: 10px;
}

.menu-bar li a::before,
.menu-bar li a::after {
    position: absolute;
    content: "";
    bottom: 5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFFFFF;
    opacity: 0;
    transition: 0.4s;
}

.menu-bar li.active a::before,
.menu-bar li a:hover::before {
    width: 100%;
    opacity: 1;
}

.menu-bar li a::after {
    bottom: 0;
    width: 0;
}

.menu-bar li.active a::after,
.menu-bar li a:hover::after {
    width: 60%;
    opacity: 1;
}

.toggle-btn {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 7px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    padding: 0;
}

.toggle-btn span {
    width: 100%;
    height: 3px;
    background: #1A1718;
    border-radius: 2px;
    transition: 0.3s;
}

.toggle-btn.active {
    row-gap: 0;
}

.toggle-btn.active span:first-child {
    transform: rotate(45deg) translate(1px, 1px);
}

.toggle-btn.active span:nth-child(2) {
    display: none;
}

.toggle-btn.active span:last-child {
    transform: rotate(-45deg) translate(1px, -1px);
}

@media (min-width: 768px) {
    .logo a {
        max-width: 60px;
    }

    .header.sticky .logo a {
        max-width: 130px;
    }

    .menu-bar {
        width: 70%;
    }

    .menu-bar li a {
        font-size: 18px;
    }

    .header-right {
        gap: 20px;
    }

    .header-right a:last-of-type {
        display: inline-block;
    }

    .header-right a {
        padding: 17px 50px 17px 25px;
    }
}

@media (min-width: 1200px) {
    .header {
        padding: 30px 0 0 0;
    }

    .logo a {
        max-width: 195px;
    }

    .header.sticky .logo a {
        max-width: 165px;
    }

    .menu-bar {
        position: relative;
        left: unset;
        top: unset;
        width: auto;
        height: auto;
        background: transparent;
        display: flex;
        gap: 30px;
        opacity: 1;
        padding: 0;
    }

    .menu-bar li {
        margin-bottom: -10px;
    }

    .menu-bar li a {
        color: #1A1718;
    }

    .menu-bar li a::before,
    .menu-bar li a::after {
        background: rgba(8, 27, 45, 59%);
    }

    .header-right a {
        padding: 18px 50px 18px 25px;
    }

    .header-right a.border-btn {
        padding: 16px 50px 16px 25px;
    }

    .header-right a.btn-blackbg:hover::after {
        right: 15px;
    }

    .toggle-btn {
        display: none;
    }
}

/* banner css */
.banner {
    position: relative;
    z-index: 1;
}

.banner::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: radial-gradient(100.94% 67.3% at 49.1% 32.7%, rgba(8, 27, 45, 0.8) 0.43%, rgba(8, 27, 45, 0.1) 75.34%);
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dotted-border-shape {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 140px 0 115px 0;
}

.banner-content p {
    color: #FFFFFF;
    margin: 15px 0 40px 0;
}

.banner-content figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0px 25px 65px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.banner-content figure img {
    max-width: 30px;
}

@media (min-width: 768px) {
    .dotted-border-shape {
        display: block;
        position: absolute;
        top: 72px;
    }

    .banner-content {
        padding: 165px 0 120px 0;
    }

    .banner-content p {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    .dotted-border-shape {
        top: 0;
    }

    .banner-content {
        padding: 230px 0 280px 0;
    }

    .banner-content p {
        font-size: 20px;
        margin: 20px 0 80px 0;
    }

    .banner-content figure {
        width: 106px;
        height: 106px;
    }

    .banner-content figure img {
        max-width: 100%;
    }
}

@media (min-width: 1900px) {
    .dotted-border-shape {
        top: -145px;
    }
}


.cta-form-section {
    display: block;
    position: relative;
    z-index: 1;
    margin-top: -80px;
}

.cta-form-wrapper {
    background: #FFFFFF;
    box-shadow: 0px 10px 35px rgba(67, 72, 99, 0.15);
    border-radius: 15px;
    padding: 40px 15px;
}

.cta-form-wrapper h4 {
    text-align: center;
    margin-bottom: 20px;
}

.form-wrap {
    background: rgba(111, 129, 169, 0.1);
    border-radius: 10px;
    padding: 15px;
}

.form-wrap .row {
    gap: 20px 0;
}

.form-panel-col {
    position: relative;
    align-content: flex-end;
}

.form-panel-col input {
    padding: 0 0 0 50px;
}

.form-panel-col select {
    width: 100%;
    height: 42px;
    border: 1px solid rgba(17, 12, 48, 0.4);
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: rgba(8, 27, 45, 0.53);
    border-radius: 15px;
    transition: 0.2s ease all;
    background: #FFFFFF;
}

.form-panel-col select {
    position: relative;
    background: #FFFFFF url(../img/down-arrow.png) no-repeat;
    background-position: calc(100% - 15px) center;
    padding: 0 0 0 50px;
}

.form-panel-col input::placeholder {
    font-size: 16px;
    color: rgba(8, 27, 45, 0.53);
}

.form-panel-col label {
    display: block;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #110C30;
    margin-bottom: 5px;
}

.form-panel-col span {
    position: absolute;
    bottom: 7px;
    left: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: #E5F2FF;
    border-radius: 50%;
}

.form-panel-col button {
    width: 100%;
    text-align: left;
    border: none;
    transition: 0.3s;
}

@media (min-width: 768px) {
    .cta-form-wrapper {
        padding: 30px;
    }

    .form-wrap {
        padding: 25px;
    }

    .form-wrap .row {
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .cta-form-section {
        margin-top: -218px;
    }

    .cta-form-wrapper {
        padding: 40px;
    }

    .cta-form-wrapper h4 {
        margin-bottom: 30px;
    }

    .form-panel-col label {
        margin-bottom: 10px;
    }

    .form-panel-col input {
        height: 54px;
        padding: 0 15px 0 72px;
    }

    .form-panel-col span {
        width: 30px;
        height: 30px;
        bottom: 12px;
        left: 30px;
    }

    .form-panel-col select {
        height: 54px;
        padding: 0 15px 0 72px;
    }

    .form-panel-col button:hover::after {
        right: 52%;
    }
}

.star-students {
    margin: 50px 0;
}

.star-students-title {
    text-align: center;
    margin-bottom: 25px;
}

.js-star-students-slider {
    padding-bottom: 45px;
}

.star-students-col {
    width: 200px;
    margin: 0 12px;
}

.star-students-details {
    text-align: center;
    background: rgba(17, 12, 48, 0.04);
    border: 1px solid #E6E6EA;
    border-radius: 20px;
    min-height: 234px;
    padding: 20px 30px;
}

.star-students-details figure {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border: 1px solid #F2F2F2;
    border-radius: 15px;
    margin: 0 auto;
}

.star-students-details h5 {
    line-height: 15px;
    margin: 19px 0 10px 0;
}

.star-students-details p {
    font-size: 16px;
    color: #0F0F0F;
}

.slick-arrow {
    font-size: 0;
    border: none;
    position: absolute;
    top: unset;
    bottom: 0;
    left: calc(50% - 24px);
    transform: translate(-50%, 0);
    width: 24px;
    height: 24px;
    background: url(../img/slider-arrow-left.svg) no-repeat center center;
    padding: 0;
}

.slick-next {
    left: calc(50% + 24px);
    background: url(../img/slider-arrow-right.svg) no-repeat center center;
}

@media (min-width: 768px) {
    .star-students {
        margin: 70px 0;
    }

    .star-students-title {
        margin-bottom: 35px;
    }

    .js-star-students-slider {
        padding: 0 0 55px 0;
    }
}

@media (min-width: 1200px) {
    .star-students {
        margin: 100px 0;
    }

    .js-star-students-slider {
        padding: 0 37px 0 37px;
    }

    .slick-arrow {
        bottom: unset;
        top: 50%;
        left: -7px;
        transform: translate(0, -50%);
    }

    .slick-next {
        left: unset;
        right: -6px;
    }
}

.top-scrers-student {
    margin: 50px 0;
}

.top-scrers-title {
    text-align: center;
    margin-bottom: 25px;
}

.js-image-card-slider {
    margin: 0 -12px;
}

.image-card-col {
    padding: 0 12px;
}

.scorers-image {
    position: relative;
}

.scorers-image video {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.slick-dots {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 6px;
    margin-top: 20px;
}

.slick-dots li {
    display: flex;
}

.slick-dots li button {
    border: none;
    font-size: 0;
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    border-radius: 50%;
    transition: 0.3s;
    padding: 0;
}

.slick-dots li.slick-active button,
.slick-dots li button:hover {
    background: #081B2D;
}

@media (min-width: 768px) {
    .top-scrers-student {
        margin: 70px 0;
    }

    .top-scrers-title {
        margin-bottom: 40px;
    }

    .slick-dots {
        margin-top: 28px;
    }

    .slick-dots li button {
        width: 12px;
        height: 12px;
    }
}

@media (min-width: 1200px) {
    .top-scrers-student {
        margin: 100px 0;
    }

    .js-image-card-slider {
        margin: 0 -23px;
    }

    .js-image-card-slider .slick-list {
        padding: 40px 0 !important;
    }

    .image-card-col {
        padding: 0 23px;
    }

    .scorers-image {
        transition: 0.2s linear;
    }

    .scorers-image video {
        border-radius: 20px;
    }

    .image-card-col:hover .scorers-image {
        transform: scale(1.058);
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.65) 100%);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(14px);
        border-radius: 20px;
        margin-top: -14px;
    }

    .slick-dots {
        margin-top: 0;
    }

    .slick-dots li button {
        width: 16px;
        height: 16px;
    }
}

.welcome-docpilot {
    margin: 50px 0;
}

.welcome-docpilot-wrap {
    flex-direction: column-reverse;
    gap: 30px 0;
}

.welcome-details-title {
    text-align: center;
}

.welcome-details-title p {
    margin: 15px 0;
}

.welcome-details ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 20px;
}

.welcome-details ul li .wel-icons {
    background: rgba(47, 67, 100, 0.1);
    border-radius: 50%;
    padding: 6px;
}

.welcome-details ul li .wel-icons figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    background: #2F4364;
    border-radius: 50%;
    margin-bottom: 0;
}

.welcome-details ul li .wel-text-box {
    width: calc(100% - 35px);
    padding-left: 10px;
}

.welcome-details ul li .wel-text-box span {
    display: block;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #110C30;
    margin-bottom: 6px;
}

.left-image-panel {
    display: none;
}

@media (min-width: 768px) {
    .welcome-docpilot {
        margin: 70px 0;
    }

    .welcome-details-title p {
        margin: 25px 0;
    }

    .welcome-details ul li {
        margin-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    .welcome-docpilot {
        margin: 120px 0;
    }

    .welcome-docpilot-wrap {
        flex-direction: row;
    }

    .left-image-panel {
        display: block;
    }

    .welcome-details-title {
        text-align: left;
    }

    .welcome-details-title p {
        margin: 20px 0;
    }

    .welcome-details ul li {
        margin-bottom: 20px;
    }

    .btn-box {
        text-align: left !important;
    }
}

.courses-area {
    margin: 50px 0;
}

.courses-title {
    text-align: center;
    margin-bottom: 25px;
}

.courses-wrap {
    justify-content: center;
    gap: 30px 0;
}

.courses-panel {
    background: linear-gradient(210.04deg, rgba(8, 27, 45, 0.15) 0%, rgba(255, 255, 255, 0.01) 33.41%);
    box-shadow: 0px 0px 35px rgba(108, 117, 125, 0.15);
    border-radius: 20px;
    padding: 40px 20px;
}

.courses-panel figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: #081B2D;
    border-radius: 50%;
    margin-bottom: 20px;
}

.courses-panel h4 {
    font-weight: 700;
}

.courses-panel p {
    margin: 18px 0;
}

@media (min-width: 768px) {
    .courses-area {
        margin: 70px 0;
    }

    .courses-title {
        margin-bottom: 40px;
    }
}

@media (min-width: 1200px) {
    .courses-area {
        margin: 120px 0;
    }

    .courses-panel {
        padding: 40px 40px 44px;
    }

    .courses-panel figure {
        margin-bottom: 20px;
    }

    .courses-panel p {
        margin: 15px 0 22px 0;
    }
}

.practise-zone {
    background: rgba(8, 27, 45, 0.04);
    padding: 40px 0;
    margin: 50px 0;
}

.practise-zone-title {
    text-align: center;
    margin-bottom: 25px;
}

.practise-details ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.practise-details ul li a {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3181em;
    color: #000000;
    background: #FFFFFF;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 15px 20px;
}

.practise-image-col {
    border: 2px dashed #081B2D;
    border-radius: 20px;
    padding: 15px;
}

.practise-image-col img {
    width: 100%;
    border-radius: 20px;
}

@media (min-width: 768px) {
    .practise-zone {
        padding: 60px 0;
        margin: 70px 0;
    }

    .practise-zone-title {
        margin-bottom: 40px;
    }

    .practise-zone .row {
        position: relative;
    }

    .practise-details {
        padding-bottom: 150px;
    }

    .practise-details ul {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .practise-zone {
        margin: 100px 0;
    }

    .practise-details {
        padding-right: 49px;
        padding-bottom: 0;
    }

    .practise-details ul {
        position: relative;
        bottom: unset;
        left: unset;
        margin: 20px 0 0 0;
    }

    .practise-details ul li a {
        font-size: 22px;
        padding: 18px 20px;
    }
}

.become-pilot-area {
    margin: 50px 0;
}

.become-pilot-area .bg-border {
    display: none;
}

.become-pilot-area h2 {
    text-align: center;
    margin-bottom: 25px;
}

.become-pilot-wrap {
    gap: 30px 0;
}

.become-step-box {
    display: block;
    position: relative;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.65) 100%);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 30px;
}

.icon-title-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.icon-title-wrap span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #007BFF;
    border-radius: 50%;
}

.become-step-box p {
    margin-top: 20px;
}

.become-step-box .share-icon {
    position: absolute;
    bottom: -15px;
    right: 15px;
}

@media (min-width: 768px) {
    .become-pilot-area {
        margin: 70px 0;
    }

    .become-pilot-area h2 {
        margin-bottom: 40px;
    }
}

@media (min-width: 1200px) {
    .become-pilot-area {
        margin: 100px 0;
    }

    .become-pilot-wrap {
        position: relative;
        margin: 0 -25px;
    }

    .become-pilot-wrap .col-12 {
        padding: 0 25px;
    }

    .become-pilot-area .bg-border {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 75.833vw;
        padding: 0;
    }

    .become-step-box {
        min-height: 155px;
    }

    .become-step-box p {
        max-width: 256px;
        margin-top: 12px;
    }
}

.block-cta-section {
    margin: 50px 0;
}

.block-cta-wrap {
    background: #FFFFFF;
    box-shadow: 0px 0px 35px rgba(108, 117, 125, 0.15);
    border-radius: 20px;
    padding: 30px 15px;
}

.block-cta-wrap .row {
    gap: 30px 0;
}

.block-cta-details {
    text-align: center;
}

.block-cta-details p {
    margin: 15px 0;
}

.block-cta-image img {
    margin: 0 auto;
}

@media (min-width: 768px) {
    .block-cta-section {
        margin: 70px 0;
    }

    .block-cta-wrap {
        padding: 50px 40px;
    }
}

@media (min-width: 1200px) {
    .block-cta-section {
        margin: 100px 0;
    }

    .block-cta-details {
        text-align: left;
        padding-right: 32px;
    }

    .block-cta-details h2 {
        font-size: 40px;
        line-height: 1.1;
    }

    .block-cta-details p {
        margin: 20px 0;
    }

    .block-cta-image {
        margin-left: -35px;
    }
}


/* footer css start */
.footer {
    background: #001529;
    padding-top: 45px;
}

.footer-wrap {
    gap: 30px 0;
}

.footer-left {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 20px;
}

.footer-logo {
    display: block;
    max-width: 120px;
    margin-bottom: 0;
}

.footer-left p {
    color: #FFFFFF;
    margin: 20px 0;
}

.footer-left a.btn-blackbg {
    background: rgba(255, 255, 255, 0.1);
}

.footer-left a.btn-blackbg:hover {
    background: rgba(255, 255, 255, 0.6);
}

.footer-right {
    padding-bottom: 20px;
}

.footer-inner-flex {
    gap: 30px 0;
}

.footer-right h5 {
    color: #FFFFFF;
    margin-bottom: 15px;
}

.footer-right .footer-links li a {
    font-size: 16px;
    line-height: 1.875em;
    color: #FFFFFF;
}

.footer-contact-detl li {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-contact-detl li:last-child {
    margin-bottom: 0;
}

.footer-contact-detl li span {
    width: 35px;
    font-size: 20px;
    color: #FFFFFF;
}

.footer-contact-detl li p {
    width: calc(100% - 35px);
    color: #FFFFFF;
}

.footer-contact-detl li a {
    color: #FFFFFF;
}

.footer-contact-detl li a:hover {
    text-decoration: underline;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-links li a {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social-links li a:hover {
    color: #007BFF;
}

.copy-right {
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    padding: 15px 0;
}

.copy-right p {
    text-align: center;
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .footer {
        padding-top: 62px;
    }

    .footer-left {
        padding-bottom: 30px;
    }

    .footer-logo {
        max-width: 135px;
    }

    .footer-left p {
        margin: 28px 0 30px 0;
    }

    .footer-right h5 {
        margin-bottom: 20px;
    }

    .footer-contact-detl li p {
        padding-right: 50px;
    }

    .copy-right {
        border-width: 2px;
        padding: 22px 0 20px;
    }
}

@media (min-width: 1200px) {
    .footer {
        padding-top: 0;
    }

    .footer-left {
        border-bottom: 0;
        border-right: 2px dashed rgba(255, 255, 255, 0.3);
        padding: 80px 100px 40px 0;
    }

    .footer-logo {
        max-width: 169px;
    }

    .footer-right {
        padding: 80px 0 0 75px;
    }

    .footer-inner-flex {
        gap: 50px 0;
    }

    .footer-right .footer-links li a:hover {
        color: #007BFF;
    }

    .footer-contact-detl li span {
        width: 25px;
        font-size: 25px;
    }

    .footer-contact-detl li p {
        width: calc(100% - 25px);
        padding-right: 0px;
        padding-left: 12px;
    }

    .footer-contact-detl li a {
        padding-left: 12px;
    }

    .footer-social-links li a {
        font-size: 25px;
    }
}


/* inner header start */
header.inner-header .header-wrapper {
    border-color: #E2E2E2;
}


/* inner banner css start */
.banner.inner-banner .banner-content {
    padding: 140px 0 50px 0;
}


@media (min-width: 768px) {
    .banner.inner-banner .dotted-border-shape {
        top: 52px;
    }

    .banner.inner-banner .banner-content {
        padding: 140px 0 66px 0;
    }
}

@media (min-width: 1200px) {
    .banner.inner-banner .banner-content {
        padding: 226px 0 66px 0;
    }

    .banner.inner-banner .dotted-border-shape {
        top: 2px;
        left: 50%;
        transform: translate(-50%, 0);
        max-width: 1440px;

    }
}


.air-navigation-area {
    margin: 50px 0;
}

.air-navigation-wrap .row {
    flex-direction: column-reverse;
    gap: 30px 0;
}

.air-navigation-wrap {
    background: #FFFFFF;
    box-shadow: 0px 0px 65px rgba(108, 117, 125, 0.1);
    border-radius: 19px;
    padding: 20px;
}

.youtube-video-col iframe {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 19px;
}

.air-navigation-text span {
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3em;
    color: #007BFF;
    margin-top: 8px;
}

.air-navigation-text ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
    margin: 15px 0;
}

.air-navigation-text ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #636262;
}

.air-navigation-text ul li figure {
    margin-bottom: 0;
}

.air-navigation-text p {
    margin-bottom: 15px;
}

.btn-box-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (min-width: 768px) {
    .air-navigation-area {
        margin: 70px 0;
    }

    .air-navigation-wrap {
        padding: 40px;
    }

    .air-navigation-text span {
        font-size: 20px;
        margin-top: 10px;
    }

    .air-navigation-text ul li {
        font-size: 18px;
    }

    .air-navigation-text p {
        margin-bottom: 20px;
    }

    .btn-box-wrap {
        gap: 25px;
    }

    .youtube-video-col iframe {
        height: 300px;
    }
}

@media (min-width: 1200px) {
    .air-navigation-area {
        margin: 100px 0;
    }

    .air-navigation-wrap {
        margin: 0 24px;
    }

    .air-navigation-wrap .row {
        flex-direction: row;
        align-items: center;
    }

    .youtube-video-col {
        padding-right: 20px;
    }

    .youtube-video-col iframe {
        height: 295px;
    }

    .air-navigation-text {
        padding-left: 30px;
    }

    .air-navigation-text h2 {
        font-size: 40px;
    }

    .air-navigation-text span {
        margin-top: 20px;
    }

    .air-navigation-text ul {
        justify-content: space-between;
    }
}


.chapter-accordion {
    margin: 50px 0;
}

.accordion-item {
    position: relative;
    border: none;
    transition: 0.4s;
    border-radius: 10px !important;
    margin-bottom: 30px;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-item:has(.accordion-title.active) {
    padding: 22px 12px 12px 12px;
}

.accordion-item::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #0D0C0A;
    opacity: 0;
    border-radius: 19px;
}

.accordion-item:has(.accordion-title.active)::before {
    opacity: 1;
}

.accordion-title h2 {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3043478260869565em;
    color: #000000;
    background: rgba(111, 129, 169, 0.1);
    border-radius: 10px;
    cursor: pointer;
    padding: 15px 20px;
}

.accordion-title h2::before {
    position: absolute;
    content: "Free Trial";
    top: -11px;
    left: 20px;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    color: #110C30;
    background: #D4E9FF;
    border-radius: 5px;
    padding: 5px 7px;
}

.accordion-title h2::after {
    position: absolute;
    content: "";
    top: 17px;
    right: 10px;
    width: 18px;
    height: 18px;
    background: url(../img/accordion-arrow.svg) no-repeat center center / cover;
    transition: 0.3s;
}

.accordion-title.active h2 {
    border-radius: 10px 10px 0 0;
}

.accordion-title.active h2::after {
    transform: rotate(90deg);
}

.accordion-tab {
    display: none;
    position: relative;
    z-index: 1;
    min-height: 300px;
    background: rgba(111, 129, 169, 0.1);
    border-radius: 0 0 10px 10px;
    padding: 0 15px 20px 15px;
}

.Chapter-videos {
    position: absolute;
    top: 0;
    left: 15px;
    z-index: -1;
    width: calc(100% - 30px);
    height: calc(100% - 20px);
}

.Chapter-videos iframe {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.Chapter-details {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 40px 15px;
}

.Chapter-details h4 {
    color: #FFFFFF;
}

.Chapter-details p {
    color: #FFFFFF;
    margin: 10px 0 15px 0;
}

.Chapter-details .row {
    gap: 15px 0;
}

.Chapter-form-col {
    position: relative;
}

.Chapter-form-col input {
    width: 100%;
    height: 45px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    font-size: 14px;
    color: #000000;
    padding: 0 0 0 55px;
}

.Chapter-form-col input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}

.Chapter-form-col span {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: #E5F2FF;
    border-radius: 50%;
}

.Chapter-form-col span img {
    max-width: 12px;
}

.play-video-btn button {
    border: none;
    background: #FFFFFF;
    transition: 0.4s;
}

@media (min-width: 768px) {
    .chapter-accordion {
        margin: 70px 0;
    }

    .accordion-item:has(.accordion-title.active) {
        padding: 51px 40px 40px 40px;
    }

    .accordion-title h2 {
        font-size: 23px;
        padding: 19px 25px;
    }

    .accordion-title h2::after {
        top: 25px;
        right: 25px;
    }

    .accordion-tab {
        padding: 3px 30px 25px 30px;
    }

    .Chapter-videos {
        left: 30px;
        width: calc(100% - 60px);
    }

    .Chapter-videos iframe {
        border-radius: 20px;
    }

    .Chapter-details {
        border-radius: 20px;
        padding: 65px 30px;
    }

    .Chapter-form-col input {
        height: 54px;
        font-size: 16px;
        padding: 0 0 0 72px;
    }

    .Chapter-form-col input::placeholder {
        font-size: 16px;
    }

    .Chapter-form-col span {
        width: 30px;
        height: 30px;
    }

    .Chapter-form-col span img {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .chapter-accordion {
        margin: 100px 0;
    }

    .accordion-tab {
        min-height: 505px;
        padding: 3px 65px 25px 65px;
    }

    .Chapter-videos {
        left: 65px;
        width: calc(100% - 130px);
        height: calc(100% - 25px);
    }

    .Chapter-details {
        padding: 88px 0;
    }

    .Chapter-details form {
        max-width: 645px;
        margin: 0 auto;
    }
}


.banner.bg-none .banner-content {
    padding: 130px 0 26px 0;
}

.banner.banner.bg-none::after {
    background: linear-gradient(180deg, #E9EBED 30.92%, #FFFFFF 82.83%);
}

.banner.bg-none .banner-content h1 {
    color: #1A1718;
}

.banner.bg-none .banner-content p {
    color: #1A1718;
}

.banner.bg-none .banner-content figure {
    background: #FFFFFF;
    box-shadow: 0px 25px 65px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .banner.bg-none .banner-content {
        padding: 150px 0 26px 0;
    }
}

@media (min-width: 1200px) {
    .banner.bg-none .banner-content {
        padding: 226px 0 26px 0;
    }

    .banner.bg-none .dotted-border-shape {
        top: 20px;
        left: 50%;
        transform: translate(-50%, 0);
        max-width: 1440px;
    }
}


.register-area {
    margin: 50px 0;
}

.register-area-wrap {
    background: linear-gradient(180deg, #FFFFFF 84.79%, #F7F8F9 100%);
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding: 20px 15px;
}

.half-half-form .row {
    gap: 25px 0;
}

.personal-details-form {
    background: linear-gradient(180deg, #E9EBED 30.92%, #FFFFFF 82.83%);
    border-radius: 15px;
    padding: 15px;
}

.personal-details-form .form-wrap,
.family-details-form .form-wrap {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.personal-details-form h4,
.family-details-form h4 {
    margin-bottom: 15px;
}

.family-details-form {
    position: relative;
    background: linear-gradient(180deg, rgba(13, 12, 10, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 15px;
    z-index: 1;
    padding: 15px;
}

.family-details-form::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: #FFFFFF;
    border-radius: 15px;
}

.panel-box {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 15px;
    padding: 15px;
    margin: 20px 0;
}

.panel-box h4 {
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.checkbox-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.checkbox-list li input {
    display: none;
}

.checkbox-list li {
    line-height: 1;
}

.checkbox-list li label {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-transform: capitalize;
    color: #1A1718;
    padding-left: 30px;
}

.checkbox-list li label::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border: 1px solid #6F81A9;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

.checkbox-list li label::after {
    position: absolute;
    content: "\f00c";
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #1A1718;
    border-radius: 5px;
    font-size: 11px;
    color: #FFFFFF;
    font-family: "FontAwesome";
    transition: 0.3s;
    opacity: 0;
}

.checkbox-list li input:checked+label::after {
    opacity: 1
}

.collumn-panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    gap: 15px 0;
    margin-bottom: 25px;
}

.collumn-panel:last-child {
    margin-bottom: 0;
}

.collumn-panel .left-panel p {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: #1A1718;
}

.radioBtn-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.radioBtn-list li {
    line-height: 1;
}

.radioBtn-list li input {
    display: none;
}

.radioBtn-list li label {
    position: relative;
    font-size: 16px;
    line-height: 1;
    color: #1A1718;
    padding-left: 25px;
}

.radioBtn-list li label::before,
.radioBtn-list li label::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 18px;
    height: 18px;
    background: #FFFFFF;
    border: 1px solid #6F81A9;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
}

.radioBtn-list li input:checked+label::before {
    background: #1A1718;
    border: 1px solid #1A1718;
}

.radioBtn-list li label::after {
    left: 5px;
    width: 8px;
    height: 8px;
    border: none;
    box-shadow: none;
    opacity: 0;
}

.radioBtn-list li input:checked+label::after {
    opacity: 1;
}

.collumn-panel .right-panel input[type="text"],
.collumn-panel .right-panel input[type="text"]::placeholder {
    font-size: 16px;
    text-align: center;
}

.upload-file-box {
    position: relative;
}

.upload-file-box input {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

.upload-file-box button {
    position: relative;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #FFFFFF;
    background: #1A1718;
    border: 1px solid rgba(17, 12, 48, 0.4);
    border-radius: 15px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: 0.4s;
    padding: 15px;
}

.upload-file-box button.clicked {
    background: #E9EBED;
    color: #110C30;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.rules-regulation-list li {
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    padding-left: 25px;
    margin-bottom: 10px;
}

.rules-regulation-list li:last-child {
    margin-bottom: 0;
}

.rules-regulation-list li::before {
    position: absolute;
    content: "";
    top: 4px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url(../img/arrow-right-2.svg) no-repeat center center / cover;
}

.accept-tearm-condition .checkbox-list {
    gap: 12px 0;
}

.accept-tearm-condition .checkbox-list li label {
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 400;
    color: #636262;
}

.accept-tearm-condition .checkbox-list li label::before,
.accept-tearm-condition .checkbox-list li label::after {
    top: 4px;
    transform: translate(0);
}

.submit-btn-wrap button {
    border: none;
    transition: 0.3s;
}

@media (min-width: 768px) {
    .register-area {
        margin: 70px 0;
    }

    .panel-box {
        padding: 20px;
        margin: 30px 0;
    }

    .panel-box h4 {
        margin-bottom: 15px;
    }

    .choose-subject ul {
        gap: 15px 0;
    }

    .choose-subject ul li {
        width: 33.33%;
    }

    .choose-subject ul li label {
        font-size: 18px;
    }

    .collumn-panel {
        flex-direction: row;
        align-items: center;
        margin-bottom: 15px;
    }

    .collumn-panel .left-panel {
        width: 41%;
    }

    .collumn-panel .left-panel p {
        font-size: 18px;
    }

    .radioBtn-list {
        width: 29%;
        gap: unset;
        justify-content: space-around;
    }

    .collumn-panel .right-panel {
        width: 30%;
    }

    .rules-regulation-list li {
        font-size: 16px;
        padding-left: 30px;
        margin-bottom: 15px;
    }

    .rules-regulation-list li::before {
        top: 3px;
    }

    .accept-tearm-condition .checkbox-list {
        gap: 15px 0;
    }

    .accept-tearm-condition .checkbox-list li label {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .register-area {
        margin: 100px 0;
    }

    .register-area-wrap {
        border-radius: 19px;
        padding: 30px 30px 50px 30px;
    }

    .personal-details-form,
    .family-details-form {
        border-radius: 19px;
        padding: 40px;
    }

    .family-details-form::after {
        border-radius: 19px;
    }

    .personal-details-form .form-panel-col label,
    .family-details-form .form-panel-col label {
        margin-bottom: 4px;
    }

    .personal-details-form .form-wrap .row,
    .family-details-form .form-wrap .row {
        gap: 20px 0;
    }

    .panel-box {
        padding: 40px;
    }

    .panel-box h4 {
        margin-bottom: 20px;
    }

    .choose-subject ul li label {
        font-size: 20px;
        line-height: 24px;
        padding-left: 35px;
    }

    .choose-subject ul li label::before {
        width: 24px;
        height: 24px;
    }

    .choose-subject ul li label::after {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .collumn-panel .left-panel {
        width: 29.5%;
    }

    .collumn-panel .left-panel p {
        font-size: 20px;
    }

    .radioBtn-list li label {
        font-size: 18px;
        padding-left: 34px;
    }

    .radioBtn-list li label::before {
        width: 24px;
        height: 24px;
    }

    .radioBtn-list li label::after {
        left: 7px;
        width: 10px;
        height: 10px;
    }

    .radioBtn-list {
        width: auto;
        justify-content: center;
        gap: 0 118px;
    }

    .collumn-panel .right-panel {
        width: 246px;
    }

    .collumn-panel .right-panel input[type="text"] {
        height: 54px;
    }

    .upload-file-box button {
        font-size: 16px;
        padding: 19px 0;
    }

    .other-documents .collumn-panel .left-panel {
        width: unset;
    }

    .accept-tearm-condition .checkbox-list li:last-child label::before {
        top: 1px;
    }
}


/* popup css start */
.trigger-popup {
    position: relative;
}

.popup__overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: rgba(17, 12, 48, 0.9);
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}

.popup__overlay.show {
    visibility: visible;
    opacity: 1;
}

.become-step-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 101;
    transform: translate(-50%, -50%) scale(0.8);
    width: calc(100% - 30px);
    height: calc(100% - 100px);
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}

.trigger-popup.show .become-step-popup {
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
    opacity: 1;
}

.popup-inner-item {
    height: 100%;
    overflow-y: auto;
    background: #FFFFFF;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.popup-inner-item h4 {
    margin-bottom: 15px;
}

.popup-item-box {
    background: rgba(111, 129, 169, 0.05);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

.popup-item-box:last-child {
    margin-bottom: 0;
}

.popup-item-box h3 {
    font-size: 24px;
    line-height: 1.3125em;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.popup-details-listing li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 20px;
}

.popup-details-listing li:last-child {
    margin-bottom: 0;
}

.popup-details-listing li span {
    display: block;
    max-width: 35px;
    background: rgba(47, 67, 100, 0.1);
    border-radius: 50%;
    padding: 6px;
}

.popup-details-listing li figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    background: rgba(47, 67, 100, 1);
    border-radius: 50%;
    margin-bottom: 0;
}

.popup-step-comtent {
    width: calc(100% - 35px);
    padding-left: 10px;
}

.popup-step-comtent h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: #110C30;
    margin-bottom: 5px;
}

.popup-step-comtent ul.inner-list-wrap {
    list-style: disc !important;
}

.popup-step-comtent .inner-list-wrap li {
    position: relative;
    display: block;
    align-items: unset;
    padding-left: 15px;
    margin-bottom: 0;
}

.popup-step-comtent .inner-list-wrap li::before {
    position: relative;
    top: -3px;
    left: -8px;
    display: inline-block;
    content: ".";
    font-size: 32px;
    line-height: 0;
    color: #636262;
}

@media (min-width: 768px) {
    .become-step-popup {
        width: calc(100% - 100px);
    }

    .popup-inner-item {
        border-radius: 20px;
        padding: 50px;
    }

    .popup-item-box {
        padding: 20px;
    }

    .popup-item-box h3 {
        font-size: 28px;
    }
}

@media (min-width: 1200px) {
    .become-step-popup {
        width: 958px;
    }

    .popup-inner-item {
        scrollbar-width: thin;
        padding: 50px;
    }

    .popup-inner-item h4 {
        margin-bottom: 20px;
    }

    .popup-item-box {
        padding: 30px 30px 50px;
        margin-bottom: 30px;
    }

    .popup-item-box h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .popup-step-comtent .inner-list-wrap li {
        padding-left: 22px;
    }

    .popup-step-comtent .inner-list-wrap li::before {
        left: -11px;
    }
}