/*********************  Default-CSS  *********************/
/* 
   font-family: Futuran-book;
	font-family: Futuran-bold;
	font-family: Futuran-heavy;
	 font-family: Futuran-Medium;
*/
:root {
    scroll-behavior: unset;
}
/* @font-face {
    font-family: Futuran-book;
    src: url(../fonts/FUTURAN.TTF);
} */
@font-face {
    font-family: 'Futuran-book';
    src: url('../fonts/FuturaBT-Book.woff') format('woff');
}
@font-face {
    font-family: 'Futuran-bold';
    src: url('../fonts/FuturaBT-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Futuran-heavy';
    src: url('../fonts/FuturaBT-Heavy.woff') format('woff');
}
@font-face {
    font-family: 'Futuran-Medium';
    src: url('../fonts/FuturaBT-Medium.woff') format('woff');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
body {
    margin: 0;
    font-family: Futuran-book, sans-serif;
    overflow-x: hidden;
    color: #000000;
    background-color: #ECF6FD;
    font-size: 20px;
    line-height: 1.2;
}
a,
span,
a:hover,
a:active,
button {
    text-decoration: none;
}
a,
div a:hover,
div a:active,
div a:focus,
button {
    text-decoration: none;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
p {
    margin: 0;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    margin: 0;
}
ul,
li {
    margin: 0;
    padding: 0;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
}
.cm-overflow {
    overflow: hidden;
    touch-action: unset;
}
.cm-overflow body {
    height: 100%;
    overflow: hidden;
}
.row {
    margin: 0 -15px;
}
.container {
    padding: 0 15px;
}
.col,
[class*=col-] {
    padding: 0 15px;
}
/*********************  Default-CSS  End *********************/
/*============== Header Css Start ===============*/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding-top: 58px;
}
.header_block {
    display: flex;
    align-items: center;
}
.logo_head {
    min-width: 238px;
    height: 33px;
}
.header_menu_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.menu_block {
    margin-left: 65px;
}
.menu_block ul li a {
    color: #fff;
    position: relative;
    font-size: 20px;
}
.menu_block ul li a::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    right: 50%;
    height: 2px;
    background-color: #1EC5F7;
    transition: all 0.4s ease 0s;
}
.menu_block ul li.active a:after,
.menu_block ul li a:hover:after {
    left: 0;
    right: 0;
}
.menu_block ul li {
    display: inline-block;
    margin-right: 50px;
}
.menu_block ul li:last-child {
    margin: 0;
}
.eng_contact_us_block {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.dropdown_text {
    position: relative;
}
.dropdown_text a.currnet_drop {
    color: #fff;
    position: relative;
    font-size: 20px;
    padding-right: 20px;
    display: inline-block;
}
.dropdown_text a.currnet_drop:after {
    content: '\f107';
    font-family: FontAwesome;
    position: absolute;
    right: 0;
    top: 58%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 22px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    font-weight: 400;
    font-style: normal;
    color: #fff;
}

.dropdown_menu {
    min-width: 167px;
    background: #fff;
    display: none;
    position: absolute;
    z-index: 999;
    right: -25px;
    top: calc(100% + 10px);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 3px 26px rgba(0, 0, 0, 0.2);
    padding: 25px 15px;
}
.dropdown_menu a {
    color: #1e1e1e;
}
.dropdown_menu li+li {
    margin-top: 15px;
}
.dropdown_menu li img {
    opacity: 0;
}
.dropdown_menu li.active img {
    opacity: 1;
}
.contact_us_btn {
    margin-left: 75px;
}
.contact_us_btn a {
    font-size: 20px;
    font-family: Futuran-bold;
    color: #fff;
    border-radius: 20px;
    background: #1ec5f7;
    border: 1px solid #1ec5f7;
    display: inline-block;
    padding: 13px 29px;
}
.contact_us_btn a:hover {
    border: 1px solid #fff;
    background-color: transparent;
}
.menu_toggle_btn,
.mobile_header,
.menu_block ul li.mobile_menu_item {
    display: none;
}
.menu_toggle_btn span {
    width: 28px;
    height: 3px;
    margin-bottom: 6px;
    background-color: #fff;
    border-radius: 35px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.menu_toggle_btn span:nth-child(1) {
    margin-top: 10px;
}
.menu_toggle_btn span:nth-child(3) {
    margin-bottom: 0;
}
.mobile_logo {
    margin-left: 71px;
}
/*============== Header Css End ===============*/
/*============== Home Banner Css Start ===============*/
.home_banner_section {
    width: 100%;
    position: relative;
    background-color: #307EC1;
    padding: 190px 0 307px;
    overflow: hidden;
}
.home_banner_content {
    max-width: 690px;
    z-index: 5;
    position: relative;
}
.home_banner_content h1 {
    font-size: 54px;
    color: #fff;
    font-family: Futuran-heavy;
    font-weight: 900;
    line-height: 1.1;
}
.home_banner_content .common_desc p {
    color: #fff;
}
.home_banner_content .common_desc {
    margin: 35px 0 100px;
}
.home_btn a {
    font-size: 24px;
    font-family: Futuran-bold;
    color: #fff;
    display: inline-block;
    max-width: 380px;
    width: 100%;
    padding: 25.5px 15px;
    border: 2px solid #fff;
    background-color: transparent;
    text-align: center;
    border-radius: 20px;
}
.home_btn a:hover {
    background-color: #1ec5f7;
    border-color: #1ec5f7;
}
.home_bcloud_shape {
    position: absolute;
    bottom: -53px;
    left: 0;
    right: 0;
}
.home_bcloud_shape img {
    display: block;
    width: 100%;
}
.home_banner_img {
    position: absolute;
    right: 310px;
    bottom: -80px;
    pointer-events: none;
    max-width: 852px; 
    width: 100%;
}
.mobile_home_img {
    display: none;
}
/*============== Home Banner Css End ===============*/
/*============== Many Components Css Start ===============*/
.many_components_section {
    width: 100%;
    padding: 150px 0 310px;
}
.many_components_block {
    align-items: center;
}
.section_title h2 {
    font-size: 54px;
    color: #1e1e1e;
    font-weight: 900;
    font-family: Futuran-heavy;
}
.many_components_content .common_desc {
    margin-top: 35px;
    max-width: 522px;
}
.many_components_content .common_desc p+p {
    margin-top: 30px;
}
.many_components_image img {
    max-width: 150%;
    margin-left: -18%;
}
/*============== Many Components Css End ===============*/
/*============== Support Sales Css Start ===============*/
.support_sales_section {
    width: 100%;
    position: relative;
    background-color: #fff;
    min-height: 450px;
    margin: 100px 0;
    padding: 50px 0 30px;
    z-index: 1;
}
.support_top_shape {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: -1;
}
.support_bottom_shape {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: -1;
}
.support_top_shape img,
.support_bottom_shape img {
    width: 100%;
}
.mobile_common_shape {
    display: none;
}
.support_sale_content {
    max-width: 566px;
}
.support_sale_content .common_desc {
    margin-top: 40px;
    max-width: 522px;
}
.support_sale_image {
    margin-top: 30px;
}
/*============== Support Sales Css End ===============*/
/*============== Process Designed Css Start ===============*/
.process_designed_section {
    width: 100%;
    background-image: url(../images/process_designed_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 1580px;
    margin-top: 240px;
    position: relative;
    overflow-x: hidden;
}
.process_designed_content {
    max-width: 617px;
    padding-top: 140px;
}
.process_designed_content .common_desc {
    margin-top: 40px;
    max-width: 522px;
}
.process_designed_iamge {
    position: absolute;
    right: -80px;
    top: 315px;
    pointer-events: none;
}
.paperplane{
    position: absolute;
    right: -170px;
    top: 90px;
    width: 100%;
}
.process_designed_section>.container {
    position: relative;
}
.mobile_common_process_ic {
    display: none;
}
.common_desc_info {
    max-width: 190px;
}
.common_desc_info h3 {
    font-size: 20px;
    font-family: Futuran-bold;
    color: #394955;
    margin-bottom: 10px;
}
.common_process_wrap {
    display: flex;
    justify-content: flex-end;
}
.process_box6 {
    margin-top: -40px;
}
.process_box6 .common_process_box {
    margin-right: 21%;
}
.process_box5 {
    margin-top: 30px;
}
.process_box5 .common_process_box {
    margin-right: 34%;
}
.process_box4 {
    margin-top: 20px;
}
.process_box4 .common_process_box {
    margin-right: 47%;
}
.process_box3 {
    margin-top: 5px;
}
.process_box3 .common_process_box {
    margin-right: 60%;
}
.process_box2 {
    margin-top: 0px;
}
.process_box2 .common_process_box {
    margin-right: 73%;
}
.process_box1 {
    margin-top: 48px;
}
.process_box1 .common_process_box {
    margin-right: auto
}
/*============== Process Designed Css End ===============*/
/*============== Team You Css Start ===============*/
.team_you_section {
    width: 100%;
    background-color: #fff;
    position: relative;
}
.team_you_image {
    text-align: right;
    position: relative;
}
.team_you_content .common_desc {
    max-width: 522px;
    margin: 40px 0 50px;
}
.team_you_content .common_desc p+p {
    margin-top: 30px;
}
.team_you_block {
    align-items: center;
}
.section_btn a {
    font-size: 20px;
    font-family: Futuran-bold;
    color: #fff;
    border-radius: 20px;
    background: #1ec5f7;
    border: 2px solid #1ec5f7;
    display: inline-block;
    padding: 21px 15px;
    max-width: 306px;
    width: 100%;
    text-align: center;
}
.section_btn a:hover {
    background-color: transparent;
    color: #1ec5f7;
    ;
}
.team_you_small_img {
    position: absolute;
    top: 26%;
    left: -56%;
    width: 100%;
    max-width: 580px;
}
.team_you_shape {
    position: absolute;
    top: 93%;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: -1;
}
.team_you_shape img {
    width: 100%;
}
/*============== Team You Css End ===============*/
/*============== Footer Css Start ===============*/
.footer_wrapper {
    width: 100%;
    min-height: 1424px;
    background-image: url(../images/footer_bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin-bottom: -1px;
}
footer {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}
.footer_menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.footer_menu ul li {
    margin-right: 32px;
    position: relative;
    line-height: 1;
}
.footer_menu ul li::after {
    content: '';
    position: absolute;
    right: -17px;
    top: 2px;
    width: 2px;
    height: 100%;
    background-color: #fff;
    border-radius: 5px;
}
.footer_menu ul li:last-child {
    margin-right: 0;
}
.footer_menu ul li:last-child:after {
    display: none;
}
.footer_menu ul li a {
    color: #fff;
    font-size: 20px;
}
.footer_menu ul li a:hover {
    color: #cee1ef;
}
.copyright_block p {
    font-size: 24px;
    color: #fff;
}
.copyright_block a {
    color: #fff;
}
.copyright_block a:hover {
    color: #cee1ef;
}
/*============== Footer Css End ===============*/
/************************** Contact Page Css Start **************************/
.contact_page .home_banner_content {
    max-width: 708px;
}
.contact_page .home_banner_content .common_desc {
    margin-bottom: 65px;
}
.cp_home_banner_img {
    right: 50px;
    position: absolute;
    top: 0;
    height: 100%;
    max-width: 720px;
    width: 100%;
}
.cp_home_banner_img .boxes{
    width: 100%;
    height: 100%;
}
.contact_content_section {
    position: relative;
    background-color: #fff;
    margin: 300px 0 160px;
    padding: 0 0 60px;
}
.contact_content_block {
    max-width: 1365px;
    margin: 0 auto;
    padding: 85px 95px;
    position: relative;
}
.cm_border_line_top,
.cm_border_line_left {
    position: absolute;
    top: 0;
    left: 0;
}
.cm_border_line_top {
    height: 14px;
}
.cm_border_line_top img,
.cm_border_line_left img,
.cm_border_line_bottom img,
.cm_border_line_right img {
    display: block;
    height: 100%;
}
.cm_border_line_right {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}
.cm_border_line_left {
    height: 100%;
}
.cm_border_line_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 14px;
}
.cm_border_line img {
    width: 100%;
    height: 100%;
}
.contact_top_shape {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
}
.contact_top_shape img,
.contact_bottom_shape img {
    width: 100%;
}
.contact_bottom_shape {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}
.contact_row {
    display: flex;
    flex-wrap: wrap;
}
.cm_col_6 {
    width: 50%;
    position: relative;
}
.cm_pr {
    padding-right: 85px;
    border-right: 2px solid #3D3D3D;
}
.cm_pl {
    padding-left: 85px;
}
.cm_stamp_img {
    text-align: right;
}
.cm_address_info {
    padding: 60px 0 50px;
}
.cm_address_info p {
    font-size: 24px;
    color: #1E1E1E;
}
.cm_map_block {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}
.cm_map_block iframe {
    border-radius: 20px;
    height: 260px;
}
.message_sent_info h3 {
    font-size: 54px;
    font-family: Futuran-heavy;
    color: #394955;
    font-weight: 900;
    margin-bottom: 15px;
}
.message_sent_info p {
    color: #394955;
}
.input_block textarea {
    width: 100%;
    padding: 28px 20px;
    border-radius: 10px;
    border: 1px solid #C7C7C7;
    min-height: 280px;
    resize: none;
    appearance: none;
    -webkit-appearance: none;
}
.cm_send_btn {
    margin-top: 15px;
    display: inline-block;
    width: 100%;
}
.cm_send_btn button {
    font-size: 20px;
    font-family: Futuran-bold;
    color: #fff;
    border-radius: 20px;
    background: #1ec5f7;
    border: 2px solid #1ec5f7;
    display: inline-block;
    padding: 21px 15px;
    max-width: 223px;
    width: 100%;
    text-align: center;
}
.cm_send_btn button:hover {
    background-color: transparent;
    color: #1ec5f7;
    ;
}
.cm_form_block {
    padding-top: 15px;
}
.contact_page .footer_wrapper {
    background-position: top center;
}
/************************** Contact Page Css End **************************/
/************************** Career Page Css Start **************************/
.common_title {
    line-height: 1.1;
    font-size: 54px;
    font-family: Futuran-heavy;
    padding-bottom: 37px;
}
.career_page .home_banner_content {
    max-width: 708px;
}
.helicopter_man {
    right: 0;
    top: 140px;
    pointer-events: none;
    position: absolute;
    width: 100%;
}
/* Talent Section Start */
.talents_section {
    padding-top: 200px;
    padding-bottom: 100px;
    position: relative;
}
.talents_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.rocket_image {
    left: -27px;
    top: 80px;
    pointer-events: none;
    position: absolute;
    width: 100%;
}
.roket_man{
    max-width: 940px;
    width: 100%;
}
.telent_left_block {
    width: calc(100% - 610px);
}
.telent_right_block {
    max-width: 610px;
    margin-left: auto;
}
.telent_right_block .paragraph {
    max-width: 522px;
    font-size: 20px;
    font-family: Futuran-book;
}
.telent_right_block .paragraph p {
    padding-bottom: 30px;
}
/* Talent Section End */
/* Work Section Start */
.work_section {
    margin-top: 356px;
    padding-bottom: 80px;
    position: relative;
    background-color: #fff;
}
.top_cloud {
    width: 100%;
    top: -160px;
    position: absolute;
    z-index: 0;
}
.top_cloud img ,.bottom_cloud img {
    width: 100%;
}
.mobile_cloud {
    display: none;
}
.bottom_cloud {
    width: 100%;
    z-index: 0;
    position: absolute;
    bottom: -120px;
}

.work_wrapper {
    position: relative;
    z-index: 5;
}
.top_block .work_title {
    font-size: 48px;
    padding-bottom: 48px;
    font-family: Futuran-heavy;
}
.top_block p {
    font-size: 20px;
    max-width: 522px;
    font-family: Futuran-book;
}
.card_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 40px;
    min-height: 190px;
    -webkit-box-shadow: 0px 0px 24px rgba(10, 119, 229, 0.16);
    box-shadow: 0px 0px 24px rgba(10, 119, 229, 0.16);
}
.card_block {
    margin-top: 80px;
}
.card_block .card_col {
    padding: 0 8px;
}
.card_title h4 {
    text-align: center;
    font-size: 20px;
    color: #394955;
    padding-top: 20px;
    font-family: Futuran-bold;
}
.card_info {
    color: #394955;
    padding-top: 40px;
}
/* Work Section End */
/* Accordian Section Start */
.accordian_form_section {
    padding-top: 90px;
}
.accordian_block {
    padding: 25px 20px;
    padding-left: 50px;
    border-radius: 20px;
    position: relative;
    margin-bottom: 30px;
    background-color: #fff;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 24px rgb(10 119 229 / 16%);
    box-shadow: 0px 0px 24px rgb(10 119 229 / 16%);
}
.accordian_block:last-child {
    margin-bottom: 0;
}
.accordian_title_info h2 {
    font-size: 30px;
    font-family: Futuran-heavy;
    color: #394955;
}
.accordian_title_info p {
    font-size: 24px;
    color: #405D74;
}
.accordian_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.accordian_toggle_img span {
    cursor: pointer;
    width: 71px;
    height: 71px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #1EC5F7;
    transition: 0.3s;
}
.accordian_header.active .accordian_toggle_img span,
.accordian_header :hover .accordian_toggle_img span{
    background-color: #307EC1;
}

.accordian_header .arrow {
    margin-top: 5px;
    -webkit-transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
    -o-transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
}
.accordian_header.active .arrow {
    margin-top: 0;
    transform-origin: center;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.accordian_inner {
    padding-top: 32px;
    padding-bottom: 20px;
}
.accordian_inner h6 {
    font-size: 20px;
    color: #394955;
    padding-bottom: 25px;
    font-family: Futuran-bold;
}
.accordian_inner .form_btn {
    padding-top: 120px;
}
.accordian_inner .form_btn .submit_btn,
.accordian_inner .form_btn .cancel_btn {
    min-width: 235px;
    color: #fff;
    font-size: 20px;
    padding: 21px;
    text-align: center;
    border-radius: 20px;
    display: inline-block;
    font-family: Futuran-bold;
    background-color: #1EC5F7;
    border: 2px solid transparent;
}
.accordian_inner .form_btn .cancel_btn {
    margin-left: 20px;
    min-width: 223px;
    background-color: rgb(199 199 199);
}
.accordian_inner .form_btn .cancel_btn:hover {
    background-color: rgb(165 165 165);
}
.accordian_inner .form_btn .submit_btn:hover{
    background-color: #307EC1;
    color: #fff;
    /* border-color: #1EC5F7; */
}
.accordian_inner .step_two .form_btn .submit_btn {
    min-width: 336px;
}
.input_block {
    margin-bottom: 15px;
}
.input_block:last-child {
    margin-bottom: 0;
}
.input_block label {
    padding-bottom: 5px;
    color: #394955;
    font-size: 20px;
}
.input_block input {
    width: 100%;
    padding: 28px 20px;
    border-radius: 10px;
    border: 1px solid #C7C7C7;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
}
.step_one p {
    color: #394955;
}
.accordian_inner .step_two .form_btn {
    padding-top: 80px;
}
.file_upload_section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #1EC5F7;
    border-radius: 20px;
    position: relative;
    padding: 30px 15px;
    margin-top: 27px;
    margin-bottom: 10px;
    color: #fff;
}
input.preview_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.file_upload_section .file_name {
    text-align: center;
    font-size: 20px;
    font-family: Futuran-bold;
}
.uploaded_files {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.file_address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.upoload_filename {
    margin-left: 20px;
}
.show_files {
    max-height: 310px;
    overflow-y: auto;
}
.show_files::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}
.show_files::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5;
}
.show_files::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #1ec5f7;
}
.accordian_inner .step_three .form_btn {
    padding-top: 0;
}
.accordian_inner .step_three .form_btn .cancel_btn {
    margin-left: 0;
    background-color: #1EC5F7;
    min-width: 220px;
    position: relative;
    z-index: 5;
    margin-top: -21px;
}
.accordian_inner .step_three .form_btn .cancel_btn:hover {
    /* color: #1EC5F7;
    background-color: transparent;
    border: 2px solid #1EC5F7; */
    background-color: #307EC1;
    color: #fff;
}

.step_three h5 {
    font-size: 54px;
    color: #394955;
    padding-bottom: 20px;
    font-family: Futuran-heavy;
}
.min_height_block {
    min-height: 650px;
    position: relative;
    z-index: 2;
}
.form_rocket_block {
    right: 30px;
    bottom: 0;
    bottom: -100%;
    position: absolute;
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    pointer-events: none;
    width: 100%;
    max-width: 752px;
}

.accordian_header.active+.accordian_inner .form_rocket_block {
    opacity: 1;
    bottom: -77px;
}
.input_block.empty input,
.input_block.empty textarea {
    border-color: red;
}
.incorrect_file, .max_file_error, .file_size_error, .empty_file{
    color: red;
    display: none;
}

.err-msg {
    display: none;
}
.input_block.empty .msg {
    display: none;
}
.input_block.empty .err-msg {
    display: inline-block;
    color: red;
}
/* .common_step {
    display: none;
    -webkit-transition: all 0.9s;
    -o-transition: all 0.9s;
    transition: all 0.9s;
}
.common_step.active {
    opacity: 0;
    z-index: -2;
    position: absolute;
} */
ul.job-features {
	list-style: disc outside none;
}
ul.job-features li {
	color: #394955;
	margin-bottom: 10px;
}
/* Accordian Section End */
/* Workplace Section Start */
.workplace_section {
    padding-top: 267px;
    padding-bottom: 250px;
}
.work_place_block .workplace_image+.workplace_image {
    margin-top: 42px;
}
.work_place_block .workplace_image {
    max-width: 499px;
    border-radius: 20px;
    overflow: hidden;
}
.work_place_block .workplace_image a {
    pointer-events: none;
}
.workplace_top_details {
    max-width: 522px;
}
.workplace_top_details p+p {
    padding-top: 25px;
}
.work_map_block {
    border-radius: 20px;
    margin-top: 65px;
    overflow: hidden;
}
.work_place_map_block {
    margin-left: -10px;
}

.work_map_block iframe {
    border-radius: 20px;
    height: 313px;
}
/* Workplace Section End */
/************************** Career Page Css End **************************/



#toggle {
    width: 33px;
    height: 33px;
    /* display: none; */
    position: relative;
    right: 0px;
    cursor: pointer;
    z-index: 999;
}
#toggle div {
    width: 100%;
    height: 3px;
    background: #fff;
    margin: 6px auto;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    backface-visibility: hidden;
}
#toggle.on .one {
    transform: rotate(45deg) translate(6px, 5px);
    background: #000;
}   
#toggle.on .two {
    opacity: 0;
}
#toggle.on .three {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #000;
}
.mobile-logo{
    opacity: 0;
    position: relative;
}
.logo_head a{
    position: relative;
}
 .logo_head a img{
    position: absolute;

}
.logo_head a {
    position: relative;
    display: block;
}

.accordian_inner{
    position: relative;
}
.common_step{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transform: scale(0.9);
    transition: 0.35s ease;
    top: 0px;
    margin-top: 40px;
}
.accordian_inner .common_step.step_one{
    position: relative;
}
.common_step.active{    
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.contact_content_block .common_step {
    position: unset;
    transform: unset;
    display: none;
}
.contact_content_block .common_step.active{
    display: block;
}
.contact_content_block .common_step{
    width: 100%;
    padding-right: 75px;
}
.parachute{
    max-width: 478px;
    margin-left: auto;
}
.banner_airplane, .ft_balloon ,.footer_cloud{
    position: absolute;
    width: 100%;
}
.ft_balloon{
    width: 100%;
    right:10%;
    top: 28%;
    z-index: 1;
}
.ft-cloud_one{
    bottom: 31%;   
}
.ft-cloud_two{
    bottom: 41%;   
}
.ft-cloud_three{
    top: 21%;   
}
.ft-cloud_four{
    top: 25%;   
}
.mobile_airplane_mobile{
    display: none;
}
.mobile_career_parachute_man{
    display: none;
}
.banner_airplane{
    top: 20%;
    right: 0;
    left: 0;
    width: 100%;
}

