*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root{
    --grey-bg: #2a2a2a;
    --black: #111111;
    --orange: #EF644C;
    --white: #fff;
}

html,body{
    background: var(--grey-bg);
    position: relative;
    overflow-x: hidden;
}

ul,li{
    margin-bottom: 0;
    list-style: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active{
  -webkit-transition-delay: 9999s;
   transition-delay: 9999s;
}

.container{
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section_padding{
    padding: 200px 0;
}

.sec_heading{
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 0 0 25px;
    border-bottom: 1px solid #fff;
}

.sec_heading span{
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-right: 20px;
}

.innerPageAbout{
    margin-bottom: 200px;
}

.form_element .searchWrapper {
  border-bottom: none !important;
  padding: 0 !important;
}

.highlightOption,
.optionListContainer .optionContainer li{
  background: transparent !important;
  color: var(--white) !important;
}

.optionListContainer{
  background: var(--black) !important;
}

.optionListContainer .optionContainer{
  border-radius: 0 !important;
}

/******************** LOADER CSS *********************/

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: var(--black); */
  display: flex; 
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999; /* Make sure it appears above other elements */
}

.loader_img{
  margin-bottom: 15px;
}

.loader_img img{
  max-width: 100px;
}

.loader-container .loader_text{
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-container .loader_text span{
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  display: block;
}

.loader-container .loader_text span:nth-child(1){
  opacity: 0;
  transform: translateX(-100px);
  animation: fadeInLeft ease-in-out 1.5s forwards;
}

.loader-container .loader_text span:nth-child(2){
  opacity: 0;
  padding: 0 15px;
  transform: translateY(100px);
  animation: fadeInBottom ease-in-out 1.5s forwards;
  animation-delay: 1.05s;
}

.loader-container .loader_text span:nth-child(3){
  opacity: 0;
  transform: translateX(100px);
  animation: fadeInRight ease-in-out 1.5s forwards;
  animation-delay: 2.05s;
}


@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}





/* .loader {
  border: 3px dashed #f3f3f3;
  border-top: 3px dashed #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1000000s linear infinite;
} */

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/********************** TOASTIFY CSS ********************** */
.Toastify__toast-container{
  width: max-content !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

/********************** BODY VERTICAL LINES CSS **********************/
.vertical_line_flex{
    width: 100%;
}

.vertical_line_flex span{
    display: block;
    width: 1px;
    background: #363636;
    height: 100%;
    position: absolute;
    z-index: 0;
}

.vertical_line_flex span:nth-child(1){
    left: 16.67%;
}

.vertical_line_flex span:nth-child(2){
    left: 33.33%;
}

.vertical_line_flex span:nth-child(3){
    left: 50%;
}

.vertical_line_flex span:nth-child(4){
    left: 66.67%;
}

.vertical_line_flex span:nth-child(5){
    left: 83.33%;
}

/********************** Header CSS **********************/

header{
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 10;
}

header.is-sticky{
    background: var(--grey-bg);
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left_area .logo img{
    max-width: 100px;
}

.center_area nav ul{
    display: flex;
    align-items: center;
}

.center_area nav ul li:not(:last-child){
    margin-right: 30px;
}

.center_area nav ul li a{
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    font-size: 16px;
}

.center_area nav ul li a:hover{
    color: var(--orange);
}

.right_area .hamburger{
    width: 35px;
    height: 35px;
    border: 1px dashed var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.right_area .hamburger .hamburger_block{
    display: block;
    height: 15px;
    width: 15px;
    background: var(--white);
}

.sec_title{
    padding: 80px 0;
    font-size: 60px;
    color: #fff;
    font-weight: 400;
    text-align: left;
    line-height: 75px;
}

.sec_title span{
    font-weight: 600;
}

.redirection_link{
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-top: 80px;
    width: fit-content;
}

.redirection_link span{
    font-size: 20px;
    font-weight: 400;
    margin-right: 10px;
    color: var(--orange);
}

.redirection_link svg{
    width: 28px;
    height: 28px;
    transform: rotate(135deg);
    color: var(--orange);
    transition: 0.2s ease-in-out all;
}

.redirection_link:hover svg{
    transform: rotate(90deg);
}


/************************** SIDEBAR MENU CSS ************************/

.sidebar_menu{
    max-width: 100%;
    width: 500px;
    height: 100vh;
    position: fixed;
    right: -500px;
    top: 0;
    background: var(--black);
    padding: 30px;
    overflow-y: auto;
    transition: 0.5s all;
}

.sidebar_menu.show_sidebar{
    right: 0;
}

.sidebar_logo {
    text-align: left;
}

.sidebar_logo img{
    max-width: 80px;
}

.sidebar_info{
    text-align: left;
    margin-top: 30px;
}

.sidebar_info h2{
    font-size: 42px;
    font-weight: 600;
    color: var(--white);
    line-height: 51px;
}

.sidebar_info h2 span{
    font-size: 20px;
}

.sidebar_info p{
    font-size: 16px;
    color: var(--white);
    line-height: normal;
    margin: 30px 0;
}

.social_links ul,
.quick_links ul{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.social_links ul li:not(:last-child){
    margin-right: 30px;
}

.social_links ul li a{
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

.quick_links{
    margin-bottom: 30px;
    display: none;
}

.quick_links h3{
    font-size: 20px;
    color: var(--white);
    text-align: left;
    margin-bottom: 10px;
}

.quick_links ul{
    flex-wrap: wrap;
}

.quick_links ul li{
    flex: 0 0 25%;
    max-width: 25%;
    text-align: left;
    margin-bottom: 10px;
}

.quick_links ul li a{
    text-decoration: none;
    color: var(--white);
    font-size: 16px;
    text-align: left;
}

.quick_links ul li a span{
    display: block;
    font-size: 12px;
    color: var(--orange);
}

.close_sidebar{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.close_sidebar svg{
    color: var(--orange);
    width: 35px;
    height: 35px;
}

/************************** HOME BANNER SLIDER CSS ************************/

.home_banner_text{
    width: 80%;
    font-size: 90px;
    text-align: left;
    line-height: 110px;
    color: #fff;
    font-weight: 400;
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home_banner_text span{
  display: block;
  position: relative;
  top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: 1s all;
}

.swiper-slide-active .home_banner_text span{
  opacity: 1;
  visibility: visible;
  top: 0;
}

.home_banner_text span:nth-child(2){
  transition-delay: 0.5s;
}

.home_banner_text span:nth-child(3){
  transition-delay: 1s;
}

.home_banner_text span:not(:nth-child(2)){
    font-weight: 700;
}


.home_banner_slider .heroSwipper .swiper-slide img{
    width: 100%;
    height: 85vh;
    object-fit: cover;
}

.home_banner_slider .heroSwipper .swiper-pagination{
    width: 100%;
    position: absolute;
    bottom: 15px;
}

.home_banner_slider .swiper-pagination-bullet{
    width: 25px !important;
    height: 25px !important;
    background: transparent !important;
    border: 1px dashed var(--white);
    border-radius: 0 !important;
    position: relative;
    transform: rotate(45deg);
    margin: 10px 15px !important;
}

.home_banner_slider .swiper-pagination-bullet.swiper-pagination-bullet-active:before{
    content: '';
    width: 12.5px;
    height: 12.5px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
}

.home_banner_slider .owl-dots .owl-dot:nth-child(1){
    left: calc(50% - 30px);
}

.home_banner_slider .owl-dots .owl-dot:nth-child(2){
    left: calc(50% + 30px);
}


/************************** SERVICE AREA CSS ************************/

.service_flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -35px;
}

.service_flex .service_column{
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 35px;
}

.service_flex .service_column:not(:nth-child(5)){
    margin-bottom: 40px;
}

.service_flex .service_column .service_box h3,
.service_flex .service_column .service_box p{
    text-align: left;
    font-weight: 500;
}

.service_flex .service_column .service_box h3{
    font-size: 20px;
    color: var(--orange);
}

.service_flex .service_column .service_box p{
    font-size: 35px;
    color: var(--white);
}

/************************** ABOUT ME CSS ************************/

.about_me_container{
    max-width: 90%;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.about_me_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -35px;
}

.about_me_flex .about_me_left{
    flex: 0 0 59%;
    max-width: 59%;
    padding: 0 35px;
}

.about_me_flex .about_me_right{
    flex: 0 0 41%;
    max-width: 41%;
    padding: 0 35px;
}

.about_me_flex .about_me_left img{
    width: 100%;
    display: block;
}

.about_me_flex .about_me_right p{
    font-size: 18px;
    color: #fff;
    text-align: justify;
    line-height: 32px;
}

/************************** WHAT WE DO CSS ************************/
.what_we_do_flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -35px;
}

.what_we_do_flex .what_we_do_left,
.what_we_do_flex .what_we_do_right{
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 35px;
}

.what_we_do_flex .what_we_do_left .sec_title{
    padding-bottom: 40px;
}

.what_we_do_flex .what_we_do_left p{
    text-align: justify;
    color: var(--white);
    font-size: 18px;
    line-height: 32px;
}

.what_we_do_flex .what_we_do_right{
    padding-top: 80px;
}

.what_we_do_flex .what_we_do_right .accordion{
  border: none;
}

.what_we_do_flex .what_we_do_right .accordion .accordion__item{
    border-bottom: 1px solid var(--white);
}

.what_we_do_flex .what_we_do_right .accordion .accordion__button{
    background: transparent;
    padding: 20px 0;
    color: var(--orange);
    font-size: 24px;
    position: relative;
}

.what_we_do_flex .what_we_do_right .accordion .accordion__button span:nth-child(1){
    font-size: 16px;
    margin-right: 35px;
}

.what_we_do_flex .what_we_do_right .accordion .accordion__button::before{
    border: none;
    width: unset;
    height: unset;
    transform: rotate(0);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 0;
}

.what_we_do_flex .what_we_do_right .accordion .accordion__button[aria-expanded='false']::before{
    content: url('https://api.iconify.design/ic/baseline-minus.svg?color=%23ef644c&width=24&height=24');
}

.what_we_do_flex .what_we_do_right .accordion .accordion__button[aria-expanded='true']::before{
    content: url('https://api.iconify.design/ic/baseline-plus.svg?color=%23ef644c&width=24&height=24');
}

.what_we_do_flex .what_we_do_right .accordion .accordion__panel{
    padding: 25px 0 40px;

}

.what_we_do_flex .what_we_do_right .accordion .accordion__panel .redirection_link{
    margin-top: 15px;
}

.what_we_do_flex .what_we_do_right .accordion .accordion__panel .redirection_link span{
    font-size: 16px;
}

.what_we_do_flex .what_we_do_right .accordion .accordion__panel .redirection_link svg{
    width: 20px;
    height: 20px;
}

.what_we_do_flex .what_we_do_right .accordion .accordion__panel p{
    color: var(--white);
    text-align: justify;
    font-size: 18px;
    line-height: 32px;
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}

/************************** PORTFOLIO CSS ************************/

.projects_slider{
    padding: 80px 0 0;
}

.projects_slider .swiper .swiper-wrapper{
    padding-bottom: 40px;
}

.projects_slider .swiper .swiper-wrapper .swiper-slide img{
    display: block;
    max-width: 100%;
}

.projects_slider .swiper-pagination-bullets{
    top: unset !important;
    bottom: -0px !important;
}

.projects_slider .swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 !important;
    height: 10px !important;
    width: 15px !important;
    border-radius: 0 !important;
    background: #e6e6e6;
}

.projects_slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(1){
    border-top-left-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
}

.projects_slider .swiper-pagination-bullets .swiper-pagination-bullet:last-child{
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}

.projects_slider .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 40px !important;
    background: var(--orange) !important;
    border-radius: 15px !important;
}

.projects_slider .owl-dots .owl-dot:hover span{
    border-radius: 15px !important;
    background: var(--white) !important;
}

/************************** MARQUEE CSS ************************/

.marquee-wrapper{
    text-align:center;
  }
  .marquee-wrapper .container{
    overflow:hidden;
    max-width: 100%;
  }
  .marquee-inner span{
    float:left;
    display: flex;
    align-items: center;
  }
  .marquee-wrapper .marquee-block{
    --total-marquee-items:5;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    /* margin: 20px auto; */
    padding: 40px 0;
  }
  .marquee-inner{
    display: block;
    width: 500%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .marquee-inner p{
    font-weight: 500;
    font-size: 60px;
    color: transparent;
    -webkit-text-stroke-width: 1px; 
    -webkit-text-stroke-color: var(--white); 
  }
  .marquee-inner.to-left{
    animation: marqueeLeft 20s linear infinite;
  }
  .marquee-inner.to-right{
    animation: marqueeRight 20s linear infinite;
  }
  .marquee-item{
    display: inline-block;
    margin: 0 30px;
    float: left;
    transition: all .2s ease-out;
  }
  @keyframes marqueeLeft{
    0% {
      left: 0;
    }
    100% {
      left: -100%;
    }
  }

  /************************** HOME CONTACT CSS ************************/

  .home_contact_content{
    padding: 125px 0 115px;
    background: url('../images/banner_03.jpg');
    background-position: center;
    background-size: cover;
    margin-top: 80px;

  }

  .home_contact_content h3{
    font-size: 45px;
    color: var(--white);
    text-align: center;
    line-height: 60px;
  }

  .home_contact_content .home_contact_link{
    font-size: 24px;
    color: var(--white);
    background: var(--orange);
    display: inline-block;
    height: 150px;
    width: 150px;
    margin: 35px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    text-decoration: none;
    font-weight: 400;
  }

  /************************** ARTISTIC ENHANCEMENT CSS ************************/

  .artistic_enhancement_flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 80px -35px 0;
  }

  .artistic_enhancement_flex .artistic_enhancement_col{
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 35px;
    margin-bottom: 40px;
  }

  .artistic_enhancement_flex .artistic_enhancement_col .artistics_enhancement_box{
    text-align: left;
  }

  .artistic_enhancement_flex .artistic_enhancement_col .artistics_enhancement_box .artistics_enhancement_info{
    margin-top: 30px;
  }

  .artistic_enhancement_flex .artistic_enhancement_col .artistics_enhancement_box .artistics_enhancement_info h3{
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
  }

  .artistic_enhancement_flex .artistic_enhancement_col .artistics_enhancement_box .artistics_enhancement_info p{
    color: var(--white);
    font-size: 18px;
    line-height: 32px;
  }

  /************************** FOOTER CSS ************************/

footer{
    background: var(--black);
    padding: 80px 0;
    position: relative;
}

.top_footer .contactus_img{
  width: 100%;
  margin-top: 100px;
}

  .top_footer_flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -35px;
    padding-bottom: 72px;
  }

  .top_footer_flex .top_footer_left,
  .top_footer_flex .top_footer_right{
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 35px;
  }

  .top_footer_flex .top_footer_left h2{
    font-size: 60px;
    font-weight: 400;
    color: var(--white);
    text-align: left;
    margin-bottom: 22px;
  }

  .top_footer_flex .top_footer_left h2 span{
    font-weight: 600;
  }

  .top_footer_flex .top_footer_left p{
    color: var(--white);
    font-size: 16px;
    line-height: 30px;
    text-align: left;
    margin-bottom: 27px;
  }

  .top_footer_flex .top_footer_left .top_footer_contact_info{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .top_footer_flex .top_footer_left .top_footer_contact_info .contact_details,
  .top_footer_flex .top_footer_left .top_footer_contact_info .address_info{
    flex: 0 0 49%;
    max-width: 49%;
  }

  .top_footer_flex .top_footer_left .top_footer_contact_info .contact_details h3,
  .top_footer_flex .top_footer_left .top_footer_contact_info .address_info h3{
    font-size: 20px;
    font-weight: 600;
    color: var(--orange);
    text-align: left;
    margin-bottom: 15px;
  }

  .top_footer_flex .top_footer_left .top_footer_contact_info .contact_details .mobile_email{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .top_footer_flex .top_footer_left .top_footer_contact_info .contact_details .mobile_email svg{
    color: var(--white);
    margin-right: 10px;
  }

  .top_footer_flex .top_footer_left .top_footer_contact_info .contact_details .mobile_email a{
    text-decoration: none;
    color: var(--white);
    font-size: 16px;
  }

  .top_footer_flex .top_footer_left .top_footer_contact_info .address_info p{
    font-size: 16px;
    line-height: 30px;
  }

  .top_footer_flex .top_footer_right h2{
    text-align: left;
    font-size: 32px;
    color: var(--orange);
    margin-bottom: 27px;
    font-weight: 600;
  }

  .top_footer_flex .top_footer_right form .form_element input,
  .top_footer_flex .top_footer_right form .form_element textarea{
    width: 100%;
    margin-bottom: 25px;
    background: transparent !important;
    border: none;
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid var(--white);
    font-size: 16px;
    color: var(--white);
  }

  .top_footer_flex .top_footer_right form .form_element input:focus,
  .top_footer_flex .top_footer_right form .form_element textarea:focus{
    background: transparent;
  }

  .top_footer_flex .top_footer_right form .form_element input{
    height: 40px;
  }

  .top_footer_flex .top_footer_right form .redirection_link{
    margin-top: 15px;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
  }

  .bottom_footer .footer_logo {
    text-align: left;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--white);
  }

  .bottom_footer .footer_logo img{
    max-width: 100px;
  }

  .bottom_footer .footer_nav{
    padding: 25px 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .bottom_footer .footer_nav .footer_menu nav ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .bottom_footer .footer_nav .footer_menu nav ul li:not(:last-child){
    margin-right: 35px;
  }

  .bottom_footer .footer_nav .footer_menu nav ul li a{
    color: var(--white);
    text-decoration: none;
  }

  .bottom_footer .footer_copyright p{
    display: flex;
    align-items: center;
    color: var(--white);
  }

  .bottom_footer .footer_copyright p img{
    margin: 0 5px;
  }


  /************************** ABOUT ME CSS ************************/

  .page_banner_area{
    height: 554px;
    position: relative;
    overflow: hidden;
  }

  .page_banner_area::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgb(42,42,42);
    background: linear-gradient(0deg, rgba(42,42,42,1) 0%, rgba(42,42,42,0) 100%);
  }

  .page_banner_area .banner_img_bg{
    width: 100%;
    height: 554px;
    object-fit: cover;
    object-position: top right;
  }

  .page_banner_content{
    width: 80%;
    position: absolute;
    left: 50%;
    top: 57%;
    transform: translate(-50%, -50%);
    z-index: 3;
  }

  .page_banner_content h2{
    text-align: left;
    font-size: 90px;
    line-height: 110px;
    color: var(--white);
    font-weight: 300;
  }

  .page_banner_content h2 span{
    font-weight: 600;
  }

  .page_banner_content p{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .page_banner_content p svg{
    margin-right: 8px;
    height: 18px;
    width: 18px;
    color: var(--white);
    margin-bottom: 2px;
  }

  .page_banner_content p a,
  .page_banner_content p span:last-child{
    font-size: 14px;
  }

  .page_banner_content p a{
    text-decoration: none;
    color: var(--white);
  }

  .page_banner_content p span:last-child{
    color: var(--orange);
  }

  .page_banner_content p .slash{
    margin: 0 8px;
    color: var(--white);
  }

  .about_me_content .about_img{
    width: 100%;
  }

  .about_me_content .about_info .sec_title{
    padding-bottom: 30px;
  }

  .about_me_content .about_info p{
    text-align: justify;
    color: var(--white);
    font-size: 18px;
    line-height: 32px;
  }

  .technology_area{
    padding-bottom: 150px;
  }

  .technology_flex{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 80px;
    margin: 0 -15px;
  }

  .technology_flex .tech_img{
    flex: 0 0 16.66%;
    max-width: 16.66%;
    margin-bottom: 50px;
    padding: 0 15px;
  }

  .technology_flex .tech_img img{
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }


  /************************** SERVICES CSS ************************/

  .service_content_area{
    padding: 100px 0 200px;
  }

  .services_flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -35px;
  }

  .services_flex .services_col{
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 35px;
  }

  .services_flex .services_col:not(:last-child){
    margin-bottom: 70px;
  }

  .services_flex .services_col .service_box{
    position: relative;
    overflow: hidden;
  }

  .services_flex .services_col .service_box .service_img{
    height: 500px;
    position: relative;
  }

  .services_flex .services_col .service_box .service_img::after{
    content: '';
    display: none;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgb(42,42,42);
    background: linear-gradient(0deg, rgba(42,42,42,1) 0%, rgba(42,42,42,0) 100%);
  }

  .services_flex .services_col .service_box:hover .service_img{
    border: 1px solid var(--orange);
  }


  .services_flex .services_col .service_box:hover .service_img::after{
    display: block;
  }

  .services_flex .services_col .service_box .service_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .services_flex .services_col .service_box .sevice_info{
    position: absolute;
    width: calc(100% - 90px);
    bottom: -155px;
    left: 45px;
    transition: 0.45s all;
  }

  .services_flex .services_col .service_box:hover .sevice_info{
    bottom: 45px;
  }

  .services_flex .services_col .service_box .sevice_info h3,
  .services_flex .services_col .service_box .sevice_info p,
  .services_flex .services_col .service_box .sevice_info a{
    text-align: left;
    display: block;
  }

  .services_flex .services_col .service_box .sevice_info h3{
    font-size: 26px;
    line-height: 40px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 45px;
  }

  .services_flex .services_col .service_box .sevice_info h3 span{
    color: var(--orange);
    display: block;
  }

  .services_flex .services_col .service_box .sevice_info p{
    color: var(--white);
    font-size: 18px;
    line-height: normal;
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3; 
   -webkit-box-orient: vertical;
   margin-bottom: 35px;
  }
  
  .services_flex .services_col .service_box .sevice_info a{
    text-decoration: none;
    color: var(--orange);
    font-size: 18px;
    line-height: normal;
  }


  /* ALL INDIVIDUAL SERVICE PAGE CSS */

  .all_service_page_content .all_service_inner_image img{
    max-width: 100%;
    display: block;
  }

  .all_service_inner_para p{
    font-size: 18px;
    line-height: 32px;
    text-align: left;
    color: var(--white);
    padding-top: 80px;
  }

  /* PORTFOLIO PAGE CSS */

  .portfolio_showcase{
    padding-top: 100px;
  }

  .portfolio_flex{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 -30px;
  }

  .portfolio_flex .portfolio_col{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 30px;
    margin-bottom: 60px;
    text-decoration: none;
    overflow: hidden;
  }

  .portfolio_flex .portfolio_col .portfolio_proj_content{
    position: relative;
  }

  .portfolio_flex .portfolio_col .portfolio_img{
    cursor: url("../images/eye-recognition.png"), auto;
    position: relative;
    overflow: hidden;
  }

  .portfolio_flex .portfolio_col .portfolio_img img{
    display: block;
    max-width: 100%;
  }

  .portfolio_flex .portfolio_col .portfolio_img::after{
    content: '';
    position: absolute;
    display: block;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    transition: 0.45s all;
  }

  .portfolio_flex .portfolio_col:hover .portfolio_img::after{
    top: 0;
  }

  .portfolio_flex .portfolio_col .portfolio_proj_info{
    position: absolute;
    width: calc(100% - 40px);
    left: 50%;
    transform: translateX(-50%);
    top: -100%
  }

  .portfolio_flex .portfolio_col:hover .portfolio_proj_info{
    top: 20px;
  }

  .portfolio_flex .portfolio_col .portfolio_proj_info .portfolio_proj_name{
    text-align: left;
    font-size: 32px;
    color: var(--white);
  }

  /* BLOGS CSS */
  

  .blogs_listing h3{
    font-size: 65px;
    color: var(--orange);
  }

  .blogs_flex{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 -15px;
  }

  .blogs_flex .blog_column{
    flex: 0 0 25%;
    max-width: 25%;
    padding: 15px;
    margin-bottom: 45px;
    text-decoration: none;
  }

  .blogs_flex .blog_column:hover{
    border: 1px solid var(--orange);
  }

  .blogs_flex .blog_column img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.2s all;
  }

  .blogs_flex .blog_column .blog_img{
    overflow: hidden;
  }

  .blogs_flex .blog_column:hover img{
    transform: scale(1.1);
  }

  .blogs_flex .blog_column .publish_date,
  .blogs_flex .blog_column .blog_title,
  .blogs_flex .blog_column .blog_para{
    color: var(--white);
    text-align: left;
    display: block;
  }

  .blogs_flex .blog_column .publish_date{
    font-size: 11px;
    margin-top: 10px;
  }

  .blogs_flex .blog_column .blog_title{
    font-size: 22px;
    line-height: 34px;
    margin: 10px 0;
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
  }

  .blogs_flex .blog_column .blog_para{
    font-size: 16px;
    line-height: 28px;
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3; 
   -webkit-box-orient: vertical;
  }