/*--------------------------------------------------------------
# Base
============================================================= */
:root {
  --defult_transition: all 0.5s;
  --Primery_color: #0055ff;
  --secondary_color: #00194c;
  --paragraph_color: #333;
  --defult-font: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: var(--defult-font);
  font-weight: normal;
  background: #fff;
  scroll-behavior: smooth;
}
html {
  box-sizing: border-box;
  font-size: 10px;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

img {
  height: auto;
  max-width: 100%;
}
ul {
  padding-left: 0;
}
ul,
li {
  list-style-type: none;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
/*========== Globel Classes ================== */
.ta_main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
}
.ta_container {
  max-width: 130rem;
  width: 100%;
  margin: 0 auto;
}

h3 {
  font-size: 2.6rem;
  color: var(--secondary_color);
  font-weight: bold;
  margin-bottom: 1.5rem;
}
h4 {
  font-size: 1.8rem;
 font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}
p {
  font-size: 1.7rem;
  color: var(--paragraph_color);
  margin-bottom: 1rem;
  line-height: 2.8rem;
}
a {
  color: var(--Primery_color);
  transition: var(--defult_transition);
}
a:hover {
  opacity: 0.7;
}
button,
.ta_btn_defult {
  background: var(--Primery_color);
  color: #fff;
  min-width: 13rem;
  height:auto;
  text-align: center;
  font-size: 2rem;
  border: 0;
  cursor: pointer;
  margin-top: 0;
  border-radius: 4px;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  padding: 1rem 1.7rem;
  transition: var(--defult_transition);
}
.ta_btn_defult:hover {
  opacity: 0.7;
  color: #fff !important;
}
.ta_btn_defult img {
    filter: brightness(0) invert(1);
    width: 2.4rem;
    height: 2.6rem;
    vertical-align: middle;
    padding: 0.5rem 0 0 0.5rem;
}
.ta_bg_blue {
  padding: 3rem;
  background: #f6f9ff;
}
.ta_rounded_blue_bg_col {
  background: #d9edf7;
  border-radius: 10px;
  padding: 2.5rem;
  margin-bottom: 30px;
}
.ta_no_bg {
  padding: 3rem;
}
.ta_txt_info {
  color: #de7300;
  font-weight: 500;
}
.ta_txt_alert {
  color: red;
  font-size: 1.2rem;
}
.ta_flex_row {
  display: flex;
  column-gap: 2%;
}
.ta_space_between {
  justify-content: space-between;
}
.taguidline_col {
  display: flex;
  flex-direction: column;
  width: 32%;
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid #f0f0f0;
  margin: 3rem 0 4rem;
  box-shadow: 0 4px 2px rgb(0 0 0 / 10%);
  justify-content: center;
}
a.ta_simple_anchor {
  font-size: 1.7rem;
  align-items: center;
  display: inline-flex;
}
a.ta_simple_anchor img {
       fill: #0055ff;
     width: 2rem;
     vertical-align: middle;
     padding: 0.3rem 0 0 0.5rem;
     filter: invert(27%) sepia(99%) saturate(6739%) hue-rotate(222deg) brightness(106%) contrast(102%);
}
a.ta_simple_anchor:hover img {
  transform: translateX(2px);
  transition: var(--defult_transition);
}
.taguidline_col h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333;
}
.ta_active_guidline {
  padding: 3rem;
  border: 4px solid #96c9fd;
  border-radius: 16px 0 16px 0;
  background: #fff url(../img/editor_bg.png) no-repeat right calc(100% - 10px);
  height: fit-content;
}
.taguidline_col.ta_active_guidline h2 {
  border: none;
  color: var(--Primery_color);
}
.taguidline_col.ta_active_guidline a {
  width: fit-content;
}

.ta_board_memebers {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2%;
  padding-left: 0;
}
.ta_board_memebers li {
  width: 48%;
  background: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  margin: 1.2rem 0;
  border-left: 3px solid #e3f1f6;
}
.ta_board_memebers li a {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem 0.8rem;
  font-size: 1.4rem;
  border: 1px solid #d3e4f2;
  width: fit-content;
  align-items: center;
  justify-content: center;
}
.ta_board_memebers li a img {
  padding-right: 0.5rem;
  object-fit: contain;
}
/* Form Submission Page*/
.form_info li {
  position: relative;
}
.form_info li::before {
  content: "\f192";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  color: var(--Primery_color);
  font-size: 12px;
  padding-right: 1rem;
}
.form_info li a i {
  font-size: 1.4rem;
}
.ta_mtb {
  margin: 1.5rem 0;
}
.ta_mtb_3 {
  margin: 3rem 0;
}
.form_info .ta_btn_defult {
  margin: 1.5rem;
}
.form_info .ta_btn_defult:first-child {
  margin-left: 0;
}
/* Form  Tabs */
.ta_form_tabs_col {
  width: 100%;
  margin: 3rem 0 0;
}
ul#tabs-nav {
  display: flex;
  padding: 0 2rem;
  overflow: auto;
  margin: 0;
  background-color: #e4ecff;
}
ul#tabs-nav li {
  padding: 1.5rem 1rem;
  cursor: pointer;
  color: var(--Primery_color);
  border-top: 4px solid transparent;
  margin: 0;
  font-weight: 500;
  font-size: 2.2rem;
}

ul#tabs-nav li.active {
  background-color: #fff;
  border-color: var(--Primery_color);
  font-weight: 700;
}
ul#tabs-nav li:hover {
  background-color: #fff;
  border-color: var(--Primery_color);
}
#tabs-nav li a {
  text-decoration: none;
  color: var(--Primery_color);
}
.tab-content {
  padding: 3rem 0 0;
  background: #fff;
}
.ta_p0 {
  padding: 0 !important;
}
/* forms */
.ta_tab_content h3 {
  font-size: 1.9remx;
  margin: 25px 0;
  font-size: 1.9rem;
}
.ta_tab_content h3 span {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  margin-right: 4px;
  color: #fff;
  background: var(--secondary_color);
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}
.ta_form_artical_col form {
  width: 100%;
}
.ta_form_group {
  margin: 4rem 0;
  display: flex;
  flex-wrap: wrap;
}
.ta_form_lbl,
.ta_form_group label {
  font-size: 1.7rem;
  padding-right: 1rem;
  width: 21rem;
  min-width: 21rem;
}

.ta_form_lbl i,
.ta_form_group label i {
  color: red;
}
.ta_radio_btn:last-child {
  padding-left: 2rem;
}
.ta_radio_btn label {
  width: auto;
  padding: 0.3rem;
}
.ta_radio_btn input {
  cursor: pointer;
}
.ta_form_group span {
  display: flex;
  padding: 1rem 0;
  font-size: 1.5rem;
}
.ta_form_group .ta_input {
  width: 50.5rem;
  display: flex;
  flex-wrap: wrap;
}
.ta_form_group input:not([type="checkbox"]):not([type="radio"]),
.ta_form_group select {
  background: #fff;
  width: 100%;
  line-height: 40px;
  font-size: 12px;
  color: #333;
  border: 1px solid #bbb;
  height: 40px;
  padding: 1rem;
  outline: 0;
  box-sizing: border-box;
  text-transform: capitalize;
}
.ta_form_group textarea {
  background: #fff;
  width: 100%;
  font-size: 12px;
  color: #333;
  border: 1px solid #bbb;
  resize: none;
}
/* Upload Button */
#upload_manuscrip {
  display: none;
}
.ta_upload_btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ta_input .ta_upload_btn input {
  width: 70% !important;
}
.file-name {
  position: relative;
  overflow: hidden;
  line-height: 30px;
  padding: 5px;
  box-sizing: border-box;
  font-size: 15px;
  vertical-align: middle;
  width: 300px;
  border: 2px solid #dbdbdb;
  border-radius: 0;
  height: calc(2em + 0.75rem + 2px);
}

/*  Captcha */
.ta_captcha {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.ta_form_group .ta_input.ta_captcha input {
  width: 50%;
}
.ta_form_group .ta_input.ta_captcha img {
  width: 16rem;
  height: 4rem;
  object-fit: cover;
}
.ta_captcha a {
  font-size: 1.7rem;
}

.btn_submit_col {
  margin: 2rem 0;
  width: 100%;
}
/* 
Tab 2 */
.ta_form_abstractl_col .ta_form_lbl,
.ta_form_abstractl_col .ta_form_group label {
  width: 26rem;
}

/* Join US Page*/
.ta_left_content {
  width: 30%;
  padding-right: 5%;
}
.ta_breadcrum ul {
  display: flex;
  margin: 0 0 3rem 0;
}
.ta_breadcrum ul li {
  font-size: 1.2rem;
  padding-right: 0.6rem;
}
.ta_breadcrum ul li::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--Primery_color);
  font-size: 12px;
  padding-right: 0.5rem;
}
.ta_breadcrum ul li:last-child:after {
  content: "";
}
.ta_breadcrum ul li a {
  color: #6b6b6b;
}
.ta_side_bar {
  background: #f1f2f8;
  border-radius: 6px;
  border-top: 3px solid #1476ad;
}
.ta_side_bar h3 {
  font-size: 2.2rem;
  border-bottom: 1px solid #e6e6e6;
  padding: 1.8rem;
  margin-bottom: 0;
}
.ta_side_bar ul li {
  border-bottom: 1px solid #e6e6e6;
  padding: 1.2rem 1.8rem;
  position: absolute;
    left: 0;
    top: 0;
}
.ta_side_bar ul li a {
  font-size: 1.5rem;
  color: var(--paragraph_color);
  display: flex;
  justify-content: space-between;
}
.ta_side_bar ul li a i {
  font-size: 1.2rem;
  color: #a4adba;
  padding-left: 1rem;
}
.ta_side_bar ul li a:hover {
  color: var(--Primery_color);
}

.ta_right_content {
  width: 70%;
  margin-left: auto;
}
.ta_jump_sec {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  margin: 1rem 0;
}
.ta_jump_sec li a {
  text-decoration: underline;
}

.ta_jump_sec li {
  list-style-type: disc;
  padding: 0.3rem 0;
}
.ta_jump_sec li::marker {
  color: var(--Primery_color);
}
.ta_back_to_top {
  text-decoration: underline;
  font-size: 1.7rem;
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100%;
}
.ta_back_to_top i {
  text-decoration: none;
  color: #fff;
  width: 25px;
  height: 25px;
  background: var(--Primery_color);
  font-size: 1.2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  transition: var(--defult_transition);
}
.ta_back_to_top:hover i {
  transition: var(--defult_transition);
  transform: translateY(-0.3rem);
}
.ta_line_heading {
  position: relative;
}
.ta_line_heading::before {
  content: "";
  border-left: 0.5rem solid var(--secondary_color);
  padding-left: 1rem;
}

/* New Css */
#page-50 .col-71,
body#page-51 .col-71,
body#page-54 .col-71 {
  width: 100%;
}
.ta_form_artical_col {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.ta_form_col {
  width: 70%;
}

.ta_downloadtemp {
  width: 30%;
  height: fit-content;
}
.ta_downloadtemp a.ta_btn_defult {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Humanities and Social Sciences */
.ta_sub_header {
  display: flex;
  background: var(--Primery_color);
  width: 99vw;
  margin: 12rem 0;
  flex-direction: column;
  left: -2%;
  position: relative;
  /* overflow: hidden; */
}
.ta_sub_header h1 {
  font-size: 3.2rem;
  color: #fff;
  padding: 3rem 9rem;
}
.ta_primary_nav {
  background: var(--secondary_color);
  padding: 0 4%;
}
.ta_primary_nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  position: relative;
justify-content: center;
}
.ta_primary_nav ul li {
  color: #fff;
  margin: 0;
  padding: 0;
}
.ta_primary_nav ul li a {
  display: flex;
  padding: 2rem;
  color: #fff;
  align-items: center;
}
.ta_primary_nav ul li a:hover {
  background: #002a7f;
}
.ta_primary_nav ul li.ta_has_child a::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  font-size: 12px;
  padding-left: 1rem;
}
.ta_primary_nav ul li.ta_has_child ul li a::after {
  content: "";
}
.ta_primary_nav ul .ta_sub_nav {
  opacity: 0;
  position: absolute;
  background: var(--Primery_color);
  flex-direction: column;
  transform: translateY(50%);
  transition: var(--defult_transition);
  z-index: -999;
  visibility: hidden;
}
.ta_primary_nav ul li.ta_has_child:hover > .ta_sub_nav {
  transition: var(--defult_transition);
  opacity: 1;
  transform: translateY(0);
  z-index: 9;
  visibility: visible;
}
.ta_intor_col {
  display: flex;
  width: 100%;
  margin: 3rem 0;
  justify-content: space-between;
}
.ta_intro_dtl {
  width: 63%;
  border-radius: 1rem;
  border-radius: 1rem;
  display: flex;

  column-gap: 3rem;
}
.img_col {
  display: flex;
  flex-direction: column;
}
.ta_access_tag {
  font-size: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  color: #e77406;
}
.ta_access_tag img {
  object-fit: contain;
}

 .ta_content_col .ta_btn_defult {
    margin: 1rem;
  }
  .ta_content_col .ta_btn_defult:first-child {
    margin-left: 0;
  }

.ta_day_dtl {
  width: 35%;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.ta_week {
  width: 50%;
  padding: 1rem;
  align-items: center;
}

.ta_week h3 {
  font-size: 2.6rem;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  line-height: 3.5rem;
}
.ta_week span {
  font-size: 1.4rem;
  display: flex;
  width: 100%;
      line-height: 1.8rem;
}
.ta_day_dtl .ta_btn_defult {
  width: 100%;
  background: transparent;
  border: 1px solid var(--Primery_color);
  color: var(--Primery_color);
  height: auto;
}
.ta_day_dtl .ta_btn_defult:hover {
  background: var(--Primery_color);
  opacity: 1;
  color: #fff;
}

.ta_col_40 {
  width: 40%;
  padding-left: 3rem;
}
.ta_col_60 {
  width: 60%;
  padding-left: 3rem;
}
.ta_check_list {
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
  padding-left: 0;
}
.ta_check_list li {
  margin: 0.5rem 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    padding-left: 3.5rem;

}
.ta_check_list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--Primery_color);
  font-size: 2.5rem;
  opacity: 0.7;
  padding-right: 1rem;
  position: absolute;
    left: 0;
    top: 0;
}

.ta_no_bg .ta_board_memebers li {
  background-color: rgb(246, 251, 252);
}
.ta_special_banner {
  display: flex;
  flex-direction: column;
  width: 30%;
  background: url(../img/prose_bg.jpg) no-repeat top center;
  padding: 3rem 4rem;
  color: #fff;
  border-radius: 1.5rem;
  z-index: 2;
}
.ta_special_banner h2 {
  font-size: 2.2rem;
}
.ta_special_banner p {
  color: #fff;
}
.ta_special_banner a {
  color: #fff;
  font-size: 2rem;
  padding: 1.5rem;
  background: var(--Primery_color);
  display: flex;
  width: fit-content;
  position: relative;
  text-transform: capitalize;
}
.ta_special_banner a::after {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 2.8rem 0 3rem 27px;
  border-color: transparent transparent transparent var(--Primery_color);
  transform: rotate(0deg);
  position: absolute;
  right: -2.6rem;
  top: 0;
}
.ta_banner_dtl {
  width: 70%;
  background: #fff;
  color: #333;
  padding: 3rem;
  border-radius: 1.5rem;
  height: fit-content;
  align-self: center;
  margin-left: -3.5rem;
  z-index: 1;
}
.ta_spacila_banner2 {
  padding: 3rem;
  background: #00679a;
  margin: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 2rem;
}
.ta_spacila_banner2 p,
.ta_spacila_banner2 h3 {
  color: #fff;
}
.ta_spacila_banner2 a {
  background: #c2deeb;
  color: #00679a;
  padding: 1rem;
  border-radius: 4rem;
  margin: 1rem 0;
  font-size: 1.7rem;
  display: inline-flex;
}
.ta_all_green li {
  color: #0c672c;
}
.ta_all_green li::before {
  color: #0c672c;
}

.ta_latets_artical {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.5%;
  padding-left: 0;
}
.ta_latets_artical li {
  width: 31.5%;
  display: flex;
  flex-direction: column;
}
.ta_latets_artical li a {
  font-weight: bold;
  font-size: 2rem;
}
.ta_latets_artical li span {
  font-size: 1.3rem;
  color: #6f6f6f;
  margin: 1rem 0;
}
.ta_latets_artical li p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 2.2rem;
}
.ta_artical_dt {
  display: flex;
}
.ta_latets_artical .ta_access_tag {
  border: none;
  width: fit-content;
}

/* Mobile Button */
.ta_nav_btn {
  padding-right: 5rem;
  position: relative;
  display: none;
}
.ta_check_btn,
.ta_nav_btn input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: 1px;
  left: -3px;
  cursor: pointer;
  opacity: 0;
  z-index: 999999;
  -webkit-touch-callout: none;
}

.ta_nav_btn p {
  display: block;
  width: 33px;
  height: 4px;
  margin: 0 0 5px 0;
  position: relative;
  background: #fff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  line-height: normal;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

.ta_nav_btn p:first-child {
  transform-origin: 0% 0%;
}

.ta_nav_btn p:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
.ta_nav_btn input:checked .ta_check_btn + p {
  opacity: 1;
  transform: rotate(45deg) translate(-23px, -1px);
  background: #fff;
}

/*
 * But let's hide the middle one.
 */
.ta_nav_btn input:checked .ta_check_btn + p:nth-last-child(3) {
  /* opacity: 0; */
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
.ta_nav_btn input:checked .ta_check_btn + p:nth-last-child(2) {
  transform: rotate(-45deg) translate(-17px, -2px);
}

/*============= Responsive ===================*/
@media screen and (max-width: 1300px) {
  .ta_container {
    max-width: 90%;
  
  }
  .ta_primary_nav ul li a {
    padding: 2rem 1rem;
  }
  .ta_special_banner {
    width: 40%;
  }
}
/* 1300px ends */

/* 1170 */
@media screen and (max-width: 1170px) {
  .ta_intro_dtl {
    width: 74%;
  }
  .ta_day_dtl {
    width: 25%;
  }
  .ta_week {
    width: 100%;
  }
}

/* 1170 Ends*/
@media screen and (max-width: 992px) {
  html {
    font-size: 9px;
  }
  .form_info .ta_btn_defult {
    margin-left: 0;
  }
  .ta_primary_nav ul li a {
    font-size: 1.4rem;
  }
  .ta_special_banner {
    width: 50%;
  }
}

/* 992px ends */
@media screen and (max-width: 768px) {
  html {
    font-size: 8px;
  }
  .ta_form_col {
    width: 60%;
  }

  .ta_downloadtemp {
    width: 35%;
    margin-left: 5%;
  }
  #page-51 .container {
    max-width: 100% !important;
  }
  .ta_nav_btn {
    display: flex;
    flex-direction: column;
  }
  .ta_sub_header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .ta_primary_nav {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--defult_transition);
    z-index: -999;
    height: 0;
  }
  .ta_primary_nav.ta_nav_open {
    opacity: 1;
    visibility: visible;
    transition: var(--defult_transition);
    z-index: 999;
    height: auto;
  }
  .ta_primary_nav ul {
    flex-direction: column;
  }
  .ta_primary_nav ul .ta_sub_nav li {
    display: flex;
    align-items: center;
  }
  .ta_primary_nav ul li a {
    font-size: 1.8rem;
  }
  .ta_primary_nav ul .ta_sub_nav {
    visibility: visible;
    position: static;
    opacity: 1;
    background: transparent;
    transform: translateY(0);
    padding-left: 1rem;
  }
  .ta_primary_nav ul .ta_sub_nav li::before {
    content: "-";
  }
  .ta_col_40 ,
.ta_day_dtl,
  .ta_intro_dtl {
    width: 100%;
  }
  .ta_intor_col {
    flex-wrap: wrap;
  }
  .ta_week {
        width: 50%;
    }
    .ta_day_dtl .ta_btn_defult {
      margin-top: 2rem;
    }
    .ta_flex_row {
      flex-wrap: wrap;
    }
    .ta_special_banner {
      margin: 0 auto;
    }
    .ta_special_banner a::after {
      
          right: -3.2rem;
    }
    .ta_banner_dtl {
      margin: -7px auto 0;
          width: 90%;
    }
    .ta_latets_artical li {
    width: 49%;}
    .ta_col_60 {
    width: 100%;
    padding-left: 0;
    margin: 3rem 0 0;
}
.ta_special_banner {
  width: 60%;
}

}

/* 768px ends */
@media screen and (max-width: 636px) {
  html {
    font-size: 7px;
  }
  .ta_form_group {
    flex-wrap: nowrap;
  }

  button {
    height: 5.5rem;
  }
  .ta_form_group .ta_input.ta_captcha img {
    width: 11rem;
  }

  /* join us */
  .ta_flex_row {
    flex-wrap: wrap;
  }
  .ta_left_content {
    width: 100%;
    padding-right: 0;
  }
  .ta_right_content {
    width: 100%;
  }
  .ta_jump_sec {
    display: none;
  }
  .ta_space_between {
    flex-direction: column-reverse;
  }
  button,
  .ta_btn_defult {
    height: 5.5rem;
    font-size: 1.8rem;
  }
  .ta_form_group .ta_input {
    width: 100%;
  }
  .ta_input .ta_upload_btn input {
    width: 60% !important;
  }

  .ta_form_col {
    width: 100%;
  }

  .ta_downloadtemp {
    width: 100%;
    margin-left: 0%;
  }
  .ta_downloadtemp .ta_btn_defult {
    margin: 1rem;
  }
  .ta_downloadtemp .ta_btn_defult:first-child {
    margin-left: 0;
  }
  .ta_latets_artical li,
  .ta_board_memebers li,
  .taguidline_col {
    width: 100%;
  }
      .ta_special_banner {
        width: 100%;
    }
    .ta_banner_dtl {
      width: 95%;
    }
    .ta_no_bg {
      padding-left: 0;
      padding-right: 0;
    }
    .ta_spacila_banner2 {
      flex-wrap: wrap;
    }
}
/* 636px ends */

@media screen and (max-width: 520px) {
  .ta_input .ta_upload_btn input {
    width: auto !important;
  }

  .ta_input .ta_upload_btn .ta_btn_defult {
    margin-top: 1.5rem;
  }
  .ta_sub_header h1 {
    font-size: 2.5rem;
    padding: 3rem 1rem;
}
.ta_nav_btn p {
      width: 27px;
    height: 3px;
}
.ta_nav_btn {
    padding-right: 3rem;
}
.ta_intro_dtl {
  flex-wrap: wrap;
}
.ta_content_col .ta_btn_defult{
  margin-left: 0;
}
}
/* 520px ends */
