@import url('../fonts/toolkit.font.css');

body {
  box-sizing: border-box;
  font-family: "ArticulatCF", sans-serif;
  margin: 0px;
  padding: 0px;
  background: #080C16;
}

body::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #17cf82;
  --secondary-color: #2094f3;
}

*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  font-size: 17px;
  color: #000;
}

ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  text-decoration: none;
}

button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}

section {
  padding: 40px 0 40px;
  overflow: hidden;
}

.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
  justify-content: space-between;
}

.large_heading {
  font-size: 3.9rem;
  line-height: 1;
}

.heading {
  font-size: 48px;
  line-height: 1;
}

.sub_heading {
  font-size: 28px;
}

.small_heading {
  font-size: 20px !important;
}

.title {
  font-size: 18px !important;
}
.text {
  font-size: 16px;
}

.fontWeight300 {
  font-weight: 300;
}

.fontWeight400 {
  font-weight: 400;
}

.fontWeight500 {
  font-weight: 500;
}

.fontWeight600 {
  font-weight: 600;
}

.fontWeight700 {
  font-weight: 700;
}

.fontWeight800 {
  font-weight: 800;
}

.fontWeight900 {
  font-weight: 900;
}

.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 100%;
  background:#0000006b;
  backdrop-filter: blur(10px);
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  padding: 3px 0;
}
.header.stricky-fixed .leftLogo img{
  width: 200px;
}
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }
}
.text_secondary {
  color: var(--secondary-color);
}
.text_primary{
  color: var(--primary-color);
}
.text_purple{
  color:var(--purple-color)
}
.bgPrimary {
  background: var(--primary-color) !important;
}

.bgSecondary {
  background: var(--secondary-color) !important;
}
.bgPurple {
  background: var(--purple-color) !important;
}
.containerFull {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.header {
  width: 100%;
  padding: 10px 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}

.leftLogo {
  width: 200px;
}

.leftLogo img {
  max-width: 100%;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.btnTheme {
  background: transparent;
  display: inline-block;
  padding: 12px 35px;
  border: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  font-weight: 600;
}
.bgGradient{
   background: linear-gradient(45deg, var(--secondary-color), var(--primary-color)) !important;
}
.btnTheme:after{
  content: '';
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btnTheme:hover:after{
  width: 100%;
  right: auto;
  left: 0;
}
.rightMenu ul{
  display: flex;
  align-items: center;
}
.rightMenu ul li a{
  display: inline-block;
  padding: 10px 15px;
  color: #999;
  font-weight: 600;
}
.rightMenu ul li a:hover{
  color: var(--secondary-color);
}
.heroSection{
  background: url(../images/bg/bg.jpg) no-repeat center center/cover;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-top: 110px;
}
.heroSection:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.textGradient{
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.textGrey{
  color: #ccc;
}
.borderPrimary{
  border-color: var(--primary-color) !important;
}
.hoverTextWhite:hover{
  color: #fff;
}
.imgBanner img{
  width: 100%;
}
.itemImg img{
  width: 100%;
  height:200px;
  object-fit: cover;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.itemDo{
  border:1px solid #666;
  box-shadow: -5px 5px #666;
  padding: 5px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.itemDo ul{
  margin-top: 15px;
}
.itemDo ul li{
  position: relative;
  padding:5px 0;
  padding-left: 20px;
  font-weight: 600;
  font-size: 15px;
  color: #6c757d;
}
.itemDo ul li:before{
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
}
.itemIndustries{
  border:1px solid #333;
  padding: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  text-align: center;
}
.boxHover{
  transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
}
.iconIndustries{
  width: 80px;
  height: 80px;
  background: #2094f31a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
  font-size: 1.9rem;
  color: var(--primary-color);
  transition: all .5s ease-in-out;
}
.boxHover:hover{
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
.itemIndustries:hover .iconIndustries{
  background:  linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  color: #fff;
}

.itemTechonolgy{
  border:1px solid #333;
  padding:15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 20px;
}
.iconTech{
  width: 60px;
  height: 60px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: #2094f31a;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.itemTechonolgy:hover .iconTech{
  background: var(--secondary-color);
  color: #fff;
}
.itemTechonolgy:hover{
  border-color: var(--secondary-color);
}
.rightImg img{
  max-width: 100%;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.bulletList li{
  padding-left: 20px;
  position: relative;
  margin-bottom: 25px;
}
.bulletList li:before{
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
}
.rightTech h3{
  color: #fff;
}
.itemIndustries h3{
  color: #fff;
}
.blogImg img{
  max-width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.blogItem{
  border:1px solid #333;
  padding:5px;
  border-radius: 10px;
}
.tag{
  background:#2094f31a;
  color: var(--primary-color);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  padding: 5px 15px;
}
.blogItem h3{
  color:#fff;
}
.blogItem ul li{
  color:#666;
  font-size: 14px;
  font-weight: 600;
}
.blogItem:hover h3{
  color: var(--secondary-color);
}
.iconMusic{
  width: 120px;
  height: 150px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: #2094f31a;
  display: flex;
  align-items: center;  
  justify-content: center;
}
.rightMusic{
  width: calc(100% - 230px);
}
.iconMusic i{
  font-size: 3rem;
  color: var(--secondary-color);
}
.playIcon{
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}
.playIcon a{
  color: #fff;
}
.blogItem h4{
  color: #fff;
}
.blogItem:hover h4{
  color: var(--secondary-color);
}
.btnPlay{
  margin-top: 15px;
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.blogItem:hover .btnPlay{
  opacity: 1;
  visibility: visible;
}
.btnPlay i{
  font-size: 1.2rem;
}
.footer{
  padding: 40px 0;
}
.itemFooter ul li a {
  display: inline-block;
  color: #eee;
  font-size: 17px;
  padding: 5px 0;
}
.textLight {
  color: #ccc;
}
.socialLink ul {
  display: flex;
  margin-top: 30px;
}
.socialLink ul li a {
  display: inline-block;
  padding: 15px;
}
.bottomMenu ul {
  display: flex;
  gap: 15px;
}
.bottomMenu ul li a {
  font-size: .875em;
  font-weight: 600;
}

/* inner pages */
.innerPage{
  background-size:cover;
  background-position: center;
  backgruound-repeat: no-repeat;
  height: 350px;
  padding-top: 110px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.innerPage:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.innerPage  ul{
  display: flex;
  justify-content: center;
}
.innerPage ul li a{
  display: inline-block;
  padding: 10px 15px;
  color: #999;
  font-weight: 600;
  position: relative;
  font-size: 15px;
}
.innerPage ul li.active a{
  color: var(--primary-color);
}
.innerPage ul li a:before{
  content: "\f285";
  position: absolute;
  top: 17px;
  right: -5px;
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 12px;
}
.innerPage ul li:last-child a:before{
  display: none;
}
.listCheck li{
  padding:8px;
  padding-left: 30px;
  color: #fff;
  font-weight: 600;
  position: relative;
}
.listCheck li:before{
  content: "\f26b";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  color: var(--primary-color);
}
.contactForm1 {
  background: rgba(25, 30, 41, 0.7);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 230, 168, 0.2);
  box-shadow: 0 0 25px rgba(0, 230, 168, 0.1);
}
.contactItem {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.iconBox {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 230, 168, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--primary-color);
  font-size: 20px;
  margin-right: 15px;
}
.itemForm label {
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}

.itemForm input,
.itemForm textarea {
  width: 100%;
  padding: 15px;
  border: none;
border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

.itemForm input {
  margin: 0 !important;
  color: #fff;
}

.itemForm #message {
  background: transparent !important;
  color: #fff;
}
.itemForm {
  margin-bottom: 20px;
}

.itemForm textarea {
  height: 150px;
}
.industryList {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.industryList li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    color: #eee;
}

.industryList li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 16px;
}
.itemIndustries2 {
  border: 1px solid #333;
  padding: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  text-align: left;
}