@font-face {
  font-family: 'barlowcondensed-medium';
  font-style: normal;
  font-weight: 500;
  src: local('barlowcondensed-medium'), local('barlowcondensed-medium'),
  url('/static/lumos-in/barlowcondensed-medium.ttf') format('truetype');
}
@font-face {
  font-family: 'barlowcondensed-regular';
  font-style: normal;
  font-weight: 100;
  src: local('barlowcondensed-regular'), local('barlowcondensed-regular'),
  url('/static/lumos-in/barlowcondensed-regular.ttf') format('truetype');
}
@font-face {
  font-family: 'barlowcondensed-Light';
  font-style: normal;
  font-weight: 100;
  src: local('barlowcondensed-light'), local('barlowcondensed-light'),
  url('/static/lumos-in/barlowcondensed-light.ttf') format('truetype');
}
@font-face {
  font-family: 'barlow-regular';
  font-style: normal;
  font-weight: 400;
  src: local('barlow-regular'), local('barlow-regular'),
  url('/static/lumos-in/barlow-regular.ttf') format('truetype');
}
@font-face {
  font-family: 'figtree-light';
  font-style: normal;
  font-weight: 100;
  src: local('figtree-light'), local('figtree-light'),
  url('/static/lumos-in/figtree-light.ttf') format('truetype');
}
@font-face {
  font-family: 'barlow-semi-bold';
  font-style: normal;
  font-weight: 400;
  src: local('barlow-semi-bold'), local('barlow-semi-bold'),
  url('/static/lumos-in/barlow-semi-bold.ttf') format('truetype');
}
.menu{
  background-color: #ebebeb;
  padding: 20px 0 20px 65px;
}
.menu .row{
  margin: 0;
}
.menu img{
  width: 60%;
}
.navbar{
  margin-top: 20px;
}
.nav-item{
  margin: 0 15px;
}
.navbar-nav a{
  font-family: 'barlow-regular';
  color: #272a32;
  text-transform: uppercase;
  font-size: 18px;
}
.navbar-expand-lg .navbar-collapse {
  justify-content: end;
  position: relative;
  left: -60px;
}
.dropend{
  margin: 0;
}
.dropend .dropdown-toggle, .dropend ul a, .dropdown-menu a {
  text-transform: capitalize;
  padding: 0;
  margin: 0;
}
.dropdown-item:hover {
  background-color: transparent;
  color: #f97126;
}
.dropdown .dropdown-menu {
  display: none;
}
.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
  padding: 10px 10px;
    border: 0;
    border-radius: 0;
    background: #222b35;
}
.nav-link:focus, .nav-link:hover {
  color: #f5782e;
}
.dropdown-menu a{
  color: #fff;
  text-transform: uppercase;
}
@media screen and (min-width: 769px) {
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }
  .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }
}
ul{
  list-style: none;
  padding: 0;
}
li{
  display: block;
  margin: 5px 0;
}
li a{
  font-family: 'barlowcondensed-medium';
  font-size: 21px;
  color: #000;
}
li a.active{
  color: #2e6eae;
}
.slider{
  color: #fff;
  grid-template-columns: 35% 65%;
  position: relative;
  display: grid;
}
.slider .content_container{
  padding: 40px;
}
.slider .slides{
  overflow-y: auto;
  max-height: 790px;
  scrollbar-width: none;
}
.slider .slides::-webkit-scrollbar{
  display: none;
}
.slider .slides .slide{
  display: flex;
  color: #333;
  align-items: center;
}
h1{
  font-family: 'barlowcondensed-medium';
  font-size: 85px;
  line-height: 65px;
  margin-bottom: 50px;
}
h2{
  font-family: 'barlowcondensed-medium';
  text-transform: uppercase;
  font-size: 50px;
}
h3{
  font-family: 'barlow-regular';
  text-transform: uppercase;
  font-size: 23px;
}
p{
  font-family: 'figtree-light';
  font-size: 18px;
}
a{
  text-decoration: none;
}
.inner_content{
  height: 790px;
}
.slider{
  background-color: #ebebeb;
  height: 790px;
  padding-left: 170px;
  position: relative;
  display: flex;
  align-items: baseline;
  flex-direction: row-reverse;
}
.slider .content_container{
  padding: 90px;
}
.slider .slides{
  overflow-y: auto;
  scrollbar-width: none;
}
.slider .slides::-webkit-scrollbar{
    display: none;
}
.slide{
  padding: 0 0 0 225px;
}
.inner_content span{
  font-family: 'barlowcondensed-light';
  font-size: 55px;
}
.inner_content .row{
  align-items: center;
}
.center {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.down {
  position: relative;
  width: 30px;
  height: 45px;
  border-radius: 25px;
  background: transparent;
  border: 2px solid #000;
  overflow: hidden;
}
.down:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  left: 50%;
  top: 10px;
  transform: translate(-50%, 0);
  animation: animate 1s linear infinite;
}
.down:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 15px;
  border-radius: 50%;
  background: #000;
  left: 50%;
  top: 5px;
  transform: translate(-50%, 0);
  border-radius: 3px;
}
@keyframes animate {
  0% {
    transform: translate(-50%, 0px);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, 40px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 80px);
    opacity: 0;
  }
}
.inner_content a, .layer-4 a, .layer-6 a, .back a{
  background: linear-gradient(45deg, #f37022, #fbaa4f);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 18px;
  color: #fff;
  font-family: 'barlow-regular';
  text-transform: uppercase;
}
.layer-2{
  background: linear-gradient(45deg, #fcac53, #f47526);
  padding: 60px 0px;
  text-align: center;
}
.layer-2 p{
  font-family: 'barlowcondensed-regular';
  font-size: 35px;
  padding: 0 130px 20px 130px;
  color: #fff;
  line-height: normal;
}
.layer-2 a, .layer-7 a, .layer-8 a{
  border: 1px solid #fff;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 18px;
  color: #fff;
  font-family: 'barlow-regular';
  text-transform: uppercase;
  width: fit-content;
  margin: 0 auto;
}
.layer-3{
  margin: 70px 0;
}
.layer-3 p, .indus-txt{
  margin-bottom: 50px;
}
.layer-3 img, .about-img img, .vision img, .portfolio-images img{
  border-radius: 15px;
}
.indus-txt{
  text-align: center;
  width: 370px;
}
.layer-3 a{
  color: #000;
}
.arrow-bg img{
  position: relative;
  top: -35px;
  width: 90px;
  border-radius: 0;
}
.arrow-bg i{
  border: 1px solid #000;
  border-radius: 50%;
  padding: 14px 15px;
  margin: -60px auto 10px auto;
  width: fit-content;
  color: #000;
  display: block;
  position: relative;
  transform: rotate(315deg);
}
.layer-3 p{
  font-family: 'barlowcondensed-regular';
  font-size: 30px;
}
.indus-more{
  text-align: end;
  margin-right: 45px;
}
.indus-more a{
  border: 1px solid #000;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 18px;
  color: #000;
  font-family: 'barlow-regular';
  text-transform: uppercase;
}
.layer-4{
  background-color: #012348;
  color: #fff;
  padding: 60px 0 100px 0;
}
.wwd{
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0px 0 90px 0;
}
.wwd p{
  font-family: 'barlowcondensed-regular';
  font-size: 30px;
  width: 515px;
  margin: 0px;
  line-height: normal;
  padding: 0px 0 0 40px;
}
.wwd-img-1 img, .wwd-img-2 img{
  border-radius: 40px;
}
.wwd-txt-1{
  background: #012348;
  border-radius: 15px;
  width: 430px;
  position: absolute;
  margin-top: -430px;
  margin-left: 210px;
  padding: 25px 25px;
}
.wwd-txt-1 a, .wwd-txt-2 a{
  font-family: 'figtree-light';
  text-transform: unset;
  background: transparent;
  color: #85cef9;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
  font-size: 18px;
  margin: auto;
}
.wwd-img-2{
  text-align: right;
}
.wwd-txt-2{
  background: #012348;
  border-radius: 15px;
  width: 410px;
  position: absolute;
  margin-top: -205px;
  padding: 25px 25px;
}
.layer-5{
  padding: 20px 155px;
}
.market{
  padding-top: 16px;
}
.layer-5 img{
  border-radius: 15px;
}
.content-txt{
  position: relative;
  height: 0;
  top: -310px;
  color: #fff;
  width: 510px;
  left: 500px;
}
.market-txt{
  position: relative;
  top: -385px;
  height: 0;
  color: #fff;
  padding: 0 50px;
}
.content-txt h3, .market-txt h3, .tech-txt h3{
  font-size: 25px;
  margin-bottom: 35px;
}
.content-txt a, .market-txt a, .tech-txt a{
  color: #85cef9;
}
.tech-txt{
  position: relative;
  height: 0;
  color: #fff;
  top: -800px;
  padding: 0 60px;
}
.layer-6{
  background: #ebebeb;
  padding: 60px 0;
}
.layer-6 img{
  border-radius: 50%;
}
.sim-txt{
  background: #ebebeb;
  padding: 60px 200px 60px 100px;
  border-radius: 0px 0 0px 20px;
  position: relative;
  margin-left: -400px;
}
.layer-6 a{
  position: relative;
  left: 250px;
}
.layer-7{
  background: #222b34;
  padding: 80px 0;
  color: #fff;
}
.client-img{
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.layer-7 a{
  margin: 0 auto;
  display: block;
}
.layer-8{
  background: linear-gradient(45deg, #f47526, #fcac53);
  color: #fff;
  padding: 40px 0;
}
.layer-8 p{
  font-size: 25px;
  padding-right: 220px;
}
.layer-8 a{
  margin: 20px 0;
}
.footer{
  background-color: #ebebeb;
  padding: 40px 0 0 0;
}
.footer-txt{
  border-bottom: 2px solid #000;
  padding: 0px 0;
  border-image: linear-gradient(90deg, #f2741d, #fca506, #fdad02, #fdad02);
  border-image-slice: 1;
  width: 100%;
}
.footer-txt span{
  font-family: 'barlowcondensed-medium';
  font-size: 50px;
  line-height: normal;
  width: 840px;
}
.footer-txt{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links, .address{
  display: grid;
  margin-top: 50px;
}
.links a{
  font-family: 'barlow-regular';
  color: #000;
  font-size: 18px;
}
.footer p{
  margin: 0;
  color: #000;
}
.address{
  border-left: 1px solid #000;
  padding-left: 45px;
}
.copy{
  background: #dbdcde;
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
  margin-top: 50px;
}
.copy i{
  color: #656565;
  font-size: 20px;
  padding: 0 5px;
}
#circle text { font-family: 'barlow-semi-bold'; font-size: 23px; letter-spacing: 0.09em;}
#circle svg { position: relative; left: 0; top: 0; width: 70%; height: auto;
  -webkit-animation-name: rotate; -moz-animation-name: rotate; -ms-animation-name: rotate; -o-animation-name: rotate; animation-name: rotate;
  -webkit-animation-duration: 5s; -moz-animation-duration: 5s; -ms-animation-duration: 5s; -o-animation-duration: 5s; animation-duration: 5s;
  -webkit-animation-iteration-count: infinite; -moz-animation-iteration-count: infinite; -ms-animation-iteration-count: infinite; 
  -o-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-timing-function: linear; 
  -moz-animation-timing-function: linear; -ms-animation-timing-function: linear; -o-animation-timing-function: linear; animation-timing-function: linear;
}
@-webkit-keyframes rotate {
  from { -webkit-transform: rotate(0); }
  to { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes rotate {
  from { -moz-transform: rotate(0); }
  to { -moz-transform: rotate(360deg); }
}
@-ms-keyframes rotate {
  from { -ms-transform: rotate(0); }
  to { -ms-transform: rotate(360deg); }
}
@-o-keyframes rotate {
  from { -o-transform: rotate(0); }
  to { -o-transform: rotate(360deg); }
}
@keyframes rotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}
.arrow{
  position: absolute;
  margin-top: -106px;
  margin-left: 106px;
  transform: translate(-50%, -50%);
  background: #f47c20;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.arrow i{
  transform: rotate(320deg);
  color: #fff;
}
.down:hover{
  border: 2px solid #f56712;
}
.down:hover .down::before:hover{
    background: #ee6e16;
}
.down:hover .down::after:hover {
    background: #ee6e16;
}
.layer-3 a:hover .fa-arrow-right{
  color: #fff;
  background: #f6802f;
  transform: rotate(356deg);
  border-color: #fff;
}
.button {
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ef7021;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.indus-more a:hover{
  border: 1px solid #fff;
}
.button:hover {
  color: #fff;
  border-color: transparent;
}
.button:hover:before {
  width: 100%;
}
.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
}

/* Underline Effect - exact text width */
.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 3px;
  width: 0;
  background-color: #f26f17;
  transition: width 0.3s ease-in-out;
}

/* On Hover or Active - match text width */
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 100%;
}
.tech-2, .content-2, .vision-2{
  display: none;
}
#inner-menu {
  background-color: transparent;
    border-radius: 1ps solid transarent;
    border-bottom: 1px solid #000;
    /* padding: 0px 0; */
    border-image: linear-gradient(90deg, #34039d, #e5642b, #f68c38, #fdac50);
    border-image-slice: 1;
    width: 100%;
}
.breadcrumb{
  margin-top: 10px;
}
.breadcrumb-item a {
  font-family: 'barlow-regular';
  font-size: 18px;
  color: #000;
}
.breadcrumb .active {
  font-family: 'barlow-regular';
  font-size: 18px;
}
.about-img, .brand-txt{
  margin-top: 70px;
}
.about-txt-1{
  background: #fff;
  border-radius: 0 15px;
  margin-left: -315px;
  margin-top: 70px;
  padding: 0px 100px 30px 100px;
}
.about-txt-1 p, .vision-txt p{
  font-size: 27px;
}
.about-txt-2{
  margin: 30px 100px 0 -50px;
}
.about-txt-3 h4{
  font-family: 'figtree-light';
  text-transform: uppercase;
  margin-top: 30px;
  font-weight: 600;
  font-size: 20px;
}
.vision{
  margin-top: 30px;
}
.vision-txt{
  color: #fff;
  margin: -460px -0 0 50px;
  height: 549px;
  width: 700px;
}
.vision-txt h3{
  font-size: 32px;
  margin-top: 30px;
}
.brand-txt{
  background: #fff;
  border-radius: 0 15px;
  margin-left: -315px;
  padding: 0px 0px 10px 50px;
}
.brand-txt p{
  font-size: 25px;
}
.control-btn-1 {
  position: absolute;
  left: 75px;
  margin-top: 15px;
}
.control-btn-1 i{
  background: none;
  border: 1px solid #383b3e;
  color: #383b3e;
  padding: 4px 5px;
  border-radius: 100%;
  transition: background .6s ease;
}
.control-btn-1 .carousel-control-next{
  margin: 0 -3em;
}
.carousel-control-next, .carousel-control-prev{
  opacity: 1;
}
.brand-slide{
  padding: 0 45px 0 0;
}
.brand-slide span, .benefits span{
  -webkit-text-fill-color: #0000;
  background: linear-gradient(to right, #f47627, #fca951);
  -webkit-background-clip: text;
  font-family: 'barlow-regular';
  font-size: 50px;
}
.brand-slide h5{
  font-family: 'barlow-regular';
  font-size: 25px;
}
.brand-slide li, .benefits li{
  font-family: 'figtree-light';
  font-size: 18px;
}
#inner-slide .slide{
  padding: 30px 0 100px 0;
}
.pagination-box {
  font-size: 18px;
  font-family: 'barlow-regular';
  width: fit-content;
  color: #333;
}
.control-btn-1 i:hover{
  background: #f57c2b;
  border-color: #f67e2e;
  color: #fff;
}
.indus-txt p{
  font-family: 'figtree-light';
  font-size: 21px;
}
.portfolio-inner-images{
  display: flex;
  justify-content: center;
  gap: 65px;
  margin-top: 65px;
}
.portfolio-images {
  margin: 0 205px 30px 205px;
}
.portfolio-images nav{
  margin-bottom: 50px;
}
.other-portfolios a{
  color: #000;
}
.other-portfolios{
  margin: 70px 165px 100px 150px;
    display: flex;
    justify-content: space-evenly;
}
.other-portfolios span{
  font-family: 'barlow-regular';
  text-transform: uppercase;
  font-size: 18px;
  padding: 0 1px;
}
.prev i{
  margin-right: 5px;
}
.next i{
  margin-left: 5px;
}
.back{
  display: flex;
}
.back span:before, .back span:after{
  content: '';
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 100%;
  border: 1px solid #000;
  background: #000;
  transition: all 0.3s ease-in-out;
  margin-bottom: 2px;
  margin-right: 1px;
}
.back span:before:hover  .back span{
  background: #fff;
}
.back span:after:hover  .back span{
  background: #fff;
}
.advisory-txt{
  margin: 50px 0 120px 0px;
}
.benefits{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.benefits span {
  font-size: 40px;
}
.clients{
  background: #f5f5f6;
  padding: 0 0 80px 0;
}
.nav-pills-custom .nav-link {
  background: transparent;
  font-family: 'barlow-regular';
  color: #000;
  position: relative;
  font-size: 21px;
  /*border-bottom: 1px solid #e9ecef;*/
  border-radius: 0;
  padding: 15px 0;
  width: 80%;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background: linear-gradient(45deg, #3c179b, #e95c01, #F4A304, #F4A304);
  background: fill;
  background-clip: text;
  -webkit-text-fill-color: #0000;
}
.nav-pills .nav-link :hover{
  background: linear-gradient(45deg, #3c179b, #e95c01, #F4A304, #F4A304);
  background: fill;
  background-clip: text;
  -webkit-text-fill-color: #0000;
}
.nav-pills-custom .nav-link::before {
  content: '';
  display: block;
  border-top: 8px solid transparent;
  border-left: 10px solid #fff;
  border-bottom: 8px solid transparent;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  opacity: 0;
}
.tab-pane img{
  background: #fff;
  border-radius: 0;
  filter: grayscale(1);
  margin-bottom: 30px;
  padding: 15px 30px;
}
.tab-pane img:hover{
  filter: grayscale(0);
}
.nav-pills a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(45deg, #3c179b, #f26f17, #ffc22d);
  transition: width 0.5s;
  position: relative;
  top: 16px;
}
.nav-pills a:hover::after {
  width: 100%;
}
.nav-pills .active::after {
  width: 100%;
}
.clients-mobile{
  display: none;
}
.accordion-item {
  border-bottom: 1px solid #000;
  border-image: linear-gradient(90deg, #3c179b, #eb7224, #fdad02);
  border-image-slice: 1;
  width: 100%;
}
.accordion-header {
  position: relative;
  font-family: 'barlow-regular';
  width: 100%;
  text-align: left;
  background: transparent;
  padding: 10px 15px;
  font-size: 18px;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 0;
}
.accordion-header.active {
  background-color: #fbb286;
}
.accordion-header .icon {
  transition: transform 0.2s;
}
.accordion-item {
  margin-bottom: 10px;
  border-radius: 0px;
  overflow: hidden;
}
.accordion-header::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: height 0.4s ease;
}
.accordion-header.active::after {
  content: "-";
}
.accordion-content {
  display: none;
  padding: 15px;
  background-color: #fff;
  transition: max-height 0.3s ease;
}
.accordion-content.open {
  display: block;
}
.team-txt-1{
  margin: 60px 100px 0 30px;
}
.team-txt-1 span{
  font-family: 'barlow-regular';
  font-size: 35px;
}
.team-txt-3{
  margin: 30px 0 100px 0;
}
.mobile-1{
  display: block;
}
.mobile-2{
  display: none;
}
.publication{
  margin-top: 50px;
}
.publication p, .publication-1 p{
  font-family: 'figtree-light';
    font-size: 18px;
    margin-bottom: 0;
}
.publication-1{
  border-bottom: 1px solid #000;
  padding: 50px 0;
  border-image: linear-gradient(90deg, #3c179b, #fa6e1e, #ffbb0d, #fdad02);
  border-image-slice: 1;
  width: 100%;
}
.publication-1 img{
  border: 1px solid #ccc;
  border-radius: 15px;
  margin-top: 40px;
}
.publication-1 span{
  font-family: 'figtree-light';
  font-size: 18px;
  margin: 10px 0 0 0;
  display: block;
  text-align: center;
}
.publication-1 .slide{
  padding: 0;
}
.publication-1 .carousel-inner{
  margin-bottom: 15px;
}
.wwd-txt-1 a:hover, .wwd-txt-2 a:hover, .content-txt a:hover, .market-txt a:hover, .tech-txt a:hover{
  background: linear-gradient(45deg, #e95c01, #f4a304);
  background: fill;
  background-clip: text;
  -webkit-text-fill-color: #0000;
}
#backToTop {
  position: fixed;
  right: 0;
  bottom: 50%;
  background-color: #000;
  color: #fff;
  width: fit-content;
  text-align: center;
  border-radius: 10px 0 0 10px;
  padding: 15px 2px;
}
#backToTop button{
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: #fff;
}
#backToTop p{
  writing-mode: sideways-lr;
  margin: 0;
  padding: 0;
}
#backToTop button:before, #backToTop button:after{
  display: block;
  content: "";
  position: absolute;
  background-color: transparent;
  bottom: 0;
  height: 30px;
  width: 15px;
}
#backToTop button:before{
  right: 0;
  left: initial;
  border-radius: 0;
  border-bottom-right-radius: 15px;
  box-shadow: 0 15px 0 0 #000;
  top: -30px;
  bottom: initial;
}
#backToTop button:after{
  right: 0;
  left: initial;
  border-radius: 0;
  border-top-right-radius: 15px;
  box-shadow: 0 -15px 0 0 #000;
  top: initial;
  mask: none;
  bottom: -30px;
  background: none;
  padding: 0;
}
.footer-txt a:hover .arrow{
  background: #000;
}
.footer-txt a:hover i{
  transform: rotate(356deg);
    color: #f26718;
}
.cirak-carousel .slide{
  padding: 0;
}
.cirak-carousel .e-font-icon-svg{
  width: 50px;
}
.team h2{
  position: relative;
  top: 40px;
}
.portfolio-row-image{
  margin-top: 65px;
}
.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.portfolio-container {
    padding: 0 205px;
}


@media (min-width:320px) and (max-width: 339px){
  .arrow {
    margin-top: -48px;
    margin-left: 48px;
    width: 25px;
    height: 25px;
  }
}

@media (min-width:340px) and (max-width: 374px){
  .arrow {
    margin-top: -55px;
    margin-left: 55px;
    width: 28px;
    height: 28px;
  }
} 

@media (min-width:375px) and (max-width: 410px){
  .arrow {
    margin-top: -58px;
    margin-left: 58px;
    width: 28px;
    height: 28px;
  }
} 

@media (min-width: 411px) and (max-width: 420px){
  .arrow {
    margin-top: -62px;
    margin-left: 62px;
    width: 28px;
    height: 28px;
  }
}

@media (min-width:421px) and (max-width: 479px){
  .arrow {
    margin-top: -70px;
    margin-left: 68px;
    width: 28px;
    height: 28px;
  }
} 

@media (min-width:480px) and (max-width: 520px){
  .arrow {
    margin-top: -80px;
    margin-left: 75px;
    width: 32px;
    height: 32px;
  }
} 

@media (min-width:521px) and (max-width: 575px){
  .arrow {
    margin-top: -85px;
    margin-left: 85px;
    width: 33px;
    height: 33px;
  }
} 


@media (min-width:576px) and (max-width: 767px){
  .arrow {
    margin-top: -85px;
    margin-left: 85px;
    width: 35px;
    height: 35px;
  }
} 

@media (max-width: 767px){
  .menu {
    padding: 10px 0 10px 0px;
  }
  .menu img{
    width: 200px;
  }
  .navbar{
    position: absolute;
    left: auto;
    width: 100%;
    right: 25px;
    top: 20px;
    justify-content: flex-end;
  }
  .navbar-toggler {
    border: 0;
    padding: 0;
    margin: 0;
  }
  .bar {
    background: #012348;
    border-radius: 5px;
    display: block;
    height: 2px;
    margin: 8px 0;
    transition: background-color .4s ease-in, transform .4s ease-in, width .4s ease-in;
    width: 40px;
  }
  .navbar-expand-lg .navbar-collapse {
    position: absolute;
    top: 65px;
    background: rgb(248 236 223);
    z-index: 2;
    left: 25px;
    width: 100%;
    padding: 10px 10px 0px;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .SMN_effect-2 a:hover:after, .SMN_effect-2 a:focus:after{
    display: none;
  }
  .slider {
    padding: 0px 15px;
    height: 600px;
  }
  .slide {
    padding: 0 0 0 0px;
  }
  .slider .content_container {
    padding: 0px;
  }
  .slider .slides {
    max-height: 600px;
  }
  .inner_content {
    height: 600px;
  }
  .center {
    bottom: auto;
    margin-top: -60px;
  }
  h1 {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 10px;
  }
  .inner_content span {
    font-size: 25px;
  }
  .layer-2 {
    padding: 20px 0px;
  }
  .layer-2 p {
    font-size: 20px;
    padding: 0 5px 0px 5px;
  }
  .layer-2 a, .layer-7 a, .layer-8 a, .inner_content a, .layer-4 a, .layer-6 a {
    padding: 4px 12px;
    font-size: 14px;
  }
  h2 {
    font-size: 35px;
  }
  .layer-3 p, h3 {
    font-size: 20px;
  }
  .layer-3 p, .indus-txt {
    margin-bottom: 20px;
  }
  .indus-more {
    text-align: center;
    margin-right: 0;
    margin-top: 20px;
  }
  .indus-txt {
    width: auto;
  }
  .layer-4 {
    padding: 20px 0 20px 0;
  }
  .wwd {
    display: block;
    padding: 0px 0 20px 0;
  }
  .wwd p {
    font-size: 20px;
    width: auto;
    padding: 0px 0 15px 0px;
  }
  .wwd-img-1 img, .wwd-img-2 img {
    border-radius: 15px;
  }
  .wwd-txt-1 a, .wwd-txt-2 a {
    padding: 0px;
  }
  .wwd-txt-1, .wwd-txt-2 {
    width: auto;
    position: relative;
    margin: -110px 5px 20px 5px;
    padding: 15px 20px;
  }
  .layer-5, .layer-6, .layer-7 {
    padding: 20px 0px;
  }
  .content-1, .vision-1{
    display: none;
  }
  .content-2, .vision-2{
    display: block;
  }
  .content-txt {
    top: -360px;
    width: auto;
    left: 0px;
    margin: 0 20px;
  }
  .market-txt {
    top: -270px;
    padding: 0 20px;
  }
  .tech-txt {
    margin-top: -580px;
    height: 606px;
    top: 0;
    padding: 0 20px;
  }
  .market, .content-txt {
    padding: 0 0 10px 0;
  }
  .sim-txt {
    padding: 10px 0px 0px 0px;
    border-radius: 0px 0 0px 20px;
    margin-left: 0px;
  }
  .layer-6 a {
    left: 0px;
  }
  .client-img img{
    width: 65px;
  }
  .client-img {
    margin-bottom: 20px;
  }
  .layer-7 a {
    display: unset;
  }
  .layer-8 p {
    font-size: 20px;
    padding-right: 0px;
  }
  .layer-8 a {
    margin: 0px 10px;
  }
  .footer-txt span {
    font-size: 20px;
    width: auto;
  }
  #circle svg {
    width: 100%;
  }
  /* .arrow {
    margin-top: -85px;
    margin-left: 85px;
    width: 35px;
    height: 35px;
  } */
  .links, .address {
    margin-top: 0px;
  }
  .address {
    border-left: 0px solid #000;
    padding: 10px 0 0 0;
  }
  .copy {
    margin-top: 20px;
    display: block;
    padding: 20px 12px;
  }
  .copy i {
    padding: 15px 5px 0 0;
  }
  .footer {
    padding: 0px 0 0 0;
  }
  .links a, p {
    font-size: 16px;
  }
  .content-txt h3, .market-txt h3, .tech-txt h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .about-img {
    margin-top: 10px;
  }
  .about-txt-1 {
    background: #fff;
    border-radius: 0 15px;
    margin-left: 0px;
    margin-top: 10px;
    padding: 0px 0px 0px 0px;
  }
  .about-txt-1 p, .vision-txt p {
    font-size: 18px;
  }
  .about-txt-2 {
    margin: 0px 0px 0 0px;
  }
  .vision-txt {
    margin: -590px 10px 0 10px;
    height: 651px;
    width: auto;
  }
  .brand-txt {
    margin-left: 0px;
    padding: 0px 0px 0px 0px;
  }
  .about-img, .brand-txt {
    margin-top: 20px;
  }
  .brand-txt p {
    font-size: 18px;
  }
  .brand-slide span {
    font-size: 35px;
  }
  #inner-slide .slide {
    padding: 0px 0 100px 0;
  }
  .clients-mobile{
    display: block;
    margin-bottom: 60px;
  }
  .clients{
    display: none;
  }
  .accordion-header {
    padding: 10px 5px;
  }
  .clients-image img{
    margin: 0 auto 20px auto;
    display: block;
    width: 200px;
  }
  .team-txt-1 {
    margin: 10px 0px 0 0px;
  }
  .about-txt-3 h4 {
    margin-top: 0px;
  }
  .team-txt-1 {
    margin: 10px 0px 0 0px;
  }
  .team h2 {
    top: 0px;
  }
  .layer-3 {
    margin: 0 0 30px 0;
  }
  .brand-slide {
    padding: 0 0px 0 0;
  }
  .advisory-txt {
    margin: 0px 0 60px 0px;
  }
  .benefits {
    display: block;
  }
  .portfolio-images {
    margin: 0 0px 20px 0px;
  }
  .portfolio-inner-images {
    display: block;
    margin-top: 15px;
  }
  .portfolio-inner-images img{
    margin-bottom: 15px;
  }
  .other-portfolios {
    margin: 30px 0px 70px 0px;
  }
  .portfolio-container {
    padding: 0 0px;
  }
  .portfolio-row-image {
    margin-top: 10px;
  }
  .portfolio-images nav {
    margin-bottom: 0px;
  }
}

@media (min-width: 768px) and (max-width: 991px){
  .menu img {
    width: 100%;
  }
  .bar {
    background: #012348;
    border-radius: 5px;
    display: block;
    height: 2px;
    margin: 8px 0;
    transition: background-color .4s ease-in, transform .4s ease-in, width .4s ease-in;
    width: 40px;
  }
  .navbar-toggler{
    border: 0;
    padding: 0 20px;
    margin: 0;
    position: absolute;
    right: 0;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-expand-lg .navbar-collapse{
    position: absolute;
    top: -5px;
    background: rgb(200, 235, 248);
    z-index: 2;
    left: 0px;
    width: 100%;
    padding: 10px 10px 0px;
  }
  .menu {
    padding: 20px 0 20px 15px;
  }
  .slider {
    height: 400px;
    padding-left: 20px;
  }
  .slider .content_container {
    padding: 50px;
  }
  .slider .slides {
    max-height: 400px;
  }
  .slide {
    padding: 0 0 0 0px;
  }
  h1 {
    font-size: 34px;
    line-height: 40px;
  }
  .inner_content span {
    font-size: 28px;
  }
  .center {
    bottom: auto;
    margin-top: -70px;
  }
  .inner_content {
    height: 400px;
  }
  .layer-2 p {
    font-size: 30px;
    padding: 0 45px 20px 45px;
  }
  .layer-2 {
    padding: 30px 0px;
  }
  .indus-txt {
    width: auto;
  }
  h2 {
    font-size: 40px;
  }
  h3, .content-txt h3, .market-txt h3, .tech-txt h3, .brand-txt p, .indus-txt p {
    font-size: 16px;
  }
  p, .brand-slide li, .brand-slide li, .benefits li {
    font-size: 16px;
  }
  .layer-5 {
    padding: 20px 0px;
  }
  .content-txt {
    top: -250px;
    width: 400px;
    left: 320px;
  }
  .content-txt h3, .market-txt h3, .tech-txt h3 {
    margin-bottom: 15px;
  }
  .tech-txt {
    top: -230px;
    padding: 0 40px;
    width: 500px;
  }
  .market-txt {
    top: -280px;
    padding: 0 37px;
  }
  .market {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .tech-1{
    display: none;
  }
  .tech-2{
    display: block;
  }
  .sim-txt {
    padding: 25px 35px 25px 35px;
    margin-left: -200px;
  }
  .layer-6 a {
    left: 120px;
  }
  .inner_content a, .layer-4 a, .layer-6 a, .indus-more a, .layer-2 a, .layer-7 a, .layer-8 a, .links a, .nav-pills-custom .nav-link{
    font-size: 15px;
  }
  .wwd {
    gap: 30px;
    padding: 0px 0 60px 0;
  }
  .wwd p {
    width: 330px;
    padding: 0px;
  }
  .wwd-img-2 {
    margin-top: 30px;
  }
  .layer-8 p {
    font-size: 20px;
    padding-right: 0px;
  }
  .layer-8 {
    padding: 20px 0;
  }
  .footer-txt span {
    font-size: 30px;
  }
  #circle svg {
    width: 80%;
  }
  .arrow {
    margin-top: -74px;
    margin-left: 74px;
    width: 35px;
    height: 35px;
  }
  .address {
    border-left: 0px solid #000;
    padding-left: 0px;
  }
  .client-img img{
    width: 110px;
  }
  .client-img {
    margin-bottom: 30px;
  }
  .about-txt-1 {
    margin-left: -145px;
    margin-top: 20px;
    padding: 0px 30px 2px 30px;
  }
  .about-txt-1 p, .vision-txt p {
    font-size: 18px;
  }
  .about-txt-2 {
    margin: 30px 0px 0 0px;
  }
  .vision-txt {
    margin: -290px -0 0 20px;
    height: 370px;
    width: 460px;
  }
  .vision-txt h3 {
    font-size: 25px;
    margin-top: 15px;
  }
  .brand-txt {
    margin-left: 0px;
    padding: 0px 0px 10px 0px;
  }
  .about-img, .brand-txt {
    margin-top: 20px;
  }
  .brand-slide h5 {
    font-size: 20px;
  }
  .brand-slide span {
    font-size: 40px;
  }
  #inner-slide .slide {
    padding: 0px 0 51px 0;
  }
  .tab-pane img {
    padding: 5px 10px;
  }
  .mobile-2{
    display: block;
  }
  .mobile-1{
    display: none;
  }
  .team-txt-1 {
    margin: 10px 0px 0 10px;
  }
  .about-txt-3 h4, .publication-1 img {
    margin-top: 0px;
  }
  .team-txt-1 span {
    font-size: 30px;
  }
  .layer-3 {
    margin: 30px 0;
  }
  .layer-3 p, .indus-txt {
    margin-bottom: 25px;
  }
  .layer-7 {
    padding: 40px 0;
  }
  .team h2 {
    top: 10px;
  }
  .team-txt-3 {
    margin: 30px 0 50px 0;
  }
  .advisory-txt {
    margin: 0px 0 60px 0px;
  }
  .publication {
    margin-top: 30px;
  }
  .publication-1 {
    padding: 30px 0;
  }
  .benefits {
    gap: 30px;
  }
  .portfolio-images {
    margin: 0 15px 20px 15px;
  }
  .portfolio-inner-images {
    display: block;
    margin-top: 15px;
  }
  .portfolio-inner-images img{
    margin-bottom: 15px;
  }
  .other-portfolios {
    margin: 20px 165px 70px 150px;
  }
}

@media (min-width: 992px) and (max-width: 1099px){
  .menu {
    padding: 20px 0 20px 15px;
  }
  .navbar-expand-lg .navbar-collapse {
    left: -50px;
  }
  .nav-item {
    margin: 0 5px;
  }
  .navbar {
    margin-top: 0px;
  }
  .navbar-nav a {
    font-size: 16px;
  }
  .slider {
    height: 500px;
    padding-left: 35px;
    flex-direction: row-reverse;
  }
  .slider .slides {
    max-height: 500px;
  }
  .slider .slides .slide {
    height: 500px;
    flex-direction: column-reverse;
  }
  .slide {
    padding: 0 0 0 0px;
  }
  .inner_content {
    height: 500px;
  }
  h1 {
    font-size: 43px;
    line-height: 43px;
  }
  .inner_content span {
    font-size: 30px;
  }
  .center {
    bottom: auto;
    margin-top: -65px;
  }
  h2 {
    font-size: 45px;
  }
  h3 {
    font-size: 18px;
  }
  p, .wwd-txt-1 a, .wwd-txt-2 a, .layer-2 a, .layer-7 a, .layer-8 a, .links a, .brand-slide li,
  .brand-slide li, .benefits li, .breadcrumb .active, .breadcrumb-item a, .publication p, .publication-1 p{
    font-size: 15px;
  }
  .layer-2 p {
    font-size: 30px;
    padding: 0 30px 20px 30px;
  }
  .wwd {
    gap: 20px;
  }
  .indus-txt {
    width: auto;
  }
  .wwd-txt-1 {
    width: 290px;
    margin-left: 160px;
    padding: 15px 15px;
  }
  .wwd-txt-2 {
    width: 270px;
    padding: 15px 15px;
  }
  .layer-5 {
    padding: 20px 20px;
  }
  .content-txt {
    top: -230px;
    width: 340px;
    left: 260px;
  }
  .content-txt h3, .market-txt h3, .tech-txt h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .market-txt {
    top: -250px;
    padding: 0 15px;
  }
  .tech-txt {
    top: -500px;
    padding: 0 15px;
  }
  .sim-txt {
    padding: 40px 140px 60px 60px;
    margin-left: -270px;
  }
  .layer-8 p {
    font-size: 20px;
    padding-right: 170px;
  }
  .footer-txt span {
    font-size: 40px;
  }
  .arrow {
    margin-top: -87px;
    margin-left: 87px;
  }
  .links, .address {
    margin-top: 30px;
  }
  .about-txt-1 {
    margin-left: -200px;
    margin-top: 35px;
    padding: 0px 35px 30px 35px;
  }
  .about-txt-1 p, .vision-txt p {
    font-size: 20px;
  }
  .about-txt-2 {
    margin: 30px 40px 0 0px;
  }
  .vision-txt {
    margin: -380px -0 0 50px;
    height: 450px;
    width: 520px;
  }
  .brand-txt {
    margin-left: -200px;
    padding: 0px 30px 10px 30px;
  }
  .brand-txt p {
    font-size: 20px;
  }
  .tab-pane img {
    padding: 5px 10px;
  }
  .nav-pills-custom .nav-link, .indus-txt p {
    font-size: 18px;
  }
  .layer-3 {
    margin: 35px 0;
  }
  .about-img, .brand-txt {
    margin-top: 35px;
  }
  .team h2 {
    top: 20px;
  }
  .team-txt-1 {
    margin: 25px 100px 0 0px;
  }
  .advisory-txt {
    margin: 20px 0 60px 0px;
  }
  .portfolio-images {
    margin: 0 15px 30px 15px;
  }
  .portfolio-inner-images {
    margin-top: 30px;
  }
  .portfolio-images img {
    margin-bottom: 15px;
  }
  .other-portfolios {
    margin: 30px 165px 100px 150px;
  }
  .portfolio-inner-images img{
    width: 475px;
  }
  .portfolio-inner-images {
    gap: 30px;
    margin-top: 30px;
  }
}

@media (min-width: 1100px) and (max-width: 1199px){
  .menu {
    padding: 20px 0 20px 20px;
  }
  .navbar-expand-lg .navbar-collapse {
    left: -30px;
  }
  .navbar {
    margin-top: 0px;
  }
  .nav-item {
    margin: 0 5px;
  }
  .slider {
    height: 550px;
    padding-left: 45px;
  }
  .slider .slides {
    max-height: 550px;
  }
  .slide {
    padding: 0 0 0 0px;
  }
  .inner_content {
    height: 550px;
  }
  h1 {
    font-size: 50px;
    line-height: 50px;
  }
  .inner_content span {
    font-size: 32px;
  }
  .center {
    bottom: auto;
    margin-top: -80px;
  }
  .layer-2 {
    padding: 40px 0px;
  }
  .layer-2 p {
    font-size: 30px;
    padding: 0 30px 20px 30px;
  }
  .layer-2 a, .layer-7 a, .layer-8 a, .indus-more a, .wwd-txt-1 a, .wwd-txt-2 a{
    font-size: 15px;
  }
  .indus-txt {
    width: auto;
  }
  h2 {
    font-size: 45px;
  }
  h3 {
   font-size: 18px;
  }
  p, .links a, .brand-slide li {
    font-size: 16px;
  }
  .wwd {
    gap: 15px;
  }
  .wwd-txt-1 {
    width: 315px;
    margin-top: -430px;
    margin-left: 140px;
    padding: 15px 15px;
  }
  .wwd-txt-2 {
    width: 270px;
    padding: 15px 15px;
  }
  .layer-5 {
    padding: 20px 20px;
  }
  .content-txt {
    top: -265px;
    width: 400px;
    left: 320px;
  }
  .market-txt {
    top: -275px;
    padding: 0 15px;
  }
  .content-txt h3, .market-txt h3, .tech-txt h3 {
    margin-bottom: 20px;
  }
  .tech-txt {
    top: -575px;
    padding: 0 15px;
  }
  .sim-txt {
    padding: 50px 170px 50px 85px;
    margin-left: -290px;
  }
  .layer-8 p {
    font-size: 22px;
    padding-right: 100px;
  }
  .footer-txt span {
    font-size: 40px;
  }
  .arrow {
    margin-top: -86px;
    margin-left: 86px;
  }
  .address {
    padding-left: 30px;
  }
  .about-txt-1 {
    margin-left: -200px;
    padding: 0px 65px 30px 65px;
  }
  .about-txt-1 p, .vision-txt p {
    font-size: 23px;
  }
  .about-txt-2 {
    margin: 30px 10px 0 0px;
  }
  .vision-txt {
    margin: -385px -0 0 50px;
    height: 450px;
    width: 600px;
  }
  .brand-txt {
    margin-left: -200px;
    padding: 0px 0px 10px 30px;
  }
  .brand-txt p {
    font-size: 20px;
  }
  .nav-pills-custom .nav-link, .indus-txt p {
    font-size: 18px;
  }
  .tab-pane img {
    padding: 5px 15px;
  }
  .team-txt-1 {
    margin: 60px 30px 0 30px;
  }
  .portfolio-images {
    margin: 0 35px 30px 35px;
  }
  .portfolio-inner-images {
    gap: 20px;
    margin-top: 20px;
    width: 557px;
    justify-content: space-between;
  }
}

@media (min-width: 1200px) and (max-width: 1320px){
  .nav-item {
    margin: 0 8px;
  }
  .navbar-expand-lg .navbar-collapse {
    left: 0px;
  }
  .navbar-nav a {
    font-size: 16px;
  }
  .menu {
    padding: 20px 0 20px 30px;
  }
  .navbar {
    margin-top: 10px;
  }
  .slider {
    height: 500px;
    padding-left: 100px;
    padding-top: 20px;
  }
  .slider .slides {
    max-height: 500px;
  }
  h1 {
    font-size: 50px;
    line-height: 50px;
  }
  .inner_content span {
    font-size: 35px;
  }
  .slide {
    padding: 0 0 0 0px;
  }
  .inner_content {
    height: 500px;
  }
  .center {
    bottom: auto;
    margin-top: -80px;
  }
  .layer-2 p {
    font-family: 'barlowcondensed-regular';
    font-size: 30px;
    padding: 0 120px 20px 120px;
    color: #fff;
    line-height: normal;
  }
  .layer-2 {
    padding: 40px 0px;
  }
  h3 {
    font-size: 20px;
  }
  .wwd-txt-1 {
    width: 380px;
    margin-top: -430px;
    margin-left: 200px;
    padding: 20px 20px;
  }
  .wwd-txt-2 {
    width: 360px;
    margin-top: -210px;
    padding: 20px 20px;
  }
  .layer-5 {
    padding: 20px 20px;
  }
  .content-txt {
    top: -290px;
    width: 400px;
    left: 340px;
  }
  .content-txt h3, .market-txt h3, .tech-txt h3 {
    margin-bottom: 10px;
  }
  .market-txt {
    top: -300px;
    padding: 0 26px;
  }
  .tech-txt {
    top: -615px;
    padding: 0 15px;
  }
  .sim-txt {
    padding: 60px 200px 60px 100px;
    margin-left: -320px;
  }
  .layer-8 p {
    font-size: 23px;
    padding-right: 230px;
  }
  .about-txt-1 {
    margin-left: -230px;
    padding: 0px 50px 30px 50px;
  }
  .about-txt-1 p, .vision-txt p {
    font-size: 25px;
  }
  .about-txt-2 {
    margin: 30px 50px 0 0px;
  }
  .vision-txt {
    margin: -440px -0 0 50px;
    height: 520px;
    width: 660px;
  }
  .brand-txt {
    margin-left: -240px;
    padding: 0px 50px 10px 50px;
  }
  .brand-txt p {
    font-size: 23px;
  }
  .tab-pane img {
    padding: 10px 20px;
  }
  .nav-pills-custom .nav-link, .indus-txt p {
    font-size: 18px;
  }
  .portfolio-images {
    margin: 0 40px 30px 40px;
  }
  .portfolio-inner-images img{
    width: 568px;
  }
  .portfolio-inner-images {
    gap: 40px;
    margin-top: 40px;
  }
}

@media (min-width: 1321px)  and (max-width: 1400px){
  .navbar {
    margin-top: 10px;
  }
  .navbar-expand-lg .navbar-collapse {
    left: -10px;
  }
  .nav-item {
    margin: 0 10px;
  }
  .slider {
    height: 600px;
    padding-left: 120px;
  }
  .slider .slides {
    max-height: 600px;
  }
  .slide {
    padding: 0 0 0 0px;
  }
  .inner_content {
    height: 600px;
  }
  h1 {
    font-size: 56px;
  }
  h3 {
    font-size: 20px;
  }
  .inner_content span {
    font-size: 35px;
  }
  .center {
    bottom: auto;
    margin-top: -80px;
  }
  .layer-2 p {
    font-size: 30px;
    padding: 0 120px 20px 120px;
  }
  .layer-2 {
    padding: 40px 0px;
  }
  .wwd-txt-1 {
    width: 390px;
  }
  .wwd-txt-2 {
    width: 370px;
    margin-top: -220px;
  }
  .layer-5 {
    padding: 20px 50px;
  }
  .content-txt {
    top: -280px;
    width: 410px;
    left: 360px;
  }
  .content-txt h3, .market-txt h3, .tech-txt h3 {
    margin-bottom: 10px;
  }
  .market-txt {
    top: -310px;
    padding: 0 37px;
  }
  .tech-txt {
    top: -625px;
    padding: 0 20px;
  }
  .sim-txt {
    margin-left: -320px;
  }
  .layer-8 p {
    font-size: 23px;
    padding-right: 255px;
  }
  .arrow {
    margin-top: -103px;
    margin-left: 103px;
  }
  .about-txt-1 {
    margin-left: -250px;
    padding: 0px 60px 30px 60px;
  }
  .about-txt-1 p, .vision-txt p {
    font-size: 25px;
  }
  .about-txt-2 {
    margin: 30px 50px 0 0px;
  }
  .vision-txt {
    margin: -440px -0 0 50px;
    height: 530px;
    width: 660px;
  }
  .brand-txt {
    margin-left: -260px;
  }
  .brand-txt p {
    font-size: 22px;
  }
  .tab-pane img {
    padding: 10px 20px;
  }
  .nav-pills-custom .nav-link, .indus-txt p {
    font-size: 18px;
  }
  .layer-3 {
    margin: 30px 0;
  }
  .about-img, .brand-txt, .about-txt-1{
    margin-top: 30px;
  }
  .team h2 {
    top: 20px;
  }
  .portfolio-images {
    margin: 0 75px 30px 75px;
  }
  .portfolio-inner-images img{
    width: 580px;
  }
  .portfolio-inner-images {
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
  }
}

@media (min-width: 1401px) and (max-width: 1499px){
  .navbar {
    margin-top: 15px;
  }
  .nav-item {
    margin: 0 10px;
  }
  .slide {
    padding: 0 0 0 0px;
  }
  .slider, .inner_content{
    height: 600px;
  }
  .slider .slides {
    max-height: 600px;
  }
  .center {
    bottom: auto;
    margin-top: -100px;
  }
  h1 {
    font-size: 59px;
    line-height: 55px;
  }
  .inner_content span {
    font-size: 35px;
  }
  .layer-5 {
    padding: 20px 50px;
  }
  .content-txt {
    width: 420px;
    left: 390px;
  }
  .market-txt {
    top: -340px;
  }
  .tech-txt {
    top: -680px;
    padding: 0 30px;
  }
  .sim-txt {
    margin-left: -380px;
  }
  .about-txt-1 {
    padding: 0px 80px 30px 80px;
  }
  .advisory-txt {
    margin: 50px 0 120px 0px;
  }
  .layer-3 {
    margin: 30px 0;
  }
  .about-img, .brand-txt, .about-txt-1{
    margin-top: 30px;
  }
  .team h2 {
    top: 20px;
  }
  .portfolio-images {
    margin: 0 70px 30px 70px;
  }
  .portfolio-inner-images img{
    width: 605px;
  }
}

@media (min-width: 1500px) and (max-width: 1599px){
  .slide {
    padding: 0 0 0 0px;
  }
  h1 {
    font-size: 80px;
  }
  .inner_content span {
    font-size: 50px;
  }
  .layer-5 {
    padding: 20px 50px;
  }
  .content-txt {
    width: 440px;
    left: 440px;
  }
  .market-txt {
    top: -350px;
    padding: 0 25px;
  }
  .tech-txt {
    top: -705px;
    padding: 0 30px;
  }
  .sim-txt {
    padding: 60px 210px 60px 100px;
    margin-left: -370px;
  }
  .layer-3 {
    margin: 30px 0;
  }
  .about-img, .brand-txt, .about-txt-1{
    margin-top: 30px;
  }
  .team h2 {
    top: 20px;
  }
  .portfolio-images{
    margin: 0 65px 30px 65px;
  }
  .portfolio-inner-images {
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
    width: 704px;
  }
}

@media (min-width: 1600px) and (max-width: 1730px){
  .slide {
    padding: 0 0 0 0px;
  }
  .layer-5 {
    padding: 20px 80px;
  }
  .content-txt {
    width: 410px;
  }
  .market-txt {
    top: -360px;
  }
  .tech-txt {
    top: -730px;
  }
  .portfolio-images {
    margin: 0 80px 30px 80px;
  }
  .portfolio-inner-images {
    justify-content: flex-start;
  }
}

@media (min-width: 1731px) and (max-width: 1830px){
  .content-txt {
    width: 450px;
  }
  .portfolio-inner-images {
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
    width: 711px;
  }
}

@media (min-width: 1831px) and (max-width: 1919px){
  .portfolio-inner-images {
    gap: 30px;
    margin-top: 30px;
  }
}