*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root {
    --primary-color: rgb(53, 107, 180);
   
  }
  .pricing_container {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  .pricing_heading {
    padding: 40px 0px;
    text-align: center;
  }
  .pricing_container_row {
    display: flex;
    flex-direction: row;
  }
  .pricing_container_card {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-left: 1px solid lightgrey;
    padding: 0px 30px;
    width: 24%;
  }
  .pricing_container_card button {
    background-color: transparent;
    border: 2px solid #0060ff;
    color: #0060ff;
    padding: 8px 40px;
    border-radius: 5px;
    font-weight: 700;
  }
  .pricing_container_card button:hover {
    border: 2px solid rgb(250, 47, 47);
    color: rgb(250, 47, 47);
    transition: 0.5s ease;
  }
  .pricing_container_card h1 {
    font-size: 28px;
    color: grey;
    font-weight: 400;
  }
  .pricing_container_card span {
    font-size: 38px;
    color: black;
    font-weight: 500;
  }
  .pricing_container_card p {
    color: grey;
  }
  .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
  
    margin: 0px 10px;
    margin-top: -15px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 10px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #2196f3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196f3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  
  .slider.round {
    border-radius: 20px;
  }
  
  .month_year_toggle {
    all: unset;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .month_year_toggle p {
    font-size: 18px;
  }
  .thead_pricing {
    background-color: rgb(243, 243, 243);
    width: 100%;
    padding: 10px 20px;
    margin: 30px 0px 0px;
  }
  .pricing_table {
    width: 100%;
  }
  .pricing_table th {
    padding: 10px 0px;
    text-align: left;
    padding-left: 5%;
    font-weight: 400;
    font-size: 19px;
  }
  .pricing_table td {
    text-align: center;
  }
  table {
    border-collapse: collapse;
    width: 100%;
  }
  
  table,
  th,
  td {
    border: 1px solid rgb(217, 217, 217);
    padding: 0px 36px;
  }
  tr:hover {
    background-color: rgb(253, 245, 254);
  }
  table,
  th,
  td {
    border-right: none;
  }
  .fa-check {
    color: #2196f3;
    font-weight: 800;
  }
  table,
  th {
    border-left: none;
  }
  @media only screen and (max-width: 600px) {
    .pricing_container_row {
      flex-direction: column;
    }
    .pricing_container_card {
      border-left: 1px solid lightgrey;
      border-right: 1px solid lightgrey;
  
      width: 100%;
    }
    .month_year_toggle {
      width: 100%;
    }
  }
  
  .pricing_section h2 {
    margin-top: 90px;
    font-size: 40px;
  }
  .pricing_section p {
    font-size: 20px;
    color: #5c5f6e;
  }
  .pricing_card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    width: 100%;
    padding: 40px 50px;
    border-radius: 25px;
    background-color: #fff;
    margin-bottom: 30px;
    transition: all 0.4s ease-in-out;
    height: 100%;
  }
  .pricing_card:hover{
    scale: 1.04;
    cursor: pointer;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .pricing_card:hover .pricing_card_get_started_btn{
    background-color:var(--primary-color) ;
    color: #fff;
  }
  .cta_container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cta {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #fff;
    max-width: 950px;
    border-radius: 25px;
    padding: 40px 50px 40px 80px;
    margin: 70px 0px;
  }
  .cta h1 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
  }
  .cta p {
    color: #838696;
    font-size: 18px;
    font-weight: 400;
  }
  .active {
    background-color: #fff;
   
  }
  .gb_btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: #ececfe;
    border-radius: 10px;
    padding: 5px 25px;
    font-weight: 600;
  }
  .justify_end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .month_span {
    font-size: 20px;
  }
  .pricing_card_get_started_btn {
    border: none;
    color: var(--primary-color);
    background-color: #ececfe;
    border-radius: 13px;
    padding: 13px 25px;
    font-weight: 700;
    font-size: 18px;
    width: 100%;
    margin: 20px 0px;
    transition: all 0.5s ease-in-out;

  }
  .pricing_card_get_started_btn:hover {
    border: none;
    color: #ececfe;
    background-color: var(--primary-color);
    border-radius: 13px;
    padding: 13px 25px;
    font-weight: 700;
    font-size: 18px;
    width: 100%;
    margin: 20px 0px;
  }
  .active .pricing_card_get_started_btn {
    border: none;
    color: #ececfe;
    background-color: var(--primary-color);
    border-radius: 13px;
    padding: 13px 25px;
    font-weight: 700;
    font-size: 18px;
    width: 100%;
    margin: 20px 0px;
  }
  .get_account_btn {
    border: none;
    color: #ececfe;
    background-color: var(--primary-color);
    border-radius: 13px;
    padding: 13px 25px;
    font-weight: 700;
    font-size: 18px;
    margin: 20px 40px 20px 0px;
  }
  
  .include {
    margin-bottom: 30px;
  }
  .include img {
    margin-right: 15px;
    height: 30px;
  }
  .include h5 {
    font-weight: 700;
  }
  .storage_btn {
    border: none;
    color: #0e0f10;
    border: 2px solid #0e0f10;
    border-radius: 13px;
    padding: 13px 25px;
    font-weight: 700;
    font-size: 18px;
    width: 100%;
    margin: 20px 0px;
  }
  .center_sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 0px;
  }
  .divider {
    margin: 20px 0px;
    border: 1px dashed #e2e4e9;
  }
  .pricing_bullet {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #ececfe;
  }
  .card_info img {
    margin-right: 15px;
  }
  .card_info span {
    color: #5c5f6e;
    margin-bottom: -5px;
    font-weight: 500;
  }
  .card_info {
    margin-bottom: 10px;
  }
  .btn_grid {
    display: flex;
    flex-direction: row;
    margin: 30px 0px;
  }
  
.manufacture_section {
    background-color: #e0f7fa;
    text-align: center;
    padding: 100px 10px 60px;
  }
  .manufacture_left_col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    height: 100%;
  }
  .text-color-theme{
    color: rgb(53, 107, 180);
  }
  .two-section{
    margin: 130px 10px;
  }
  .arbeittech_card{
    background-color: #E0F7FA;
    border-radius: 25px;
    padding: 50px 15px 0px;
    text-align: center;
  }
  .arbeittech_card h3{
    font-weight: 700;
    font-size: 35px;
  }
  .cyber_img{
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}
  .arbeittech_card p{
    font-size: 17px;
    color: #838696;
  }
  .manufacture_left_col h1 {
    font-size: 50px;
    font-weight: 700;
  }
  .header_mobile{
    position: absolute;
    width: 20% !important;
    bottom: -333px;
    left: 150px;
  }
  
  .manufacture_left_col p {
    font-size: 18px;
    font-weight: 500;
    color: #5c5f6e;
    line-height: 30px;
    margin: 5px 0px;
  }
  .manufacture_right_col img {
    width: 70%;
  }
  .manufacture_hero_btn {
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    padding: 10px 25px;
    margin-right: 30px;
    transition: all 0.3s ease;
  }
  .manufacture_hero_learn_btn {
    border: 2px solid #0e0f10;
    background-color: transparent;
    color: #0e0f10;
    border-radius: 10px;
    padding: 10px 25px;
    font-weight: 600;
  }
  .neat_section {
    padding: 100px 10px;
    text-align: center;
  }
  .neat_card {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 25px;
    box-shadow: rgba(57, 57, 57, 0.24) 0px 3px 8px;
    text-align: left;
    margin-bottom: 25px;
    transition: all 0.4s ease-in-out;
    color: var(--primary-color);
  }
  .neat_card a{
    color:var(--primary-color) ;
    text-decoration: none;
    font-weight: 700;
   
  }
  .neat_card:hover {
    scale: 1.035;
    cursor: pointer;
  }
   .manufacture_hero_btn:hover{
    scale: 1.05;
  }
  .card_circle {
    background-color: rgb(128, 181, 250);
    height: 65px;
    width: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
  }
  .card_circle img {
    width: 100%;
  }
  .neat_card h4 {
    font-weight: 600;
    font-size: 24px;
    margin: 15px 0px;
  }
  .neat_card p {
    font-weight: 400;
    font-size: 16px !important;
    color: #838696;
    margin-bottom: 0px;
  }
  .neat_section h2 {
    margin: 30px 0px;
    font-size: 48px;
    font-weight: 600;
    color: #0e0f10;
  }
  .neat_section p {
    font-size: 18px;
    font-weight: 600;
    color: #5c5f6e;
  }
  .inter_department_section {
    padding: 0px 10px 50px;
  }
  .inter_department_section h1 {
    font-size: 45px;
    font-weight: 600;
    color: #0e0f10;
    margin: 10px 0px;
  }
  .inter_department_section p {
    font-size: 18px;
    font-weight: 400;
    color: #5c5f6e;
  }
  .inter_card_section {
    background-color: #e0f7fa;
    padding: 45px 60px;
    border-radius: 25px;
    margin-bottom: 30px;
  }
  .inter_card_section_2 {
    background-color: #ececfe;
    padding: 85px 10px;
    margin-bottom: 30px;
  }
  .inter_card_section_3 {
    background-color: #fbe9e7;
    padding: 80px 60px;
    border-radius: 25px;
    margin-bottom: 30px;
  }
  .inter_card_section_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    height: 100%;
    padding-right: 50px;
  }
  .inter_card_section_left h3 {
    color: #0b0d0e;
    font-size: 48px;
    font-weight: 600;
  }
  .inter_card_section_left p {
    color: #5c5f6e;
    font-size: 18px;
    font-weight: 400;
  }
  .inter_card_section_right img {
    width: 100%;
  }
  .gap {
    margin: 80px 0px;
  }
  .control_team {
    padding: 70px 10px;
  }
  .control_team_left h1 {
    font-size: 45px;
    font-weight: 600;
  }
  .control_team_left p {
    font-size: 16px;
    font-weight: 400;
    color: #838696;
    margin: 20px 0px;
  }
  .control_team_left img {
    width: 100%;
    margin: 40px 0px;
  }
  .control_team_card {
    background-color: #fff;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0px 4px 24px 0px #00000005;
    display: flex;
    flex-direction: row;
    margin: 10px 30px 30px;
  }
  .control_team_card_right {
    padding: 10px 25px 0px;
  }
  .sign_up_section {
    background-color: #e0f7fa;
    padding: 50px 10px 0px;
  }
  .sign_up_section_right img {
    width: 100%;
  }
  .sign_up_section_left {
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    height: 100%;
  }
  .sign_up_section_left h6 {
    color: var(--primary-color);
    font-size: 18px;
  }
  .sign_up_section_left h3 {
    color: #0b0d0e;
    font-size: 32px;
    font-weight: 600;
  }
  .sign_up_section_left p {
    color: #838696;
    font-size: 16px;
    font-weight: 500;
  }
  .input_container {
    background-color: #fff;
    border-radius: 15px;
    padding: 10px;
    max-width: 400px;
    margin: 30px 0px;
  }
  .nexttack_signup_btn {
    border: none;
    border-radius: 10px;
    padding: 10px 30px;
    color: #fff;
    background-color: var(--primary-color);
    float: right;
  }
  .input_container input {
    border: none;
    height: 100%;
    width: 60%;
  }
  .input_container input:focus {
    outline: none;
  }
  
  @media (max-width: 750px) {
    .manufacture_right_col img {
      margin: 40px 0px;
    }
    .manufacture_left_col h1 {
      font-size: 35px;
      font-weight: 600;
    }
    .neat_section {
      padding: 40px 10px;
    }
    .neat_section h2 {
      margin: 30px 0px;
      font-size: 30px;
    }
    .inter_department_section h1 {
      font-size: 35px;
    }
    .inter_card_section {
      padding: 35px 30px;
    }
    .inter_card_section_2 {
      padding: 35px 30px;
    }
    .inter_card_section_3 {
      padding: 35px 30px;
    }
    .inter_card_section_left h3 {
      font-size: 35px;
    }
    .inter_card_section_right img {
      margin: 30px 0px;
    }
    .control_team_left h1 {
      font-size: 35px;
      font-weight: 600;
    }
    .control_team {
      padding: 0px 10px 40px;
    }
    .control_team_card {
      padding: 20px;
      display: flex;
      flex-direction: column;
      margin: 10px 10px 30px;
    }
    .control_team_card_right {
      padding: 20px 10px 0px;
    }
  }
  .it_sec_heading {
    font-size: 50px;
    font-weight: 700;
    margin: 50px 0px 70px;
  }
  .it_sec_heading span {
    color: var(--primary-color);
  }
  .control_team_card_new {
    background-color: var(--primary-color);
    border-radius: 25px;
    color: #fff;
    padding: 30px;
    box-shadow: 0px 4px 24px 0px #00000005;
    display: flex;
    flex-direction: row;
    margin: 10px 30px 30px;
  }
  .control_team_card_right_new {
    padding: 10px 25px 0px;
  }
  .control_team_right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
  }
  @media only screen and (max-width: 600px) {
    .control_team_card_new {
      padding: 20px;
      display: flex;
      flex-direction: column;
      margin: 10px 10px 30px;
    }
    .control_team_card_right_new {
      padding: 20px 10px 0px;
    }
  }