:root {
  --font-primery: "Lexend", sans-serif;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-dark-gray: #555454;
  --color-red: #c33531;
  --color-dark-red: #a21717;
  --color-gradient: linear-gradient(259.3deg, #c23630 2.52%, #5c1a17 98.46%);
  --color-light-black: #222222;
  --color-yellow: #ded26e;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 14px;
}
@media only screen and (min-width: 1024px) {
  html {
    font-size: 1.125vw;
  }
}
@media only screen and (min-width: 1600px) {
  html {
    font-size: 1vw;
  }
}
@media only screen and (min-width: 1920px) {
  html {
    font-size: 0.833vw;
  }
}

body {
  font-family: var(--font-primery);
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-black);
}

.container {
  width: 100%;
  max-width: 100% !important;
  padding: 0 1rem;
  margin: auto;
}
@media only screen and (min-width: 1024px) {
  .container {
    width: 87.848vw;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 83.333vw;
  }
}
@media only screen and (min-width: 1480px) {
  .container {
    width: 75vw;
  }
}
@media only screen and (min-width: 1920px) {
  .container {
    width: 62.5vw;
  }
}

section {
  scroll-margin-top: 5rem;
}

ul,
ol {
  list-style: none;
  margin: 0;
}

a {
  text-decoration: none;
  color: currentColor;
  display: inline-block;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-light-black);
  font-weight: 300;
  margin: 0 0 1rem;
}
p strong {
  font-weight: 700;
}
p span {
  font-weight: 700;
}
p a {
  font-weight: 700;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  p {
    font-size: 1rem;
  }
}

.heading_h1 {
  font-size: 3.375rem;
  line-height: 4rem;
  color: var(--color-black);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.heading_h2 {
  color: var(--color-black);
  font-weight: 400;
  font-size: 2rem;
  line-height: 3rem;
}
.heading_h3 {
  color: var(--color-black);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
}

.common_btn_div {
  display: flex;
  justify-content: flex-start;
  gap: 1%;
}
.common_btn_div .common_btn {
  width: auto;
  height: auto;
  border: 0.063rem solid transparent;
  background-color: #f8ca6d;
  padding: 1.25rem 1.875rem;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.375rem;
  color: var(--color-black);
  cursor: pointer;
  transition: all 1s ease;
}
.common_btn_div .common_btn:hover, .common_btn_div .common_btn:active {
  border-color: #f8ca6d;
  transition: all 1s ease;
  background-color: transparent;
  color: #f8ca6d;
}

.section_inside_space {
  padding: 6rem 0;
}
@media only screen and (max-width: 991px) {
  .section_inside_space {
    padding: 3rem 0;
  }
}

.head_wrap {
  margin: 0 0 2.5rem;
}
.head_wrap.text_center {
  text-align: center;
}
.head_wrap p:last-child {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .head_wrap {
    margin: 0 0 1.5rem;
  }
}

.common_list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-white);
}
.common_list li span {
  font-weight: 700;
}
.common_list li:last-child {
  margin-bottom: 0;
}
.common_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.25rem;
  height: 1.25rem;
  background: url(../images/listing-icon.svg) no-repeat;
  background-size: 100% 100%;
}

.main_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: transparent;
  padding: 1rem 0;
  z-index: 99;
  transition: all 1s ease;
}
.main_header .container .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main_header .container .navbar .logo {
  width: 100%;
  max-width: 25rem;
}
.main_header .container .navbar .logo img {
  width: 100%;
  height: auto;
}
.main_header .container .navbar .navigation {
  position: relative;
}
.main_header .container .navbar .navigation .nav ul {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-end;
}
.main_header .container .navbar .navigation .nav ul li {
  position: relative;
}
.main_header .container .navbar .navigation .nav ul li a {
  display: block;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: var(--color-white);
  font-weight: 300;
  transition: all linear 0.5s;
  padding: 1rem 0;
  position: relative;
  transition: all linear 0.1s;
}
.main_header .container .navbar .navigation .nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.5rem;
  margin: auto;
  width: 0;
  height: 0.125rem;
  background-color: var(--color-red);
  transition: all linear 0.2s;
}
.main_header .container .navbar .navigation .nav ul li:hover a {
  color: var(--color-red);
  transition: all linear 0.1s;
}
.main_header .container .navbar .navigation .nav ul li:hover a::before {
  width: 100%;
  transition: all linear 0.2s;
}
.main_header .container .navbar .navigation .menu_bar {
  width: 2.25rem;
  height: 2rem;
  border-radius: 0.313rem;
  display: none;
}
.main_header .container .navbar .navigation .menu_bar span {
  width: 100%;
  height: 0.2rem;
  background: var(--color-white);
  display: block;
  position: relative;
  top: 0;
  margin: 0.3rem 0;
  border-radius: 0.5rem;
}
.main_header .container .navbar .navigation .menu_bar span:nth-of-type(3) {
  width: 70%;
  left: 30%;
}
.main_header_fixed {
  transition: all 1s ease;
  background-color: var(--color-red);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}
.main_header_fixed .container .navbar .navigation .nav ul li:hover a {
  color: var(--color-white);
  opacity: 0.8;
}
.main_header_fixed .container .navbar .navigation .nav ul li:hover a::before {
  background-color: var(--color-white);
}

.SecBannerHome {
  position: relative;
  width: 100%;
  height: 90vh;
  z-index: 1;
}
.SecBannerHome .BannerImg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
.SecBannerHome .BannerImg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.SecBannerHome .BannerImg video {
  width: 100%;
  mix-blend-mode: multiply;
  -o-object-position: center center;
  object-position: center center;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.SecBannerHome .BannerContent {
  display: flex;
  align-items: center;
  height: 100%;
}
.SecBannerHome .BannerContent .container .banner_des {
  width: 100%;
  max-width: 35.938rem;
}
.SecBannerHome .BannerContent .container .banner_des img {
  max-width: 10rem;
  height: auto;
  margin: 0 auto 1rem;
}
.SecBannerHome .BannerContent .container .banner_des .heading_h1 {
  color: var(--color-white);
  font-weight: 400;
  font-size: 4rem;
  line-height: 4.5rem;
  margin-bottom: 1rem;
}
.SecBannerHome .BannerContent .container .banner_des p {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75rem;
}
.SecBannerHome .BannerContent .container .banner_des .common_btn_div {
  margin-top: 2rem;
}

.social_info ul {
  display: flex;
  gap: 0.5rem;
}
.social_info ul li a img {
  max-width: 3rem;
  height: 3rem;
}

.footer_wrap {
  background-color: var(--color-white);
  padding: 2.5rem 0 1.875rem;
  position: relative;
}
.footer_wrap .footer_content {
  text-align: center;
}
.footer_wrap .footer_content .heading_h2 {
  color: var(--color-black);
  font-weight: 300;
}
.footer_wrap .footer_content .h3 {
  font-size: 1.25rem;
  color: var(--color-black);
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.footer_wrap .footer_content p {
  font-size: 1.25rem;
  line-height: 2.25rem;
  font-weight: 400;
  color: var(--color-black);
  display: inline-block;
  font-weight: 300;
}
.footer_wrap .footer_content p img {
  width: auto;
  height: auto;
  display: inline-block;
  position: relative;
  margin-bottom: -0.3rem;
}
.footer_wrap .footer_content p a {
  display: inline-block;
  color: var(--color-black);
  text-decoration: underline;
  font-weight: 300;
}
.footer_wrap .footer_content .social_info ul {
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .footer_wrap {
    padding: 2rem 0 1.25rem;
  }
}

.bottom_footer {
  background-color: var(--color-white);
  max-width: 51.5rem;
  margin: auto;
}
.bottom_footer .container .row_div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0 0 1.25rem;
  text-align: center;
}
.bottom_footer .container .row_div p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  color: var(--color-black);
  margin: 0;
}
.bottom_footer .container .row_div p a {
  display: inline;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-black);
  text-decoration: underline;
}
@media only screen and (max-width: 991px) {
  .bottom_footer .container .row_div {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .bottom_footer .container .row_div p {
    width: 100%;
    text-align: center;
  }
}

.technical_flow ul li {
  display: flex;
  justify-content: space-between;
  padding-left: 3rem;
  position: relative;
  width: 100%;
  min-height: 4.5rem;
  margin-bottom: 1.25rem;
}
.technical_flow ul li:last-child {
  margin-bottom: 0;
}
.technical_flow ul li .agent_sticker {
  width: auto;
  height: auto;
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-yellow);
  transform: rotate(-90deg);
  position: absolute;
  top: 24px;
  left: -1.2rem;
}
.technical_flow ul li .text {
  width: calc(100% - 1rem);
}
.technical_flow ul li .text .heading_h3 {
  color: var(--color-white);
  font-size: 1.125rem;
}
.technical_flow ul li .text p {
  font-size: 1rem;
  margin: 0;
}

.trent_over_view {
  background: url(../images/overview-bg.jpg) no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.trent_over_view .content .row_div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2%;
}
.trent_over_view .content .row_div .left {
  width: 45%;
  position: relative;
}
.trent_over_view .content .row_div .left::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 5.5rem;
  height: 5.5rem;
  background: url(../images/star-overview.png) no-repeat;
  background-size: 100% 100%;
  z-index: 9;
}
.trent_over_view .content .row_div .left ul {
  width: 31.4375rem;
  height: 31.625rem;
  position: relative;
}
.trent_over_view .content .row_div .left ul li {
  position: absolute;
  left: 0;
  top: 0;
  animation: lefttopimg linear 1.2s;
}
.trent_over_view .content .row_div .left ul li .img_wrap {
  width: 100%;
  height: 100%;
}
.trent_over_view .content .row_div .left ul li .img_wrap img {
  height: 100%;
}
.trent_over_view .content .row_div .left ul li:nth-of-type(2) {
  left: auto;
  right: 5rem;
  top: 1.4rem;
  animation: ryttopimg linear 1.2s;
}
.trent_over_view .content .row_div .left ul li:nth-of-type(2) .img_wrap {
  max-width: 12rem;
  height: 12rem;
}
.trent_over_view .content .row_div .left ul li:nth-of-type(3) {
  top: auto;
  bottom: 5rem;
  left: 1.2rem;
  animation: leftbotmimg linear 1.2s;
}
.trent_over_view .content .row_div .left ul li:nth-of-type(3) .img_wrap {
  max-width: 12rem;
  height: 12rem;
}
.trent_over_view .content .row_div .left ul li:nth-of-type(4) {
  top: auto;
  left: auto;
  bottom: 3.6rem;
  right: 4rem;
  animation: rytbotmimg linear 1.2s;
}
@keyframes lefttopimg {
  0% {
    left: -3rem;
    top: -2rem;
  }
  50% {
    left: 0;
    top: 0;
  }
}
@keyframes ryttopimg {
  0% {
    right: -6rem;
    top: -2rem;
  }
  50% {
    right: 5rem;
    top: 1.4rem;
  }
}
@keyframes leftbotmimg {
  0% {
    bottom: -7rem;
    left: -3rem;
  }
  50% {
    bottom: 5rem;
    left: 1.2rem;
  }
}
@keyframes rytbotmimg {
  0% {
    bottom: -7rem;
    right: -8rem;
  }
  50% {
    bottom: 3.6rem;
    right: 4rem;
  }
}
.trent_over_view .content .row_div .right {
  width: 48%;
}
.trent_over_view .content .row_div .right .des p {
  font-size: 1.125rem;
}
.trent_over_view .content .row_div .right .des .overview_partner {
  display: flex;
  justify-content: space-between;
  border: 0.125rem solid var(--color-black);
  border-left: none;
  border-right: none;
  margin-top: 2rem;
}
.trent_over_view .content .row_div .right .des .overview_partner li {
  width: 49%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1%;
  padding: 1rem 0;
  border-right: 0.125rem solid var(--color-black);
}
.trent_over_view .content .row_div .right .des .overview_partner li:last-child {
  border: none;
}
.trent_over_view .content .row_div .right .des .overview_partner li p {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}
.trent_over_view .content .row_div .right .des .overview_partner li img {
  max-width: 7.75rem;
  height: auto;
}

.trent_agent_themes .trent_multiple_agent {
  background-color: var(--color-black);
  overflow: hidden;
}
.trent_agent_themes .trent_multiple_agent .row_div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2%;
  position: relative;
}
.trent_agent_themes .trent_multiple_agent .row_div .left {
  width: 48%;
  padding: 5rem 0;
}
.trent_agent_themes .trent_multiple_agent .row_div .left .des .themes_title {
  color: var(--color-white);
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.0901960784);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.trent_agent_themes .trent_multiple_agent .row_div .left .des .themes_title span {
  font-weight: 500;
}
.trent_agent_themes .trent_multiple_agent .row_div .left .des .heading_h1 {
  color: var(--color-white);
}
.trent_agent_themes .trent_multiple_agent .row_div .left .des p {
  color: rgba(255, 255, 255, 0.5019607843);
}
.trent_agent_themes .trent_multiple_agent .row_div .left .des .technical_flow .heading_h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-yellow);
}
.trent_agent_themes .trent_multiple_agent .row_div .right {
  width: 70%;
  position: absolute;
  z-index: 1;
  right: -20%;
  height: 100%;
}
.trent_agent_themes .trent_multiple_agent .row_div .right .img_wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.trent_agent_themes .trent_multiple_agent .row_div .right .img_wrap img {
  height: 100%;
  transition: all 5s ease;
}
.trent_agent_themes .trent_multiple_agent .row_div:hover .right .img_wrap img {
  transform: scale(1.2);
  transition: all 5s ease;
}
.trent_agent_themes .trent_multiple_agent:nth-child(even) .row_div {
  justify-content: flex-end;
}
.trent_agent_themes .trent_multiple_agent:nth-child(even) .row_div .right {
  left: -20%;
}

.trent_desired_outcomes {
  background: url(../images/overview-bg.jpg) no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.trent_desired_outcomes .content ul {
  display: flex;
  justify-content: space-between;
  gap: 1.5%;
  overflow: auto;
  padding-bottom: 1rem;
}
.trent_desired_outcomes .content ul::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
}
.trent_desired_outcomes .content ul::-webkit-scrollbar-track {
  background: var(--color-dark-red);
}
.trent_desired_outcomes .content ul::-webkit-scrollbar-thumb {
  background-color: var(--color-black);
  border-radius: 0.5rem;
  border: 0.25rem solid var(--color-white);
}
.trent_desired_outcomes .content ul li {
  width: 100%;
  min-width: 17.7rem;
  background-color: var(--color-white);
}
.trent_desired_outcomes .content ul li .img_wrap {
  width: 100%;
  height: auto;
}
.trent_desired_outcomes .content ul li .img_wrap img {
  height: 100%;
}
.trent_desired_outcomes .content ul li .text {
  padding: 1rem 0;
}
.trent_desired_outcomes .content ul li .text .heading_h3 {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.trent_desired_outcomes .content ul li .text p {
  font-size: 1rem;
  line-height: 1.3;
  margin: 0;
}

.trent_eligibility_criteria {
  background-color: #f1f0f0;
}
.trent_eligibility_criteria .content ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1%;
}
.trent_eligibility_criteria .content ul li {
  flex: 0 0 32.5%;
  border: 0.063rem solid rgba(0, 0, 0, 0.2509803922);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.trent_eligibility_criteria .content ul li .des {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem;
}
.trent_eligibility_criteria .content ul li .des .text {
  width: 57%;
}
.trent_eligibility_criteria .content ul li .des .text p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  transition: all 1s ease;
}
.trent_eligibility_criteria .content ul li .des img {
  max-width: 5rem;
  height: 5rem;
}
.trent_eligibility_criteria .content ul li .img_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: -98%;
  overflow: hidden;
  transition: all 1s ease;
  z-index: -1;
}
.trent_eligibility_criteria .content ul li .img_wrap img {
  height: 100%;
}
.trent_eligibility_criteria .content ul li:hover .des .text p {
  color: var(--color-black);
  transition: all 1s ease;
}
.trent_eligibility_criteria .content ul li:hover .des .text img {
  filter: brightness(0) invert(1);
}
.trent_eligibility_criteria .content ul li:hover .img_wrap {
  left: 0;
  transition: all 1s ease;
}
.trent_eligibility_criteria .content ul li:hover:first-child .des .text p {
  color: var(--color-white);
}

.trent_requirements_div {
  background: url(../images/requiredment-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.trent_requirements_div .row_div {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  row-gap: 1rem;
}
.trent_requirements_div .row_div .left {
  width: 49%;
}
.trent_requirements_div .row_div .right {
  width: 49%;
}
.trent_requirements_div .row_div .heading_h1 {
  color: var(--color-white);
}

.trent_major_milestones {
  background-color: #f1f0f0;
}
.trent_major_milestones .content .table-container {
  width: 100%;
  overflow: auto;
}
.trent_major_milestones .content .table-container table {
  width: 100%;
  border-collapse: collapse;
  min-width: 61.938rem;
}
.trent_major_milestones .content .table-container table thead {
  background-color: var(--color-black);
  color: var(--color-white);
  border: 0.063rem solid #f1f0f0;
}
.trent_major_milestones .content .table-container table thead th {
  text-align: left;
  border: none;
  padding: 1.25rem;
}
.trent_major_milestones .content .table-container table tbody tr {
  background-color: #f1f0f0;
  border-top: 0.063rem solid #333333;
}
.trent_major_milestones .content .table-container table tbody tr:nth-child(even) {
  background-color: var(--color-white);
}
.trent_major_milestones .content .table-container table tbody tr td {
  padding: 1.25rem;
  border: none;
}
@media (max-width: 768px) {
  .trent_major_milestones .content .table-container table {
    font-size: 0.875rem;
  }
  .trent_major_milestones .content .table-container table th,
  .trent_major_milestones .content .table-container table td {
    padding: 0.5rem;
  }
}

.trent_how_to_apply {
  background: url(../images/How-to-Apply.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.trent_how_to_apply .head_wrap .heading_h1 {
  color: var(--color-white);
}
.trent_how_to_apply .content ul {
  display: flex;
  justify-content: flex-start;
  gap: 2%;
  flex-wrap: wrap;
}
.trent_how_to_apply .content ul li {
  width: 32%;
  padding: 1.25rem;
  background-color: var(--color-dark-red);
}
.trent_how_to_apply .content ul li .heading_h3 {
  color: var(--color-white);
}
.trent_how_to_apply .content ul li p {
  color: var(--color-white);
  font-size: 1.125rem;
}

.trent_data_privacy {
  background: url(../images/trent_data_privacy-bg.jpg) no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.trent_data_privacy .head_wrap {
  margin-bottom: 1rem;
}
.trent_data_privacy .head_wrap p {
  font-size: 1.25rem;
  font-weight: 500;
}
.trent_data_privacy .row_div {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  row-gap: 1rem;
}
.trent_data_privacy .row_div .left {
  width: 49%;
}
.trent_data_privacy .row_div .right {
  width: 49%;
}
.trent_data_privacy .row_div .heading_h1 {
  color: var(--color-black);
  font-size: 2rem;
}
.trent_data_privacy .row_div .common_list li {
  color: var(--color-black);
}
.trent_data_privacy .row_div .common_list li::before {
  filter: brightness(0) saturate(100%);
}

.trent_Benefits {
  background: url(../images/Benefits-bg.jpg) no-repeat;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
}
.trent_Benefits .videosec {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -85%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  opacity: 0.4;
  mix-blend-mode: luminosity;
}
.trent_Benefits .container {
  position: relative;
  z-index: 1;
}
.trent_Benefits .head_wrap .heading_h1 {
  color: var(--color-white);
}
.trent_Benefits .content ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1%;
  align-items: center;
}
.trent_Benefits .content ul li {
  width: 24%;
}
.trent_Benefits .content ul li .img_wrap {
  width: 100%;
  height: 100%;
  border-bottom: 0.063rem solid var(--color-white);
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.trent_Benefits .content ul li .img_wrap img {
  max-width: 4rem;
  height: auto;
}
.trent_Benefits .content ul li .des {
  padding: 1rem 0;
}
.trent_Benefits .content ul li .des .heading_h3 {
  color: var(--color-white);
}
.trent_Benefits .content ul li .des p {
  color: var(--color-white);
  margin: 0;
}
.trent_Benefits .content ul li:last-child .des {
  margin-left: 1rem;
  padding: 0 0 0 1rem;
  border-left: 0.25rem solid var(--color-white);
}
.trent_Benefits .content ul li:last-child .des .heading_h3 {
  font-weight: 300;
}

.trent_judging_criteria {
  background-color: #101010;
}
.trent_judging_criteria .head_wrap .heading_h1 {
  color: var(--color-white);
}
.trent_judging_criteria .content .row_div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 2%;
  row-gap: 1rem;
}
.trent_judging_criteria .content .row_div .left {
  width: 47%;
}
.trent_judging_criteria .content .row_div .left .img_wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.trent_judging_criteria .content .row_div .left .img_wrap img {
  height: 100%;
  transition: all 2s ease;
}
.trent_judging_criteria .content .row_div .left:hover .img_wrap img {
  transform: scale(1.2);
  transition: all 2s ease;
}
.trent_judging_criteria .content .row_div .right {
  width: 47%;
}
.trent_judging_criteria .content .row_div .heading_h1 {
  color: var(--color-black);
  font-size: 2rem;
}

.accordion .accordion-item .accordion-header {
  padding: 1rem 0;
  background-color: transparent;
  cursor: pointer;
  font-weight: bold;
  color: var(--color-white);
  border-top: 0.063rem solid var(--color-white);
  border-bottom: 0.063rem solid var(--color-white);
}
.accordion .accordion-item .accordion-content {
  padding: 1rem 0;
  display: none;
}
.accordion .accordion-item.active .accordion-content {
  display: block;
}

.alert-msg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.alert-msg .common_btn_div {
  margin-top: 20px;
  justify-content: center;
}
.alert-msg .msg-box {
  width: 650px;
  max-width: 90%;
  background: #fff;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  padding: 20px;
}
.alert-msg .msg-box .close-btn {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 24px;
  height: 24px;
  background: #5f0218;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  line-height: 22px;
}
.alert-msg .msg-box .txt {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}
.alert-msg .msg-box .txt span {
  color: #5f0218;
  font-weight: 600;
}
.alert-msg .msg-box .txt a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1023px) {
  .alert-msg .msg-box .txt {
    max-height: 362px;
    overflow: auto;
  }
}

.speaker .heading_h1 {
  text-align: center;
}
.speaker .meet-list {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.speaker .meet-list .item {
  width: 23%;
  text-align: center;
}
.speaker .meet-list .item .img-sec {
  width: 12.5rem;
  max-width: 12.5rem;
  margin: auto;
  position: relative;
}
.speaker .meet-list .item .img-sec img {
  border: 0.25rem solid var(--color-red);
  border-radius: 6.25rem;
  width: 100%;
  display: block;
}
.speaker .meet-list .item .img-sec .linkedin {
  position: absolute;
  right: 0px;
  bottom: 1.875rem;
}
.speaker .meet-list .item .img-sec .linkedin img {
  border: 0;
}
.speaker .meet-list .item .details {
  margin-top: 0.625rem;
}
.speaker .meet-list .item .details .name {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  color: var(--color-red);
  margin-bottom: 0.3125rem;
}
.speaker .meet-list .item .details .designation {
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  color: var(--color-light-black);
}
.speaker .meet-list .item .details .org {
  font-size: 1rem;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  color: var(--color-light-black);
}/*# sourceMappingURL=style.css.map */