* {
  box-sizing: border-box;
}

html, body {
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
  transition: 0.5s ease;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

* {
  box-sizing: border-box;
}

.imgContainer {
  overflow: hidden;
}
.imgContainer img {
  width: 100%;
  transition: 2s ease;
}
.imgContainer img:hover {
  transform: scale(1.1);
}

.position-relative {
  position: relative;
}

.uk-container {
  max-width: 1500px;
}

.w-100 {
  width: 100%;
}

.uk-mb-1 {
  margin-bottom: 0.5rem !important;
}

.uk-mb-2 {
  margin-bottom: 1rem !important;
}

.uk-mb-3 {
  margin-bottom: 1.5rem !important;
}

.uk-mb-4 {
  margin-bottom: 2rem !important;
}

.uk-mb-5 {
  margin-bottom: 3rem !important;
}

.uk-mb-6 {
  margin-bottom: 4rem !important;
}

.uk-mb-7 {
  margin-bottom: 5rem !important;
}

.uk-mb-8 {
  margin-bottom: 6rem !important;
}

.uk-mb-9 {
  margin-bottom: 8rem !important;
}

.uk-mt-1 {
  margin-top: 0.5rem !important;
}

.uk-mt-2 {
  margin-top: 1rem !important;
}

.uk-mt-3 {
  margin-top: 1.5rem !important;
}

.uk-mt-4 {
  margin-top: 2rem !important;
}

.uk-mt-5 {
  margin-top: 3rem !important;
}

.uk-mt-6 {
  margin-top: 4rem !important;
}

.uk-mt-7 {
  margin-top: 5rem !important;
}

.uk-mt-8 {
  margin-top: 6rem !important;
}

.uk-mt-9 {
  margin-top: 8rem !important;
}

.uk-pb-1 {
  padding-bottom: 0.5rem !important;
}

.uk-pb-2 {
  padding-bottom: 1rem !important;
}

.uk-pb-3 {
  padding-bottom: 1.5rem !important;
}

.uk-pb-4 {
  padding-bottom: 2rem !important;
}

.uk-pb-5 {
  padding-bottom: 3rem !important;
}

.uk-pb-6 {
  padding-bottom: 4rem !important;
}

.uk-pb-7 {
  padding-bottom: 5rem !important;
}

.uk-pb-8 {
  padding-bottom: 6rem !important;
}

.uk-pb-9 {
  padding-bottom: 8rem !important;
}

.uk-pt-1 {
  padding-top: 0.5rem !important;
}

.uk-pt-2 {
  padding-top: 1rem !important;
}

.uk-pt-3 {
  padding-top: 1.5rem !important;
}

.uk-pt-4 {
  padding-top: 2rem !important;
}

.uk-pt-5 {
  padding-top: 3rem !important;
}

.uk-pt-6 {
  padding-top: 4rem !important;
}

.uk-pt-7 {
  padding-top: 5rem !important;
}

.uk-pt-8 {
  padding-top: 6rem !important;
}

.uk-pt-9 {
  padding-top: 8rem !important;
}

.fs12 {
  font-size: 12px;
}

.fs14 {
  font-size: 14px;
}

.fs16 {
  font-size: 16px;
}

.fs18 {
  font-size: 18px;
}

.fs20 {
  font-size: 20px;
}

.fs24 {
  font-size: 24px;
}

.fs28 {
  font-size: 28px;
}

.fs32 {
  font-size: 32px;
}

.grayText {
  color: #878787;
}

.greenText {
  color: #3fe58a;
}

.blueText {
  color: #0b41d9;
}

.lightBlueText {
  color: #3cddf9;
}

.whiteText {
  color: #fff;
}

a.whiteText:hover {
  color: #fff;
}

.redText {
  color: red;
}

.posr {
  position: relative;
}

.posa {
  position: absolute;
}

.blueBackground {
  background-color: #0b41d9;
}

.grayBackground {
  background-color: #F9F9F9;
}

.whiteBackground {
  background-color: #fff;
}

.bbGray {
  border-bottom: 1px solid #D5D5D5;
}

.lightBlueButton {
  background-color: #3cddf9;
  border: 1px solid #3cddf9;
  padding: 8px 10px;
  color: #fff;
  border-radius: 8px;
  transition: 0.5s ease;
}
.lightBlueButton:hover {
  background-color: #fff;
  color: #3cddf9;
}

.rowList > *:last-child {
  margin-right: 0;
}

.columnList > *:last-child {
  margin-bottom: 0;
}

@keyframes w0to100 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes h0to100 {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
.wline, .hline {
  position: absolute;
  background: linear-gradient(to top, #8ed6e7, #8ed6e7);
  position: absolute;
  content: "";
  transition: 0.5s ease;
}

.hline {
  left: 5vw;
  top: 0;
  width: 1px;
  height: 100%;
  animation: h0to100 3s;
}

.wline {
  top: 5vw;
  left: 0;
  height: 1px;
  width: 100%;
  animation: w0to100 3s;
}

@media (max-width: 960px) {
  main {
    margin-top: 50px;
  }
}
main .searchBox {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 50px;
}
@media (max-width: 960px) {
  main .searchBox {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  main .searchBox {
    padding-top: 0;
    padding-bottom: 15px;
  }
}
main .searchBox .searchTitle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #5f259f;
}
main .searchBox .searchTitle h2 {
  font-size: 24px;
  font-weight: bold;
}
main .searchBox .searchTitle .btn-clear {
  margin-bottom: 4px;
  margin-right: 12%;
  position: relative;
}
@media (max-width: 1280px) {
  main .searchBox .searchTitle .btn-clear {
    margin-right: 11%;
  }
}
@media (max-width: 1024px) {
  main .searchBox .searchTitle .btn-clear {
    margin-right: 10%;
  }
}
@media (max-width: 960px) {
  main .searchBox .searchTitle .btn-clear {
    margin-right: 0;
  }
}
main .searchBox .searchTitle .btn-clear::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 3px;
  height: 1px;
  background-color: #5f259f;
}
main .searchBox .searchForm {
  display: flex;
}
@media (max-width: 960px) {
  main .searchBox .searchForm {
    flex-wrap: wrap;
  }
}
main .searchBox .searchForm input[type=text] {
  border: 0;
  border-bottom: 1px solid #aaa;
  width: 20%;
  margin-right: 8px;
  text-align: left;
  background-color: transparent;
  box-shadow: none;
  font-size: 14px;
}
@media (max-width: 960px) {
  main .searchBox .searchForm input[type=text] {
    width: 50%;
    flex: 1;
  }
}
@media (max-width: 550px) {
  main .searchBox .searchForm input[type=text] {
    width: 100%;
    margin-right: 0;
  }
}
main .searchBox .searchForm input[type=text]:not(.form-control) {
  padding-top: 33px;
}
@media (max-width: 550px) {
  main .searchBox .searchForm input[type=text]:not(.form-control) {
    padding-top: 1rem;
  }
}
main .searchBox .searchForm .selectDiv {
  border-bottom: 1px solid #aaa;
  width: 25%;
  position: relative;
}
@media (max-width: 960px) {
  main .searchBox .searchForm .selectDiv {
    width: 50%;
  }
}
@media (max-width: 550px) {
  main .searchBox .searchForm .selectDiv {
    width: 100%;
  }
}
main .searchBox .searchForm .selectDiv.selectBR {
  border-right: 1px solid #aaa;
}
@media (max-width: 960px) {
  main .searchBox .searchForm .selectDiv.selectBR {
    border-right: none;
  }
}
main .searchBox .searchForm .selectDiv::after {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #333 transparent transparent transparent;
  content: "";
  top: 50%;
  right: 10px;
}
main .searchBox .searchForm .selectDiv .selectTitle {
  position: absolute;
  left: 6px;
  top: 6px;
  width: 100%;
  pointer-events: none;
  font-size: 12px;
}
main .searchBox .searchForm .selectDiv .selectTitle label {
  font-weight: normal;
}
main .searchBox .searchForm .selectDiv select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  padding: 30px 6px 6px;
}
main .searchBox .searchForm .selectDiv select:focus {
  outline: none;
  box-shadow: none;
}
main .searchBox .searchForm input[type=submit] {
  width: 20%;
  background-color: #5f259f;
  margin-left: 8px;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  border: none;
  padding: 15px 0;
  transition: 0.5s ease;
}
@media (max-width: 960px) {
  main .searchBox .searchForm input[type=submit] {
    width: 50%;
    flex: 1;
    margin-top: 10px;
  }
}
main .searchBox .searchForm input[type=submit]:hover {
  opacity: 0.8;
}
main .resultBox {
  margin-bottom: 40px;
}
main .resultBox .resultContent {
  display: block;
}
main .resultBox .resultContent img {
  width: 100%;
  object-fit: cover;
}
main .resultBox .resultContent .resultText {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: 0.5s ease;
  opacity: 0;
}
@media (max-width: 1024px) {
  main .resultBox .resultContent .resultText {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.35);
  }
}
main .resultBox .resultContent .resultText h3 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 6px;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 550px) {
  main .resultBox .resultContent .resultText h3 {
    font-size: 16px;
  }
}
main .resultBox .resultContent .resultText h6 {
  font-size: 14px;
  color: #fff;
  margin: 0;
  font-weight: normal;
}
@media (max-width: 550px) {
  main .resultBox .resultContent .resultText h6 {
    font-size: 12px;
  }
}
main .resultBox .resultContent:hover .resultText {
  opacity: 1;
}
main .resultBox .blueButton {
  background-color: #5f259f;
  border: 1px solid #5f259f;
  color: #fff;
  padding: 10px 50px;
  display: block;
  width: fit-content;
  margin: 40px auto;
  transition: 0.5s ease;
}
main .resultBox .blueButton:hover {
  background-color: #fff;
  color: #5f259f;
}
main .product-item-wrapper .product-item__image {
  transition: 0.5s ease;
}
@media (max-width: 1024px) {
  main .product-item-wrapper .product-item__image {
    display: block;
    opacity: 1 !important;
  }
}
main .product-item-wrapper:hover .product-item__image {
  opacity: 1 !important;
}
main .clients {
  padding: 60px 0;
}
@media (max-width: 960px) {
  main .clients {
    padding-top: 30px;
  }
}
main .clients h2 {
  font-size: 50px;
  text-align: center;
  margin: 20px;
  line-height: 1.5;
}
@media (max-width: 960px) {
  main .clients h2 {
    font-size: 32px;
  }
}
@media (max-width: 550px) {
  main .clients h2 {
    font-size: 24px;
  }
}
main .clients h2 span {
  color: #5f259f;
  font-weight: bold;
}
main .clients a {
  text-align: center;
  display: block;
  width: fit-content;
  margin: 20px auto;
  padding: 6px 0;
}
main .clients .clientLogos {
  margin-top: 40px;
  margin-bottom: 100px;
  padding: 0 20px;
}
@media (max-width: 960px) {
  main .clients .clientLogos {
    margin-bottom: 0;
  }
}
main .clients .clientLogos .uk-slider-container {
  padding: 2px 0;
  position: relative;
}
main .clients .clientLogos .uk-slider-container::after {
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background-color: #fff;
}
main .clients .clientLogos .clientBox {
  padding: 0;
}
main .clients .clientLogos .clientBox ul {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  position: relative;
}
main .clients .clientLogos .clientBox ul li {
  transition: 0.5s ease;
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 2px solid transparent;
  padding-top: 3rem;
}
main .clients .clientLogos .clientBox ul li::after {
  background-color: #eee;
  position: absolute;
  display: block;
  content: "";
  height: calc(100% - 3rem);
  width: 1px;
  right: 0;
  bottom: 0;
  z-index: 2;
}
main .clients .clientLogos .clientBox ul li:hover {
  border-bottom-color: #5f259f;
}
main .clients .clientLogos .clientBox ul li img {
  object-fit: cover;
  max-height: 90%;
  padding: 10px 40px;
  display: block;
  margin: 0 auto;
  transition: 0.5s ease;
}
@media (max-width: 960px) {
  main .clients .clientLogos .clientBox ul li img {
    padding: 10px 20px;
  }
}
main .uk-breadcrumb a {
  color: #5f259f;
}
main .uk-breadcrumb span {
  color: #111;
}
main .pageTop {
  padding-top: 50px;
  padding-bottom: 80px;
  margin-bottom: 50px;
}
@media (max-width: 960px) {
  main .pageTop {
    padding-top: 30px;
  }
}
main .pageTop h1 {
  font-size: 56px;
  font-weight: bold;
  color: #111111;
  margin: 50px 0;
  width: 700px;
  max-width: 100%;
  line-height: 70px;
}
@media (max-width: 960px) {
  main .pageTop h1 {
    font-size: 32px;
    line-height: 40px;
    margin: 20px 0;
  }
}
main .pageTop p {
  width: 50%;
}
@media (max-width: 960px) {
  main .pageTop p {
    width: 100%;
  }
}
main .newsListFirst {
  position: relative;
  margin-bottom: 50px;
}
main .newsListFirst.after {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #5f259f;
  z-index: -1;
}
main .newsListFirst .newsListFirstBox {
  position: relative;
}
main .newsListFirst .newsListFirstBox .newsListFirstLeft {
  width: 70%;
}
@media (max-width: 960px) {
  main .newsListFirst .newsListFirstBox .newsListFirstLeft {
    width: 100%;
  }
}
main .newsListFirst .newsListFirstBox .newsListFirstLeft .date {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
  color: #090145;
}
main .newsListFirst .newsListFirstBox .newsListFirstRight {
  background-color: #fff;
  padding: 5vw;
  width: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 960px) {
  main .newsListFirst .newsListFirstBox .newsListFirstRight {
    width: 100%;
    position: static;
    transform: translateY(0);
  }
}
main .newsListFirst .newsListFirstBox .newsListFirstRight h3 {
  line-height: 40px;
}
main .newsList {
  background: white;
  background: linear-gradient(0deg, #f8f8f8 100%, white 0%);
  padding-bottom: 30px;
  padding-top: 50px;
  border-bottom: 1px solid #cfcfcf;
}
main .newsList .newsListBox {
  margin-bottom: 100px;
  position: relative;
}
@media (max-width: 960px) {
  main .newsList .newsListBox {
    margin-bottom: 50px;
  }
}
main .newsList .newsListBox .date {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
  color: #090145;
}
main .newsList .newsListBox .floatingIntro {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  font-weight: 100;
  left: 1vw;
  top: 0;
  font-size: 12px;
  color: #9e9f9e;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  main .newsList .newsListBox .floatingIntro {
    writing-mode: initial;
    text-orientation: initial;
    transform: rotate(0deg);
    position: static;
    font-size: 16px;
  }
}
main .newsList .newsListBox .tech-list-title {
  margin: 10px 0;
  font-weight: bold;
  font-size: 28px;
  line-height: 36px;
}
main .newsList .newsListBox .imgContainer .ratio {
  background-color: #fff;
}
main .newsList .newsListBox h6 {
  font-size: 20px;
  margin: 0;
  color: #000;
  text-transform: initial;
}
main .newsList .newsListBox .more {
  padding: 25px 30px;
  color: #fff;
  background-color: #5f259f;
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 20px;
  opacity: 0;
  transition: 0.5s ease;
}
@media (max-width: 768px) {
  main .newsList .newsListBox .more {
    padding: 13px 20px;
    display: none;
  }
}
main .newsList .newsListBox:hover .more {
  opacity: 1;
}
main .newsList .loadMore {
  background-color: #5f259f;
  color: #fff;
  padding: 10px 30px;
  display: block;
  width: fit-content;
  margin: 60px auto;
  text-decoration: none;
  transition: 0.5s ease;
}
@media (max-width: 960px) {
  main .newsList .loadMore {
    margin: 20px auto 30px;
    font-size: 18px;
  }
}
main .newsList .loadMore:hover {
  background-color: #000;
  color: #fff;
}
main .subscription .downBox {
  padding: 15px 20px;
  background-color: #000;
  color: #fff;
  position: absolute;
  top: -20px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .subscription form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0;
}
@media (max-width: 960px) {
  main .subscription form {
    flex-direction: column;
    padding: 50px 0;
    align-items: flex-start;
  }
}
main .subscription form .signup h4 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  letter-spacing: 1px;
  line-height: 32px;
}
main .subscription form .formBody {
  display: flex;
  align-items: center;
  justify-self: flex-end;
}
@media (max-width: 960px) {
  main .subscription form .formBody {
    flex-wrap: wrap;
    width: 100%;
  }
}
main .subscription form .formBody input {
  border: none;
  border-bottom: 1px solid #cfcfcf;
  color: #000;
  flex: 1 1 auto;
  background-color: transparent;
  margin-right: 10px;
  text-align: left;
  font-size: 18px;
  box-shadow: none;
}
@media (max-width: 960px) {
  main .subscription form .formBody input {
    margin-top: 20px;
  }
}
main .subscription form .formBody button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfcfcf;
  transition: 0.5s ease;
}
@media (max-width: 960px) {
  main .subscription form .formBody button {
    margin-top: 40px;
    margin-left: auto;
  }
}
main .subscription form .formBody button:hover .arrowSubmit i {
  transform: translateX(60px);
}
main .subscription form .formBody button .arrowSubmit {
  padding: 15px 30px;
  border-right: 1px solid #cfcfcf;
}
main .subscription form .formBody button .arrowSubmit i {
  transition: 0.5s ease;
}
main .subscription form .formBody button .submitText {
  padding: 15px 20px;
  width: 200px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}
main .noPMTop {
  padding-bottom: 20px;
  margin-bottom: 0;
}
main .newsInnerContent .date {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
  color: #090145;
}
main .newsInnerContent .newsInnerWorkBy h4 {
  font-weight: bold;
  color: #111111;
  line-height: 28px;
  font-size: 18px;
  margin-top: 40px;
  margin-bottom: 20px;
}
main .newsInnerContent .newsInnerContainer {
  width: 800px;
  max-width: 100%;
  margin: 10px auto;
  line-height: 32px;
  font-size: 18px;
}
main .newsInnerContent .inst-slider .uk-slider-items li {
  text-align: center;
}
main .newsInnerContent .inst-slider .uk-slider-items li img {
  max-width: 80%;
  max-height: 500px;
}
@media (max-width: 960px) {
  main .newsInnerContent .inst-slider .uk-position-small {
    margin: 15px 0;
  }
}
@media (max-width: 550px) {
  main .newsInnerContent .inst-slider .uk-position-small {
    margin: 15px -8px;
  }
}
main .related {
  margin-top: 100px;
  letter-spacing: 1px;
}
@media (max-width: 960px) {
  main .related {
    margin-top: 50px;
  }
  main .related .uk-mt-9 {
    margin-top: 5rem !important;
  }
}
main .related h3, main .related .related-title {
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 40px !important;
  line-height: 50px;
}
@media (max-width: 960px) {
  main .related h3, main .related .related-title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 30px !important;
  }
}
main .related .techListSlider {
  margin: 0;
}
main .related .techListSlider li .related-list-title {
  margin-top: 10px;
}
main .related .techListSlider li a {
  background-color: transparent;
  color: #333;
}
main .related .techListSlider li a h5 {
  color: #333;
}
main .normalText {
  font-weight: normal;
  display: block;
  letter-spacing: 0;
  color: #5f259f;
}
main .RDList .tab-menu {
  background-color: #eee;
}
@media (max-width: 550px) {
  main .RDList .tab-menu .uk-container {
    padding-left: 0;
    padding-right: 0;
  }
}
main .RDList .tab-menu .uk-tab::before {
  content: none;
}
main .RDList .tab-menu .uk-tab li {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}
main .RDList .tab-menu .uk-tab li a, main .RDList .tab-menu .uk-tab li span {
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  color: #333;
  text-transform: capitalize;
  cursor: pointer;
}
main .RDList .tab-menu .uk-tab li.uk-active::before {
  content: "";
  display: block;
  border-width: 0 0 5rem 1rem;
  border-color: #eee #eee #5f259f #eee;
  border-style: solid;
}
@media (max-width: 768px) {
  main .RDList .tab-menu .uk-tab li.uk-active::before {
    content: none;
  }
}
main .RDList .tab-menu .uk-tab li.uk-active::after {
  content: "";
  display: block;
  border-width: 0 1rem 5rem 0;
  border-color: #eee #eee #5f259f #eee;
  border-style: solid;
}
@media (max-width: 768px) {
  main .RDList .tab-menu .uk-tab li.uk-active::after {
    content: none;
  }
}
main .RDList .tab-menu .uk-tab li.uk-active a, main .RDList .tab-menu .uk-tab li.uk-active span {
  background-color: #5f259f;
  color: #fff;
}
main .RDList .sub-tab {
  background-color: #5f259f;
  margin-bottom: 6rem;
}
main .RDList .sub-tab .RDScroll {
  padding-left: 0;
  color: #ebebeb;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}
main .RDList .sub-tab .RDScroll li {
  line-height: 1;
}
main .RDList .sub-tab .RDScroll li a {
  color: #fff;
  padding: 0 15px;
  transition: 0.5s ease;
}
main .RDList .sub-tab .RDScroll li a:hover {
  text-decoration: underline;
}
main .RDList .RDListLeft h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  margin-top: 20px;
}
main .RDList .RDListLeft p {
  line-height: 28px;
  font-size: 16px;
  margin-bottom: 20px;
}
main .RDList .RDListLeft ul {
  padding-left: 20px;
}
main .RDList .RDListLeft ul li {
  list-style: disc;
  font-size: 18px;
  line-height: 26px;
  font-family: Roboto, sans-serif;
}
main .RDList .RDListLeft ul li ul {
  margin-bottom: 0;
}
main .RDList .RDListLeft ul li ul li {
  list-style: circle;
}
main .RDList .RDListLeft, main .RDList .RDListRight {
  margin-bottom: 40px;
}
main .RDList .RDListRight .uk-light .uk-slider-items li {
  text-align: center;
  padding: 0;
}
main .RDList .RDListRight .uk-light .uk-slider-items li img {
  width: 80%;
}
main .RDList .RDListRight .uk-light .uk-slidenav {
  color: #000;
}
@media (max-width: 1280px) {
  main .RDList .RDListRight .uk-light .uk-slidenav {
    margin: 15px 0;
  }
}
@media (max-width: 550px) {
  main .RDList .RDListRight .uk-light .uk-slidenav {
    margin: 15px -8px;
  }
}
main .boldTitle {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 40px;
  line-height: 30px;
}
main .upcomingTech {
  margin-top: 80px;
  margin-bottom: 80px;
}
main .upcomingTech .upcomingTechBox {
  margin: 20px 0;
  padding: 10px 4px;
}
@media (max-width: 550px) {
  main .upcomingTech .upcomingTechBox {
    margin: 0;
    padding: 15px 20px;
  }
}
main .upcomingTech .upcomingTechBox img {
  height: 70px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
main .learnMore {
  display: flex;
  align-items: center;
  font-weight: 100;
  color: #4d4d4d;
  display: inline-block;
  width: fit-content;
  margin-top: 20px;
  transition: 0.5s ease;
}
main .learnMore span {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid #4d4d4d;
  margin-right: 10px;
}
main .learnMore i {
  transition: 0.5s ease;
}
main .learnMore:hover i {
  transform: translateX(10px);
}
main .pageBanner img {
  width: 100%;
}
main .contact h1 {
  font-size: 32px;
  line-height: 40px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 40px !important;
}
main .contact .contactForm:first-child {
  border-bottom: 1px solid #cfcfcf;
}
main .contact .contactForm label {
  display: block;
  padding: 10px;
  font-size: 16px;
  font-weight: normal;
}
main .contact .contactForm input[type=text], main .contact .contactForm input[type=number], main .contact .contactForm input[type=email], main .contact .contactForm select {
  border: none;
  border-bottom: 1px solid #cfcfcf;
  color: #333;
  flex: 1 1 auto;
  background-color: transparent;
  margin-right: 10px;
  margin-bottom: 30px;
  text-align: left;
  font-size: 18px;
  box-shadow: none;
  padding-top: 0;
  outline: none;
  padding: 1rem;
  width: 100%;
  height: 50px;
}
main .contact .contactForm input[type=text].error, main .contact .contactForm input[type=number].error, main .contact .contactForm input[type=email].error, main .contact .contactForm select.error {
  border-color: red;
}
@media (max-width: 960px) {
  main .contact .contactForm input[type=text], main .contact .contactForm input[type=number], main .contact .contactForm input[type=email], main .contact .contactForm select {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
main .contact .contactForm .phone-group {
  position: relative;
}
main .contact .contactForm .phone-group::before {
  content: "";
  display: block;
  height: 50px;
  width: 10px;
  position: absolute;
  left: 80px;
  z-index: 9;
  background-color: #fff;
}
@media (max-width: 960px) {
  main .contact .contactForm .phone-group::before {
    height: 60px;
  }
}
main .contact .contactForm .phone-group #acode {
  position: absolute;
  top: -1px;
  left: 0;
  width: 80px;
  border-bottom: none;
}
main .contact .contactForm .phone-group #phone {
  padding-left: 100px;
}
main .contact .contactForm .phone-group input::-webkit-outer-spin-button, main .contact .contactForm .phone-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
main .contact .contactForm .phone-group input[type=number] {
  -moz-appearance: textfield;
}
main .contact .contactForm button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfcfcf;
  margin-left: auto;
  background: #5f259f;
  color: #fff;
  transition: 0.5s ease;
}
main .contact .contactForm button:hover {
  background: transparent;
  color: #333;
}
@media (max-width: 960px) {
  main .contact .contactForm button {
    margin-top: 40px;
    margin-left: auto;
  }
}
main .contact .contactForm button:hover .arrowSubmit i {
  transform: translateX(80px);
}
main .contact .contactForm button .arrowSubmit {
  padding: 15px 30px;
  border-right: 1px solid #cfcfcf;
}
main .contact .contactForm button .arrowSubmit i {
  transition: 0.5s ease;
  font-size: 28px;
  color: #d1d1d1;
}
main .contact .contactForm button .submitText {
  padding: 15px 20px;
  width: 200px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
}
main .aboutArticle {
  overflow: hidden;
}
main .aboutArticle .about-container {
  background-color: #652f9f;
  position: relative;
  display: flex;
}
main .aboutArticle .about-container::after {
  content: "";
  display: block;
  background-color: #652f9f;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: -100%;
}
main .aboutArticle .about-container h1 {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}
main .aboutArticle .about-container p {
  color: #fff;
}
main .aboutArticle .about-container .about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 35%;
  flex: 0 0 35%;
}
main .aboutArticle .about-container .about-img::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  top: 0;
  background-color: #fff;
}
main .aboutArticle .about-container .about-img img {
  z-index: 9;
  max-width: 100%;
  max-height: 80%;
  object-fit: cover;
}
@media (max-width: 960px) {
  main .aboutArticle .about-container {
    padding: 0 0 5rem 0;
    flex-direction: column;
  }
  main .aboutArticle .about-container .about-img {
    width: 100%;
    flex: 0 0 100%;
  }
  main .aboutArticle .about-container .about-img::before {
    content: none;
  }
}
main .aboutArticle .about-content {
  padding: 5rem;
}
@media (max-width: 960px) {
  main .aboutArticle .about-content {
    padding: 0;
  }
}
main .aboutArticle .about-content .about-text {
  color: #fff;
  font-size: 18px;
}
main .aboutArticle .about-content .about-text p {
  color: #fff;
  line-height: 1.5;
}
main .aboutArticle .about-content .about-text ul {
  padding-left: 20px;
}
main .aboutArticle .about-content .about-text ul li {
  list-style: disc;
  font-size: 18px;
}
@media (max-width: 960px) {
  main .aboutArticle .about-content .about-text {
    padding: 3rem 3rem 0;
  }
  main .aboutArticle .about-content .about-text h1.uk-margin-medium-top {
    margin-top: 0 !important;
  }
}
@media (max-width: 550px) {
  main .aboutArticle .about-content .about-text {
    padding: 3rem 2rem 0;
  }
}
main .aboutArticle .about-content .inst-container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1280px) {
  main .aboutArticle .about-content .inst-container {
    padding: 0 3rem;
    flex-direction: column;
  }
}
@media (max-width: 550px) {
  main .aboutArticle .about-content .inst-container {
    padding: 0 2rem;
  }
}
main .aboutArticle .about-content .inst-container .inst-item {
  width: 48%;
  flex: 0 0 48%;
}
main .aboutArticle .about-content .inst-container .inst-item h2 {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}
main .aboutArticle .about-content .inst-container .inst-item ul {
  margin-bottom: 0;
}
main .aboutArticle .about-content .inst-container .inst-item ul li {
  padding: 0;
  border-bottom: #ddd 1px solid;
  font-size: 18px;
  line-height: 1.5;
}
main .aboutArticle .about-content .inst-container .inst-item ul li a {
  display: block;
  padding: 1.5rem 1rem 1.5rem 2.5rem;
  color: #fff;
  background-image: url(../images/link.svg);
  background-repeat: no-repeat;
  background-size: 2rem;
  background-position: left 2rem;
}
main .aboutArticle .about-content .inst-container .inst-item ul li a:hover {
  background-color: #5f259f;
}
@media (max-width: 1280px) {
  main .aboutArticle .about-content .inst-container .inst-item {
    width: 100%;
    flex: 0 0 100%;
  }
  main .aboutArticle .about-content .inst-container .inst-item h3 {
    margin-bottom: 0;
  }
  main .aboutArticle .about-content .inst-container .inst-item:nth-child(2) h3 {
    margin-top: 3rem;
  }
}
main .aboutArticle .about-content .inst-container .institutes {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
@media (max-width: 550px) {
  main .aboutArticle .about-content .inst-container .institutes {
    flex-direction: column;
  }
}
main .aboutArticle .about-content .inst-container .institutes .inst-items {
  position: relative;
  width: 25%;
}
@media (max-width: 768px) {
  main .aboutArticle .about-content .inst-container .institutes .inst-items {
    width: 28%;
  }
}
@media (max-width: 550px) {
  main .aboutArticle .about-content .inst-container .institutes .inst-items {
    width: 100%;
    margin-top: 1.5rem;
  }
}
main .aboutArticle .about-content .inst-container .institutes .inst-items::before {
  display: block;
  padding-top: 100%;
  content: "";
}
@media (max-width: 550px) {
  main .aboutArticle .about-content .inst-container .institutes .inst-items::before {
    padding-top: 30%;
  }
}
main .aboutArticle .about-content .inst-container .institutes .inst-items > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main .aboutArticle .about-content .inst-container .institutes .inst-items .inst-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  color: #652f9f;
}
@media (max-width: 550px) {
  main .aboutArticle .about-content .inst-container .institutes .inst-items .inst-card {
    border-radius: 0;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
  main .aboutArticle .about-content .inst-container .institutes .inst-items .inst-card .inst-img {
    width: 128px;
    flex: 0 0 128px;
    text-align: center;
  }
}
main .aboutArticle .about-content .inst-container .institutes .inst-items .inst-card img {
  width: 60%;
}
main .aboutArticle .about-content .inst-container .institutes .inst-items .inst-card .inst-name {
  padding: 1rem 2rem;
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 1.15;
}
main .aboutArticle .about-content .inst-container .institutes .inst-items .inst-card:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
main .aboutArticle .about-content .inst-container .institutes .inst-items .inst-card:hover img {
  filter: grayscale(100%) brightness(10);
}
main .aboutArticle .uk-accordion .uk-accordion-title {
  font-size: 2.2rem;
  color: #5f259f;
  display: inline-flex;
  padding-right: 2rem;
  flex-direction: row-reverse;
  align-items: center;
}
main .aboutArticle .uk-accordion .uk-accordion-title::before {
  border-color: #5f259f;
  margin-left: 1rem;
  height: 10px;
  width: 10px;
  margin-top: 5px;
}
main .about-innov {
  overflow: hidden;
}
main .about-innov .about-content {
  display: flex;
  justify-content: space-between;
  position: relative;
}
main .about-innov .about-content::after {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  background-color: #652f9f;
  top: 0;
  right: -100%;
}
main .about-innov .about-content .about-img {
  width: 35%;
  flex: 0 0 35%;
}
main .about-innov .about-content .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  left: 1px;
}
main .about-innov .about-content .about-text {
  padding: 5rem 5rem 5rem 0;
  background-color: #f1f1f1;
  position: relative;
  font-size: 18px;
}
main .about-innov .about-content .about-text::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #f1f1f1;
  top: 0;
  left: -100%;
}
main .about-innov .about-content .about-text h1 {
  font-size: 24px;
  font-weight: 600;
}
main .about-innov .about-content .about-text p {
  line-height: 1.5;
}
main .about-innov .about-content .about-text ul {
  padding-left: 20px;
}
main .about-innov .about-content .about-text ul li {
  list-style: disc;
  font-size: 18px;
}
@media (max-width: 960px) {
  main .about-innov .about-content {
    flex-direction: column-reverse;
  }
  main .about-innov .about-content .about-img {
    width: 100%;
    flex: 0 0 100%;
    transform: translateX(0);
  }
  main .about-innov .about-content .about-text {
    width: 100%;
    flex: 0 0 100%;
    padding: 3rem;
  }
}
@media (max-width: 550px) {
  main .about-innov .about-content .about-text {
    padding: 3rem 2rem;
  }
}
main .about-institutes {
  background-color: #f8f8f8;
}
main .techTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 !important;
}
@media (max-width: 768px) {
  main .techTitle {
    flex-direction: column;
    align-items: flex-start;
  }
}
main .techTitle h1 {
  width: initial;
  flex: auto;
  margin: 0;
  font-size: 30px;
  line-height: 1.5;
  margin-right: 70px;
  max-width: calc(100% - 310px);
}
@media (max-width: 768px) {
  main .techTitle h1 {
    margin-right: 0;
    max-width: 100%;
  }
}
main .techTitle h1.fs36 {
  font-size: 36px;
}
main .techTitle h1 span {
  color: #5f259f;
}
main .techTitle img, main .techTitle svg {
  max-width: 240px;
  max-height: 80px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
@media (max-width: 768px) {
  main .techTitle img, main .techTitle svg {
    max-width: 100%;
    max-height: 70px;
    margin: 20px 0;
  }
}
main .techBanner img {
  display: block;
  margin: 0 auto;
  width: 1280px;
  height: auto;
  max-width: 100%;
}
main .techInfo {
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.1);
}
main .techInfo .techInfoBox {
  margin-bottom: 30px;
}
main .techInfo .techInfoBox h4, main .techInfo .techInfoBox .tech-info-item-title {
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 1px;
}
main .techInfo .techInfoBox span {
  font-size: 20px;
}
main .techList .techListBox {
  margin-bottom: 60px;
}
main .techList .techListBox .techListBoxContent {
  padding-left: 60px;
}
@media (max-width: 960px) {
  main .techList .techListBox .techListBoxContent {
    padding-left: 0;
  }
}
main .techList .techListBox .techListBoxContent ul {
  padding-left: 20px;
}
main .techList .techListBox .techListBoxContent ul li {
  list-style: disc;
  font-size: 18px;
  line-height: 26px;
  font-family: Roboto, sans-serif;
}
main .techList .techListBox .techListBoxContent ul li ul {
  margin-bottom: 0;
}
main .techList .techListBox .techListBoxContent ul li ul li {
  list-style: circle;
}
main .techListTitle {
  position: relative;
  padding-left: 60px;
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 20px;
}
@media (max-width: 960px) {
  main .techListTitle {
    padding-left: 0;
    font-size: 28px;
    margin-bottom: 2rem !important;
  }
}
main .techListTitle::before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 5px);
  width: 40px;
  height: 10px;
  background-color: #5f259f;
}
@media (max-width: 960px) {
  main .techListTitle::before {
    top: auto;
    bottom: -5px;
    height: 6px;
  }
}
main .techListSlider {
  margin: 0 60px;
}
@media (max-width: 960px) {
  main .techListSlider {
    margin: 0 0;
  }
}
main .techListSlider ul > li a {
  display: block;
}
main .techListSlider ul > li a img {
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  right: 0;
  bottom: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}
main .tectDownloadButtonList {
  padding-left: 60px;
}
@media (max-width: 960px) {
  main .tectDownloadButtonList {
    padding-left: 0;
    flex-wrap: wrap;
  }
}
main .tectDownloadButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfcfcf;
  margin-right: 60px;
  position: relative;
  background-color: #5f259f;
  color: #fff;
  transition: 0.5s ease;
}
main .tectDownloadButton::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #5f259f;
  z-index: 0;
}
@media (max-width: 960px) {
  main .tectDownloadButton {
    margin-top: 20px;
    margin-left: 0;
    margin-right: 20px;
  }
}
main .tectDownloadButton .arrowSubmit {
  border-right: 1px solid #cfcfcf;
  padding: 2px 15px;
  display: block;
  z-index: 9;
  position: relative;
}
main .tectDownloadButton .arrowSubmit i {
  transition: 0.5s ease;
  font-size: 20px;
  color: #fff;
}
main .tectDownloadButton .submitText {
  padding: 8px 25px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  z-index: 9;
  position: relative;
  color: #fff;
}
main .tectDownloadButton:hover, main .tectDownloadButton:active {
  color: #fff;
}
main .tectDownloadButton:hover::before, main .tectDownloadButton:active::before {
  background-color: #666;
}
main .tectDownloadButton:hover .submitText, main .tectDownloadButton:active .submitText {
  color: #fff;
}
main .tectDownloadButton:hover .arrowSubmit i, main .tectDownloadButton:active .arrowSubmit i {
  animation: downloadArrow 2s linear;
  color: #fff;
}
main .developTeam {
  background-color: #f8f8f8;
  padding: 8rem 0;
}
@media (max-width: 960px) {
  main .developTeam {
    padding: 5rem 0;
  }
}
main .developTeam .developTeamImg img {
  width: 100%;
  position: relative;
  margin-top: 30px;
}
@media (max-width: 960px) {
  main .developTeam .developTeamImg img {
    position: static;
    top: 0;
  }
}
main .techEnquiry {
  margin-top: 6rem;
}
@media (max-width: 960px) {
  main .techEnquiry {
    margin-top: 0;
  }
}
main .techEnquiry .techEnquiryBox {
  background-color: #5f259f;
  color: #fff;
  width: fit-content;
  padding: 50px;
  margin-left: auto;
}
main .techEnquiry .techEnquiryBox h3 {
  font-weight: bold;
  font-size: 28px;
  line-height: 40px;
  color: #fff;
}
main .techEnquiry .techEnquiryBox .techEnquiryInfo {
  margin-top: 40px;
}
main .techEnquiry .techEnquiryBox .techEnquiryInfo h5 {
  font-weight: bold;
  margin: 0;
  font-size: 16px;
  color: #fff;
}
main .techEnquiry .techEnquiryBox .techEnquiryInfo h6 {
  font-weight: normal;
  font-size: 16px;
  color: #fff;
}
main .twoRelated .relatedBox {
  position: relative;
  overflow: hidden;
}
main .twoRelated .relatedBox h5 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  display: block;
  padding: 10px 20px;
  border-radius: 4px;
  opacity: 0;
  line-height: 1.8;
  max-width: 80%;
  transition: 0.5s ease;
}
main .twoRelated .relatedBox:hover h5 {
  opacity: 1;
}
main .twoRelated .relatedBox img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
main .techSearchBox {
  position: relative;
  padding: 20px 40px 50px;
  top: 60px;
}
@media (max-width: 550px) {
  main .techSearchBox {
    padding: 20px 15px 50px;
    position: static;
  }
}
main .technologyList {
  padding-top: 150px;
  padding-bottom: 50px;
}
@media (max-width: 550px) {
  main .technologyList {
    padding-top: 40px;
  }
}

@keyframes downloadArrow {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
.techListBoxContent ul {
  padding-left: 20px;
}
.techListBoxContent ul li {
  list-style: disc;
  font-size: 18px;
  line-height: 26px;
  font-family: Roboto, sans-serif;
}
.techListBoxContent ul li ul {
  margin-bottom: 0;
}
.techListBoxContent ul li ul li {
  list-style: circle;
}

@media (max-width: 1024px) {
  footer {
    padding-bottom: 50px;
  }
}
footer .right-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .right-link a {
  font-size: 24px;
  display: inline-block;
  margin-left: 20px;
  color: #fff;
}

.uk-lightbox-toolbar-icon svg line {
  stroke: #fff !important;
}

.uk-lightbox-button svg polyline {
  stroke: #fff !important;
}

#header .lang-item {
  background: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px 2px rgba(163, 163, 163, 0.2);
}
#header .lang-item a {
  color: rgba(17, 17, 17, 0.65);
}
#header .lang-item a:not(:last-child)::after {
  content: "|";
  display: inline-block;
  padding: 0 0.725rem;
  transform: scaleX(0.5);
}
#header .lang-item:hover {
  background: #808080;
}
#header .lang-item:hover a {
  color: #fff;
}

.factBox .whiteText p {
  color: #fff;
}

.hero--homepage .hero__title {
  font-family: normal;
  font-weight: bold;
}
.hero--homepage .hero__text-content {
  text-decoration: none !important;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio img {
  object-fit: contain;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.85%;
}

label.error {
  color: red;
  transform: translateY(-25px);
  padding: 0 10px !important;
}
@media (max-width: 960px) {
  label.error {
    transform: translateY(0);
  }
}

.agree-label {
  position: relative;
}
.agree-label label.error {
  transform: translateY(0);
  position: absolute;
  left: 0;
  bottom: -10px;
}

.pageInner .searchBox {
  margin: 0 auto !important;
  position: relative;
  top: 60px;
}
@media (max-width: 550px) {
  .pageInner .searchBox {
    top: 0;
    padding-bottom: 30px;
  }
}

.uk-lightbox {
  background-color: rgba(0, 0, 0, 0.8);
}

.uk-lightbox-items > * > * {
  max-height: calc(100vh - 200px) !important;
  max-width: calc((100vh - 200px) * 1.7777) !important;
}

.uk-lightbox-items > * > video {
  width: 100% !important;
}

.uk-lightbox-toolbar {
  background-color: transparent;
}

.uk-transition-slide-top {
  transform: translateY(0);
}
.uk-transition-slide-top .uk-close {
  background-color: #000;
  border-radius: 50%;
  padding: 1rem;
}

.uk-transition-slide-bottom {
  transform: translateY(0);
}

.techListSliderNav {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 20px;
  margin-left: 0;
  margin-right: 0;
  border: #f5f5f5 1px solid;
  color: #000 !important;
  z-index: 9;
}
@media (max-width: 550px) {
  .techListSliderNav {
    zoom: 0.7;
  }
}

.nav-sitemap .fa {
  color: #333 !important;
  font-weight: normal;
}
.nav-sitemap .fa::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  margin-right: 0.75rem;
}
.nav-sitemap .fa:hover {
  color: #5f259f !important;
}

.inst-modal .inst-logos {
  display: flex;
  flex-wrap: wrap;
}
.inst-modal .inst-logos .logos-item {
  flex: 0 0 25%;
  padding: 3rem;
}
.inst-modal .inst-logos .logos-item a {
  display: block;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inst-modal .inst-logos .logos-item a img {
  max-height: 100px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .inst-modal .inst-logos .logos-item {
    flex: 0 0 33.33333%;
    padding: 2rem;
  }
  .inst-modal .inst-logos .logos-item a img {
    max-height: 90px;
  }
}
@media (max-width: 550px) {
  .inst-modal .inst-logos .logos-item {
    flex: 0 0 50%;
    padding: 1.5rem;
  }
  .inst-modal .inst-logos .logos-item a img {
    max-height: 70px;
  }
}
@media (max-width: 550px) {
  .inst-modal .uk-modal-body {
    padding: 20px 10px;
  }
}
.inst-modal .uk-modal-title {
  text-align: center;
  font-weight: bold;
  font-size: 2.5rem;
  margin-top: 2rem;
}
.inst-modal .uk-subnav > * {
  padding-left: 10px;
}
.inst-modal .uk-subnav-pill > * > :first-child {
  border: #652f9f 1px solid;
  padding: 5px 20px;
  text-transform: none;
}
.inst-modal .uk-subnav-pill > .uk-active > a {
  background-color: #652f9f;
}

/*# sourceMappingURL=all.css.map */
