/*add class in tag  aos-init and aos-animate to stop the aos animation*/

body {
  overflow-x: hidden !important;
   font-family: "Lato", sans-serif !important; /* Added fallback font */
}

.fa:before {
    font-family: 'FontAwesome';
}

.fa-arrow-right, .fa-arrow-left {
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: center;
    align-content: center;
}

.fa-arrow-right {
    background-image: url(../images/arrow_1.png) !important;
}

.fa-arrow-right:before {
    content: "" !important;
}

/*.fa-arrow-left {
    background-image: url(/images/arrow_2.png) !important;
}*/

/*.fa-arrow-left:before {
    content: "" !important;
}*/

.arrow-rights {
   background-image: url(../images/arrow_3.png);
    background-size: 3vw;
    background-repeat: no-repeat;
    background-position: right center;
    width: 3vw;
    height: 3vw;
    display: block;
}


a .arrow-rights {
    position: relative;
    left: 0.5vw;
}

.arrow-lefts {
   background-image: url(../images/arrow_4.png);
    background-size: 3vw;
    background-repeat: no-repeat;
    background-position: left center;
    width: 3vw;
    height: 3vw;
    display: block;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #fff !important;
}

.owl-theme .owl-dots .owl-dot span {
    background: #787373 !important;  
}

.arrow-rights:before {
    content: "";
}

.left_8percent {
    left: 8% !important;
}

.py_2vw {
    padding-top: 0.6vw !important;
    padding-bottom: 0.6vw !important;
}

.w-mx {
    width: max-content !important;
}

.flo_link, .architectural_link {
    text-transform: capitalize;
    width: max-content !important;
}

a:hover {
    text-decoration: none !important;
}

header { 
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 999;
}

/* header code */



.sticky-header {
    position: absolute;
    opacity: 1;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 99;
    transition: top 300ms ease;
    padding-top:0px;
}

.sticky-header::before {
    content: '';
    background: transparent;
    backdrop-filter: blur(10px);
}

.sticky-header.active {
    opacity: 1;
    z-index: 99901;
    visibility: visible;
    animation-name: slideInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
    content: '';
    background: #00000025;
    backdrop-filter: blur(10px);
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}


.header {
    position: relative;
    z-index: 999;
}

/*header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000020;
    backdrop-filter: blur(10px);
    z-index: -1;
}*/

.overlay {
    height: 102vh; /* Changed to open fully */
    width: 102%;
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: #000;
    display: none; /* Hidden by default */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.overlay-open {
    display: flex; /* Show the overlay */
    opacity: 1; /* Fade in the overlay */
}

.overlay-close {
    opacity: 0; /* Fade out the overlay */
    transition: opacity 0.5s ease-in-out;
}

.overlay-content {
    position: relative;
    width: 16%;
    text-align: start;
    left: 7vw;
    top: 8vw;
}

.overlay a {
    padding: 5px;
    text-decoration: none;
    font-size: 2.7vw;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    transition: color 0.3s ease;
    line-height: 4.4vw;
}

.overlay a:hover, .overlay a:focus {
    color: #ccc;
}

.open-close-btn {
    position: absolute;
    top: 28px;
    right: 40px;
    text-decoration: none;
    z-index: 10;
}

@media screen and (max-height: 450px) {
    .overlay { overflow-y: auto; }
    .overlay a { font-size: 20px; }
}

/* Hamburger Icon */
#hamburger-icon {
    display: block;
    width: 3vw;
    height: 2.4vw;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    /* position: relative; Add this line to ensure span positioning */
}

#hamburger-icon span {
    display: block;
    position: absolute;
    height: 0.4vw;
    width: 80%;
    background: #fff;
    border-radius: 0.3vw;
    opacity: 1;
    left: 0;
    transition: 0.25s ease-in-out;
}

/* Hamburger Lines */
#hamburger-icon span:nth-child(1) {
    top: 0px;
}

#hamburger-icon span:nth-child(2), #hamburger-icon span:nth-child(3) {
    top: 0.8vw;
}

#hamburger-icon span:nth-child(4) {
    top: 1.6vw;
}

#hamburger-icon.hamburger-open span { background: #fff; }

#hamburger-icon.hamburger-open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#hamburger-icon.hamburger-open span:nth-child(2) {
    transform: rotate(45deg);
}

#hamburger-icon.hamburger-open span:nth-child(3) {
    transform: rotate(-45deg);
}

#hamburger-icon.hamburger-open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.bottom_100 {
    position: absolute;
    bottom: 1.5vw;
    width: 99%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    display: none;
}

ul.triadgrid {
    list-style: none;
    margin: 5vw 0px 0px 7vw;
    padding: 0;
    display: flex;
}

.triadgrid li {
    margin: 0px 1vw;
}

.infocard {
    max-width: 16.5vw;
    font-size: .875rem;
    line-height: 1.4;
    position: relative;
    padding: 1vw 0 0;
    color: #757575;
}

.infocard:before {
    position: absolute;
    content: "";
    width: 2vw;
    height: 1px;
    border-top: 1px solid #757575;
    left: auto;
    top: 0;
}

.infocard h5, .infocard h6 {
    margin: 0px 0px 1vw;
    color: inherit;
    font-size: 1.2vw;
    font-weight: 600;
}

.infocard p, .infocard.large p  {
    margin: 0 0 0em;
    font-size: 1.04vw;
}

.infocard a {
    font-size: 0.9vw;
    padding: 4px 0px 0px;
    line-height: 1vw;
}

.infocard.large h6{
    font-size: 2.45vw;
    margin-bottom: .5em;
    opacity: .75;
}

.infocard.large {
    max-width: 23vw;
    margin-right: 3vw;
    font-size: 1rem;
    text-align: right;
    padding-top: 1.1em;
}

.infocard.large:before {
    left: auto;
    right: 0;
}

.readmorebtn.xlarge {
    font-size: 1.5rem;
}

.talk_to_us_div .our_services_link {
    font-size: 1.6vw;
    position: relative;
    line-height: inherit;
}

.infocard .talk_to_us_div {
    margin-top: 0vw;
}

.infocard .talk_to_us_div .our_services_link::after {
    padding: 0px 4px;
    right: 0px;
    top: 8px;
}

/* header code */

/*home page banner slider code start*/

.skw-pages {
    overflow: hidden;
    position: relative;
    height: 100vh;
}

.skw-page__half {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    transition: transform 1s;
}

.skw-page__half--left {
    transform: translate3d(0, 100%, 0);
}

.skw-page.active .skw-page__half {
    transform: translate3d(0, 0, 0);
}

.skw-page__skewed {
    height: 100%;
}

.skw-page__content {
    height: 100%;
    transition: transform 0.3s, filter 0.3s;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.skw-page.inactive .skw-page__content {
    filter: brightness(0.5);
}

.skw-page__heading {
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 25px;
}

.skw-page-1 .skw-page__half--left .skw-page__content {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/mousover-img-1.jpg");
}

.skw-page-2 .skw-page__half--left .skw-page__content {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/slider-2.jpg");
}

.skw-page-3 .skw-page__half--left .skw-page__content {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/mousover-img-2.jpg");
}

.skw-page-4 .skw-page__half--left .skw-page__content {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/sections-3.jpg");
}

.skw-page-5 .skw-page__half--left .skw-page__content {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/img-test.jpg");
}


.panel,
.wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: unset;
}

.card {
  position: absolute;
  width: 100%;
}

.card p {
  margin: 0;
}

/*home page banner slider code end*/

.header_logo_div {
    width: 8vw;
    height: 3.8vw;
    position: relative;
    top: 0vw;
    /*background-color: #423526;*/
}

img.header_logo {
    width: 3vw;
    right: 2vw;
    position: absolute;
    top: 0vw;
}

.logo_text_img {
    position: absolute;
    opacity: 1;
    transition: all 0.6s ease-in;
    width: 6vw;
}

.header_logo_link {
    left: 0.6vw;
    border-radius: 50px;
    right: 0vw;
    position: absolute;
    top: 0.5vw;
}

/*.header_logo_link:hover .logo_text_img {
    right: -0.2vw;
    opacity: 1;
    width: 6vw;
    top: -0.1vw;
}*/

.menu {
    transform: rotate(90deg);
    margin-top: 10px;
}

/*home video slider carousel*/

section.home_banner_slider {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  min-height: 100vh;
}

.home_banner_slider .owl-theme .owl-nav {
    bottom: 10px;
    right: 40px;
}

.home_banner_slider .owl-prev {
    position: absolute !important;
    right: 1.8vw;
    height: 2vw;
    bottom: 0vw;
    border-radius: 100px;
}

.home_banner_slider .owl-next {
    position: absolute;
    left: -1vw;
    height: 2vw;
    bottom: 0vw;
}


#myVideo, #myVideo2, #myVideo3, .myVideo5 {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    height: 100vh;
    z-index: 0;
    display: flex;
    object-fit: cover;
    width: 100%;
}

.home_video_1 {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0px;
    background-color: rgb(41, 35, 122);
    opacity: 0.2;
    z-index: -1;
}

/*.owl-item .architectural_contents {
    text-shadow: 1px 1px 3px #fff;
    opacity: 1 !important;
}*/

.owl-item #first_section1, .owl-item #first_section2, .owl-item #first_section3 {
    position: relative;
    background-size: cover;
    box-shadow: inset 10000px 1000px #0000008a;
}

/*#service_page .flo_visual_story {
    box-shadow: inset 46.6vw 0px #0000008a;
}*/

#arch_visua {
    box-shadow: inset 100vw 0px #0000008a;
}

.scroll_down_text_main_div {
    top: 85vh;
    z-index: 9;
    float: right;
    right: 0vw;
    padding-bottom: 30px;
}

.scroll_down_text_div {
    transform: rotate(-90deg);
    overflow: hidden;
    /*cursor: pointer;*/
    height: 40px;
}
.scroll_down_text i {
    font-size: 15px;
}
.scroll_down_text {
    transform: translateX(0%);
    text-transform: uppercase;
    animation: message 2s cubic-bezier(0.645,.045,.355,1) infinite;
    color:#fff;
}

@keyframes message{
  from, to, 65% {transform: translate(0vw , -30%);}
  25% {transform: translate(-9vw, -30%);}
  26% {transform: translate(9vw , -30%);}
}

/*home video slider carousel end*/

.archiectural_parent_div, .flo_parent_div, .our_works_parent_div {
    width: 90%;
    margin: 0px auto;
    position: static;
    display: flex;
    align-items: center;
    height: 100vh;
}

.flo_parent_div .b-section-panel {
    width: 76%;
    float: right;
}
/*
.flo_parent_div {
    width: 85% !important;
}*/

.b-section-panel {
    width: 86%;
    float: right;
}

.b-section-panel__border {
    height: 81vh;
    float: right;
    width: 100%;
}

.b-section-panel__border-line,
.red_border,
.b-section-panel__border-line_2 {
    stroke: #000;
    stroke-width: 2px;
    fill: none;
    opacity: 1;
    stroke-dasharray: 3800;
    stroke-dashoffset: 0;
}


.b-section-panel__border-line.not_animation {
    animation: none;
    stroke-dashoffset: 0;
    opacity:1;
}

/* Adjust AOS animation if necessary */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition-duration: 1s;
}
[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.our_works_carousel .owl-dots {
    position: absolute;
    bottom: 1vw;
    left: 44vw;
}

.our_works_carousel .owl-dots button {
    margin: 5px 8px !important;
}  

.architectural_contents, .our_works_contents {
    display: block;
    position: relative;
    /* top: 30vh; */
    /* left: 5%; */
    z-index: 99;
}

.about_us_page .architectural_contents, .about_us_page .our_works_contents {
    position: static;
    top: 22vh;
    z-index:9;
}

.flo_content_div h4 {
    font-size: 2.1vw !important;
}

h1.architectural_heading, .what_we_do_heading, .flo_heading, .testimonial_heading {
    font-size: 3.9vw;
}

p.architectural_content, .flo_content, .flo_link, .architectural_link, .copyright_section span  {
    font-size: 1.3vw;
    line-height: 1.6vw;
    opacity: 1;
    position: relative;
    z-index: 99;
    font-weight: 400;
    /*top: 1vw;*/
    display: flex;
    align-items: center;
}

.services_page .architectural_link {
    font-size: 1.1vw;
}

.label a {
    font-weight: 500;
    color: #000 !important;
}

.fa-arrow-left, .fa-arrow-right:not(.arrow_not_styles ) {
    font-size: 1.15vw;
    /* border: 0.25vw solid #e61e2b; */
    /* padding: 0.7vw; */
    border-radius: 50px !important;
    width: 4vw; 
    height: 4vw;
    position: static;
    bottom: -1.4vw;
     /*margin-left: 0.6vw;*/
}

.owl-theme .owl-nav {
    /* bottom: 20px !important; */
    /* right: 60px; */
    display: flex;
    gap: 0vw !important;
}

#three_animated_carousel .owl-theme .owl-nav {
     bottom: 20px !important; 
     right: 60px; 
}


div#three_animated_carousel .owl-stage {
    height: 90vh;
}

div#three_animated_carousel {
    margin: 0 auto;
    width: 86%;
}

#first_section, #second_section, #forth_section, #fifth_section, .our_works {
    position: relative;
    background-size: cover;
}

/*.animated_image:hover {*/
/*    transform: translate(1.1, 1.1);*/
/*}*/

.first_section, .second_section, .forth_section, .fifth_section, .our_works {
    position: relative;
    background-size: cover;
}

.red_border {
    stroke: #f00 !important;
}

.flo .flo_parent_div {
    width: 90%;
    /* position: absolute; */
    top: 11%;
}

.flo .flo_content {
    font-size: 1.3vw;
}

.red_text {
    color: #f01928;
}

.home_page .flo_contents {
    background-color: #fff !important;
}

.flo_contents, .what_we_do_contents {
    width: 100%;
    /* position: absolute; */
    top: 12.4vh;
    background-color: #41403c;
    padding: 0px 0px;
    left: 3%;
}

.flo .b-section-panel__border {
    height: 66vh;
    float: right;
    width: 100%;
}

.flo_content_div, .what_we_do_content_div {
    position: absolute;
    right: -5%;
}

#three_animated_carousel .owl-stage-outer {
    height: 88vh;
}

#third_section .b-section-panel__border {
    height: 23vh;
    position: absolute;
    bottom: 4vw;
    width: 83%;
    right: 2vw;
}

.three_animated_section .container > div {
    position: relative;
    top: -2vw;
    height: 100vh;
}

#three_animated_carousel.owl-theme .owl-nav {
    bottom: inherit;
    right: 2vw;
}

.three_animated_section .col-md-3 {
    background-repeat: no-repeat;
    background-size: 130%;
    height: 29vw;
    background-position: top center;
    filter: brightness(1);
}

.animation_div_link .b-section-panel__border-line {
    stroke-width: 6px;
}

.arrow_not_styles {
    font-size: 2vw;
}

.three_animated_section .col-md-4:hover {
    filter: brightness(0.5);
    background-size: 140%;
    transition: all 0.9s ease-out;
}

/*.animate-on-scroll {
    transform: translateY(0px);
    transition: all 0.9s ease-out;
}

.animate-on-scroll.scroll_up {
    transform: translateY(0);
}
.animate-on-scroll-down {
    transform: translateY(0);
    transition: all 0.9s ease-out;
}
.animate-on-scroll-down.scroll_down {
    transform: translateY(0px);
}*/

#three_animated_carousel .owl-item.active:nth-child(odd), #three_animated_carousel .owl-item.cloned.active:nth-child(odd){
    transform: translateY(3vw);
}
#three_animated_carousel .owl-item.acitve:nth-child(even), #three_animated_carousel .owl-item.cloned.acitve:nth-child(even) {
    transform: translateY(-3vw);
}

#three_animated_carousel .owl-item {
    transition: transform 0.5s ease;
}

/*#three_animated_carousel .owl-item.active:nth-of-type(odd), #three_animated_carousel .owl-item.cloned.active:nth-of-type(odd) {
    transform: translateY(20px);
}

#three_animated_carousel .owl-item.active:nth-of-type(even), #three_animated_carousel .owl-item.cloned.active:nth-of-type(even) {
    transform: translateY(-20px);
}*/

.animation_div_link {
    text-decoration: none;
}

#third_section .b-section-panel {
    height: 77vh;
}

.animated_image {
    position: relative;
    width: 100% !important;
    right: 0%;
    transition: all 0.5s;
}

/*.animated_image:hover {*/
    /*width: 103% !important;*/ 
/*    transition: all 0.5s;*/
/*    transform: scale(1.1);*/
/*}*/


/*#three_animated_carousel .col-md-11>div:nth-child(1) {
    height: 71vh;
}*/

.white_border {
    stroke: #fff !important;
}

#third_section .arch_visua_contents {
    /* position: relative; */
    top: 0.6vw;
    left: 0%;
    /*width: 28vw;*/
}

.arch_visua_content {
    font-size: 1.6vw;
    line-height: 1.9vw;
    margin-bottom: 10px;
    font-weight: 400;
}

.what_we_do_contents {
    background-color: transparent; 
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.what_we_do_heading_div {
    position: absolute;
    top: 15vw;
}

.our_works_parent_div, .what_we_do_parent_div{
    width: 90%;
    margin: 0px auto;
    position: static;
    height: 100vh;
    display: flex;
    padding: 0px;
    align-items: center;
}

.what_we_do_heading_div {
    position: static;
}

.home_page .our_works {
    animation: zoomOut 5s ease-in-out infinite; 
    background-position: center center;
}

/* Keyframes for the zoom-out effect */
@keyframes zoomOut {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 110%;
    }
    /*100% {
        background-size: 100%;
    }*/
}

/* CSS for custom animation effects */
@keyframes zoomOutOpacity {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0.8);
        opacity: 0;
    }
}

@keyframes zoomInOpacity {
    from {
        transform: scale(1.2);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.animated-out {
    animation: zoomOutOpacity 1s ease-in-out forwards;
}

.animated-in {
    animation: zoomInOpacity 1s ease-in-out forwards;
}

/*.what_we_do_content_div .owl-prev {
    position: absolute;
    right: 0.7vw;
    height: 2vw;
    bottom: -0.2vw;
}*/

/*.what_we_do_content_div .owl-prev, .what_we_do_content_div .owl-next {
    width: 1.9vw;
}*/

/*.what_we_do_content_div .owl-next {
    position: absolute;
    left: 0vw;
    height: 2.2vw;
    bottom: -0.3vw;
}*/

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent !important;
}

/*.our_works_contents {
    transform: translateY(4vw);
}*/

.our_works .b-section-panel__border, #fifth_section .b-section-panel__border {
    height: 83vh;
    float: right;
    width: 100%;
}

.what_we_do_content_div {
    transform: translateY(-8vw);
    right: -10%;
    width: 50vw !important;
}

.what_we_do_img {
    /* background-size: contain; */
    width: 42vw ;
    transition: all 0.5s ease-out;
}

img.what_we_do_img {
    width: 100%;
    height: 70vh !important;
    object-fit: cover !important;
}

.what_we_do_img:hover {
    transform: scale(1.05);
    transition: all 0.5s ease-out;
}

.what_we_do_parent_div .b-section-panel {
    /*z-index: 99;*/
    position: relative;
}

.owl-theme .owl-nav {
    margin-top: 10px;
    position: absolute;
    z-index: 999 !important;
    /*bottom: -3vw;*/
    right: 0vw;
    width: 8vw;
    justify-content: space-between;
}

footer.footer {
    background-color: #ebe8e3;
    padding: 6vw 0 2.5vw 0 !important;
}

footer .footer_links_div {
    padding-top: 2vw !important;
    padding-bottom: 2vw !important;
}

.footer_links_div ul, .social_media_link {
    list-style: none;
    justify-content: center;
    align-items: center;
    color: #000;
    padding: 0px 6px;
}

.footer_link, .social_media_link a{
    text-decoration: none;
    color: #000;
    padding: 0px 1.6vw;
    font-size: 1vw;
    font-weight: 400;
}

.social_media_link a {
    padding: 0px 0.7vw !important;
}

footer .copyright_section {
    border-top: 1px solid #f00;
    border-bottom: 1px solid #f00;
     color: #000 !important;
}

footer .copyright_section { 
}


/* about us page */

#about-us-page .our_works_parent_div {
    position: static;
    top: 8vw;
    display: flex;
    align-items: center;
    width: 90%;
}

div#second_section {
    display: flex;
    align-items: center;
}

#career_page section, #contact_us_page section {
    position: sticky;
    position: -webkit-sticky;
    top: 1px;
    height: 100vh !important;
}

.about_us_page .our_works_contents,
.services_page .our_works_contents {
    width: 60%;
}

.about_us_page h1, .services_page h1 {
    font-weight: 400;
}

h2.architectural_heading {
    font-size: 2.5vw;
    font-weight: 400;
}

.about_us_page .flo_parent_div {
    margin: 0px;
    position: static;
    width: 100%;
    height: 100vh;
    background-size: 50% 100vh;
    background-repeat: no-repeat;
    display: flex;
    background-color: #fff;
    
}

.about_us_page .flo_heading_div {
    padding-left: 0px;
}

.about_us_page .flo_heading_div, .about_us_page .flo_content_div {
    padding-right: 0px;
}

.flo_visual_story {
    background-size: contain !important;
    background-repeat: no-repeat;
}

.exp_team .flo_parent_div {
    right: 14%;
}

.exp_team .flo_heading, .why_choose_us .flo_heading {
    line-height: 4vw;
    margin-top: 2vw;
}

.about_us_page .flo_contents {
    width: 100%;
    position: static; 
    text-align: justify; 
    background-color: transparent;
    align-items: center;
    display: flex;
    justify-content: space-around;
}

.flo_content_div, .what_we_do_content_div {
   position: static !important; 
}

body .services_page .owl-carousel .owl-stage-outer {
    position: static;
    overflow: hidden;
    width: 100% !important;
    top: -2vw;
    left: 1vw;
    z-index: 99;
}

.about_us_page .flo_content{
    font-size: 1.3vw;
    line-height: 1.6vw;
    color: #000;
}

.about_us_page .architectural_content{
    font-size: 1vw;
    line-height: 1.2vw;
}

.about_us_page .our_works_parent_div, .about_us_page .what_we_do_parent_div {
    right: 15% !important;
}

.about_us_page .archiectural_parent_div, .about_us_page .flo_parent_div {
    right: 16%;
}

.services_page .what_we_do_img {
    width: 100% !important;
}

.services_page .flo_contents {
    top: 21vh;
    background-color: transparent;
}

.arch_visua .services_page .b-section-panel__border {
    height: 81vh !important;
}

.about_us_page .flo_parent_div, .services_page .flo_parent_div {
    top: 6%;
}

.about_us_page .b-section-panel__border, .services_page .b-section-panel__border {
    height: 80vh;
}

.services_page .software_solution .flo_parent_div {
    top: 6%;
}

/*.virtual_tour {
    transform: translateY(3vw);
}*/

.reviews_contents_slider {
    position: absolute;
    top: 3vw;
}

.testimonial_heading {
    width: 50%;
    transform: translate(60%, 4vw) !important;
    display: flex;
    justify-content: center;
}

.about_us_page .owl-carousel .owl-stage-outer {
    position: absolute;
    overflow: hidden;
    width: 90% !important;
    top: 10vw;
    left: 5vw;
}

.services_page .owl-carousel .owl-stage-outer  {
    top: 0;
    z-index: 99;
}
#service_page .what_we_do_contents {
    background-color: transparent;
    top: 5vw;
}

.client_review {
    color: #000 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviewer_name {
    color: #222;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.25vw;
}

.reviewers_company {
     font-weight: 400;
     font-size: 1.25vw;
}

.review {
    font-size: 1vw;
    text-align: center;
    /* font-weight: 200; */
    line-height: 1.2vw;
}

.inverted_comas {
    width: 5vw !important;
}

/* services page */

#service_page video#myVideo, #career_page video#myVideo, #contact_us_page video#myVideo, #about-us-page video#myVideo {
    position: absolute;
}

 .our_services_contents {
    width: 45% !important;
}

 .services_contents {
    width: 90%;
    position: absolute;
    left: 6%;
    text-align: justify;
    top: 33vh;
    background-color: transparent;
    align-items: center;
    z-index:9;
}

/*.our_works .architectural_content {
    font-size: 1vw;
    line-height: 1.2vw;
}*/

.our_services_links li {
    background-color: transparent;
    border: 0;
    padding: 0.3vw 0px;
}

.our_services_link {
    text-decoration: none;
    color: #fff;
    font-size: 1.8vw;
    font-weight: 400;
    transition: all 0.3s ease-in;
}

/*.our_services_links ul {
    transform: translateY(-2vw);
}*/

/*.our_services_link:hover {*/
/*    color: #f21d1d;*/
/*    font-weight: 900 !important;*/
/*    transition: all 0.5s ease-in;*/
/*} */

/* .our_services_link:after{
    content: "\f061";
    font-family: 'FontAwesome';
    padding: 0px 5px;
    visibility: hidden;
    position: absolute;
    right: 0px;
    top: 12px;
    border: 5px solid #f00;
    border-radius: 50%;
    font-size: 16px;
}
*/

.our_services_link:after{
    content: "";
    background-image: url(../images/arrow_1.png);
    background-size: 3vw;
    background-repeat: no-repeat;
    background-position: right center;
    width: 3vw;
    height: 3vw;
    display: block;
    visibility: hidden;
    position: absolute;
    right: 0px;
    top: 12px;
}

.our_services_link:hover::after {
    visibility: visible;
    color: #fff;    
    transition: all 0.5s ease-in;
}

.services_page .our_works_parent_div, .services_page .what_we_do_parent_div {
    top: 5%;
}

.services_page .what_we_do_content_div{
    z-index: 9;
}

.services_page .b-section-panel__border {
    height:79vh !important;
}

.services_page .what_we_do_heading_div {
    /* position: relative; */
    top: 3vw;
}

.services_page .owl-theme .owl-nav {
    margin-top: 10px;
    position: static;
    z-index: 999 !important;
    top: 26vw;
    right: -1vw;
    float: right;
}

.td_services .what_we_do_content_div .owl-prev, .td_services .what_we_do_content_div .owl-next {
    top: 44vh;
}

.services_page h1 {
    line-height: 4vw;
}

.services_page .our_works_contents {
    width: 45%;
}

/* career page */

#career_page .our_works_contents {
    position: static;
    z-index: 1;
}

#career_page .our_works_parent_div {
    
    width: 90%;
}

.career_form_content {
    width: 100%;
     position: static; 
    left: 6%;
    top: 18vh;
    justify-content: space-between;
    align-items: center;
}

/*.career_page .our_works_contents {
    top: 25vh;
    position: relative;
}*/

.career_form_content .our_services_contents {
    width: 43% !important;
}

.career_page h5.architectural_content {
     font-size: 1.5vw;
 }

.career_page .our_services_links ul {
    transform: translateY(0vw);
}

.career_form_content h4 {
    font-size: 1.6vw;
}

.career_form_content .our_services_links li a {
    font-size: 1.5vw;
    font-weight: 400;
    transition: all 0.3s ease-in;
    line-height: 1.2vw;
    color: #212529;
}

/*.career_form_content .our_services_links li a:hover {*/
/*    color: #f00;*/
/*}*/

.career_form_content .our_services_link:after {
    content:"";
    display: none;
    border:0;
    background-image: url(../images/arrow_3.png);
    top: 0px;
}

.career_form_content .our_services_link:before {
    content: "\f061";
    font-family: 'FontAwesome';
    font-weight: 100;
    padding-right: 10px;
    opacity: 1;
    transition: all 0.3s ease-in;
    color: #212529;
}
.career_form_content .our_services_links li a {
    cursor: context-menu;
}

/*.career_form_content .our_services_link:hover::before {*/
/*    color: #f00;*/
/*}*/

.career_form .form-control, 
.contact_form .form-control{
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0px;
    margin-top: 2vw;
    padding-bottom: 0.3vw;
    padding-left: 0px;
    color: #000;
    font-size: 1.5vw;
}

.career_form .form-control:focus,
.contact_form .form-control:focus {
    box-shadow: none;
    background-color: transparent;
    color: #000;
    border-bottom: 1px solid #000;
}

.career_form_content form .upload_file {
    /*padding-top: 0.5vw !important;*/
    padding-bottom: 1vw !important;
}

.career_form input::placeholder, .career_form textarea::placeholder{ 
    color: #000;
    font-size: 1.2vw;
    opacity: 1;
} 

.contact_form input::placeholder, .contact_form textarea::placeholder {
    color: #000 !important;
}

.file-upload {
    display: block;
    margin: 20px 0;
}

.file-upload-label {
       display: inline-block;
    background-color: #32312f;
    color: #dddddd;
    padding: 0.3vw 1vw 0.4vw;
    font-size: 0.8vw;
    border-radius: 2vw;
    cursor: pointer;
}

.file-upload-input {
    display: none;
}

.file-upload-info {
    margin-left: 10px;
    color: #333;
    font-size: 1.1vw;
}

.agree_input {
    color: #333;
    font-size: 0.9vw;
    margin-top: 3px;
}


.career_form {
    transform: translateY(-3vw);
}

.career_submit {
    background-color: #ea1b2d;
    padding: 0.6vw 3vw;
    font-size: 1vw;
    font-weight: 400;
}


/* contact us page */

.contact_us_page .our_works_contents {
    width: 100%;
}

.contact_us_page .our_works_contents {
    /* transform: translateY(-1vw); */
}

.contact_social_media {
    /* transform: translate(6vw, -2.6vw); */
    /*position: absolute;*/
    bottom: 0vw;
}

.contact_social_media .social_media_link {
    position: relative;
    right: 10px;
    top: 0;
}
h5#videoModalLabel {
    color: #fff;
}
.contact_us_page .fa {
    font-size: 1.3vw;
}

#contact_us_page .our_works_contents {
    position: static;
}

.contact_us_page .our_works_parent_div{
    width: 90%;
    /* margin: 40px auto; */
    /* position: absolute; */
    top: 7vw;
    right: 0;
    z-index: 9;
    /* bottom: 21vw; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact_social_media i {
    font-size: 1.6vw;
    color: #fff;
    padding-top:1vw
}

.contact_location_img {
    width: 20%;
    text-align: center;
        margin-left: auto;
    margin-right: auto;
}

.location_img {
    width: 1.4vw;
    text-align: center;
}

.contact_us_page .architectural_content, .contact_us_page .architectural_link, .career_page .architectural_content {
    font-size: 1vw;
    opacity: 0.7;
}

.career_page .architectural_link {
    font-size: 1vw;
}

.contact_us_page .architectural_link, .career_page .architectural_link {
    
    text-transform: none;
    font-weight: 400;
}

#contact_us_page section {
    display: flex;
    align-items: center;
}

.contact_us_form .flo_parent_div {
    width: 70%;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact_us_form {
    background-color: #41403c;
}

.contact_us_form h2 {
    font-size: 2.5vw;
}

.contact_us_form h4 {
    font-size: 1.7vw;
}

.contact_form input::-webkit-input-placeholder, .contact_form textarea::-webkit-input-placeholder{ 
    color: #ddd;
    font-size: 1.1vw;
}

.contact_form input::-webkit-input-placeholder, .contact_form textarea::-webkit-input-placeholder { 
    color: #ccc;
}

/* works page */

.works_page .our_works_parent_div {
    width: 90%;
}

.works_page .services_contents {
    position: static;
}

.fancybox-button--arrow_left, .fancybox-button--arrow_right {
  display: block !important;
}

section.wroks_gallery {
    padding: 3.5vw 2vw !important;
}

.works_list li>div {
    padding-top: 0.6vw !important;
}

.services_page .our_services_link {
    font-size: 1.7vw;
    margin-top: 4vw;
    font-weight: 500;
    text-align: left;
}

.services_page .our_services_link:after {
    right: -3.5vw;
    top: 0.4vw;
    display: none;
}

.our_featured_contents {
    width: 57% !important;
}

.our_featured_contents .architectural_content {
    font-size: 1vw;
    color: #ccc;
}

input[type="checkbox"] {
    background-color: transparent !important;
    width: 1.3vw;
    height: 1.3vw;
    cursor: pointer;
}

.talk_to_us_div {
    margin-top: 3vw;
}

.works_filter_list_div h2 {
    font-size: 2.8vw;
}

.works_filter_list_div strong {
    font-size: 1.2vw;
}

.talk_to_us_div .our_services_link {
    font-size: 1.6vw;
    position: relative;
    color: #333;
    
}

.works_list li {
    background-color: transparent;
    border: 0;
    padding: 0px;
}

.works_list li p {
    margin-bottom: 0px;
}

/*.work_img_gallery > div:not(:nth-last-child(-n+3)) {*/
/*    padding-bottom: 24px;*/
/*}*/

/*.work_img_gallery .work_img_gallery_inner_div{*/
/*    overflow: hidden;*/
/*}*/

.work_img_gallery img {
      width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom:10px;
}

/*#image_gallery img:hover {*/
/*    transform: scale(1.1);*/
/*}*/

.yt_modal {
    cursor: pointer;
}

/*.talk_to_us_div .our_services_link::after { comment on 17 august
    padding: 0px .3vw;
    right: -3vw;
    top: 0.2vw;
    border: 3px solid #f00;
    font-size: 1vw;
    visibility: visible;
}*/

/*.talk_to_us_div .our_services_links:after {
    position: absolute;
    right: -4vw;
    top: -0.5vw;
    content: "";
    background-image: url(/images/arrow_3.png);
    visibility: visible;
}*/


/*video modal css*/

#videoModal .modal-dialog {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0px auto;
}

#videoModal .modal-content {
    padding: 0em !important;
    background: transparent;
    border: 0px;
}

#videoModal .modal-header {
    padding: 10px 2px 4px !important;
    border: 0;
}

#videoModal .modal-body {
    padding: 0 0rem 0rem !important;
}

#videoModal .modal-header .close {
    padding: 5px 0px;
    border: 0px;
    background: transparent;
    color: #fff;
}

#videoModal button.close span {
    font-size: 3em;
    line-height: 10px;
    font-weight: 300;
    position: relative;
    top: 6px;
}

/* footer */

.footer_logo_img {
    width: 7vw;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 85vw;
}

.social_media_link i {
    font-weight: 100;
}

footer .copyright_section span, footer .copyright_section i {
    font-size: 1vw;
}

/*screen greater than  67%*/
@media (min-width:1800px) {
    
    .about_us_page .b-section-panel__border, .services_page .b-section-panel__border {
        height: 81vh;
    }
    
    .flo .flo_parent_div {
        top: 12%;
    }
    
    .about_us_page .flo_parent_div, .services_page .flo_parent_div {
        top: 8%;
    }
    
    .services_page .our_works_parent_div, .services_page .what_we_do_parent_div {
        top: 7%;
    }
    
    .services_page .flo_contents {
        top: 26vh;
    }
    
    .about_us_page .architectural_contents, .about_us_page .our_works_contents {
        position: absolute;
        top: 28vh;
    }
    
    .reviews_contents_slider {
        top: 3vw;
    }
    
    #hamburger-icon span:nth-child(2), #hamburger-icon span:nth-child(3) {
        top: 0.8vw;
    }
    
    #third_section .b-section-panel {
        height: 64vh;
    }
    
    /*#three_animated_carousel .col-md-11>div:nth-child(1) {
        height: 55vh;
    }*/
    
    .three_animated_section .container > div {
        position: relative;
        top: 1vw;
    }
    
    .animated_image {
        position: relative;
        width: 95%;
        right: 0%;
    }
    
    #three_animated_carousel.owl-theme .owl-nav {
        bottom: inherit;
        right: 2vw;
        width: 8vw;
        justify-content: space-between;
    }
    
    .what_we_do_content_div .owl-prev {
        height: 2vw;
        width: 2vw;
    }
    
    .what_we_do_heading_div {
        position: static;
        top: 12vw;
    }
    
    .what_we_do_content_div .owl-next {
        height: 2vw;
        width: 2vw;
    }
    
    .what_we_do_content_div .fa-arrow-left {
        left: 0;
    }
    
    .what_we_do_content_div .fa-arrow-right {
        right: -15px;
    }

    .what_we_do_img {
        background-size: contain;
        width: 50vw !important;
    }
    
    .what_we_do_contents {
        background-color: transparent;
        top: 2vw;
    }
    
    .owl-theme .owl-nav {
        margin-top: 25px !important;
        position: relative;
        z-index: 999 !important;
        bottom: 0vw;
        right: 0;
        float: right;
    }
    
    .services_page .what_we_do_contents {
        top: 13vw;
    }
    
    .services_page .owl-theme .owl-nav {
        top: 25vw;
        right: -1vw;
    }
    
    .td_services .what_we_do_content_div .owl-prev, .td_services .what_we_do_content_div .owl-next {
        top: 63.5vh !important;
        height: 1.9vw !important;
    }  
    
    .career_form_content {
        top: 31vh;
    }
    
    .career_submit {
        padding: 0.8vw 3vw;
    }
    
    .contact_us_form .container {
        position: relative;
        top: 5vh;
    }
}

@media (max-width:1350px) {
    
.three_animated_section .container > div {
    position: relative;
    top: -3vw;
}


.what_we_do_content_div .owl-prev, .what_we_do_content_div .owl-next {
    width: 2.4vw;
}

.what_we_do_content_div .owl-prev {
    right: 0vw;
    width: 2.4vw;
}

footer .copyright_section span, footer .copyright_section i {
    font-size: 0.9vw;
}

}




/***************************************************
 * Generated by SVG Artista on 7/16/2024, 12:22:14 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/


svg.logo_letter {
    width: 35%;
    opacity: 0;
}

.header_logo_link:hover .logo_letter {
    animation-name: animate-svg-fill-1;
    animation-duration: .2s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    opacity: 1;
}

.logo_letter {
    fill: hsla(0, 0%, 100%, 0);
}


@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(233 30 44);
    opacity: 1;
  }
}

@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(233 30 44);
  }
}

.svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
          animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

/*.svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
          animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
          animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
          animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}*/

.svg-elem-5 {
  -webkit-animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
          animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
}

.overlay_video {
    position: relative;
    display: inline-block; /* Ensures proper sizing of the overlay */
        width: 100%;

}

section:first-child::before, .home_banner_slider:before, .home_page .our_works:before  {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity to control the darkness */
    pointer-events: none; /* Allows interaction with the video */
    z-index: 1; /* Ensures the overlay is above the video */
}

#myVideo, #myVideo2, #myVideo3, .myVideo4, .myVideo5 {
    display: block;
    width: 100%;
    z-index: 0; /* Keeps the video behind the overlay */
}


.myVideo4 {
position: absolute;
    left: 0;
    bottom: 0;
    min-width: 50%;
    height: 100vh;
    z-index: 0;
    display: flex;
    object-fit: cover;
    width: 50%;

}

.upload_file input#file_1 {
    display: none;
}

.upload_file input#file_2 {
    display: none;
}

div#flo_visual_story .ps-lg-5.flo_content_div {
    padding-left: 4vw !important;
}

.masonry_gallery_main {
    column-count: 3;
    column-gap: 10px;
}
.hv-100
{
    height:100vh;
}

.masonry_gallery {
      box-sizing: border-box;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    counter-increment: brick-counter;
    max-width: max-content;
    margin-bottom: 15px;
    display: inline;
}



/* Style for translation dropdown */

/* Style the dropdown */
#custom_translate {
    position: absolute;
    z-index: 999;
    width: auto;
    right: 115px;
    top: 28px;
}
.translated-rtl #custom_translate {
    position: absolute;
    z-index: 999;
    width: auto;
    right: 185px;
    top: 31px;
} 
#custom_translate select {
   background-color: #666666;
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    outline: none;
}

#custom_translate select:hover {
    color: #fff; 
    background-color: #666666;
}


#custom_translate select option {
    background-color: #666666;
    color:#fff;
    padding:10px 0px;
    display:block;
}



/* Hide Google Translate default branding */
.goog-te-banner-frame,
.goog-te-gadget {
    display: none !important;
}


 body {
    top:0!important;
}
.skiptranslate {
    color:#000;
}
.VIpgJd-ZVi9od-vH1Gmf table tbody  {
    font-size: 14px !important; /* Change font size of each item */
    color: #444 !important; /* Change text color of each item */
    background-color: #f1f1f1 !important; /* Background color for items */
}


.VIpgJd-ZVi9od-ORHb-OEVmcd{
    display: none !important;
} 
 .arabic { direction: rtl; text-align: right; }
.translated-rtl {
	text-align: left;
}

.goog-te-gadget-simple {
    background-color: #f01928!important;
    border-left: 1px solid #f01928!important;
    border-top: 1px solid #f01928!important;
    border-bottom: 1px solid #f01928!important;
    border-right: 1px solid #f01928!important;
    font-size: 10pt;
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    display: flex;
    /* gap: 40px; */
    color: #fff!important;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {
    color: #fff;
    padding: 4px 5px;
    font-size: 16px;
    display: flex;
    gap: 5px;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
    border-color:#fff!important;
    color:#fff!important;
}

.goog-te-gadget img {
    display:none;
}
#goog-gt-tt {
    display:none!important;
}

#google_translate_element {
    margin: 10px;
    position: absolute;
    z-index: 999;
    width: auto;
    float: left;
    right: 100px;
    top: 20px;
}
.translated-rtl #google_translate_element  {
    float: left;
    text-align:left;
}

.translated-rtl .sticky-header {
    direction: rtl;
}

.translated-rtl .overlay-content {
    width: 16%;
    text-align: start;
    left: -50px;
    top: 8vw;
}

.translated-rtl #google_translate_element {
    right: auto;
    left: 92px;
}

.translated-rtl .open-close-btn {
    right:auto;
    left:40px;
}

.translated-rtl .logo_text_img {
    position:relative;
}
.translated-rtl #second_section .flo_content_div  {
    text-align:right;
}
.translated-rtl .wroks_gallery  .justify-content-around {
        flex-direction: row-reverse;
}

.translated-rtl .works_page .services_contents {
    position: static;
    /* text-align: right; */
    width: 100%;
    justify-content: end;
    text-align: right;
}
.translated-rtl #career_page .our_works_parent_div {
    width: 90%;
    justify-content: end;
    text-align: right;
}
.translated-rtl .career_form_content {
        flex-direction: row-reverse;
}
.translated-rtl #second_section .flo_heading, .translated-rtl input, .translated-rtl textarea  {
    text-align:right;
}
.translated-rtl #second_section .flo_link, .translated-rtl .career_submit  {
    float:right;
}

.translated-rtl #third_section .animation_div_link,.translated-rtl .our_services_contents  {
     text-align:right;
}
.translated-rtl .list-group-item .d-flex,  .translated-rtl .our_services_links  {
    float:right;
}

.translated-rtl .talk_to_us_div , .translated-rtl .works_filter_list_div {
    text-align:right;
}

.translated-rtl .upload_file {
    justify-content:end;
    gap:5px
}


.translated-rtl .career_form_div1 p{
  display:block;  
}

.translated-rtl .career_form_div1 .career_form_div1_bottom {
   justify-content: end;
    align-items: end;
    float: right;
}




