@font-face {
  font-family: 'Lekton';
  src: url('/fonts/Lekton-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Lekton';
  src: url('/fonts/Lekton-Bold.ttf') format('truetype');
  font-weight: bold;
}

.header {
	display: flex;
	justify-content: center;
    margin-bottom: 15px;
}

.header-item {
	padding-left: 0px;
	padding-right: 0px;
	font-size: 20px;
}
/*
html, body {
    height: 100vh;
}
*/
body {
	font-family: 'Lekton', sans-serif;
    line-height: 25px;
	color: #222;
}

.container {
	margin: auto;
	max-width: 890px;
    /*height: 100vh;*/
}

.logo-container {
    display: flex;
    justify-content: center;
    /*padding-top: 7em;*/

    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.logo {
    width: 256px;
    height: 256px;
}

.logo2 {
    width: 350px;
    margin-bottom: 20px;
}

.content {
    background-color: #fff;
}

.glow {
    cursor: pointer;
    margin: 40px;
    background-color: #fff;

    border-radius: 20px;
    padding: 55px;
    /*
    box-shadow:
            0 0 60px 30px #fff,
            0 0 100px 60px #f0f,
            0 0 140px 90px #0ff;
    */
    /*background-color: rgba(255, 255, 255, 0.8);*/
    animation: glow 0.8s infinite alternate;
    /*border: 2px solid deepskyblue;*/
    /*border-radius: 20px;*/
}

@keyframes glow {
    from {
        box-shadow:
                0 0 60px 30px rgba(76, 56, 224, 1),  /* inner white */
                0 0 100px 60px rgba(100, 135, 238, 1), /* middle magenta */
                0 0 140px 90px rgba(25, 199, 251, 1); /* outer cyan */
    }
    to {
        box-shadow:
                0 0 60px 20px rgba(76, 56, 224, 0.5),  /* inner white */
                0 0 100px 40px rgba(100, 135, 238, 0.5), /* middle magenta */
                0 0 140px 60px rgba(25, 199, 251, 0.5); /* outer cyan */
    }
}

.company-name {
    line-height: 80px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 150px;
    font-weight: bold;
}

.company-name-sub {
    padding-top: 10px;
    font-size: 40px;
    font-weight: bold;
}

.centered-text1 {
    text-align: center;
    text-transform: uppercase;
    line-height: 18px;
    font-size: 18px;
    padding-bottom: 12px;
    padding-top: 0px;
    font-weight: bold;
}

.centered-text2 {
    text-align: center;
    line-height: 33px;
    font-size: 33px;
}

.centered-text3 {
    text-align: center;
    line-height: 18px;
    font-size: 13px;
}

.h-container {
    display: flex;
    align-items: center;
}

.team-header {
    background-image: url("/images/background.png");
    background-position: center;
    background-size: cover;
    height: 350px;
    margin-bottom: 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    /*box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.2) 0px 8px 16px -8px;*/
}

.team-header-logo {
    width: 180px;
    filter: drop-shadow(3px 3px 5px rgba(25, 199, 251, 1));
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding-bottom: 100px;

}

.team-header2 {
    margin-bottom: 40px;
    border-radius: 10px;
    text-align: center;
    /*box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.2) 0px 8px 16px -8px;*/
}

.team-header-logo2 {
    width: 280px;
    /*filter: drop-shadow(3px 3px 5px rgba(25, 199, 251, 1));*/
    padding-bottom: 20px;
    transition: all 0.3s ease;
    animation: team-header-glow 0.7s infinite alternate;
}
/*
.team-header-logo2:hover {
    filter: drop-shadow(5px 5px 10px rgba(25, 199, 251, 1));
}
*/
@keyframes team-header-glow {
    from {
        filter: drop-shadow(3px 3px 5px rgba(25, 199, 251, 1));
    }
    to {
        filter: drop-shadow(6px 6px 7px rgba(25, 199, 251, 1));
    }
}

.feature-logo {
    width: 200px;
    margin-right: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.2) 0px 8px 16px -8px;
}

.feature-logo:hover {
    box-shadow:
            0 0 6px 3px rgba(25, 123, 191, 0.8),
            0 0 10px 6px rgba(160, 211, 233, 0.5),
            0 0 14px 9px rgba(255, 255, 255, 0.8);
}

.title1 {
}

.sub-title1 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    vertical-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #555;
}

.sub-title2 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    vertical-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

.sub-title3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    vertical-align: center;
    color: #222;
}

.project-screens {
    padding-top: 10px;
}

.project-logo {
    height: 100px;
    border-radius: 20px;
    margin-right: 30px;
}

.project-logo-shadow {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.project-title-logo {
    height: 50px;
    margin-left: 5px;
}

.project-brief {
    cursor: pointer;
    border-bottom: 1px solid #aaa;
    padding-bottom: 7px;

    position: relative;
    text-decoration: none;
    color: #333;
}

.project-brief::before {
    content: "";
    position: absolute;
    bottom: -2px; /* Adjust as needed to align with text */
    left: 0;
    width: 0;
    height: 2px;
    background-color: #aaa;
    transition: width 0.2s ease-out; /* Smooth transition for width */
}

.project-brief:hover::before {
    width: 100%;
}

.customer-logo {
    height: 50px;
    margin-right: 40px;
}

.customer-logo2 {
    height: 50px;
    margin-right: 10px;
}

.country-logo {
    height: 50px;
    margin-right: 40px;
}

.tech-logo {
    height: 70px;
    margin-right: 30px;
}

.project-screen-red, .project-screen-blue {
    height: 300px;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.right-aligned {
    width: 100%;
    text-align: end;
}

.project-screen-red:hover {
    box-shadow:
            0 0 6px 3px rgba(230, 0, 33, 0.8),
            0 0 10px 6px rgba(240, 134, 137, 0.5),
            0 0 14px 9px rgba(255, 255, 255, 0.8);
}

.project-screen-blue:hover {
    box-shadow:
            0 0 6px 3px rgba(25, 123, 191, 0.8),
            0 0 10px 6px rgba(160, 211, 233, 0.5),
            0 0 14px 9px rgba(255, 255, 255, 0.8);
}

.spacer05 {
    padding-top: 10px;
}

.spacer1 {
    padding-top: 20px;
}

.spacer2 {
    padding-top: 40px;
}

.padding1 {
	padding: 20px;
}

.padding-top1 {
    padding-top: 10px;
}

.block1 {
    padding-bottom: 1.5em;
}

.text-section {
    text-align: justify;
}

.footer {
    padding-top: 50px;
    padding-bottom: 10px;
    text-align: center;
}

h3 {
	margin-block-end: 10px;
}

button {
  margin: 20px;
  outline: none;
}

.full-separator {
    width: 100%;
    border-top: 1px solid #aaa;
}

#particles-js {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.custom-btn {
  width: 160px;
  height: 50px;
  padding: 5px 15px;
  border: 2px solid #000;
  font-family: 'Lekton', sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  font-size: 20px;
  background: #fff;
  color: #000;
}

.btn-11 {
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0px;
}
.btn-11:hover {
  background: #000;
  color: #fff;
}
/*
.btn-11:before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn1 3s ease-in-out infinite;
}
*/
.btn-11:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

@-webkit-keyframes shiny-btn1 {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
