@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

}

/* varialbe creation */

:root {
    --primarycolor: #2C1434;
    --secondarycolor: #FF8E06;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}




a {
    text-decoration: none;
}

li {
    list-style-type: none;
}


img {
    width: 100%;
    height: auto;
    object-fit: cover;

}

#html::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #2C1434;
}

html::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5;
}

html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #ff8f06df;
}

/* commmon part */
.d_flex {
    display: flex;
}

.jc_space_btwn {
    justify-content: space-between;
}

.jc_cntn_cntr {
    justify-content: center;
}

.item_center {
    align-items: center;
}


.whats-icon-btn {
    z-index: 9999;
}

.whats-icon-btn a {
    color: #075e54;
    /* Or use rgb(7, 94, 84) */
    font-size: 60px;
}

.whats-icon-btn {
    position: fixed;
    right: 50px;
    bottom: 50px;
    animation: float 1s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translatex(0);
    }

    50% {
        transform: translatex(-5px);
    }

    100% {
        transform: translatex(0);
    }
}

.upper-up-btn-wrapper {
    position: fixed;
    bottom: 50px;
    left: 50px;
    display: none;
    z-index: 999;
    transition: opacity 0.3s ease-in-out;
}

.upper-up-btn-wrapper a {
    color: #fff;
    background-color: #FF8E06;
    padding: 17px 20px;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
}


/* Container */

.container {
    max-width: 1182px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}


/* Navbar */
.nav-bar {
    padding: 13px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    /* transition: all 0.3s ease-in-out; */
    transition: all 0.4s ease;
    z-index: 9999;
}


.nav-bar .nav-mid ul {
    gap: 63px;
}

.nav-bar .nav-mid ul li a {
    font-size: 30px;
    font-weight: 600;
    color: var(--primarycolor);
    transition: all 0.4s;
}

.nav-bar .nav-mid ul li a:hover {
    color: var(--secondarycolor);
    transition: all 0.4s;
}

.nav-bar .nav-mid ul li a:active {

    color: blue;

}

.nav-mid .active {
    color: var(--secondarycolor) !important;
}

.nav-bar .nav-right ul {
    gap: 25px;
}

.nav-bar .nav-right ul li .fa-solid {
    color: var(--secondarycolor);
}

.nav-bar .nav-right a {
    font-size: 30px;
    font-weight: 600;
    color: var(--primarycolor);
}

.sticky {
    position: fixed;
    /* top: -1px; */
    width: 100%;
    z-index: 9999;
}



/* banner */

.banner {
    height: 860px;
    background-repeat: no-repeat;
    background-size: 583px 583px;
    background-position: bottom right;
    background-color: var(--primarycolor);
}

.banner-wrapper {
    padding-top: 103px;
}

.banner-content {
    width: 55%;
    padding-top: 203px;
    padding-bottom: 160px;
}

.banner-content h1 {
    color: var(--secondarycolor);
    font-size: 40px;
    font-weight: 800;
}

.banner-content p {
    font-size: 30px;
    font-weight: 400;
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    margin-top: 15px;
}

.banner-btn-wrapper {
    margin-top: 30px;
}

.banner-btn-wrapper a {
    font-size: 30px;
    font-weight: 600;
    color: var(--primarycolor);
    font-family: "Poppins", sans-serif;
}

.banner-btn-wrapper .btn-1 {
    color: var(--primarycolor);
    background-color: var(--secondarycolor);
    padding: 10px 28px;
    border-radius: 10px;
    transition: all 0.4s;
}

.banner-btn-wrapper .btn-2 {
    color: var(--secondarycolor);
    background-color: transparent;
    border: 3px solid var(--secondarycolor);
    padding: 7px 25px;
    border-radius: 10px;
    margin-left: 29px;
    transition: all 0.4s;
}

.banner-btn-wrapper .btn-1:hover {
    background-color: #eba972f8;
    transition: all 0.4s;
}

.banner-btn-wrapper .btn-2:hover {
    background-color: #eba972f8;
    color: var(--primarycolor);
    transition: all 0.4s;
}

/* courses */

.course {
    padding-top: 83px;
    padding-bottom: 152px;
}

.course_container {
    max-width: 1293px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.course_wrapper {
    flex-direction: column;
}

.course_wrapper .course_header {
    text-align: center;
    width: 50%;
}

.course_wrapper .course_header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--font-color1);
}

.course_wrapper .course_header p {
    font-size: 27px;
    font-weight: 400;
    color: var(--font-color3);
    padding-top: 12px;
}

.course .card-wrapper {
    gap: 30px;
    padding-top: 60px;
}

.course .card-wrapper .card {
    /* width: 33.33%; */
    position: relative;
    transition: all 0.4s;

}

.course .card-wrapper .card:hover {
    transform: skewX(1deg);
    transition: all 0.4s;
}

.card-bellow-content {
    border: 2px solid #e7e3e3;
    border-top: 0;
    margin-top: -5px;
    border-radius: 5px;
}

.card-mid-content {
    padding: 20px 20px 20px 20px;
    border-top: 0px;
}

.card-bellow-content .ratting-wrapper {
    gap: 41px;
    margin-bottom: 20px;
}

.card-bellow-content .ratting-wrapper .fa-star {
    color: var(--secondarycolor);
    margin-right: 9px;
}

.card-bellow-content p {
    font-size: 25px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #000;
    margin-left: 10px;
}

.card-bellow-content p span {
    color: #b7b3b3;
}

.card-bellow-content h3 {
    font-size: 35px;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
}


.card-wrapper .mentor-info-wrapper figure img {
    width: 47px;
    height: 47px;
    border-radius: 50%;
}

.course-btn {
    text-align: center;
    border-top: 2px solid #e7e3e3;
    padding: 20px 0;
    transition: all 0.4s;
}

.course-btn :hover {
    background-color: #FF8E06;
    color: white;
    transition: all 0.4s;
}

.card-bellow-content a {
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: var(--secondarycolor);
    border: 2px solid var(--secondarycolor);
    text-align: center;
    padding: 3px 85px;
    border-radius: 5px;
}

.price-btn-wrapper h4 {
    font-size: 30px;
    font-weight: 800;
}

.third-card .card-bellow-content .price-btn-wrapper {
    padding: 20px 30px;
    justify-content: space-between;
    border-top: 2px solid #e7e3e3;
}

.third-card .card-bellow-content .price-btn-wrapper .course-btn {
    padding: 0;
}

.third-card .card-bellow-content .price-btn-wrapper .course-btn a {
    padding: 1px 7px;
}

.course .card {
    background-color: #fff;
    /* clean white background */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 3px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

/* Sign/underline effect */
.course .card::after {
    content: "";
    position: absolute;
    left: -100%;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF8E06, #FF8E06);
    transition: all 0.5s ease;
}

/* Hover */
.course .card:hover {
    transform: translateY(-10px) scale(1.03);
    background: #fff;
    /* stays white, no red */
}

.course .card:hover::after {
    left: 0;
    /* slide-in "sign" effect */
}



.course .card .level {
    background-color: var(--secondarycolor);
    text-transform: capitalize;
    display: inline-block;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    padding: 3px 21px;
    position: absolute;
    top: 30px;
    left: 38px;
}

/* register */

.register {
    height: 752px;
    background-repeat: no-repeat;
    background-size: cover;
}

.register_wrapper_main {
    height: 752px;
}

.register_wrapper {
    width: 50%;
}

.register_wrapper h2 {
    color: var(--secondarycolor);
    font-size: 40px;
    font-weight: 800;
}

.register_wrapper p {
    font-size: 30px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 57px;
}

.register .play_wrapper {
    gap: 16px;
}

.register .play-btn-wrapper {
    gap: 16px;
    animation-name: jump;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes jump {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}


.play-btn-wrapper .fa-solid {
    color: white;
    padding: 21px 25px;
    border-radius: 50px;
    background-color: var(--secondarycolor);
    font-size: 30px;
}

.play-btn-wrapper h4 {
    font-size: 30px;
    font-weight: 500;
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
}

.play-btn-wrapper .fa-solid {
    color: white;
    padding: 21px 25px;
    border-radius: 50px;
    background-color: var(--secondarycolor);
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.play-btn-wrapper .fa-solid:hover {
    transform: scale(1.1);
    background-color: var(--secondarycolor-hover, #ff8f068b);

}


/* partner */
.partner {
    padding-top: 10px;
    padding-bottom: 20px;
}

.partner .container {
    padding-bottom: 33px;
    overflow: hidden;
}

.partner-img-wraaper {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 15s linear infinite;

}

.partner-img-wraaper figure {
    flex-shrink: 0;
    mix-blend-mode: multiply;
    vertical-align: middle;
}

.partner-img-wraaper figure img {
    height: 150px;
    width: 150px;
    object-fit: contain;
    mix-blend-mode: multiply;
    background: transparent;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* FAQ */

.faq_part {
    padding-top: 33px;
    padding-bottom: 110px;
}

.question_wrapper_main h2 {
    margin-bottom: 46px;
    color: #2C1434;
    font-size: 40px;
    font-weight: 800;
}

.question_wrapper {
    background-color: #e1dfdf;
    border-radius: 5px;
    padding: 25px 31px;
    margin-bottom: 33px;
}

.question_wrapper span {
    font-size: 37px;
    font-weight: 600;
    cursor: pointer;
}


/* accordian  */

.question_wrapper {
    cursor: pointer;
}

.fa-chevron-down {
    transition: transform 0.6s ease, color 0.6s ease;
}

.question_wrapper {
    cursor: pointer;
}

.question_wrapper:hover .fa-chevron-down {
    color: #FF8E06;
    transform: rotate(180deg);
}

.question_wrapper p {
    padding: 0;
    font-size: 25px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s ease;
}

/* Use a larger max-height for smoother animation */
.question_wrapper:hover p {
    padding: 10px 0;
    max-height: 140px;
    /* big enough so it never cuts text */
    opacity: 1;
}



/* footer */


/* footer */
footer {
    background-color: #2c1434;
}

.footer_wrapper {
    gap: 81px;
    padding-top: 68px;
}

/* .footer_wrapper .box {
    width: 33.33%;
} */

.footer_wrapper .first_box {
    width: 40%;
}

.footer_wrapper .first_box p {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.footer_wrapper .first_box figure {
    height: 84px;
    width: 283px;
    object-fit: contain;
}

.footer_wrapper .first_box ul {
    gap: 15px;
}

.footer_wrapper .social_icon_wrapper .fa-brands {
    /* color: var(--secondarycolor); */
}

.footer_wrapper .box h5 {
    font-size: 40px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 28px;
}

.footer_wrapper .box ul li a {
    font-size: 26px;
    font-weight: 400;
    color: #FFFFFF;
}

.footer_wrapper .box ul li {
    margin-bottom: 18px;
}

.copyright {
    padding-top: 100px;
    padding-bottom: 30px;
}

.copyright p {
    color: #FFFFFF;
    font-size: 26px;
    text-align: center;
}

.copyright p span {
    font-size: 26px;
    font-weight: 400;
    color: var(--secondarycolor);
    text-transform: uppercase;
}

footer .container .box ul li a {
    transition: all 0.4s ease;
}

footer .container .box ul li a:hover {
    color: #FF8E06;
    transition: all 0.4s ease;
}

footer .container .box ul li a:active {
    color: blue;
}



.social_icon_wrapper .fa-brands {
    width: 40px;
    height: 37px;
    background-color: #ffffff9f;
    border-radius: 5px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social_icon_wrapper {
    padding-top: 10px;

}

.social_icon_wrapper li i {
    transition: all 0.4s ease;
}

.social_icon_wrapper li i:hover {
    transform: scale(1.1);
    transition: all 0.4s ease;
}

.toggler {
    display: none;
    font-size: 30px;
    font-weight: 700;
}

.nav-wrapper img {
    width: 224px;
    height: 72px;
}

.course figure img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 170px;
}


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

    .register {
        background-position-x: right;
    }

    .faq_part {
        padding-top: 33px;
        padding-bottom: 110px;
        margin-top: -56px;
    }
}

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

    /* naavbar */
    .nav-bar {
        padding: 8px 0;
    }

    .nav-bar .nav-mid ul li a {
        font-size: 30px;
    }

    .nav-bar .nav-right a {
        font-size: 30px;
    }

    .nav-bar .nav-right ul {
        gap: 20px;
    }

    /* banner */
    .banner-content p {
        font-size: 27px;
    }

    .banner-btn-wrapper a {
        font-size: 24px;
    }

    /* courses */
    .course .card-wrapper {
        gap: 10px;
    }

    .card-bellow-content h3 {
        font-size: 30px;
    }

    .card-bellow-content p {
        font-size: 20px;
    }

    .price-btn-wrapper h4 {
        font-size: 25px;
    }

    .card-bellow-content a {
        text-transform: capitalize;
        font-size: 20px;
    }

    .course .card .level {
        font-size: 17px;
    }

    .copyright {
        padding-top: 45px;
    }

    .course {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .register {
        background-position-x: right;
    }

    /* .partner {
        padding-top: 60px;
        padding-bottom: 70px;
    } */

    .faq_part {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}


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

    /* navbar */

    .toggler {
        display: block;
    }

    .nav-wrapper {
        flex-direction: column;
        align-items: start;
    }

    .nav-mid ul {
        flex-direction: column;
        align-items: start;
    }

    .nav-bar .nav-mid ul {
        gap: 20px;
    }

    .nav-right {
        position: absolute;
        top: 27px;
        right: 58px;
    }

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

    .nav-bar .nav-mid ul {
        gap: 20px;
        padding-bottom: 17px;
    }

    .nav-bar .nav-mid ul li a {
        font-size: 24px;
    }

    .nav-mid {
        display: none;
    }

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

    .overlay {
        background-color: #2c143489;
        height: 100%;
    }

    .banner-content {
        width: 100%;
        text-align: center;
    }

    .banner {
        background-position: bottom center;
    }

    .faq_part {
        padding-top: 30px;
        padding-bottom: 45px;
        margin-top: -71px;
    }

    /*  */

    .course .card-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 38px;
    }

    /* .course .card-wrapper .card {
        width: 47.33%;
    } */

    .card-bellow-content a {
        font-size: 24px;
    }

    .course {
        padding-top: 40px;
    }

    .course .card-wrapper {
        padding-top: 47px;
    }

    /* register */
    .register_wrapper {
        width: 100%;
        text-align: center;
    }

    .play-btn-wrapper {
        justify-content: center;
    }

    .register_wrapper p {
        font-size: 27px;
        line-height: 35px;
    }

    .register_wrapper p {
        margin-bottom: 22px;
    }

    .play-btn-wrapper .fa-solid {
        padding: 16px 22px;
        font-size: 28px;
    }

    .play-btn-wrapper h4 {
        font-size: 27px;
    }

    .question_wrapper span {
        font-size: 30px;
    }

    .question_wrapper_main h2 {
        font-weight: 700;
    }

    /* .partner {
        padding-top: 40px;
        padding-bottom: 35px;
    } */

    /* footer */
    .footer_wrapper .box h5 {
        font-size: 35px;
    }

    .footer_wrapper .box ul li a {
        font-size: 22px;
    }

    .footer_wrapper .first_box p {
        font-size: 23px;
    }

    .copyright {
        padding-top: 35px;
        padding-bottom: 30px;
    }

    .copyright p {
        font-size: 23px;
    }

    .footer_wrapper {
        padding-top: 46px;
    }

    .copyright p span {
        font-size: 24px;
    }

    .card-bellow-content h3 {
        margin-bottom: 20px;
    }

    .faq_part {
        padding-top: 30px;
        padding-bottom: 45px;
    }

    .question_wrapper p {
        padding: 0;
        font-size: 22px;
    }

    .whats-icon-btn a {
        color: green;
        font-size: 55px;
    }

    .upper-up-btn-wrapper a {
        color: #fff;
        background-color: #FF8E06;
        padding: 15px 19px;
        color: #fff;
        border-radius: 50%;
        cursor: pointer;
    }
}



@media screen and (max-width:768px) {
    .nav-bar .nav-mid ul li a {
        font-size: 22px;
    }

    .nav-bar {
        padding: 0;
    }

    .nav-right {
        position: absolute;
        top: 19px;
        right: 58px;
    }

    /* banner */
    .banner-content p {
        font-size: 25px;
    }

    .banner-content h1 {
        font-size: 35px;
    }

    /* partner */

    .course .card-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 38px;
    }

    .card-bellow-content h3 {
        margin-bottom: 22px;
    }

    .course_wrapper .course_header {
        text-align: center;
        width: 80%;
    }

    .course_wrapper .course_header h2 {
        font-size: 35px;
    }

    .course_wrapper .course_header p {
        font-size: 25px;
    }

    .register_wrapper h2 {
        font-size: 35px;
    }

    .register_wrapper p {
        font-size: 25px;
    }

    .play-btn-wrapper .fa-solid {
        padding: 16px 20px;
        font-size: 23px;
    }

    .play-btn-wrapper h4 {
        font-size: 25px;
    }

    .course {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .partner-img-wraaper {
        gap: 17px;
    }

    .partner-img-wraaper figure img {
        height: auto;
    }

    .question_wrapper_main h2 {
        margin-bottom: 30px;
        font-size: 35px;
    }

    .question_wrapper {
        padding: 21px 25px;
    }

    .question_wrapper {
        margin-bottom: 25px;
    }

    .question_wrapper span {
        font-size: 23px;
    }


    .partner .container {
        padding-top: 33px;
        padding-bottom: 10px;
        overflow: hidden;
    }

    .footer_wrapper {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .footer_wrapper .box {
        width: 100%;
    }

    .footer_wrapper .first_box {
        width: 100%;
    }

    .footer_wrapper .first_box {
        text-align: center;
        display: contents;
    }

    .footer_wrapper {
        gap: 25px;
    }

    .footer_wrapper .box h5 {
        font-size: 32px;
    }

    .footer_wrapper .box h5 {
        margin-bottom: 20px;
    }

    .faq_part {
        padding-top: 30px;
        padding-bottom: 42px;
        margin-top: -25px;
    }

    .question_wrapper p {
        padding: 0;
        font-size: 18px;
    }

    .whats-icon-btn {

        right: 50px !important;
        bottom: 68px !important;
        animation: float 1s infinite ease-in-out;
    }

    .upper-up-btn-wrapper {
        bottom: 80px;
    }
}



@media screen and (max-width:575px) {
    .nav-bar .nav-mid ul li a {
        font-size: 20px;
    }

    .toggler {
        font-size: 28px;
    }

    .nav-bar .nav-right ul {
        gap: 16px;
    }

    .nav-right {
        right: 52px;
    }

    /* banner */
    .banner-content p {
        font-size: 22px;
    }

    .banner {
        background-size: 470px 551px;
    }

    .banner-btn-wrapper a {
        font-size: 22px;
    }

    .banner-btn-wrapper .btn-2 {

        margin-left: 16px;
    }

    .banner-content {
        padding-top: 0;
    }

    .banner-content h1 {
        font-size: 33px;
    }

    /* .partner-img-wraaper figure {
        width: 100%;
    } */

    .partner-img-wraaper {
        gap: 18px;
    }

    .course .card-wrapper .card {
        width: 100%;
    }

    .course_wrapper .course_header h2 {
        font-size: 32px;
    }

    .course_wrapper .course_header p {
        font-size: 22px;
    }

    .card-bellow-content h3 {
        font-size: 25px;
    }

    .course_wrapper .course_header {
        width: 100%;
    }

    .register_wrapper p {
        font-size: 22px;
    }

    .register_wrapper h2 {
        font-size: 33px;
    }

    .play-btn-wrapper h4 {
        font-size: 23px;
    }

    .play-btn-wrapper .fa-solid {
        padding: 14px 18px;
        font-size: 23px;
    }

    .question_wrapper_main h2 {
        font-size: 33px;
    }

    .question_wrapper {
        padding: 21px 25px;
    }

    .question_wrapper {
        margin-bottom: 25px;
    }

    .question_wrapper span {
        font-size: 20px;
    }

    .footer_wrapper .first_box p {
        font-size: 22px;
    }

    .footer_wrapper .box h5 {
        font-size: 30px;
    }

    .copyright p {
        font-size: 22px;
        line-height: 36px;
    }

    .copyright p span {
        font-size: 23px;
    }

    .footer_wrapper {
        padding-top: 35px;
    }

    .copyright {
        padding-top: 20px;
    }

    .whats-icon-btn {
        right: 18px !important;
        bottom: 108px !important;
        animation: float 1s infinite ease-in-out;
    }

    .whats-icon-btn a {
        color: green;
        font-size: 45px;
    }

    .upper-up-btn-wrapper a {
        color: #fff;
        background-color: #FF8E06;
        padding: 13px 17px;
        color: #fff;
        border-radius: 50%;
        cursor: pointer;

    }

    .upper-up-btn-wrapper {
        bottom: 120px;
        left: 15px;
    }
}


@media screen and (max-width:480px) {
    .nav-bar .nav-right ul {
        gap: 10px;
    }

    .nav-bar .nav-right a {
        font-size: 27px;
    }

    .banner-content p {
        font-size: 20px;
    }

    .banner {
        background-size: 354px 395px;
    }

    .card-bellow-content a {
        font-size: 22px;
    }

    .card-bellow-content a {
        padding: 5px 27px;
    }

    .footer_wrapper .first_box p {
        font-size: 20px;
    }

    .footer_wrapper .box h5 {
        font-size: 29px;
    }

    .copyright p {
        font-size: 20px;
        line-height: 36px;
    }

    .copyright p span {
        font-size: 21px;
    }

    .partner .container {
        padding-top: 19px;
    }

    .faq_part {
        margin-top: -43px;
    }

    .partner-img-wraaper figure img {
        width: 119px;
    }
}


@media screen and (max-width:370px) {
    .banner-btn-wrapper .btn-1 {
        padding: 10px 24px;
    }

    .banner-btn-wrapper .btn-2 {
        padding: 7px 21px;
    }

    .nav-wrapper img {
        width: 198px;
        height: 65px;
    }

    .nav-right {
        position: absolute;
        top: 16px;
        right: 58px;
    }

    .nav-right {
        position: absolute;
        top: 16px;
        right: 47px;
    }
}