/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* All Css */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Montserrat';
    scroll-behavior: smooth;
}

body {
    background-color: #F1F1F1;
}

body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-thumb {
    /* background-color: rgba(0, 0, 0, 0.3); */
    background-color: var(--site);
    border-radius: 20px;
}

body::-webkit-scrollbar-track {
    background-color: #eee;
}

.slick-next,
.slick-prev {
    display: none !important;
}


/* Veriables */

:root {
    --site_1: #0B1749;
    --site: #B4925F;
    --padding: 130px;
    --transition: all .4s ease-in-out;
}

.heading {
    font-weight: 700;
}

/* Bootstrap */

.text-yellow {
    color: #FFAF10 !important;
}

.row {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
}

.col-6 {
    width: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-end {
    justify-content: end;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.pr-1 {
    padding-right: 10px;
}

.pr-2 {
    padding-right: 20px;
}

.text-capatilize {
    text-transform: uppercase;
}

.dekstop_show {
    display: flex !important;
}

.mobile_show {
    display: none !important;
}


/* Floating Socials */

.floating_socials {
    width: 65px;
    height: 265px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 10px 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    position: fixed;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
    /* transition: var(--transition); */
}

.floating_socials.fixed {
    position: fixed;
    z-index: 99999;
    top: 15%;
    transform: translateY(-17%);
    /* transition: var(--transition); */
}

.floating_socials.fixed_bottom {
    position: absolute;
    z-index: 99999;
    top: 83.5%;
    transform: translateY(0%);
    /* transition: var(--transition); */
}

.float_item {
    width: 100%;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: #222;
}

.float_item img {
    width: 25px;
    height: 25px;
}

.float_item span {
    font-size: 10px;
    padding: 5px 0;
}

.float_item i {
    font-size: 22px;
    color: royalblue;
}


/* Navigation */

.black_nav {
    width: 100%;
    height: 40px;
    background-color: var(--site_1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--padding);
    font-size: 11px;
    text-decoration: none;
    color: #fff;
}

.black_nav .left {
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.black_nav .left a {
    text-decoration: none;
    color: #fff;
}

.btn_short_circle {
    border: 1px solid #fff;
    padding: 2px 12px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 600;
}

.black_nav .center {
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.black_nav .center a {
    text-decoration: none;
    color: #fff;
}

.black_nav .right {
    display: flex;
    flex-direction: row;
}

.black_nav .right a {
    padding: 0 8px;
    color: #fff;
    text-decoration: none;
}

.navigation {
    width: 100%;
    background-color: #fff;
    padding: 10px var(--padding);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.navigation .left img {
    width: 160px;
    height: 60px;
}

.navigation .right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navigation .right a {
    text-decoration: none;
    color: #222;
    font-size: 15px;
    padding: 0 17px;
}

.navigation .right a.active {
    font-weight: 600;
}

.btn_round {
    color: #fff !important;
    font-weight: 500;
    background-color: var(--site);
    border: 1px solid var(--site);
    border-radius: 15px;
    padding: 5px 12px !important;
    transition: var(--transition);
}

.btn_round:hover {
    background-color: transparent;
    color: var(--site) !important;
    border: 1px solid var(--site);
}


/* Header */

.header {
    width: 100%;
    min-height: 120vh;
    max-height: auto;
    background-image: url('../img/Top\ Banner\ Balance\ 1@300x-8.png');
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
}

.header_text {
    position: relative;
    display: flex;
    flex-direction: row;
}

.header_text .left_text {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    /* justify-content: center; */
    padding: 90px 70px;
}

.header_text h1 {
    color: #fff;
    font-size: 38px;
}

.mt-2 {
    margin-top: 20px;
}

.header_text p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
}

.header_text .left_text p:nth-child(1) {
    margin-top: 50px;
}

.header_text .contact {
    padding: 30px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.header_text .contact .btn_call {
    background-color: var(--site) !important;
    color: #fff;
    padding: 15px 50px;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
}

.header_text .btn_play {
    margin-left: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.btn_play svg {
    width: 23px;
    height: 23px;
}


/* Call Form  */


/* Input background  #EAEAEA */


/* Text Color #E5E5E5 */

.header_text .right_text {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 50px 0;
    align-items: center;
}

.right_text .form {
    width: 60%;
    height: auto !important;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 50px 50px;
}

.right_text .form_header {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
    flex-wrap: wrap;
}

.right_text .form_heading {
    color: #002661;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    text-align: center;
    line-height: 23px;
}

.right_text .form_detail {
    font-size: 10px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.6);
    width: 100%;
    text-align: center;
}

.right_text .form_fields {
    margin-top: 20px;
}

.form_fields .form_input {
    background-color: #EAEAEA;
    border: none;
    outline: none;
    padding: 15px 18px;
    font-size: 13px;
    width: 100%;
    margin-top: 10px;
    color: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid var(--site);
}

.form_fields span {
    font-size: 12px;
    padding: 8px 0 0 0;
}

.form_fields .form_input::placeholder {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.btn_getCall {
    margin-top: 20px;
    width: 140px;
    font-size: 13px;
    background-color: var(--site);
    color: #fff;
    padding: 13px 10px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--site);
    text-align: center;
}

.btn_getCall:hover {
    background-color: transparent;
    color: var(--site);
    border: 1px solid var(--site);
}


/* Header Services */

.header_services {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
    padding: 0 var(--padding);
}

.header_services_slider {
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-around; */
    list-style: none;
    transform: translateY(-80px);
    overflow: auto;
}

.header_services_slider li {
    padding: 30px;
}

.header_services_slider li .header_card {
    width: 190px;
    height: 190px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.header_services_slider .header_card img {
    width: 80px;
    height: 80px;
}

.header_card span {
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--site);
    margin-top: 10px;
    line-height: 25px;
}


/* Services */

.services {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    padding: 0px var(--padding);
    margin-top: -15px;
    margin-bottom: 30px;
}

.services .text-capatilize {
    font-weight: 600;
    line-height: 30px;
}

.services .heading {
    color: var(--site);
    width: 80%;
    text-align: center;
    font-size: 40px;
}


/* Slider */

.service_slider {
    position: relative !important;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    align-items: center;
    overflow: auto;
    list-style: none;
}

.service_slider::-webkit-scrollbar {
    display: none;
}

.service_slider .service_item {
    margin-top: 20px;
    padding: 0px;
    margin-left: 15px;
}

.service_slider .service {
    width: 240px;
    height: 430px;
    position: relative;
    /* margin-right: 1%; */
    background-color: #fff;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    color: #000;
    padding: 20px 20px;
    border-radius: 10px;
}

.service .service_img {
    width: 70px;
    height: 70px;
}

.service .service_img img {
    width: 100%;
    height: 100%;
}

.service_heading {
    width: 100%;
    padding: 10px 0;
}

.service_heading h2 {
    font-size: 18px;
    line-height: 22px;
}

.service_detail {
    width: 100%;
}

.service_detail p {
    margin-top: 10px;
    width: 100%;
    text-align: left;
    font-size: 14px;
    line-height: 25px;
}

.button_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.btn_slider {
    width: 50px;
    height: 50px;
    border: 1px solid var(--site);
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    transition: all .3s ease-in-out;
    cursor: pointer;
    text-decoration: none;
}

.btn_slider i {
    color: var(--site);
}

.btn_slider:hover {
    background-color: var(--site_1);
    border: 1px solid var(--site_1);
}

.btn_slider:hover i {
    color: #fff;
}


/* about */

.about {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 50px var(--padding);
    position: relative;
}

.about .text-capatilize {
    font-weight: 600;
    line-height: 40px;
}

.about .heading {
    font-size: 35px;
    color: var(--site);
}

.about p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 20px;
}

.about h3 {
    color: var(--site);
    line-height: 30px;
    margin-top: 10px;
}

.about .about_left {
    display: flex;
    flex-direction: row;
    position: relative;
    background-image: url('../img/About\ company\ banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px;
}

.about .btn__play {
    width: 130px;
    height: 130px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px;
    transition: var(--transition);
}

.about .btn__play a {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 22px;
    color: var(--site);
    transition: var(--transition);
}

.about .btn__play:hover {
    background-color: #fff;
}

.about .btn__play:hover a {
    background-color: transparent;
    border: 2px solid var(--site);
    font-size: 35px;
}


/* partner */

.partner {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    padding: 50px var(--padding);
}

.partner .text-capatilize {
    font-weight: 600;
    line-height: 30px;
}

.partner .heading {
    width: 80%;
    color: var(--site);
    font-size: 37px;
    text-align: center;
}

.partner .partner_card {
    margin-top: 10px;
    width: 33.333%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.partner .partner_card img {
    width: 180px;
}


/* consultation */

.consultation {
    margin-top: 100px;
    width: 100%;
    height: 80vh;
    /* background-image: url('../img/banner\ without\ text.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; */
    background-color: #131380;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* justify-content: center; */
    position: relative;
    padding: 40px var(--padding);
}

.consultation .left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.consultation .right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.consultation .right img {
    width: 440px;
    height: 350px;
    border-radius: 30px;
}

.consultation .heading {
    color: var(--site);
    width: 100%;
    font-size: 40px;
    line-height: 45px;
}

.consultation p {
    width: 100%;
    padding: 30px 0px;
    color: #fff;
    font-size: 18px;
}


/* team */

.team {
    margin-top: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 50px var(--padding);
    position: relative;
}

.team .text-capatilize {
    font-weight: 600;
    line-height: 30px;
}

.team .heading {
    width: 35%;
    color: var(--site);
    font-size: 35px;
    text-align: center;
}

.team .team_card {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team_image {
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
}

.team_image img {
    width: 100%;
    height: 100%;
    z-index: 999;
}

.team .team_name {
    margin-top: 15px;
    font-size: 25px;
    font-weight: 700;
}

.team .designation {
    color: rgba(0, 0, 0, 0.6);
}


/* reviews */

.reviews {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 50px var(--padding);
}

.reviews .text-capatilize {
    font-weight: 600;
    line-height: 40px;
}

.reviews .heading {
    width: 50%;
    color: var(--site);
    font-size: 35px;
    text-align: center;
}

.reviews .review_card {
    margin-top: 20px;
    width: 49%;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
}

.review_card img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
}

.review_card .col {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}

.review_card .review_name {
    line-height: 30px;
    font-weight: 500;
}

.mt-3 {
    margin-top: 30px;
}

.review_card .left {
    color: #FFAF10;
    font-size: 20px;
}

.review_card .right {
    font-size: 13px;
}


/* request */

.request {
    width: 100%;
    min-height: 100vh;
    max-height: auto;
    /* background-color: #fff; */
    background-image: url('../img/Form\ Area.jpg');
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    padding: 20px var(--padding);
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}

.request .left {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.request .left form {
    margin-left: 50px;
}

.request form input,
.request form textarea {
    border-bottom: 1px solid var(--site) !important;
}

.mt-1 {
    margin-top: 10px;
}

.request .right {
    width: 45%;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.request .right img {
    width: 100%;
    height: 80%;
}

.request .form_heading {
    font-size: 25px;
    color: var(--site);
    width: 100%;
    text-align: center;
    line-height: 45px;
}

.request .form_detail {
    font-size: 13px;
    width: 100%;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}

.request .btn_getCall {
    width: 100%;
}


/* Footer */

.footer {
    background-image: url('../img/footer.png');
    background-size: cover;
    background-position: center center;
    /* background-color: var(--site_1); */
    width: 100%;
    padding: 20px var(--padding);
    position: relative;
    display: flex;
    flex-direction: column;
}

.footer .footer_4 {
    width: 33%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-right: 30px;
}

.footer .footer_4:nth-child(2) {
    align-items: center;
}

.footer .footer_4:nth-child(3) {
    align-items: flex-end;
}

.footer_4 .footer_logo {
    margin-top: 15px;
    width: 160px;
    height: 60px;
}

.footer_4 p {
    margin-top: 15px;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
}

.footer_4 a {
    padding: 8px 0;
    text-decoration: none;
    font-size: 13px;
    color: #fff;
}

.mt-1 {
    margin-top: 10px;
}

.text-white {
    color: #fff;
}

.footer_4 .footer_sub_heading {
    margin-top: 20px;
    color: var(--site);
    font-size: 22px;
    font-weight: 600;
    line-height: 40px;
}

.footer_4 ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.footer_4 ul li {
    padding: 4px 0;
}

.footer_4 ul li a {
    font-size: 14px;
}

.footer_links {
    width: 100%;
    padding: 25px;
    align-items: center;
}

.footer_links a {
    width: 55px;
    height: 55px;
    border: 1px solid var(--site);
    color: var(--site);
    margin-left: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.footer_links a i {
    font-size: 22px;
}

.footer_links a:hover {
    background-color: var(--site);
    color: #fff;
}

.footer_bottom {
    padding: 10px 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #fff;
}

.footer_bottom span {
    font-size: 14px;
}

@media all and (max-width: 1920px) {
    .header {
        min-height: 75vh;
    }

    .form {
        height: 600px;
    }

    .form .form_heading {
        font-size: 25px;
        line-height: 50px;
    }

    .form .form_detail {
        font-size: 12px;
    }

    .header .left_text {
        padding: 80px var(--padding);
        display: flex;
        flex-direction: column;
        width: 50%;
        height: 100%;
    }

    .header h1 {
        margin-top: 100px;
    }

    .header .right_text {
        align-items: flex-end;
        padding: 80px var(--padding);
    }

    .header_card {
        width: 300px !important;
        height: 300px !important;
    }

    .header_card img {
        width: 140px !important;
        height: 140px !important;
    }

    .header_card span {
        font-size: 30px;
    }

    .service_slider .service {
        width: 500px;
        height: 400px;
    }

    .service h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .service p {
        font-size: 17px;
    }

    .about {
        min-height: 80vh;
    }

    .about .about_left {
        background-size: 100% 100%;
        justify-content: center;
        align-items: center;
    }

    .about .btn__play {
        width: 180px;
        height: 180px;
    }

    .about .btn__play a {
        font-size: 35px;
    }

    .about .heading {
        font-size: 40px;
    }

    .about p {
        font-size: 18px;
        line-height: 25px;
        letter-spacing: 2px;
    }

    .consultation {
        height: 50vh;
    }

    .reviews .heading {
        font-size: 45px;
    }

    .review_card .review_name {
        font-size: 22px;
    }

    .review_card p {
        font-size: 20px;
    }

    /* request */
    .request {
        width: 100%;
        min-height: 50vh;
        max-height: auto;
    }

    .request .left form {
        margin-left: 140px;
        width: 550px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .request .right {
        width: 40%;
        display: flex;
        flex-direction: row;
        align-items: center;
        position: relative;
    }
}

@media (max-width: 1600px) and (max-height: 900px) {
    .header {
        min-height: 100vh;
    }

    .form {
        height: 600px;
        width: 90% !important;
    }

    .form .form_heading {
        font-size: 25px;
        line-height: 50px;
    }

    .form .form_detail {
        font-size: 12px;
    }

    .header .left_text {
        padding: 80px var(--padding);
        display: flex;
        flex-direction: column;
        width: 50%;
        height: 100%;
    }

    .header h1 {
        margin-top: 100px;
    }

    .header .right_text {
        align-items: flex-end;
        padding: 80px var(--padding);
    }

    .header_card {
        width: 210px !important;
        height: 210px !important;
    }

    .header_card img {
        width: 90px !important;
        height: 90px !important;
    }

    .header_card span {
        font-size: 22px;
    }

    .service_slider .service {
        width: 400px;
    }

    .service h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .service p {
        font-size: 17px;
    }

    .about {
        min-height: 80vh;
    }

    .about .about_left {
        background-size: 100% 100%;
        justify-content: center;
        align-items: center;
    }

    .about .btn__play {
        width: 180px;
        height: 180px;
    }

    .about .btn__play a {
        font-size: 35px;
    }

    .about .heading {
        font-size: 40px;
    }

    .about p {
        font-size: 18px;
        line-height: 25px;
        letter-spacing: 2px;
    }

    .consultation {
        height: 65vh;
    }

    .reviews .heading {
        font-size: 45px;
    }

    .review_card .review_name {
        font-size: 22px;
    }

    .review_card p {
        font-size: 20px;
    }

    /* request */
    .request {
        width: 100%;
        min-height: 50vh;
        max-height: auto;
    }

    .request .left form {
        margin-left: 120px;
        width: 400px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .request .right {
        width: 40%;
        display: flex;
        flex-direction: row;
        align-items: center;
        position: relative;
    }

    /* .footer_4:nth-child(2) {
        width: 15%;
    } */
}

@media (max-width : 1600px) and (max-height : 600px) {
    .header {
        min-height: 120vh;
    }

    .consultation {
        height: 80vh;
    }
}

@media (max-width : 1440px) {
    .service_slider .service {
        width: 360px;
        height: 360px;
    }

    .service h2 {
        font-size: 18px;
        line-height: 30px;
    }

    .service p {
        font-size: 14px;
    }
}

@media all and (max-width: 1280px) and (max-height: 800px) {
    .header {
        min-height: 100vh;
    }

    .form {
        height: auto;
        width: 100% !important;
        padding: 40px 20px;
    }

    .form .form_heading {
        font-size: 25px;
        line-height: 50px;
    }

    .form .form_detail {
        font-size: 12px;
    }

    .header .left_text {
        padding: 80px 20px;
        padding-left: var(--padding);
        display: flex;
        flex-direction: column;
        width: 45%;
        height: 100%;
    }

    .header h1 {
        margin-top: 100px;
    }

    .header .right_text {
        align-items: flex-end;
        padding: 80px var(--padding);
        width: 55%;
    }

    .header_card {
        width: 160px !important;
        height: 160px !important;
    }

    .header_card img {
        width: 60px !important;
        height: 60px !important;
    }

    .header_card span {
        font-size: 15px;
    }

    .service_slider .service {
        width: 300px;
        height: 400px;
    }

    .service h2 {
        font-size: 17px;
        line-height: 25px;
    }

    .service p {
        font-size: 14px;
    }

    .about {
        min-height: 50vh;
        max-height: auto;
    }

    .about .about_left {
        background-size: 100% 100%;
        justify-content: center;
        align-items: center;
    }

    .about .btn__play {
        width: 130px;
        height: 130px;
    }

    .about .btn__play a {
        font-size: 25px;
    }

    .about .heading {
        font-size: 30px;
    }

    .about p {
        font-size: 14px;
        line-height: 18px;
    }

    .consultation {
        height: 55vh;
    }

    .reviews .heading {
        font-size: 45px;
    }

    .review_card .review_name {
        font-size: 22px;
    }

    .review_card p {
        font-size: 20px;
    }

    /* request */
    .request {
        width: 100%;
        min-height: 50vh;
        max-height: auto;
    }

    .request .left form {
        margin-left: 60px;
        width: 350px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .request .right {
        width: 40%;
        display: flex;
        flex-direction: row;
        align-items: center;
        position: relative;
    }
}

@media all and (max-width: 1280px) and (max-height: 600px) {
    .header {
        min-height: 100vh;
    }

    .form {
        height: auto;
        width: 100% !important;
        padding: 40px 30px !important;
    }

    .form .form_heading {
        font-size: 22px;
        line-height: 50px;
    }

    .form .form_detail {
        font-size: 11px;
    }

    .header .left_text {
        padding: 80px 20px;
        padding-left: var(--padding);
        display: flex;
        flex-direction: column;
        width: 50%;
        height: 100%;
    }

    .header h1 {
        margin-top: 100px;
    }

    .header .right_text {
        align-items: flex-end;
        padding: 80px var(--padding);
        width: 50%;
    }

    .header_card {
        width: 160px !important;
        height: 160px !important;
    }

    .header_card img {
        width: 60px !important;
        height: 60px !important;
    }

    .header_card span {
        font-size: 15px;
    }

    .service_slider .service {
        width: 300px;
    }

    .service h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .service p {
        font-size: 14px;
    }

    .about {
        min-height: 50vh;
        max-height: auto;
    }

    .about .about_left {
        background-size: 100% 100%;
        justify-content: center;
        align-items: center;
    }

    .about .btn__play {
        width: 130px;
        height: 130px;
    }

    .about .btn__play a {
        font-size: 25px;
    }

    .about .heading {
        font-size: 30px;
    }

    .about p {
        font-size: 14px;
        line-height: 18px;
    }

    .consultation {
        height: 75vh;
    }

    .reviews .heading {
        font-size: 45px;
    }

    .review_card .review_name {
        font-size: 20px;
    }

    .review_card p {
        font-size: 16px;
    }

    /* request */
    .request {
        width: 100%;
        min-height: 50vh;
        max-height: auto;
    }

    .request .left form {
        margin-left: 60px;
        width: 350px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .request .right {
        width: 40%;
        display: flex;
        flex-direction: row;
        align-items: center;
        position: relative;
    }
}

@media all and (max-width: 768px) {
    :root {
        --padding: 20px;
    }

    .dekstop_show {
        display: none !important;
    }

    .mobile_show {
        display: flex !important;
    }

    .col-6 {
        width: 100%;
    }

    /* Navigation */
    .black_nav {
        display: none;
    }

    .btn_short_circle {
        border: 1px solid #fff;
        padding: 2px 12px;
        border-radius: 10px;
        font-size: 7px;
    }

    .navigation {
        width: 100%;
        background-color: #fff;
        padding: 5px var(--padding);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .navigation .left img {
        width: 150px;
        height: auto;
    }

    .navigation .right {
        display: none;
        width: 0;
    }

    .navigation .mobile_show a {
        font-size: 20px;
    }

    .navigation .mobile_show a i {
        transform: scaleX(1.2);
    }

    /* Header */
    .header {
        width: 100%;
        min-height: 100vh;
        max-height: auto;
        background-image: url('../img/Top\ Banner\ Balance\ 1@300x-8.png');
        background-size: cover;
        background-position: center center;
        display: flex;
        flex-direction: column;
    }

    .header_text {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        position: relative;
    }

    .header_text .left_text {
        width: 100%;
        height: 50%;
        display: flex;
        flex-direction: column;
        position: relative;
        /* justify-content: center; */
        padding: 0px 20px;
    }

    .header_text h1 {
        color: #fff;
        font-size: 30px;
    }

    .mt-2 {
        margin-top: 20px;
    }

    .header_text p {
        color: #fff;
        font-size: 18px;
        line-height: 30px;
    }

    .form .form_heading {
        font-size: 20px;
    }

    .header_text .left_text p:nth-child(1) {
        margin-top: 50px;
    }

    .header_text .contact {
        padding: 30px 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    .header_text .contact .btn_call {
        background-color: #000;
        color: #fff;
        padding: 15px 20px;
        text-align: center;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
    }

    .header_text .btn_play {
        margin-left: 20px;
        width: 40px;
        height: 40px;
        border: 1px solid #fff;
        border-radius: 50%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .btn_play svg {
        width: 14px;
        height: 14px;
    }

    /* Call Form  */
    /* Input background  #EAEAEA */
    /* Text Color #E5E5E5 */
    .header_text .right_text {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 50px var(--padding);
        align-items: center;
    }

    .right_text .form {
        width: 100%;
        background-color: #fff;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        padding: 50px 20px;
    }

    .btn_getCall {
        font-size: 11px;
        padding: 13px 10px;
        border-radius: 8px;
    }

    /* Header Services */
    .header_services_slider {
        transform: translateY(0);
        padding: 40px 0;
    }

    .header_services_slider::-webkit-scrollbar {
        display: none;
    }

    .header_services_slider li {
        padding: 5px;
    }

    .header_services_slider li .header_card {
        width: 155px;
        height: 190px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
        box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
        padding: 10px;
    }

    .header_services_slider .header_card img {
        width: 80px;
        height: 80px;
    }

    .header_card span {
        width: 100%;
        text-align: center;
        font-size: 18px;
        margin-top: 10px;
        line-height: 25px;
    }

    /* Services */
    .services {
        margin-top: 0px;
    }

    .services .justify-content-center {
        justify-content: flex-start;

    }

    .services .heading {
        color: var(--site);
        width: 100%;
        text-align: left;
        font-size: 27px;
    }

    /* Slider */
    .service_slider {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .service_slider li {
        margin-left: 20px;
    }

    .service_slider .service {
        width: 300px;
        height: 365px;
        position: relative;
        /* margin-right: 1%; */
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #000;
        padding: 20px 20px;
        border-radius: 10px;
    }

    /* about */
    .about {
        padding: 20px var(--padding);
    }

    .about .heading {
        width: 100%;
        font-size: 30px;
        color: var(--site);
    }

    .about .about_left {
        margin-top: 40px;
    }

    .about .btn__play {
        width: 150px;
        height: 110px;
        padding: 6px;
    }

    .about .btn__play a {
        font-size: 18px;
    }

    .about .btn__play:hover a {
        font-size: 30px;
    }

    /* partner */
    .partner .heading {
        width: 100%;
        color: var(--site);
        font-size: 26px;
        text-align: center;
    }

    .partner .partner_card {
        margin-top: 10px;
        width: 50%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .partner .partner_card img {
        width: 100px;
    }

    /* consultation */
    .consultation {
        margin-top: 30px;
        width: 100%;
        min-height: 90vh;
        max-height: auto;
        /* background-image: url('../img/banner\ without\ text.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat; */
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        padding: 50px var(--padding);
    }

    .consultation .left {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .consultation .right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .consultation .right img {
        width: 100%;
        height: 100%;
        border-radius: 30px;
    }

    .consultation .heading {
        color: var(--site);
        width: 100%;
        font-size: 26px;
        line-height: 30px;
    }

    .consultation p {
        width: 100%;
        padding: 30px 0px;
        color: #fff;
        font-size: 16px;
    }

    /* team */
    .team .heading {
        width: 100%;
        color: var(--site);
        font-size: 26px;
        text-align: center;
    }

    .team .team_card {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* reviews */
    .reviews {
        padding: 10px var(--padding);
    }

    .reviews .heading {
        width: 100%;
        color: var(--site);
        font-size: 26px;
        text-align: left;
    }

    .reviews .justify-content-center {
        justify-content: flex-start;
    }

    .reviews .review_card {
        margin-top: 20px;
        width: 100%;
    }

    /* request */
    .request {
        width: 100%;
        background-image: none;
        background-color: #E8E8E8;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        position: relative;
        padding: 20px var(--padding);
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .request .left {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        position: relative;
    }

    .request .left form {
        margin-left: 0;
    }

    .request .right {
        display: none;
    }

    /* Footer */
    .footer {
        background-color: var(--site_1);
        width: 100%;
        padding: 10px var(--padding);
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .footer .mobile_footer_row {
        width: 100% !important;
    }

    .footer .footer_4 {
        width: 50%;
        display: flex;
        flex-direction: column;
        position: relative;
        padding-right: 0px;
    }

    .footer_4 .footer_logo {
        width: 180px;
        height: 60px;
    }

    .footer_4 p {
        font-size: 12px;
    }

    .footer_4 a {
        padding: 4px 0;
        font-size: 12px;
    }

    .footer_4 .footer_sub_heading {
        margin-top: 30px;
        font-size: 18px;
    }

    .footer_4 ul {
        display: flex;
        flex-direction: column;
    }

    .footer_4 ul li {
        padding: 4px 0;
    }

    .footer_4 ul li a {
        font-size: 13px;
    }

    .footer_links {
        width: 100%;
        padding: 25px;
        align-items: center;
    }

    .footer_links a {
        width: 40px;
        height: 40px;
        border: 1px solid var(--site);
        color: var(--site);
        margin-left: 20px;
    }

    .footer_links a i {
        font-size: 16px;
    }

    .footer_links a:hover {
        background-color: var(--site);
        color: #fff;
        border: 1px solid var(--site);
    }

    .footer_sub_heading {
        color: #fff;
    }
}

.mobile_navigation {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: 9999999;
    display: none;
}

.navigation_top {
    padding: 5px 20px;
}

.navigation_top img {
    width: 150px;
    height: 70px;
}

.navigation_top a {
    font-size: 22px;
    text-decoration: none;
    color: #000;
}

.mobile_navigation .nav_col {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    width: 100%;
    padding: 20px;
}

.mobile_navigation .nav_col a {
    padding: 8px 0;
    text-decoration: none;
    color: #000;
    position: relative;
}

.mobile_navigation .has_border::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: #000;
}

.has_border:nth-child(1)::before {
    width: 20px;
}

.has_border:nth-child(2)::before {
    width: 35px;
}

.has_border:nth-child(3)::before {
    width: 45px;
}

.has_border:nth-child(4)::before {
    width: 55px;
}

.has_border:nth-child(5)::before {
    width: 65px;
}

.has_border:nth-child(6)::before {
    width: 75px;
}

.mobile_navigation .btn_round {
    width: 100%;
    text-align: center;
    padding: 12px !important;
    border-radius: 5px;
    margin-top: 20px;
}

.btn_mobile_nav {
    text-decoration: none;
    color: #000;
    transform: scaleX(1.3);
}