@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Roboto", sans-serif;
}

.tr_header .tr_headerTop {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1254901961);
  padding: 5px 150px;
}
@media (max-width: 1020px) {
  .tr_header .tr_headerTop {
    padding: 5px 20px;
  }
}
@media (max-width: 480px) {
  .tr_header .tr_headerTop {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .tr_header .tr_headerTop .text-sm-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.tr_header .tr_headerTop .logo {
  height: 60px;
}
@media (max-width: 480px) {
  .tr_header .tr_headerTop .logo {
    margin-bottom: 20px;
  }
}
.tr_header .tr_headerTop .hamburgerIcon {
  display: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
}
@media (max-width: 480px) {
  .tr_header .tr_headerTop .hamburgerIcon.active {
    display: block !important;
  }
}
.tr_header .tr_headerTop ul {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .tr_header .tr_headerTop ul {
    margin-bottom: 10px;
  }
}
.tr_header .tr_headerTop ul li {
  display: inline-block;
  margin-left: 15px;
}
.tr_header .tr_headerTop ul li:first-child {
  margin-left: 0;
}
.tr_header .tr_headerTop ul li a {
  text-decoration: none;
}
@media (max-width: 480px) {
  .tr_header .tr_headerTop ul li a svg {
    height: 18px;
    width: 18px;
  }
}
.tr_header .tr_headerTop ul li a svg path {
  fill: #000;
}
.tr_header .tr_headerTop ul li a svg:hover.tr_socialFB path {
  fill: #1877f2;
}
.tr_header .tr_headerTop ul li a svg:hover.tr_socialTW path {
  fill: #1da1f2;
}
.tr_header .tr_headerTop ul li a svg:hover.tr_socialLN path {
  fill: #0077b5;
}
.tr_header .tr_headerTop ul li a svg:hover.tr_socialIN path {
  fill: #c13584;
}
.tr_header .tr_headerTop ul li:hover a svg path {
  fill: inherit;
}
.tr_header .tr_headerTop ul li .btn {
  border-radius: 0px;
  padding-inline: 30px;
  font-weight: 500;
}
.tr_header .tr_headerTop ul li .btn:hover {
  background-color: #b7e4ff;
  color: #000;
  border: 1px solid #b7e4ff;
}
@media (max-width: 480px) {
  .tr_header .tr_headerTop ul li .btn {
    padding: 3px 10px;
  }
}
.tr_header .tr_headerMenu {
  display: flex;
}
@media (max-width: 480px) {
  .tr_header .tr_headerMenu {
    display: none;
  }
}
@media (max-width: 480px) {
  .tr_header .tr_headerMenu.active {
    display: flex;
    position: absolute;
    width: 100%;
    background: #fff;
    z-index: 1;
    left: 0;
    height: 100vh;
    align-items: flex-start !important;
  }
}
.tr_header .tr_headerMenu ul {
  margin: 10px auto;
}
@media (max-width: 480px) {
  .tr_header .tr_headerMenu ul {
    width: 100%;
  }
}
.tr_header .tr_headerMenu ul li {
  display: inline-block;
  padding: 0px 50px;
}
@media (max-width: 920px) {
  .tr_header .tr_headerMenu ul li {
    padding: 0px 20px;
  }
}
@media (max-width: 480px) {
  .tr_header .tr_headerMenu ul li {
    display: block;
    padding: 10px 30px;
  }
}
.tr_header .tr_headerMenu ul li a {
  font-size: 14px;
  color: #121214;
}
@media (max-width: 480px) {
  .tr_header .tr_headerMenu ul li a {
    font-size: 16px;
  }
}
.tr_header .tr_headerMenu ul li a:hover {
  color: #ef4d49;
}
.tr_header .tr_headerMenu ul li.active a {
  color: #ef4d49;
}

.tr_homeSlide {
  background-color: #001489;
  position: relative;
}
.tr_homeSlide::before {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 30px;
  margin: auto;
  width: 48px;
  height: 48px;
  background: #ef4d49;
  opacity: 0.9;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  background-image: url(../media/svg/arrow-bottom.svg);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 480px) {
  .tr_homeSlide::before {
    display: none;
  }
}
.tr_homeSlide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../media/svg/slider-pattern1.svg");
  width: 170px;
  height: 400px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
}
@media (max-width: 480px) {
  .tr_homeSlide::after {
    height: 100px;
    width: 50px;
  }
}
@media (max-width: 920px) {
  .tr_homeSlide::after {
    height: 140px;
    width: 70px;
  }
}
.tr_homeSlide .tr_homeSlideContent {
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
  max-width: 570px;
  margin-left: auto;
  padding: 0px 20px;
}
@media (min-width: 992px) and (max-width: 1360px) {
  .tr_homeSlide .tr_homeSlideContent {
    max-width: 480px;
  }
}
.tr_homeSlide .tr_homeSlideContent .tr_homeSlideContentInner {
  color: white;
  padding: 0;
  max-width: 500px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .tr_homeSlide .tr_homeSlideContent .tr_homeSlideContentInner {
    padding: 50px 0px 50px 50px;
  }
}
.tr_homeSlide .tr_homeSlideContent .tr_homeSlideContentInner::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -120px;
  width: 250px;
  height: 250px;
  background-color: #d9d9d9;
  opacity: 0.1;
  border-radius: 50%;
}
@media (max-width: 480px) {
  .tr_homeSlide .tr_homeSlideContent .tr_homeSlideContentInner::before {
    top: 20px;
    left: 30px;
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 920px) {
  .tr_homeSlide .tr_homeSlideContent .tr_homeSlideContentInner::before {
    top: -70px;
    left: -70px;
    width: 120px;
    height: 120px;
  }
}
.tr_homeSlide .tr_homeSlideContent .tr_homeSlideContentInner .trTagline {
  color: #ef4d49;
  font-weight: 600;
}
.tr_homeSlide .tr_homeSlideContent .tr_homeSlideContentInner h1 {
  margin: 10px 0px;
  line-height: 54px;
  font-size: 46px;
  font-weight: 700;
}
.tr_homeSlide .tr_homeSlideContent .tr_homeSlideContentInner h1 span {
  color: #ef4d49;
}
.tr_homeSlide .tr_homeSlideContent .tr_homeSlideContentInner p {
  font-weight: 100;
  margin-bottom: 0px;
}
.tr_homeSlide .tr_homeSlideContent .tr_homeSlideContentInner .btn-primary {
  background-color: #ef4d49;
  border-color: #ef4d49;
  color: white;
  margin-top: 20px;
  border-radius: 0px;
  padding-inline: 30px;
}
@media (max-width: 480px) {
  .tr_homeSlide .tr_homeSlideContent .tr_homeSlideContentInner .btn-primary {
    padding-inline: 10px;
  }
}
.tr_homeSlide .tr_homeSlideContent .tr_homeSlideContentInner .btn-primary:hover {
  background-color: black;
  border-color: black;
  color: white;
}
@media (min-width: 920px) {
  .tr_homeSlide .img-fluid {
    min-height: 80vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.tr_homeTabSec {
  background: #b6e4ff;
}
.tr_homeTabSec .tr_homeTabs {
  margin-top: -45px;
}
.tr_homeTabSec .tr_homeTabs ul {
  margin: 0px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 480px) {
  .tr_homeTabSec .tr_homeTabs ul {
    margin-left: 30px;
  }
}
.tr_homeTabSec .tr_homeTabs ul li {
  display: inline-block;
  color: white;
  height: 40px;
  border-radius: 0px 10px 0px 0px;
  background: #ee4d49;
  padding: 8px 30px;
  font-size: 13px;
  cursor: pointer;
  line-height: 30px;
  font-weight: 500;
}
.tr_homeTabSec .tr_homeTabs ul li:first-child {
  border-radius: 10px 0px 0px 0px;
}
.tr_homeTabSec .tr_homeTabs ul li:last-child {
  border-radius: 0px 10px 0px 0px;
}
.tr_homeTabSec .tr_homeTabs ul li.active {
  color: #000;
  background: #b6e4ff;
  height: 45px;
  line-height: 40px;
}
.tr_homeTabSec .tr_homeTabs ul li.active:first-child {
  border-radius: 10px 10px 0px 0px;
}
.tr_homeTabSec .tr_homeTabs ul li.active:last-child {
  border-radius: 10px 10px 0px 0px;
}
.tr_homeTabSec .tr_homeTabContent {
  background-color: #b7e4ff;
  padding-block: 20px;
}
@media (max-width: 480px) {
  .tr_homeTabSec .tr_homeTabContent {
    padding-block: 20px;
  }
}
.tr_homeTabSec .tr_homeTabContent .tr_homeTabContentTitle {
  color: #001489;
  border-bottom: 1px solid #3f3f3f;
  padding-bottom: 10px;
  font-size: 26px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 30px;
}
@media (max-width: 920px) {
  .tr_homeTabSec .tr_homeTabContent .tr_homeTabContentTitle {
    text-align: center;
    width: 100%;
    font-size: 18px;
  }
  .tr_homeTabSec .tr_homeTabContent .tr_homeTabContentTitle br {
    display: none;
  }
}
.tr_homeTabSec .tr_homeTabContent ul {
  padding: 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto 20px auto;
}
.tr_homeTabSec .tr_homeTabContent ul li {
  color: #606060;
  border-right: 1px solid #3f3f3f;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  width: 25%;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 480px) {
  .tr_homeTabSec .tr_homeTabContent ul li {
    width: auto;
    border-right: none;
  }
}
.tr_homeTabSec .tr_homeTabContent ul li.active {
  color: #001489;
}
.tr_homeTabSec .tr_homeTabContent ul li:hover {
  color: #001489;
}
.tr_homeTabSec .tr_homeTabContent ul li:last-child {
  border-right: none;
}
.tr_homeTabSec .tr_homeTabContent p {
  color: #606060;
  font-size: 14px;
  font-weight: 300;
  margin-top: 20px;
  margin-left: 100px;
  margin-right: 100px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: auto;
}
.tr_homeTabSec .tr_homeTabContent .btn {
  background-color: #ef4d49;
  border-color: #ef4d49;
  border-radius: 0px;
  flex-shrink: 0;
  padding-inline: 30px;
  color: #fff;
}
.tr_homeTabSec .tr_homeTabContent .btn:hover {
  background-color: black;
  border-color: black;
}

.tr_homeSec2 .trTagline {
  color: #ef4d49;
  font-weight: 600;
}
.tr_homeSec2 .tr_homeSecTitle {
  color: #606060;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .tr_homeSec2 .tr_homeSecTitle {
    font-size: 20px;
  }
}
.tr_homeSec2 .tr_homeSecContent {
  color: #606060;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 650px;
  margin: auto;
}
@media (max-width: 480px) {
  .tr_homeSec2 .tr_homeSecContent {
    font-size: 12px;
  }
}
.tr_homeSec2 .tr_homeSec2Padding {
  padding: 50px;
}
@media (max-width: 480px) {
  .tr_homeSec2 .tr_homeSec2Padding {
    padding: 20px;
  }
}
.tr_homeSec2 .tr_homeSec2Padding .tr_homeSec2Tabs {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 920px) {
  .tr_homeSec2 .tr_homeSec2Padding .tr_homeSec2Tabs {
    grid-template-columns: 1fr;
  }
}
.tr_homeSec2 .tr_homeSec2Padding .tr_homeSec2Tabs > div {
  display: flex;
  justify-content: space-between;
  background: white;
  padding: 10px 20px;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  align-items: center;
}
.tr_homeSec2 .tr_homeSec2Padding .tr_homeSec2Tabs > div span {
  border-right: 1px solid rgba(0, 0, 0, 0.1882352941);
  color: #000;
  width: 60%;
}
.tr_homeSec2 .tr_homeSec2Padding .tr_homeSec2Tabs > div img {
  filter: brightness(0) invert(0);
}
.tr_homeSec2 .tr_homeSec2Padding .tr_homeSec2Tabs > div img.tr_homeSec2TabDD {
  transform: rotate(180deg);
  transition: transform 0.3s linear;
}
.tr_homeSec2 .tr_homeSec2Padding .tr_homeSec2Tabs > div.active {
  background: #ef4d49;
  color: white;
}
.tr_homeSec2 .tr_homeSec2Padding .tr_homeSec2Tabs > div.active span {
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.1882352941);
}
.tr_homeSec2 .tr_homeSec2Padding .tr_homeSec2Tabs > div.active img {
  filter: brightness(100) invert(0);
}
.tr_homeSec2 .tr_homeSec2Padding .tr_homeSec2Tabs > div.active img.tr_homeSec2TabDD {
  transform: rotate(0deg);
  transition: transform 0.3s linear;
}
.tr_homeSec2 .tr_homeSec2Padding .tr_homeSec2Tabs > div .tr_homeSec2TabDD {
  width: 18px;
  height: 24px;
}
.tr_homeSec2 .tr_homeSec2Padding .tr_homeSec2TabTitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.tr_homeSec2 .tr_homeSec2Padding .tr_homeSec2TabContent {
  color: #606060;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;
}

.tr_homeSec3 {
  margin-top: 50px;
}
.tr_homeSec3 .tr_homeSecBg {
  background-image: url(../media/img/sec3-bg.jpg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  padding: 80px 30px 250px 30px;
}
.tr_homeSec3 .tr_homeSecBg::before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(94.44deg, #00068f 9%, #ff0000 97.64%);
  top: 0;
  left: 0;
  opacity: 0.55;
}
.tr_homeSec3 .tr_homeSecBg .tr_homeSec3Tagline {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.tr_homeSec3 .tr_homeSecBg .tr_homeSec3Title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}
.tr_homeSec3 .tr_homeSecBg .tr_homeSec3Content {
  font-size: 14px;
}
.tr_homeSec3 .tr_homeSecBg .btn {
  background-color: #ef4d49;
  border-color: #ef4d49;
  border-radius: 0px;
  flex-shrink: 0;
}
.tr_homeSec3 .tr_homeSecBg .btn:hover {
  background-color: black;
  border-color: black;
}
.tr_homeSec3 .tr_homeSecBg ul {
  padding-left: 100px;
  font-size: 14px;
}
@media (max-width: 480px) {
  .tr_homeSec3 .tr_homeSecBg ul {
    padding-left: 0px;
    margin-top: 30px;
  }
}
.tr_homeSec3 .tr_homeSecBg ul li {
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}
.tr_homeSec3 .tr_homeSecBg ul li::before {
  content: " ";
  width: 16px;
  height: 16px;
  position: absolute;
  background: url("../media/svg/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
}
.tr_homeSec3 .tr_homeSec3FloatImgs {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  max-width: 1140px;
  margin: auto;
  gap: 20px;
  margin-top: -140px;
}
@media (max-width: 480px) {
  .tr_homeSec3 .tr_homeSec3FloatImgs {
    margin-top: -180px;
  }
}
.tr_homeSec3 .tr_homeSec3FloatImgs img {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 50px;
}
@media (max-width: 480px) {
  .tr_homeSec3 .tr_homeSec3FloatImgs img {
    margin-top: 0px;
  }
}
.tr_homeSec3 .tr_homeSec3FloatImgs img:first-child {
  margin-top: -30px;
}
@media (max-width: 480px) {
  .tr_homeSec3 .tr_homeSec3FloatImgs img:first-child {
    margin-top: 0px;
  }
}
.tr_homeSec3 .tr_homeSec3FloatImgs img:last-child {
  margin-top: -120px;
}
@media (max-width: 480px) {
  .tr_homeSec3 .tr_homeSec3FloatImgs img:last-child {
    margin-top: 0px;
  }
}

.tr_homeSec4 {
  padding: 50px 15px;
}
.tr_homeSec4 .trTagline {
  color: #ef4d49;
  font-weight: 600;
}
.tr_homeSec4 .tr_homeSecTitle {
  color: #606060;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .tr_homeSec4 .tr_homeSecTitle {
    font-size: 20px;
  }
}
.tr_homeSec4 .tr_homeSecContent {
  color: #606060;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 500px;
  margin: auto;
}
.tr_homeSec4 .card {
  border: 1px solid #000000;
  border-radius: 10px;
  margin-bottom: 20px;
}
.tr_homeSec4 .card .card-body {
  padding: 30px;
}
.tr_homeSec4 .card .card-body .card-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.tr_homeSec4 .card .card-body .card-title div {
  display: flex;
  background-color: #ef4d49;
  padding: 12px;
  border-radius: 50px;
  margin-right: 10px;
}
.tr_homeSec4 .card .card-body .card-title div img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.7;
}
.tr_homeSec4 .card .card-body p {
  font-size: 14px;
  color: #606060;
  margin-bottom: 0;
}
.tr_homeSec4 .card:hover {
  border: 1px solid transparent;
  background: linear-gradient(94.44deg, rgba(0, 6, 143, 0.5019607843) 30%, rgba(255, 0, 0, 0.5019607843) 100%);
  background-repeat: no-repeat;
  color: white;
}
.tr_homeSec4 .card:hover p {
  color: white;
}
.tr_homeSec4 .card:hover .card-body div img {
  opacity: 1;
}

.tr_homeSec5 .trTagline {
  color: #ef4d49;
  font-weight: 600;
}
.tr_homeSec5 .tr_homeSecTitle {
  color: #606060;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .tr_homeSec5 .tr_homeSecTitle {
    font-size: 20px;
  }
}
.tr_homeSec5 .tr_homeSecContent {
  color: #606060;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
}
.tr_homeSec5 .tr_homeSec5Cards .card {
  background: #f8f8f8;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  border-radius: 5px;
  border: none;
  color: #606060;
}
.tr_homeSec5 .tr_homeSec5Cards .card .card-body {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 20px;
}
.tr_homeSec5 .tr_homeSec5Cards .card .card-body img {
  margin-right: 20px;
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0);
}
.tr_homeSec5 .tr_homeSec5Cards .card .card-body div {
  font-weight: 500;
}
.tr_homeSec5 .tr_homeSec5Cards .card .card-body p {
  margin-bottom: 0px;
  font-weight: 300;
}
.tr_homeSec5 .tr_homeSec5Cards .card:hover {
  background: linear-gradient(94.44deg, rgba(255, 0, 0, 0.7803921569) 9%, rgba(0, 6, 143, 0.7803921569) 97.64%);
  background-repeat: no-repeat;
  color: white;
}
.tr_homeSec5 .tr_homeSec5Cards .card:hover img {
  filter: brightness(100);
}

.tr_homeSec6 {
  background-image: url(../media/img/sec6-bg.jpg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  padding-block: 80px;
  margin: 50px 0px;
}
@media (max-width: 480px) {
  .tr_homeSec6 {
    padding: 50px 15px;
  }
}
.tr_homeSec6::before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(94.44deg, #00068f 9%, #ff0000 97.64%);
  top: 0;
  left: 0;
  opacity: 0.55;
}
.tr_homeSec6 .tr_homeSec6Tagline {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.tr_homeSec6 .tr_homeSec6Title {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.tr_homeSec6 p {
  font-size: 16px;
  margin-bottom: 40px;
}
.tr_homeSec6 .btn {
  background-color: #ef4d49;
  border-color: #ef4d49;
  border-radius: 0px;
  flex-shrink: 0;
  padding-inline: 30px;
  color: white;
}
.tr_homeSec6 .btn:hover {
  background-color: black;
  border-color: black;
}

.tr_homeSec7 {
  margin-bottom: 50px;
}
.tr_homeSec7 .trTagline {
  color: #ef4d49;
  font-weight: 600;
}
.tr_homeSec7 .tr_homeSecTitle {
  color: #606060;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .tr_homeSec7 .tr_homeSecTitle {
    font-size: 20px;
  }
}
.tr_homeSec7 .tr_homeSecContent {
  color: #606060;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 450px;
  margin: auto;
}
.tr_homeSec7 .tr_homeSecNews div {
  font-weight: 500;
  cursor: pointer;
  font-size: 18px;
}
.tr_homeSec7 .tr_homeSecNews div img {
  background-color: #f4f4f4;
  border-radius: 10px;
  padding: 10px;
}
.tr_homeSec7 .tr_homeSecNews p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0px;
  padding-right: 20px;
}

.tr_footer {
  background: #0f1941;
  color: white;
  padding: 0px 15px 20px 15px;
  font-size: 14px;
  font-weight: 300;
}
.tr_footer .tr_footerTitle {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.tr_footer p {
  font-size: 14px;
  line-height: 26px;
  font-weight: 300;
  margin-top: 10px;
}
.tr_footer ul li {
  margin-bottom: 10px;
}
.tr_footer a {
  color: white;
  text-decoration: none;
}
.tr_footer a:hover {
  color: #ef4d49;
}
.tr_footer .tr_footerBottom {
  padding-top: 20px;
}
.tr_footer .tr_footerBottom p {
  margin: 0;
}
.tr_footer .tr_footerBottom ul {
  list-style: none;
  margin-bottom: 0px;
  padding-left: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: auto;
}
@media (max-width: 480px) {
  .tr_footer .tr_footerBottom ul {
    fflex-direction: column;
    margin: 0;
    justify-content: left;
    padding-inline: 30px;
    text-align: left;
    align-items: flex-start;
  }
}
.tr_footer .tr_footerBottom ul li {
  margin-inline: 5px;
  border-right: 1px solid #a5a5a5;
  padding: 0px 20px;
  margin-bottom: 0px;
}
@media (max-width: 480px) {
  .tr_footer .tr_footerBottom ul li {
    border-right: none;
    padding: 0px;
    margin-bottom: 5px;
    width: 100%;
  }
}
.tr_footer .tr_footerBottom ul li:first-child {
  padding-left: 0px;
}
.tr_footer .tr_footerBottom ul li:last-child {
  margin-right: 0px;
  padding-right: 0px;
  border-right: none;
}

.tr_pageTitleSec {
  background-image: url(../media/img/about-bg.jpg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  padding: 100px 15px;
  text-align: center;
}
@media (max-width: 920px) {
  .tr_pageTitleSec {
    padding: 30px 20px;
  }
}
.tr_pageTitleSec.aboutUsBg {
  background-image: url(../media/img/about-bg.jpg);
}
.tr_pageTitleSec.itStaffingBg {
  background-image: url(../media/img/itStaffingBg.jpg);
}
.tr_pageTitleSec.itDevBg {
  background-image: url(../media/img/itDevBg.jpg);
}
.tr_pageTitleSec.itMainBg {
  background-image: url(../media/img/itMainBg.jpg);
}
.tr_pageTitleSec.itDesignBg {
  background-image: url(../media/img/itDesignBg.jpg);
}
.tr_pageTitleSec.itContactBg {
  background-image: url(../media/img/contactUsBg.jpg);
}
.tr_pageTitleSec::before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(94.44deg, #00068f 9%, #ff0000 97.64%);
  top: 0;
  left: 0;
  opacity: 0.55;
}

.tr_aboutSec2 {
  position: relative;
  padding: 80px 15px;
}
.tr_aboutSec2 .trTagline {
  color: #ef4d49;
  font-weight: 600;
}
.tr_aboutSec2 .tr_homeSec2TabTitle {
  color: #606060;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .tr_aboutSec2 .tr_homeSec2TabTitle {
    font-size: 20px;
  }
}
.tr_aboutSec2 .tr_homeSec2TabContent {
  color: #606060;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 650px;
}
.tr_aboutSec2 .tr_founderComment .tr_founderCommentBubble {
  position: relative;
  background: #b7e4ff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  border-radius: 10px 10px 10px 0px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-top: 50px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .tr_aboutSec2 .tr_founderComment .tr_founderCommentBubble {
    margin-left: 0px;
    margin-top: 0px;
  }
}
.tr_aboutSec2 .tr_founderComment .tr_founderCommentBubble::before {
  top: 100%;
  left: 0px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(183, 228, 255, 0);
  border-top-color: #b7e4ff;
  border-width: 15px 30px;
  margin-left: 0;
  border-left: 0;
}
.tr_aboutSec2 .tr_founderComment .tr_founderCommentDetails {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 920px) {
  .tr_aboutSec2 .tr_founderComment .tr_founderCommentDetails {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
  }
}
.tr_aboutSec2 .tr_founderComment .tr_founderCommentDetails .tr_founderCommentName {
  font-size: 14px;
  font-weight: 500;
  color: #606060;
}
.tr_aboutSec2 .tr_founderComment .tr_founderCommentDetails .tr_founderCommentName div {
  font-weight: 500;
}
.tr_aboutSec2 .tr_founderComment .tr_founderCommentDetails .tr_founderCommentName span {
  font-weight: 300;
}
@media (max-width: 920px) {
  .tr_aboutSec2 .tr_founderComment .tr_founderCommentDetails .tr_founderCommentSign {
    margin-top: 15px;
  }
}
.tr_aboutSec2 ul {
  list-style-image: url("../media/svg/trBullet.svg");
  padding-left: 20px;
}
.tr_aboutSec2 ul li {
  font-weight: 400;
  font-size: 16px;
  color: #606060;
  margin-bottom: 10px;
}
.tr_aboutSec2 ul li::marker {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.tr_aboutSec2 ul li:last-child {
  margin-bottom: 0px;
}

.tr_secMetrics {
  background-image: url(../media/img/about-metricsBg.jpg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  padding: 80px 20px;
  font-size: 36px;
}
.tr_secMetrics::before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(94.44deg, #00068f 9%, #ff0000 97.64%);
  top: 0;
  left: 0;
  opacity: 0.55;
}
.tr_secMetrics p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0px;
}
@media (max-width: 480px) {
  .tr_secMetrics .col-sm-3 {
    margin-bottom: 30px;
  }
  .tr_secMetrics .col-sm-3:last-child {
    margin-bottom: 0px;
  }
}

.tr_aboutSec4 {
  padding: 80px 15px;
}
@media (max-width: 480px) {
  .tr_aboutSec4 {
    padding: 50px 20px;
  }
}
.tr_aboutSec4 .tr_aboutSecImg {
  background-image: url(../media/img/vector-2.png);
  background-size: auto 400px;
  background-repeat: no-repeat;
  padding: 80px 30px 0px 200px;
}
.tr_aboutSec4 .tr_aboutSecImg img {
  display: none;
}
.tr_aboutSec4 .tr_aboutSecImg .tr_homeSecTitle {
  font-size: 24px;
  font-weight: 500;
  color: #000;
}
@media (max-width: 1366px) {
  .tr_aboutSec4 .tr_aboutSecImg {
    background-size: contain;
  }
}
@media (max-width: 480px) {
  .tr_aboutSec4 .tr_aboutSecImg {
    padding: 0px 15px;
    background-image: none;
  }
  .tr_aboutSec4 .tr_aboutSecImg img {
    display: block;
    margin-bottom: 30px;
  }
  .tr_aboutSec4 .tr_aboutSecImg .tr_homeSecTitle br {
    display: none;
  }
}
.tr_aboutSec4 .tr_homeSecContent {
  padding-top: 80px;
}

.tr_aboutAccordSec {
  color: white;
  background-color: #001489;
  margin-bottom: 50px;
}
.tr_aboutAccordSec .tr_aboutAccordContainer {
  padding: 50px 30px;
  max-width: 570px;
  margin-left: auto;
}
.tr_aboutAccordSec .tr_aboutAccordContainer .trTagline {
  color: #ef4d49;
  font-weight: 600;
  margin-bottom: 10px;
}
.tr_aboutAccordSec .tr_aboutAccordContainer .tr_accordSecTitle {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.tr_aboutAccordSec .tr_aboutAccordContainer .tr_accordions {
  width: 100%;
}
.tr_aboutAccordSec .tr_aboutAccordContainer .tr_accordions .tr_accordion {
  margin-bottom: 10px;
}
.tr_aboutAccordSec .tr_aboutAccordContainer .tr_accordions .tr_accordion .tr_accordionHeader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px 0px;
  font-size: 16px;
  align-items: center;
  border-bottom: 1px solid #a5a5a5;
  cursor: pointer;
}
.tr_aboutAccordSec .tr_aboutAccordContainer .tr_accordions .tr_accordion .tr_accordionHeader .tr_accordionIcon {
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}
.tr_aboutAccordSec .tr_aboutAccordContainer .tr_accordions .tr_accordion .tr_accordionBody {
  display: none;
  padding: 20px 0px;
}
.tr_aboutAccordSec .tr_aboutAccordContainer .tr_accordions .tr_accordion .tr_accordionBody p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0px;
}
.tr_aboutAccordSec .tr_aboutAccordContainer .tr_accordions .tr_accordion.active .tr_accordionIcon {
  transform: rotate(180deg);
}
.tr_aboutAccordSec .tr_aboutAccordContainer .tr_accordions .tr_accordion.active .tr_accordionBody {
  display: block;
}
.tr_aboutAccordSec .img-fluid {
  -o-object-fit: cover;
     object-fit: cover;
}

.tr_itstaffSec1 {
  padding: 80px 15px;
}
.tr_itstaffSec1 .trTagline {
  color: #ef4d49;
  font-weight: 600;
}
.tr_itstaffSec1 .tr_homeSecTitle {
  color: #606060;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .tr_itstaffSec1 .tr_homeSecTitle {
    font-size: 20px;
  }
}
.tr_itstaffSec1 .tr_homeSecContent {
  color: #606060;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 600px;
  margin: auto;
}
.tr_itstaffSec1 .tr_itstaffSec1Card {
  background: white;
  box-shadow: 0px 0px 4px 0px #ccc;
  border-radius: 10px;
  margin-top: 30px;
  overflow: hidden;
  position: relative;
}
.tr_itstaffSec1 .tr_itstaffSec1Card .tr_itstaffSec1CardImg img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 920px) {
  .tr_itstaffSec1 .tr_itstaffSec1Card .tr_itstaffSec1CardImg img {
    height: 300px;
  }
}
.tr_itstaffSec1 .tr_itstaffSec1Card .tr_itstaffSec1CardBody {
  position: absolute;
  width: 100%;
  bottom: 0px;
  background: white;
  margin: 0px;
}
@media (max-width: 480px) {
  .tr_itstaffSec1 .tr_itstaffSec1Card .tr_itstaffSec1CardBody {
    position: relative;
  }
}
.tr_itstaffSec1 .tr_itstaffSec1Card .tr_itstaffSec1CardBody .col-sm-4 {
  display: flex;
  font-size: 14px;
  text-align: left;
  border-right: 1px solid #ccc;
  align-items: center;
  justify-content: center;
}
@media (max-width: 920px) {
  .tr_itstaffSec1 .tr_itstaffSec1Card .tr_itstaffSec1CardBody .col-sm-4 {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .tr_itstaffSec1 .tr_itstaffSec1Card .tr_itstaffSec1CardBody .col-sm-4 {
    justify-content: flex-start;
    border-right: none;
  }
}
.tr_itstaffSec1 .tr_itstaffSec1Card .tr_itstaffSec1CardBody .col-sm-4:last-child {
  border-right: none;
}
.tr_itstaffSec1 .tr_itstaffSec1Card .tr_itstaffSec1CardBody .col-sm-4 .tr_itstaffSec1MetricCount {
  font-size: 32px;
  font-weight: 500;
  color: #ef4d49;
  margin-right: 20px;
  padding: 30px;
}
@media (max-width: 920px) {
  .tr_itstaffSec1 .tr_itstaffSec1Card .tr_itstaffSec1CardBody .col-sm-4 .tr_itstaffSec1MetricCount {
    padding: 5px;
  }
}
.tr_itstaffSec1 .tr_itstaffSec1Card .tr_itstaffSec1CardBody .col-sm-4 .tr_itstaffSec1MetricCount img {
  height: 18px;
}
.tr_itstaffSec1 .tr_itstaffSec1Card .tr_itstaffSec1CardBody .col-sm-4 p {
  font-weight: 400;
  margin-bottom: 0px;
}

.tr_itstaffSec2 {
  font-size: 14px;
  margin-bottom: 50px;
  margin-top: 100px;
  color: #606060;
}
.tr_itstaffSec2 .trTagline {
  color: #ef4d49;
  font-weight: 600;
}
.tr_itstaffSec2 .tr_homeSecTitle {
  color: #606060;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .tr_itstaffSec2 .tr_homeSecTitle {
    font-size: 20px;
  }
}
.tr_itstaffSec2 .tr_homeSecContent {
  color: #606060;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 650px;
  margin: auto;
}
.tr_itstaffSec2 .tr_itstaffSec2Title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 26px;
}
.tr_itstaffSec2 .tr_itstaffSec2SubBlock {
  padding: 0px 30px;
}
@media (max-width: 480px) {
  .tr_itstaffSec2 .tr_itstaffSec2SubBlock {
    padding: 30px 0px;
  }
}
.tr_itstaffSec2 .tr_itstaffSec2SubBlock img {
  margin-bottom: 20px;
}
.tr_itstaffSec2 .tr_itstaffSec2SubBlock .tr_itstaffSec2SubBlockTitle {
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.tr_itstaffSec2 .tr_itstaffSec2SubBlock .trTagline {
  color: #ef4d49;
  font-weight: 600;
}

.tr_itstaffSec3 .tr_itstaffSec3Card {
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  height: 300px;
  width: 100%;
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
}
.tr_itstaffSec3 .tr_itstaffSec3Card.tr_itstaffSec3COne {
  background-image: url(../media/img/itStaffSec3Img1.jpg);
}
.tr_itstaffSec3 .tr_itstaffSec3Card.tr_itstaffSec3CTwo {
  background-image: url(../media/img/itStaffSec3Img2.jpg);
}
.tr_itstaffSec3 .tr_itstaffSec3Card.tr_itstaffSec3CThree {
  background-image: url(../media/img/about-accordImg.jpg);
}
.tr_itstaffSec3 .tr_itstaffSec3Card .tr_itstaffSec3CardTitle {
  position: absolute;
  bottom: 0;
  right: 75px;
  background: linear-gradient(94.44deg, rgba(0, 6, 143, 0.5019607843) 9%, rgba(255, 0, 0, 0.5019607843) 97.64%);
  border-radius: 10px 0px 0px 0px;
  color: white;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 18px;
}
.tr_itstaffSec3 .tr_itstaffSec3Card .tr_itstaffSec3CardAside {
  position: absolute;
  right: 0px;
  top: 0px;
  display: flex;
  flex-direction: column;
  background: #fde7e6;
  padding: 20px;
  height: 100%;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  font-size: 36px;
  color: #606060;
  font-weight: 500;
  width: 75px;
}
.tr_itstaffSec3 .tr_itstaffSec3Card .tr_itstaffSec3CardAside img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.tr_itstaffSec3 ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 50px auto;
}
.tr_itstaffSec3 ul li {
  width: 50px;
  height: 5px;
  background: #d9d9d9;
  margin-right: 4px;
  cursor: pointer;
}
.tr_itstaffSec3 ul li:last-child {
  margin-right: 0px;
}
.tr_itstaffSec3 ul li.active {
  background: #ffb5b1;
  cursor: default;
}

.tr_newsletter {
  background-image: url(../media/img/newsletterBg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  padding: 50px;
  margin-bottom: 0;
}
.tr_newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 48, 105, 0.6823529412);
}
.tr_newsletter .row {
  max-width: 1140px;
  margin: auto;
}
.tr_newsletter .tr_newsletterTitle {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 26px;
}
.tr_newsletter .tr_newsletterContent {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0px;
  line-height: 18px;
}
@media (max-width: 480px) {
  .tr_newsletter .tr_newsletterContent {
    margin-bottom: 10px;
  }
}
.tr_newsletter .tr_newsletterForm {
  display: flex;
  align-self: center;
}
.tr_newsletter .tr_newsletterForm input {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 0px;
  padding: 0px 20px;
  font-size: 12px;
  font-weight: 300;
  color: #333;
}
.tr_newsletter .tr_newsletterForm button {
  height: 40px;
  border: none;
  border-radius: 0px;
  background: #3b79f9;
  color: white;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  padding: 0px 20px;
}

.tr_itDevSec1 {
  padding: 80px 15px;
}
.tr_itDevSec1 .trTagline {
  color: #ef4d49;
  font-weight: 600;
}
.tr_itDevSec1 .tr_homeSecTitle {
  color: #606060;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .tr_itDevSec1 .tr_homeSecTitle {
    font-size: 20px;
  }
}
.tr_itDevSec1 .tr_homeSecContent {
  color: #606060;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 650px;
  margin: auto;
}
@media (max-width: 480px) {
  .tr_itDevSec1 .tr_homeSecContent {
    font-size: 12px;
  }
}
.tr_itDevSec1 .tr_itDevSec1Box {
  width: 100%;
  position: relative;
  margin-top: 50px;
  padding: 15px;
}
@media (max-width: 480px) {
  .tr_itDevSec1 .tr_itDevSec1Box {
    padding: 0px;
  }
}
.tr_itDevSec1 .tr_itDevSec1Box .tr_itDevSec1BoxImg {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 50px;
}
.tr_itDevSec1 .tr_itDevSec1Box .tr_itDevSec1BoxImg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.tr_itDevSec1 .tr_itDevSec1Box .tr_itDevSec1BoxContent {
  background: #fffbfb;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  width: 80%;
  margin: auto;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  text-align: center;
  border-radius: 15px;
  padding: 20px;
}
.tr_itDevSec1 .tr_itDevSec1Box .tr_itDevSec1BoxContent img {
  margin-bottom: 20px;
}
.tr_itDevSec1 .tr_itDevSec1Box .tr_itDevSec1BoxContent p {
  color: #606060;
}
@media (max-width: 920px) {
  .tr_itDevSec1 .tr_itDevSec1Box .tr_itDevSec1BoxContent {
    bottom: 0px;
    padding: 20px;
  }
  .tr_itDevSec1 .tr_itDevSec1Box .tr_itDevSec1BoxContent img {
    margin-bottom: 10px;
    width: 30px;
  }
  .tr_itDevSec1 .tr_itDevSec1Box .tr_itDevSec1BoxContent p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0px;
  }
}

.tr_itDevSec2 {
  padding: 0px;
  margin-bottom: 50px;
}
.tr_itDevSec2 .tr_itDevSec2Block1 {
  background-color: #b7e4ff;
  color: #606060;
  height: 400px;
  position: relative;
  overflow: hidden;
  padding: 50px 50px 0px 25%;
}
@media (max-width: 480px) {
  .tr_itDevSec2 .tr_itDevSec2Block1 {
    height: auto;
    padding: 150px 30px 0px 25%;
  }
}
.tr_itDevSec2 .tr_itDevSec2Block1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background-image: url(../media/img/itDevSecImg1.png);
  background-repeat: no-repeat;
  border-radius: 0;
  z-index: 2;
  background-size: contain;
}
.tr_itDevSec2 .tr_itDevSec2Block1::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 10px;
  width: 40%;
  height: 40%;
  transform: rotate(-25deg);
  border: 1px solid #606060;
  border-radius: 15px;
  z-index: 1;
}
@media (max-width: 920px) {
  .tr_itDevSec2 .tr_itDevSec2Block1::after {
    top: 30px;
    left: 10px;
    width: 40%;
    height: 90px;
  }
}
@media (max-width: 480px) {
  .tr_itDevSec2 .tr_itDevSec2Block1::after {
    top: 30px;
    left: 0px;
    width: 45%;
    height: 70px;
  }
}
.tr_itDevSec2 .tr_itDevSec2Block2 {
  background-color: #001489;
  color: white;
  padding: 50px 25% 0px 50px;
  position: relative;
  overflow: hidden;
  height: 400px;
}
@media (max-width: 480px) {
  .tr_itDevSec2 .tr_itDevSec2Block2 {
    height: auto;
    padding: 100px 25% 50px 20px;
  }
}
.tr_itDevSec2 .tr_itDevSec2Block2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: url(../media/img/itDevSecImg2.png);
  background-repeat: no-repeat;
  background-position: top;
  border-radius: 0;
  z-index: 2;
  background-size: contain;
}
.tr_itDevSec2 .tr_itDevSec2Block2::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 20px;
  width: 40%;
  height: 50%;
  transform: rotate(25deg);
  border: 1px solid #606060;
  border-radius: 15px;
  z-index: 1;
}
@media (max-width: 480px) {
  .tr_itDevSec2 .tr_itDevSec2Block2::after {
    top: 0px;
    right: -40px;
    width: 50%;
    height: 150px;
    transform: rotate(18deg);
  }
}
@media (max-width: 920px) {
  .tr_itDevSec2 .tr_itDevSec2Block2::after {
    transform: rotate(18deg);
    height: 30%;
  }
}
.tr_itDevSec2 .tr_itDevS2BTitle {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 18px;
}
@media (max-width: 480px) {
  .tr_itDevSec2 .tr_itDevS2BTitle {
    font-size: 14px;
  }
}
.tr_itDevSec2 p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
@media (max-width: 480px) {
  .tr_itDevSec2 p {
    font-size: 14px;
    line-height: 18px;
  }
}

.tr_itDevSec3 {
  margin-bottom: 50px;
}
.tr_itDevSec3 .tr_homeSecTitle {
  color: #606060;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .tr_itDevSec3 .tr_homeSecTitle {
    font-size: 20px;
  }
}
.tr_itDevSec3 .tr_homeSecContent {
  color: #606060;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 650px;
  margin: auto;
}
.tr_itDevSec3 .tr_itDevSec3Grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 480px) {
  .tr_itDevSec3 .tr_itDevSec3Grid {
    grid-template-columns: 1fr;
  }
}
.tr_itDevSec3 .tr_itDevSec3Grid .tr_itDevSec3GLeft {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px 0px;
  grid-template-rows: 1fr 1fr 1fr;
}
@media (max-width: 480px) {
  .tr_itDevSec3 .tr_itDevSec3Grid .tr_itDevSec3GLeft {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0px 20px;
    grid-template-rows: auto;
  }
}
.tr_itDevSec3 .tr_itDevSec3Grid .tr_itDevSec3GLeft > div {
  background-color: #001489;
  color: white;
  border-radius: 15px;
  text-align: center;
  font-size: 18px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.tr_itDevSec3 .tr_itDevSec3Grid .tr_itDevSec3GLeft > div img {
  margin-bottom: 15px;
  margin-top: 10px;
  width: 32px;
}
.tr_itDevSec3 .tr_itDevSec3Grid .tr_itDevSec3GLeft > div p {
  margin-bottom: 0px;
}
.tr_itDevSec3 .tr_itDevSec3Grid .tr_itDevSec3GRight {
  display: grid;
  grid-template-columns: 100%;
  gap: 0px;
}
.tr_itDevSec3 .tr_itDevSec3Grid .tr_itDevSec3GRight .tr_itDevSec3GRImg {
  width: 100%;
  height: 500px;
  background-image: url(../media/img/itDevCheckSecBg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.tr_itDevSec3 .tr_itDevSec3Grid .tr_itDevSec3GRight .tr_itDevSec3GRImg .tr_itDevSec3GRText {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(94.44deg, rgba(0, 6, 143, 0.5019607843) 9%, rgba(255, 0, 0, 0.5019607843) 97.64%);
  border-radius: 0px 15px 0px 0px;
  color: white;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 18px;
  width: 70%;
}
@media (max-width: 480px) {
  .tr_itDevSec3 .tr_itDevSec3Grid .tr_itDevSec3GRight .tr_itDevSec3GRImg .tr_itDevSec3GRText {
    width: 95%;
  }
}
.tr_itDevSec3 .tr_itDevSec3Grid .tr_itDevSec3GRight .tr_itDevSec3GRImg .tr_itDevSec3GRText .tr_itDevSec3GRTTitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.tr_itDevSec3 .tr_itDevSec3Grid .tr_itDevSec3GRight .tr_itDevSec3GRImg .tr_itDevSec3GRText .tr_itDevSec3GRTContent {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
}
.tr_itDevSec3 .tr_itDevSec3Grid .tr_itDevSec3GRight .tr_itDevSec3GRImg .tr_itDevSec3GRText img {
  width: 20px;
  height: auto;
  margin-bottom: 10px;
}

.tr_itDevSec4 {
  margin: 50px auto;
}
.tr_itDevSec4 .tr_homeSecTitle {
  color: #606060;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .tr_itDevSec4 .tr_homeSecTitle {
    font-size: 20px;
  }
}
.tr_itDevSec4 .tr_homeSecContent {
  color: #606060;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 650px;
  margin: auto;
}
.tr_itDevSec4 .tr_itDevSec4Card {
  background-color: #f5f4ff;
  border-radius: 10px;
  margin-bottom: 20px;
  border: none;
  color: #606060;
  position: relative;
}
.tr_itDevSec4 .tr_itDevSec4Card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 30px;
  height: 30px;
  background-image: url(../media/svg/itDevIconDots.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
}
.tr_itDevSec4 .tr_itDevSec4Card .card-body {
  padding: 5px;
}
.tr_itDevSec4 .tr_itDevSec4Card .card-body .tr_itDevSec4CardContent {
  display: flex;
  padding: 15px;
}
.tr_itDevSec4 .tr_itDevSec4Card .card-body .tr_itDevSec4CardContent .tr_itDevSec4CardIcon {
  border-right: 1px solid rgba(0, 0, 0, 0.1254901961);
  margin-right: 20px;
  padding-right: 20px;
}
.tr_itDevSec4 .tr_itDevSec4Card .card-body .tr_itDevSec4CardContent .tr_itDevSec4CardIcon img {
  height: 24px;
}
.tr_itDevSec4 .tr_itDevSec4Card .card-body .tr_itDevSec4CardContent .tr_itDevSec4CardText {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
}

.tr_itMainSec {
  padding: 80px 15px;
  margin: 50px auto;
  color: white;
  background-color: #001489;
}
.tr_itMainSec .trTagline {
  color: #ef4d49;
  font-weight: 600;
}
.tr_itMainSec .tr_homeSecTitle {
  color: #606060;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
  color: #fff;
}
@media (max-width: 480px) {
  .tr_itMainSec .tr_homeSecTitle {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .tr_itMainSec .tr_homeSecTitle {
    font-size: 20px;
  }
}
.tr_itMainSec .tr_homeSecContent {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
}
.tr_itMainSec .tr_itMainSecTabs {
  width: 100%;
}
.tr_itMainSec .tr_itMainSecTabs .tr_itMainSecTab a {
  width: 100%;
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: 50px 1fr;
  opacity: 0.6;
  align-items: center;
}
.tr_itMainSec .tr_itMainSecTabs .tr_itMainSecTab a .tr_itMainSecTabIcon {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 480px) {
  .tr_itMainSec .tr_itMainSecTabs .tr_itMainSecTab a .tr_itMainSecTabIcon {
    width: 24px;
    height: 24px;
  }
}
.tr_itMainSec .tr_itMainSecTabs .tr_itMainSecTab a .tr_itMainSecTabTitle {
  font-size: 18px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 0px;
  border-bottom: 1px solid #ccc;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 480px) {
  .tr_itMainSec .tr_itMainSecTabs .tr_itMainSecTab a .tr_itMainSecTabTitle {
    font-size: 16px;
  }
}
.tr_itMainSec .tr_itMainSecTabs .tr_itMainSecTab:hover a, .tr_itMainSec .tr_itMainSecTabs .tr_itMainSecTab.active a {
  opacity: 1;
  cursor: pointer;
}
.tr_itMainSec .tr_itMainSecImgBlock {
  width: 100%;
  height: 320px;
  background-image: url(../media/img/itMainSec2Img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media (max-width: 480px) {
  .tr_itMainSec .tr_itMainSecImgBlock {
    margin-top: 30px;
  }
}
.tr_itMainSec .tr_itMainSecImgBlock::before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(359.12deg, #001489 0.79%, rgba(255, 255, 255, 0) 42.79%, rgba(83, 107, 244, 0) 99.29%);
  top: 0;
  left: 0;
}
.tr_itMainSec .tr_itMainSecImgBlock .tr_itMainSecImgBContent {
  display: flex;
  align-self: center;
  position: absolute;
  bottom: 0;
  padding: 10px;
  gap: 20px;
}
.tr_itMainSec .tr_itMainSecImgBlock .tr_itMainSecImgBContent .tr_itMainSecImgBTitle {
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
}
.tr_itMainSec .tr_itMainSecImgBlock .tr_itMainSecImgBContent .tr_itMainSecImgBTitle div {
  flex-shrink: 0;
}
.tr_itMainSec .tr_itMainSecImgBlock .tr_itMainSecImgBContent .tr_itMainSecImgBTitle span {
  display: block;
  background: white;
  width: 100%;
  height: 1.5px;
}
.tr_itMainSec .tr_itMainSecImgBlock .tr_itMainSecImgBContent p {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 0px;
}
.tr_itMainSec .tr_itMainSecImgBlock .tr_itMainSecImgBContent img {
  align-self: center;
  width: 32px;
}

.itDesignSec2 {
  background-color: #f6f6f6;
  padding: 80px 15px;
}
.itDesignSec2 .trTagline {
  color: #ef4d49;
  font-weight: 600;
}
.itDesignSec2 .tr_homeSecTitle {
  color: #606060;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .itDesignSec2 .tr_homeSecTitle {
    font-size: 20px;
  }
}
.itDesignSec2 .tr_homeSecContent {
  color: #606060;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 650px;
  margin: auto;
  max-width: 450px;
}
@media (max-width: 480px) {
  .itDesignSec2 .tr_homeSecContent {
    font-size: 12px;
  }
}
.itDesignSec2 .col-lg-4 {
  padding: 30px;
}
@media (max-width: 480px) {
  .itDesignSec2 .col-lg-4 {
    padding: 0px;
  }
}
.itDesignSec2 .col-lg-4 .itDesignSec2Icon {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.itDesignSec2 .col-lg-4 .itDesignSec2Title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 10px;
}
.itDesignSec2 .col-lg-4 p {
  font-size: 14px;
  font-weight: 300;
}

.itDesignSec3 {
  padding: 80px 15px;
  margin: 50px auto;
}
@media (max-width: 480px) {
  .itDesignSec3 {
    margin: 0px;
  }
}
.itDesignSec3 .trTagline {
  color: #ef4d49;
  font-weight: 600;
}
@media (max-width: 480px) {
  .itDesignSec3 .trTagline {
    margin-top: 40px;
  }
}
.itDesignSec3 .tr_homeSecTitle {
  color: #606060;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .itDesignSec3 .tr_homeSecTitle {
    font-size: 20px;
  }
}
.itDesignSec3 .tr_homeSecContent {
  color: #606060;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 650px;
  margin: auto;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .itDesignSec3 .tr_homeSecContent {
    font-size: 12px;
  }
}
.itDesignSec3 .arrowBtnLink {
  margin-top: 30px;
}
.itDesignSec3 .itDesignSec3Icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 30px;
}
.itDesignSec3 .itDesignSec3Icons img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}

.padInline150 {
  padding-inline: 150px;
}
@media (max-width: 920px) {
  .padInline150 {
    padding-inline: 30px;
  }
}

.arrowBtnLink {
  color: #ef4d49;
  font-weight: 600;
}
.arrowBtnLink img {
  vertical-align: text-top;
  margin-left: 5px;
  transition: all 0.3s linear;
}
.arrowBtnLink:hover {
  cursor: pointer;
}
.arrowBtnLink:hover img {
  margin-left: 15px;
}

.tr_backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #ef4d49;
  color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s linear;
  cursor: pointer;
  display: none;
  padding: 10px 7px;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
}
.tr_backToTop img {
  height: 28px;
  margin-bottom: 5px;
}

.tr_itStaffSec {
  background-image: url(../media/img/trItStaffImg.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  color: black;
  position: relative;
  padding-block: 120px;
  margin: 50px 0px;
}
@media (max-width: 480px) {
  .tr_itStaffSec {
    padding: 50px 15px;
  }
}
.tr_itStaffSec .tr_homeSec6Title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
  color: #215fad;
}
.tr_itStaffSec p {
  font-size: 16px;
  margin-bottom: 40px;
}

.tr_homeSecLast {
  margin-bottom: 50px;
}
.tr_homeSecLast .tr_homeSecTitle {
  color: #606060;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .tr_homeSecLast .tr_homeSecTitle {
    font-size: 20px;
  }
}
.tr_homeSecLast .tr_homeSecContent {
  color: #606060;
  font-size: 14px;
  font-weight: 300;
  max-width: 80%;
  margin: auto;
  margin-bottom: 20px;
}

.tr_ctsec {
  margin-bottom: 20px;
  margin-top: 75px;
}
.tr_ctsec .tr_homeSec5Cards .card {
  background: #f8f8f8;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  border-radius: 15px;
  border: none;
  color: #606060;
}
.tr_ctsec .tr_homeSec5Cards .card .card-body {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 25px;
}
@media screen and (max-width: 1024px) and (min-width: 600px) {
  .tr_ctsec .tr_homeSec5Cards .card .card-body {
    padding: 7px;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center !important;
  }
}
@media screen and (max-width: 1024px) and (min-width: 900px) {
  .tr_ctsec .tr_homeSec5Cards .card .card-body {
    padding: 21px;
  }
}
.tr_ctsec .tr_homeSec5Cards .card .card-body img {
  margin-right: 20px;
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) and (min-width: 600px) {
  .tr_ctsec .tr_homeSec5Cards .card .card-body img {
    margin: auto auto 10px auto;
  }
}
.tr_ctsec .tr_homeSec5Cards .card .card-body div {
  font-weight: 500;
}
.tr_ctsec .tr_homeSec5Cards .card .card-body p {
  margin-bottom: 0px;
  font-weight: 300;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .tr_ctsec .tr_homeSec5Cards .card .card-body p {
    font-size: 12px;
    line-height: 16px;
  }
}

.ct-form {
  background: #f8f8f8;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 50px;
  border-radius: 15px;
  border: none;
  color: #606060;
}
@media (max-width: 520px) {
  .ct-form {
    padding: 30px 20px;
  }
}
.ct-form h3 {
  font-weight: 600;
}
.ct-form .form-control {
  background-color: #f8f8f8;
  border-radius: 0;
  border-color: rgba(201, 201, 201, 0.6588235294);
  margin: 5px 0px;
  padding: 19px;
  padding-left: 35px;
  height: calc(1.5em + 0.75rem + 25px);
}
.ct-form .fc-2 {
  height: calc(1.5em + 0.75rem + 35px);
}
.ct-form .ct-btn {
  background: linear-gradient(273deg, rgba(0, 6, 143, 0.5411764706) 9%, rgba(255, 0, 0, 0.6) 97.64%);
  padding: 10px 50px;
  color: #ffffff;
}

.map-text {
  color: #606060;
  padding: 20px;
  text-align: center;
  justify-content: center;
}/*# sourceMappingURL=style.css.map */