   @import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

   :root {
       --primary-color: #A53DFF;
       --secondary-color: #fdf9ff;

       --heading-text-color: #132238;
       --heading-font-size:12px;

       --button-hover-color: #8431cc;
       --text-color:#556070;
       --text-font-size:17px;

   }

   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: "Work Sans";
       scroll-behavior: smooth;
   }

   .heading_text {
       color: var(--heading-text-color);
       font-size: 37px;
       font-weight: 600;
       line-height: 45px;
       margin-bottom: 20px;
   }

   .content_text {
    color: var(--text-color);
    font-size: var(--text-font-size);
    line-height: 29px;
    margin-bottom: 16px;
}

   body {
       overflow-x: hidden;
   }
   body.active{
    overflow: hidden;
   }

   .backgroud {
       position: absolute;
       top: 0;
       left: 0;
       display: flex;
       justify-content: center;
       width: 100%;
       flex-direction: column;
       align-items: end;
       z-index: -99;
   }

   .container {
       width: 75%;
       margin: 0 auto;
   }

   /* Header Section*/
   .header_container {
       display: flex;
       align-items: center;
       justify-content: space-between;
       padding: 9px 0px;
   }

   .hero_section {
       height: 100vh;
       width: 100%;
       padding-top: 72px;
       position: relative;
   }

   #about {
       height: 100px;
       width: 100px;
       position: absolute;
       bottom: 0px;
   }

   .div1 {
       width: 200.316px;
       height: 200.316px;
       flex-shrink: 0;
       border-radius: 50%;
       background: rgb(211 0 246 / 77%);
       filter: blur(142px);
   }

   .div2 {
       width: 246.316px;
       height: 50vh;
       flex-shrink: 0;
       border-radius: 1044.316px;
       background: rgb(0 255 191 / 65%);
       filter: blur(216px);
       border: 1px solid red;
       position: relative;
       top: 44vh;
   }

   header {
       position: fixed;
       top: 0px;
       width: 100%;
       background-color: #ffffff00;
       z-index: 999;
   }

   header.active {
       box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
       background-color: #fff;
   }

   nav ul {
       display: flex;
       list-style: none;
       position: relative;
   }

   li {
       padding: 0px 12px;
       font-size: 16px;
       cursor: pointer;
       display: flex;
       align-items: center;
   }

   li a {
       color: #333333;
       text-decoration: none;
   }

   .contact_button {
    font-size: 16px !important;
    margin-left: 12px;
   }

   li a:hover {
       color: #9e46ff;
   }

   .logo {
       width: 150px;
   }


   .move
   {
    position: absolute;
    width: 46px;
    height: 2px;
    background-color: #9e46ff;
    bottom: 3px;
    left: 11px;
    border-radius: 5px;
    transition: all 0.5s;
   }

   .button {
       background-color: var(--primary-color);
       border: 1px solid var(--primary-color);
       color: #fff;
       padding: 7px 12px;
       border-radius: 2.5px;
       transition: all 0.2s;
       display: inline-block;
       font-size: 14px;
       cursor: pointer;
       text-decoration: none;
   }

   .button:hover {
       background-color: var(--button-hover-color);
   }

   li.button {
       margin-left: 12px;
   }

   /* li.active {
       font-weight: 500;
   } */
   .nav_link.active
   {
    font-weight: 500;
   }

   .contact_button:hover {
       font-weight: 400;
   }

   .row {
       display: flex;
   }

   .left_col {
       width: 50%;
   }

   .right_col {
       width: 50%;
   }

   .hero_left_col {
       width: 50%;
       display: flex;
       align-items: center;

   }

   .hero_right_col {
       width: 50%;
       display: flex;
       justify-content: end;
       align-items: center;
       position: relative;
   }

   .hero_image_container {
       width: 302px;
       height: 100%;
       background-color: #fff;
       border-radius: 15px;
       box-shadow: 0 0 50px rgba(0, 0, 0, .12);
   }

   .hero_image {
       width: 100%;
   }
   .hero_image2 {
    width: 94%;
    /* background-color: #fff; */
    /* border-radius: 15px; */
    /* box-shadow: 0 0 50px rgba(0, 0, 0, .12); */
    /* transform: rotateZ(7deg); */
    transition: all 0.4s;
    /* border: 4px solid #dbc9ef; */
    /* max-height: 525px;*/
}

 

   .hero_heading_text {
       font-weight: 600;
       margin-bottom: 20px;
       font-size: 46px;
   }

   .hero_section>.container {
       height: 100%;
       display: flex;
       align-items: center;
   }

   .say_hello_button {
       padding: 10px 27px;
   }

   .experience_row {
       width: 100%;
       margin-top: 73px;
   }

   .experience_card {
    background-color: rgba(237, 216, 255, 0.50);
    width: 33.33%;
    border-radius: 7px;
    padding: 20px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #e6d1ff;
    box-shadow: inset 0px 0px 20px #e6d1ff;
   }

   .experience_card:last-child {
       margin-left: 10px;
   }

   .experience_card:nth-last-child(2) {
       margin-left: 10px;
   }

   .experience_card> div > .subject {
       color: #424E60;
       font-size: 20px;
       font-weight: 600;
       text-align: center;
       margin-bottom: 4px;
   }

   .experience_card> div > .description {
       color: #697484;
       font-size: 15px;
       text-align: center;
   }

   .first_container>img {
       opacity: 0;
   }

   .second_container {
       position: absolute;
       top: 0;
       right: 0;
       transform: rotateZ(7deg);
       transition: all 0.4s;
   }

   .second_container:hover {
       transform: rotateZ(9deg);
   }

   .about_us_section {
       width: 100%;
       padding-top: 72px;
       position: relative;
   }

   .about_us_section .container {
       border-radius: 14px;
       background: var(--Gray-White, #FFF);
       box-shadow: 0px 36px 105px 0px rgba(43, 56, 76, 0.10);
       padding: 70px;
       padding-bottom: 67px;
       position: relative;
       z-index: 1;
   }


   /*Section 2*/
   .about_us_section::after {
       content: "";
       position: absolute;
       width: 300px;
       height: 100px;
       border-radius: 50%;
       background: #ffdfa8;
       filter: blur(37px);
       bottom: 23px;
       left: -58px;
       width: 208px;
       height: 132px;
       transform: rotate(-30deg);
       filter: blur(87px);
   }

   .image__container {
       background-color: #f0f1f3;
       display: flex;
       justify-content: center;
       align-items: end;
       border-radius: 4px;
       position: relative;
       width: 100%;
   }

   .image__container>img {
    width: 100%;
    border-radius: 4px;
   }

   /* ============================Section2======================================= */
   .about_us_section .content_text {
       margin-bottom: 33px;
       line-height: 27px;
   }

   .about_us_section .content_text:nth-child(2) {
       margin-bottom: 22px;
   }

   .my_project_btn {
       width: 148px;
       height: 37px;
       padding: 10px 27px;
       display: inline-flex;
       justify-content: center;
       align-items: center;
   }

   .download_cv_btn {
       background-color: #fff;
       color: var(--primary-color);
       width: 148px;
       height: 37px;
       padding: 0px;
       display: inline-flex;
       justify-content: center;
       align-items: center;
       margin-left: 15px;
       text-decoration: none;
   }

   .download_cv_btn>svg {
       height: 17px;
       margin-right: 3px;
       fill: var(--primary-color);
   }

   .button.download_cv_btn:hover,
   .button.download_cv_btn:hover svg {
       color: #fff;
       fill: #fff;
   }

   .about_us_section .left_col {
       width: 40%;
       padding-right: 30px;
       display: flex;
       justify-content: center;
       align-items: center;
   }

   .about_us_section .right_col {
       width: 60%;
       display: flex;
       align-items: center;
       padding-left: 50px;
   }

   .social_media_container {
       display: flex;
       position: absolute;
       background-color: #fff;
       padding: 9px 9px;
       box-shadow: 0 0 50px rgba(0, 0, 0, .12);
       border-radius: 4px;
       bottom: -26px;
       left: 50%;
       transform: translateX(-50%);
   }

   .icon {
       display: flex;
       border-radius: 3px;
       cursor: pointer;
       margin: 0px 2px;
       height: 38px;
       width: 38px;
       justify-content: center;
       align-items: center;
   }

   .icon:last-child {
       margin-right: 0px;
   }

   .icon:first-child {
       margin-left: 0px;
   }

   .icon>svg {
       fill: var(--primary-color);
       cursor: pointer;
   }

   .icon:hover {
       background-color: var(--primary-color);
   }

   .icon:hover svg {
       fill: #fff;
   }


   /* Section 3 */
   .work_process_section {
       min-height: 100vh;
       width: 100%;
       padding-top: 72px;
       position: relative;
       top: -51px;
       background: var(--Gray-50, #F0F1F3);
       display: flex;
       align-items: center;
   }
   .work_process_section .container
   {
        padding: 56px 0px;
        padding-bottom: 70px;
   }

   .div3 {
       width: 354px;
       height: 354px;
       background-color: #4978c652;
       position: absolute;
       top: 88px;
       left: -107px;
       border-radius: 50%;
       filter: blur(118px);
   }


   .work_process .right_col {
       display: flex;
       justify-content: end;
       padding-left: 20px;
   }

   .work_process .left_col {
       display: flex;
       align-items: center;
       justify-content: left;
       padding-right: 20px;
   }

   .work_process_section .content_text {
       color: #697484;
       margin-bottom: 5px;
   }

   .work_process_section .content_text:nth-child(1) {
       margin-bottom: 0px;
   }

   .work_tiles_container {
       width: 500px;
   }

   .work_internal_row .left_col {
       background-color: #fff;
       margin-right: 10px;
       border-radius: 12px;
       box-shadow: 32px 32px 124px 0px rgba(43, 56, 76, 0.10);
       display: flex;
       flex-direction: column;
       justify-content: start;
       align-items: start;
       align-items: start !important;
       padding: 25px;
       margin-bottom: 20px;
       transition: all 0.5s;
       cursor: pointer;
   }
   .portpolio_content_text
   {
        margin-bottom: 35px;
   }

   .work_internal_row .left_col:hover {
       transform: translateY(-15px);
       box-shadow: 0px 0px 23px #dbdbdb;
   }

   .work_internal_row .left_col:hover .icon_container,
   .work_internal_row .left_col:hover .icon_container>svg {
       background-color: var(--primary-color);
       fill: #fff;
   }

   .work_internal_row .right_col:hover .icon_container,
   .work_internal_row .right_col:hover .icon_container>svg {
       background-color: var(--primary-color);
       fill: #fff;
   }

   .work_internal_row .right_col:hover {
       transform: translateY(-15px);
       box-shadow: 0px 0px 23px #dbdbdb;
   }

   .work_internal_row .right_col {
       background-color: #fff;
       margin-left: 10px;
       margin-bottom: 20px;
       border-radius: 12px;
       position: relative;
       top: 20px;
       border-radius: 12px;
       box-shadow: 32px 32px 124px 0px rgba(43, 56, 76, 0.10);
       display: flex;
       flex-direction: column;
       justify-content: start;
       align-items: start;
       padding: 25px;
       transition: all 0.5s;
       cursor: pointer;
   }

   .square {
       height: 100px;
       background-color: #fff;
       width: 100px;

   }

   .icon_container {
       border-radius: 6px;
       background: rgba(237, 216, 255, 0.50);
       padding: 10px;
       margin-bottom: 23px;
   }

   .icon_container>svg {
       height: 32px;
       width: 32px;
       fill: var(--primary-color);
       transition: all 0.5s;
   }

   .work_process_heading {
       font-size: 19px;
       font-weight: 600;
       margin-bottom: 10px;
       color: #132238;
   }

   p.content_text.work_process_text {
       font-size: 15px;
       line-height: 22px;
       color: #556070;
       margin-bottom: 0px;
   }

   .portfolio_section {
       min-height: 100vh;
       padding-top: 13px;
       padding-right: 20px;
   }

   .work_progress_row .left_col
   {
        display: flex;
        align-items: center;
        padding-right: 40px;
   }
   .work_internal_row .left_col
   {
        justify-content: left;
   }

   .portfolio_section .subject {
       color: #132238;
       font-size: 37px;
       font-weight: 600;
       line-height: 45px;
       margin-bottom: 15px;
       text-align: center;
   }

   .portpolio_heading_text
   {
    text-align: center;
   }
   .portfolio_section .description {
       color: #556070;
       margin-bottom: 33px;
       font-size: 17px;
       line-height: 27px;
       text-align: center;
       margin-bottom: 0px;
   }

   .portpolio .description2 {
       margin-bottom: 48px;
   }

   .portpolio .row {
       margin-bottom: 15px;
   }

   .portpolio .left_col {
       width: 33.33%;
       background-color: red;
       margin-right: 15px;
       border-radius: 5px;
       border-radius: 8px;
       border: 1px solid var(--Gray-100, #E6E8EB);
       background: var(--Gray-White, #FFF);
       box-shadow: 0px 12px 64px 0px rgba(28, 25, 25, 0.12);
       overflow: hidden;
   }

   .portpolio .middle_col {
       width: 33.33%;
       border-radius: 5px;
       border-radius: 8px;
       border: 1px solid var(--Gray-100, #E6E8EB);
       background: var(--Gray-White, #FFF);
       box-shadow: 0px 12px 64px 0px rgba(28, 25, 25, 0.12);
       overflow: hidden;
   }

   .portpolio .right_col {
       width: 33.33%;
       margin-left: 15px;
       border-radius: 5px;
       border-radius: 8px;
       border: 1px solid var(--Gray-100, #E6E8EB);
       background: var(--Gray-White, #FFF);
       box-shadow: 0px 12px 64px 0px rgba(28, 25, 25, 0.12);
       overflow: hidden;
   }

   .portpolio_image {
       width: 100%;
   }

   .portpolio_details {
       padding: 23px 25px;
   }

   .project_type {
       color: #87909d;

       font-size: 12px;
       margin-bottom: 4px;
   }

   .project_title {
       color: var(--Gray-900, #132238);
       font-family: "Work Sans";
       font-size: 18px;
       font-style: normal;
       font-weight: 600;
       line-height: 24px;
       margin-bottom: 10px;
   }

   .project_description {
       color: var(--Gray-600, #556070);
       font-family: "Work Sans";
       font-size: 14px;
       font-style: normal;
       font-weight: 400;
       line-height: 20px;
       margin-bottom: 15px;
       display: -webkit-box;
       -webkit-line-clamp: 3;
       -webkit-box-orient: vertical;
       overflow: hidden;
   }

   .portpolio_button {
       background-color: #fff;
       color: var(--primary-color);
       width: 145px;
       height: 34px;
       padding: 0px;
       display: inline-flex;
       justify-content: center;
       align-items: center;
   }

   .portpolio_button .fa-arrow-right {
       color: var(--primary-color);
       margin-left: 10px;
       transition: all 0.5s;
       position: relative;
       left: 0px;
   }

   .portpolio_button:hover i {
       color: #fff;
         left: 3px;
   }

   .portpolio_button:hover {
       color: #fff;
   }

   .more_project_btn {
       padding: 10px 27px;
       display: block;
       margin: 37px auto;
       width: 143px;
       margin-bottom: 55px !important;
   }

   .project_idea_section {
       background-color: #132238;
       padding: 65px 0px;
   }

   .project_idea_section .subject {
       color: #ffffff;
       font-size: 29px;
       font-weight: 600;
       margin-bottom: 9px;
       text-align: center;
   }

   .work_together_btn_container {
       display: flex;
       justify-content: center;
   }

   .project_idea_section .project_description {
       color: #ccd8e9;
       font-family: "Work Sans";
       font-size: 14px;
       font-style: normal;
       font-weight: 400;
       line-height: 27px;
       margin-bottom: 25px;
       text-align: center;
       margin-top: 20px;
   }

   .work_together_btn {
       height: 34px;
       padding: 0px;
       display: inline-flex;
       justify-content: center;
       align-items: center;
       width: 190px;
   }

   .work_together_btn>svg {
       fill: #fff;
       transition: all 0.5s;
       position: relative;
       left: 0px;
   }
   .work_together_btn:hover svg 
   {
    left: 3px;
   }

   .workprocess_text {
       margin-bottom: 16px !important;
   }

   .project_idea_section .subject:nth-child(2) {
       margin-bottom: 25px;
   }

   .happy_clients_section {
       padding: 62px 60px;
       padding-bottom: 72px;

   }

   .happy_clients_section .subject {
       color: #132238;
       font-size: 37px;
       font-weight: 600;
       line-height: 45px;
       margin-bottom: 15px;
       text-align: center;
   }

   .happy_clients_section .project_description {
       color: #556070;
       margin-bottom: 33px;
       font-size: 17px;
       line-height: 27px;
       text-align: center;
       margin-bottom: 0px;
   }

   .happy_client_slider {
       width: 100%;
       width: 100%;
       margin-top: 42px;
   }

   .internal_slider {
       display: flex;
   }

   footer {
       background-color: #2B384C;
   }

   .slider_div {
       width: 300px;
       background-color: #bb6161;
       margin: 0px 5px;
       border-radius: 5px;
       overflow: hidden;
       display: flex;
       align-items: center;
       justify-content: center;
       background-color: #F9FBFC;
       border: 1px solid #e7f4fa;
       box-sizing: border-box;
       height: 97px;
   }

   .slider_div>img {
       max-width: 100%;
   }

   .intellirose_logo {
       width: 116px;
   }

   .irs_logo {
       width: 164px;
   }

   .logicsxpert_logo {
       width: 161px;
   }

   .logicscrm_logo {
       width: 137px;
   }

   .squendo_logo {
       width: 131px;
   }

   button.button.form_submit_btn {
       display: flex;
       margin-top: 25px;
   }

   .contact_us_section .left_col {
       padding-right: 30px;
   }

   .contact_us_section .right_col {
       padding-left: 30px;
   }

   p.validation_message {
       color: red;
       font-size: 14px;
       margin-bottom: 4px;
       opacity: 0;
   }
   .about_buttons_container
   {
         display: flex;
   }

   @keyframes scroll {
       0% {
           transform: rotateZ(6deg);
       }

       50% {
           transform: rotateZ(11deg);
       }

       100% {
           transform: rotateZ(6deg);
       }
   }

   @keyframes LogoLoop {
       from {
           transform: translateX(0);
       }

       to {
           transform: translateX(100%);
       }

   }

   .spinner {
       width: 14px;
       height: 14px;
       margin-left: 8px;
       border: 1.5px solid #ffffff;
       border-top: 1.5px solid #9e46ff;
       border-radius: 50%;
       animation: spin 1s linear infinite;
       display: none;
   }

   @keyframes spin {
       from {
           transform: rotate(0deg);
       }

       to {
           transform: rotate(360deg);
       }
   }


   /* Contact Us */
   .address_row {
       display: flex;
       margin: 25px 0px;
   }

   .contact_us_heading {
       color: #132238;
       font-size: 37px;
       font-weight: 600;
       line-height: 45px;
       margin-bottom: 20px;
   }

   .contact_us_subheading {
       color: #556070;
       margin-bottom: 33px;
       font-size: 15px;
       line-height: 23px;
       margin-bottom: 0px;
   }

   .address_right_col {
       padding-left: 7px;
       display: flex;
       flex-direction: column;
       justify-content: space-between;
       padding: 2px 7px;
   }

   .contact_us_form {
       margin-top: 24px;
   }

   .address_text {
       font-size: 13px;
   }

   .address_bold_text {
       font-size: 13px;
       font-weight: 600;
   }

   .textbox_container {
       position: relative;
       margin-bottom: 2px;
   }

   .address_icon_container {
       background-color: rgba(237, 216, 255, 0.50);
       padding: 10px;
       display: flex;
       justify-content: center;
       align-items: center;
       border-radius: 4px;
   }

   .address_icon_container svg {
       width: 18px;
       height: 18px;
   }

   .contactus_textbox {
       width: 100%;
       font-size: 15px;
       height: 41px;
       border: none;
       outline: none;
       border: 1px solid #c29aed;
       border-radius: 4px;
       padding: 0px 6px;
   }

   .contactus_textbox::placeholder {
       color: #fff;
   }
   .contactus_textbox:not(:placeholder-shown).contactus_textbox:not(:focus) ~ .placeholder_text
   {
         top: 0px;
         color: var(--primary-color);
         background-color: #fff;
         padding: 0px 2px;
         font-size: 12px;
         left: 7px;
   } 
   .contactus_textbox:focus ~ .placeholder_text {
       top: 0px;
       color: var(--primary-color);
       background-color: #fff;
       padding: 0px 2px;
       font-size: 12px;
       left: 7px;
   }

   .placeholder_text {
       font-size: 14px;
       color: #9e46ff;
       position: absolute;
       top: 49%;
       transform: translateY(-50%);
       left: 10px;
       pointer-events: none;
       transition: 0.5s;
   }

   .contact_us_section {
       display: flex;
       justify-content: center;
       position: relative;
       top: 40px;
       z-index: 99;
       padding-top: 30px;
   }

   .contact_us_div {
       width: 60%;
       padding: 45px 50px;
       padding-bottom: 18px;
       border-radius: 11px;
       box-shadow: 0px 59px 124px 0px rgba(0, 0, 0, 0.12);
       background-color: #fff;
   }

   .footer_logo {
       width: 150px;
   }
.call_icon
{
    color: #a53dff;
}
.address_icon
{
    color: #a53dff;
}
   .footer_section {
       position: relative;
       background-color: #2B384C;
       padding-top: 100px;
       padding-bottom: 25px;
   }

   .logo_row {
       display: flex;
   }

   .footer_link {
       display: flex;
   }

   .footer_link>li>a {
       color: #fff;
       text-decoration: none;
   }

   .footer_container {
       width: 60%;
   }

   .logo_row .middle_col {
       display: flex;
       align-items: center;
   }

   .logo_row .right_col {
       display: flex;
       justify-content: end;
       align-items: center;
   }

   .copyright_text {
       color: #fff;
   }

   .form_submit_btn>svg {
       fill: #fff;
       width: 15px;
       height: 15px;
       margin-left: 6px;
   }

   #portfolio {
       width: 100px;
       height: 60px;
       position: absolute;
       bottom: 0px;
   }

   .hamburger {
    display: none
    ;
        flex-direction: column;
        justify-content: space-around;
        width: 25px;
        height: 26px;
        cursor: pointer;
        position: absolute;
        top: 10px;
        right: 10px;
  }

  .hamburger div {
    width: 100%;
    height: 2px;
    background-color: #8120eb;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  /* Active hamburger animation */
  .hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translateY(13px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
  }

  .home_row
  {
    height: 100%;
  }

   /* Media Quaries */
   @media only screen and (max-width: 1600px) {
    .hero_image2
    {
        width: 100%;
    }
   }

   @media only screen and (max-width: 1300px) {
    .container {
        width: 85%;
    }
   }

   @media only screen and (max-width: 1100px) {
    .experience_card {
        padding: 14px 5px;
    }

    .experience_card> div > .subject {
        font-size: 16px;
    }

    .experience_card> div > .description {
        font-size: 13px;
    }
    .about_us_section .left_col {
        padding-right: 0px;
    }
   }

   @media only screen and (max-width: 1025px) {
    
    nav ul {
        background-color: #ffffff;
        height: 100%;
        width: 98%;
        left: 48%;
        /* right: 2%; */
        transform: translateX(-50%);
        flex-direction: column;
        padding-top: 100px;
        height: 365px;
        border-bottom-left-radius: 37px;
        border-bottom-right-radius: 37px;
        /* border-radius: 37px; */
    }
    nav{
        width: 100%;
        position: fixed;
        left: 0;
        top: 4px;
        height: 100vh;
        background-color: #46464754;
        display: flex;
        justify-content: end;
        align-items: baseline;
        transition: all 0.6s;
        top: -100vh;
    }

    nav ul li {
        padding: 12px 46px;
    }
    #navbar.active
    {
        top: 0;
    }
    .hamburger
    {
        display: flex;
        top: 24px;
        right: 25px;
    }

    .contact_button {
        margin-top: 70px;
        width: 80%;
        margin: 0 auto;
        margin-top: 17px;
        text-align: center;
    }
    .move
    {
        display: none;
    }
    .hero_section {
        height: auto;
    }
    .work_process_section {
        height: auto;
        padding-top: 102px;
        padding-bottom: 60px;
    }
    .work_progress_row {
        flex-direction: column;
    }
    .work_progress_row .left_col {
        width: 100%;
        padding-bottom: 25px;
    }
    .work_progress_row .right_col {
        width: 100%;
        display: flex
;
        justify-content: center;
    }
    .work_process_section .container {
        padding: 0px 0px;
    }
    .work_process_section {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 90px;
    }
  }

  @media only screen and (max-width: 950px) {
    .icon {
        margin: 0px 5px;
        height: 49px;
        width: 48px;
    }
    .icon>svg {
        width: 28px;
        height: 28px;
    }
    .logo {
        width: 125px;
    }
    .hamburger {
        top: 20px;
    }
    .header_container a
    {
        display: flex;
        align-items: center;
        font-size: 18px;
        justify-content: center;
    }
    .hero_section {
        height: auto;
    }
    .home_row {
        flex-direction: column;
    }
    .hero_left_col {
        width: 100%;
        padding-top: 70px;
    }
    .hero_right_col {
        width: 100%;
        justify-content: center;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .work_process_section .container {
        padding: 0px 0px;
    }


    .experience_card {
        padding: 20px 5px;
    }

    .experience_card> div > .subject {
        font-size: 20px;
    }
    .experience_card> div > .description {
        font-size: 15px;
    }
    .experience_card:nth-last-child(2) {
        margin-left: 10px;
    }
    .experience_card:last-child {
        margin-left: 10px;
    }

    /* Section 2 */
    .section2_row
    {
        flex-direction: column;
    }
    .about_us_section .container
    {
        padding: 63px;
    }
    .about_us_section .left_col
    {
        width: 100%;
        padding: 0px;
    }
    .about_us_section .right_col
    {
        width: 100%;
        padding: 0px;
        padding-top: 70px;
    }
    .about_buttons_container
    {
        display: flex
        ;
            justify-content: center;
    }
    .work_process_section {
        height: auto;
        padding-top: 102px;
        padding-bottom: 60px;
    }

    /* Work Process */
    .work_progress_row
    {
        flex-direction: column;
    }

    .work_progress_row .left_col
    {
        width: 100%;
        padding-bottom: 25px;
    }
    .work_progress_row .right_col
    {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .portpolio .row
    {
        flex-direction: column;
        margin-bottom: 0px;
    }
    .portpolio .left_col,.portpolio .middle_col,.portpolio .right_col
    {
        width: 80%;
        margin: 0px;
        margin: 15px auto;
    }

    /* .contact_us_div_row
    {
        flex-direction: column;
    } */
    .contact_us_section .left_col {
        padding-right: 10px;
        /* width: 100%; */
    }
    .contact_us_section .right_col {
        padding-left: 10px;
        /* width: 100%; */
    }
    .contact_us_div
    {
        padding: 30px;
    }
    .address_row {
        margin: 16px 0px;
    }
    .more_project_btn {
        margin: 18px auto;
        margin-bottom: 40px !important;
    }
    .portfolio_section {
        padding-top: 0px;
    }
    .contact_us_div {
        width: 85%;
    }
    button.button.form_submit_btn {
        margin-top: 5px;
    }

    .contact_us_heading {
        margin-bottom: 8px;
    }
    .footer_row
    {
        flex-direction: column;
    }

    .footer_row .left_col
    {
        width: 100%;
        display: none;
    }
    .footer_row .middle_col
    {
        width: 100%;
        justify-content: center;
    }
    .footer_row .right_col
    {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    .footer_link>li>a,
    .copyright_text {
        font-size: 13px;
    }

    .contactus_textbox {
        height: 33px;
    }
  }

  @media only screen and (max-width: 650px) {
    .about_us_section {
        padding-top: 45px;
    }
    .hero_heading_text {
        font-size: 40px;
    }
    .content_text {
        font-size: 15px;
        line-height: 26px;
    }
    .experience_card> div > .subject {
        font-size: 17px;
    }
    .experience_card> div > .description {
        font-size: 14px;
    }

    .about_us_section .right_col {
        padding-top: 65px;
    }
    .heading_text {
        font-size: 30px;
        line-height: 38px;
    }
    .about_us_section .content_text:nth-child(2) {
        margin-bottom: 15px;
    }
    .about_us_section .content_text {
        margin-bottom: 20px;
    }
    .my_project_btn {
        height: 32px;
    }
    .download_cv_btn,.portpolio_button {
        height: 32px;
    }
    .more_project_btn
    {
        height: 32px;
        display: flex;
        align-items: center;
    }
    .work_together_btn
    {
        height: 32px;
    }
    .work_internal_row
    {
        flex-direction: column;
    }
    .work_internal_row .left_col
    {
        width: 80%;
        margin: 0 auto;
    }
    .work_internal_row .right_col
    {
        width: 80%;
        margin: 0 auto;
    }
    .work_internal_row:nth-child(2)
    {
        margin-top: 41px;
    }
    .heading_text {
        margin-bottom: 15px;
    }
  }

  @media only screen and (max-width: 500px) {
    /* .icon {
        height: 30px;
        width: 30px;
    } */
    .logo {
        width: 100px;
    }
    .hero_left_col {
        padding-top: 26px;
    }
    .hamburger {
        top: 14px;
    }
    .about_us_section .right_col {
        padding-top: 55px;
    }

    .about_buttons_container {
        flex-direction: column;
        align-items: center;
    }
    .download_cv_btn
    {
        margin: 0px;
        margin-top: 15px;
    }

    .work_process_section {
        padding-top: 87px;
    }
    .work_tiles_container {
        width: auto;
    }

    .portpolio_details {
        padding: 19px 19px;
    }
    .portpolio .left_col, 
    .portpolio .middle_col, 
    .portpolio .right_col {
        width: 96%;
    }

    .experience_row {
        margin-top: 50px;
    }

    .experience_card {
        padding: 10px 1px;
    }

    .experience_card> div > .description {
        font-size: 12px;
    }

    .experience_card> div > .subject {
        font-size: 14px;
    }

    /* .icon>svg {
        height: 15px;
    }

    .icon {
        height: 27px;
        width: 27px;
    } */

    .social_media_container {
        padding: 6px 6px;
    }

    .about_us_section .content_text {
       line-height: 24px;
    }
    .about_us_section .container {
        padding: 30px;
    }
    .contact_us_div_row
    {
        flex-direction: column;
    }
    .contact_us_section .left_col
    {
        width: 100%;
    }
    .contact_us_section .right_col
    {
        width: 100%;
        padding-top: 20px;
        padding-left: 0px;
    }
    .my_project_btn,
    .download_cv_btn {
        width: 100%;
    }
    .footer_section {
        padding-top: 75px;
    }
    .div1 {
    background: rgb(158 70 255 / 40%);
    filter: blur(142px);
    }
    .experience_card {
        background-color: rgb(255 255 255 / 50%);
        border: none;
        box-shadow: 0px 36px 105px 0px rgba(43, 56, 76, 0.10);
    }
    .icon {
        height: 27px;
        width: 27px;
    }
    .icon>svg {
        height: 15px;
    }

  }




