:root {
    --main-outline-green: #d5e771;
    --main-text: #d0e693;
}

html {
  scroll-behavior: smooth;
}

body {
    background-image: url("images/bg-avsolutions.gif");
    height: 100%;
    display: block;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Chakra Petch', Geneva, Verdana, sans-serif;
    padding: 0;
    margin: 0;
}

p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--main-text);
}

a {
    text-decoration: none;
    color: var(--main-outline-green);
}

.h-line {
    width: 100%;
    height: 2px;
    background-color: var(--main-outline-green);
    display: block;
}

h1 {
    font-size: 58px;
    color: var(--main-outline-green);
    font-family: 'Bitwise';
    text-transform: uppercase;
    text-align: center;
}
h1 .neo-alt {
    font-size: 26px;
    font-family: 'Neotropolis';
    letter-spacing: -1px;
    margin-left: 2rem;
}
quote {
    font-size: 21px;
    text-align: right;
    color: #aba4e1;
}


/* SPACES */

.mt-12 {margin-top: 12px;}
.mt-24 { margin-top: 24px;}
.mt-40 {margin-top: 40px;}
.mt-180 { margin-top: 160px;}
.mt-80 {margin-top: 80px;}
.mb-12 {margin-bottom: 12px;}
.mb-24 {margin-bottom: 24px;}
.margins { margin-right: 8px !important; margin-left: 8px !important;}

/*Flexbox */
.d-flex {
    display: flex;
} 
.fd-row {
    flex-direction: row;
}


@media only screen and (min-width: 1100px) {
    p {
        font-size: 16px;
        line-height: 1.6;
    } 
}

@media only screen and (min-width: 720px) {
    .container-box .heading h2 {
        font-size: 34px;
        line-height: 1.5;
    }
}

/* MAIN */

.wrapper {
    width: 100%;
    max-width: 1116px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
}

/*CONTAINER BOX*/
.container-box {
    border: 2px solid var(--main-outline-green);
    border-radius: 12px;
    background-color: transparent;
    margin-left: 8px;
    margin-right: 8px;
}
.container-box .heading {
    display: flex;
    flex-direction: row;
}
.container-box .heading h2 {
    color: var(--main-text);
    margin: 0 0 1rem 1rem;
    font-size: 28px;
    line-height: 1.2;
}
@media only screen and (min-width: 720px) {
    .container-box .heading h2 {
        font-size: 34px;
        line-height: 1.5;
    }
}

/* HORIZONTAL SCROLL TEXT */
.marquee {
    width: 100%;
    max-width: 1118px;
    height: 50px;
    margin:auto;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    flex-direction: row;
}
.marquee div {
    color: #a8e936;
    font-family: 'Bitwise';
    font-size: 18px;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
    letter-spacing: 2px;
    animation: marquee 9s linear infinite;
    margin-bottom: -1px;
}
.marquee div span {
    color: #e9aa80;
}
.marquee div span  .symbols {
    color: #eaee74;
}
.marquee:hover div{
    animation-play-state: paused;
}

 @keyframes marquee {
    from {
       transform: translateX(0%);
    }
    /* Magic is here. This is the width of the elem with text after rendering the page */
    to {
       transform: translateX(-1539.58px);
    }
 }
 
  /* NAVIGATION */
nav.wrapper {
    height: 100px;
    display: flex;
    position: relative;
}
nav.wrapper .navcontainer {
    width: 80px;
    display: block;
    position: relative;
    border: 2px solid var(--main-outline-green);
    border-radius: 0 12px 12px 12px;
    background-color:var(--main-outline-green);
    height: 64px;
    margin: 40px 8px 20px auto;
    z-index: 1;
 }

 nav.wrapper .navcontainer::after {
    content: "";
    position: absolute;
    border-top: 2px solid var(--main-outline-green);
    border-right: 2px solid var(--main-outline-green);
    border-bottom: 2px solid var(--main-outline-green);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    right: -2px;
    top: -17px;
    height: 79px;
    width: 51px;
    background-color: var(--main-outline-green);
    z-index: 1;
 }
 nav.wrapper .navcontainer::before {
    content: "";
    position: absolute;
    z-index: 2;
    border-top: 2px solid var(--main-outline-green);
    right: 45px;
    top: -10px;
    height: 13px;
    width: 35px;
    transform:rotate(-25deg);
    background-color: var(--main-outline-green);
 }

 nav.wrapper .mobile-menu {
    position: absolute;
    font-family: 'Bitwise';
    font-size: 28px;
    color: var(--main-outline-green);
    right: 112px;
    top: 62px;
 }
 nav.wrapper button {
    background-color: transparent;
    border: 0;
    cursor: crosshair;
 }
 nav.wrapper img.mobile-menu-icon {
    width: 48px;
    padding-left: 15px;
 }
 
    /*LINKS Nav */
 nav .links {
    display: flex;
    flex-direction: row;
    margin-top: 6px;
    position: relative;
    z-index: 3;
}
nav .links ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    display: none;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
}
nav .links ul li {
    list-style: none;
    margin-left: 0;
    text-align: center;
}
nav .links ul li .glitch {
    font-size: 21px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: #d5e771;
    width: 160px;
}
nav .links ul li .glitch span {
    display: none;
}     
nav .links ul li .glitch:hover {
    text-shadow: 0.05em 0 0 #654afc, -0.03em -0.04em 0 #ee8c81,
    0.025em 0.04em 0 var(--main-outline-green);
    animation: glitch 725ms infinite;
}
            
nav .links ul li .glitch:hover span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}
nav .links ul li .glitch span:first-child {
    animation: glitch 500ms infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-0.04em, -0.03em);
    opacity: 0.75;
}
nav .links ul li .glitch span:last-child {
    animation: glitch 375ms infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(0.04em, 0.03em);
    opacity: 0.75;
}


@keyframes glitch {
    0% {
      text-shadow: 0.05em 0 0 #654afc, -0.03em -0.04em 0 #ee8c81,
        0.025em 0.04em 0 var(--main-outline-green);
    }
    15% {
      text-shadow: 0.05em 0 0 #654afc, -0.03em -0.04em 0 #ee8c81,
        0.025em 0.04em 0 var(--main-outline-green);
    }
    16% {
      text-shadow: -0.05em -0.025em 0 #654afc, 0.025em 0.035em 0 #ee8c81,
        -0.05em -0.05em 0 var(--main-outline-green);
    }
    49% {
      text-shadow: -0.05em -0.025em 0 #654afc, 0.025em 0.035em 0 #ee8c81,
        -0.05em -0.05em 0 var(--main-outline-green);
    }
    50% {
      text-shadow: 0.05em 0.035em 0 #654afc, 0.03em 0 0 #ee8c81,
        0 -0.04em 0 var(--main-outline-green);
    }
    99% {
      text-shadow: 0.05em 0.035em 0 #654afc, 0.03em 0 0 #ee8c81,
        0 -0.04em 0 var(--main-outline-green);
    }
    100% {
      text-shadow: -0.05em 0 0 #654afc, -0.025em -0.04em 0 #ee8c81,
        -0.04em -0.025em 0 var(--main-outline-green);
    }
  }

  @media only screen and (min-width: 500px) {
    nav.wrapper .navcontainer {
        width: 100%;
        background-color:#1a1d1e;
        height: 74px;
        margin: 26px 8px 0;
        border-radius: 12px;
    }
    nav.wrapper .navcontainer::after {
        top: -28px;
        height: 100px;
        width: 150px;
        background-color: #1a1d1e; 
    }
    nav.wrapper .navcontainer::before {
        right: 132px;
        top: -18px;
        height: 60px;
        width: 59px;
        transform:rotate(-27deg);
        background-color: #1a1d1e;
    }
    nav.wrapper button {
        display: none;
     }
    nav.wrapper .mobile-menu {
        display: none;
    }
    nav .links ul {
        display: grid; 
    }
}
  
@media only screen and (min-width: 600px) {
    nav.wrapper .navcontainer::after {
        width: 230px;
    }
    nav.wrapper .navcontainer::before {
        right: 211px;
     }
}

 @media only screen and (min-width: 720px) {
    nav .links ul li .glitch {
        font-size: 30px;
    }
}

/*show menu */
.show-menu {
    left: 0 !important;
    transition: left .3s ease-in-out;
    right: 0 !important;
}
.mobile-menu-design {
    background-color: #1a1d1e;
    right:-9999px;
    position: fixed;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
} 
.mobile-menu-design ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
.mobile-menu-design ul li { margin: 1rem 0; text-align: center}
.mobile-menu-design ul li a {
    font-size: 30px;
    text-align: center;
}
.fixed-style {
    position: fixed;
}

 /* MAIN INDEX CONTENT */
 .content-box {
    display: flex;
    flex-direction: row;
    margin-left: 8px;
    margin-right: 8px;
}
.content-box .container-box {
    border-radius: 12px 0 0 12px;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem;
} 
.content-box .container-box p {
    color: var(--main-text);
}

@media only screen and (min-width: 720px) {
    .content-box .container-box  {
        border-radius: 0 !important;
        padding: 2rem;
    }
}

/* homepage content */
.homepage-img {
    display: none;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: left;
}
@media only screen and (min-width: 780px) {
    .homepage-img {
        display: block;
    }
}


/*SQUARE ANIMATION*/
.square-item {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    display: block;
    background-color: transparent;
    position: relative;
    margin-top: 1rem;
}
   
.square-item .squares-moving-items::before { 
    content:"";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;
    animation: movingSquaresTwo ease-out infinite 2.8s;
    background-color: var(--main-outline-green);
}
.square-item .squares-moving-items::after {
    content:"";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 0;
    bottom: 0;
    animation: movingSquares ease-out infinite 2.8s;
    background-color: var(--main-outline-green);
}


@keyframes movingSquares {
	0%, 100% { transform: none;}
	25% { transform: translateX(-100%);}
	50% { transform: translateX(-100%) translateY(-100%);}
	75% {transform: translateY(-100%);}
}

@keyframes movingSquaresTwo {
  0%, 100% {transform: none;}
  25% {transform: translateX(100%);}
  50% {transform: translateX(100%) translateY(100%);}
	75% {transform: translateY(100%);}
}

@keyframes startOne {
    0%, 100% { opacity:0;}
    3% { opacity:1;}
    30% { opacity:1;}
    33% { opacity:0;}
    100% { opacity:0;}
}
@keyframes startTwo {
    0% { opacity:0;}
    33% { opacity:0;}
    36% { opacity:1;}
    63% { opacity:1;}
    66% { opacity:0;}
    100% { opacity:0;}
}
@keyframes startThree {
    0% { opacity:0;}
    66% { opacity:0;}
    69% { opacity:1;}
    97% { opacity:1;}
    100% { opacity:0;}
}



/* Callout logo */
.img-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 1;
    margin: 0 8px; 
}
.img-container img {
    width: 100%;
    height: auto;
}
.img-container img.logo { 
    max-width: 832px;
    min-width: 76%;
}
.img-container img.logo-icon { max-width: 231px; width: 100%; min-width: 0; padding-left: 1rem; display: none;}

@media only screen and (min-width: 500px) {
    .img-container img.logo-icon { display: inline-block;}
}
@media only screen and (min-width: 800px) {
    .img-container img.logo {min-width: 600px;}
}
@media only screen and (min-width: 1000px) {
    .img-container img.logo { min-width: 780px;}
}

/* MAIN CONTENT */
.main-content-spacing {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
}

@media only screen and (min-width: 720px) {
    .main-content-spacing {
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
    }
}
@media only screen and (min-width: 1000px) {
    .main-content-spacing {
        grid-template-columns: auto auto auto;
        grid-template-rows: auto;
    }
}

/* WANTED SECTION */
.carousel-box {
    padding: 20px 25px 25px;
    width: auto;
    min-width: 290px;
    grid-column: 1/2;
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--main-outline-green);
}
.carousel-box .carousel-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.carousel-box .wanted-title {
    color: var(--main-text);
    font-size: 21px;
    letter-spacing: .5px;
    line-height: 1.8;
}
.carousel-box .wanted-title .red-color {
    color: #d15656;
    font-weight: 600;
}
.carousel-box .carousel-container {
    width: auto;
    height: 100%;
    display: grid;
    justify-content: center;
}

.carousel-box .carousel-container div.pic-one, .carousel-box .carousel-container div.pic-two, .carousel-box .carousel-container div.pic-three {
    width: 100%;
    max-width: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    grid-row: 1;
    grid-column: 1;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-duration: 16s;
}
.carousel-box .carousel-container .wanted-info {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
    grid-template-rows: repeat;
    margin-top: 16px;
}
.carousel-box .carousel-container .wanted-info p { margin: 0; padding: 0;}
.carousel-box .carousel-container .wanted-info p:nth-child(even) {
    color: var(--main-text);
}
.carousel-box .carousel-container .wanted-info p:nth-child(odd) {
    color: var(--main-outline-green);
}

.carousel-box .carousel-container div.pic-one {
    animation-name: startOne;
    opacity: 0;
}
.carousel-box .carousel-container div.pic-two {
    animation-name: startTwo;
    opacity: 0;
}
.carousel-box .carousel-container div.pic-three {
    animation-name: startThree;
    opacity: 0;
}
.carousel-box .carousel-container img {
    text-align: center;
}
@media only screen and (min-width: 720px) {
    .carousel-box {
        grid-column: 1/3;
    }
}

@media only screen and (min-width: 600px) {
    .carousel-box .carousel-main {
        display: block;
    }
    .carousel-box .carousel-container div.pic-one, .carousel-box .carousel-container div.pic-two, .carousel-box .carousel-container div.pic-three {
        display: grid;
        grid-template-columns: 312px auto;
        max-width: unset;
        align-items: start;
    }
    .carousel-box .carousel-container {
        height: 100%;
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
    }
    .carousel-box .carousel-container .wanted-info {
        grid-template-rows: 48px 48px auto;
        margin-top: 0;
    }
}

@media only screen and (min-width: 1000px) {
    .carousel-box {
        display: block;
        grid-column: 3/4;
        border-top: 0;
        width: 290px;
        height: 500px;
    }
    .carousel-box .carousel-container {
        width: 290px;
    }
    .carousel-box .carousel-container div.pic-one, .carousel-box .carousel-container div.pic-two, .carousel-box .carousel-container div.pic-three {
        display: block;
        max-width: 290px;
        height: 500px;
        width: 100%;
    }
    .carousel-box .carousel-container .wanted-info {
        grid-template-rows: repeat(3, auto);
        grid-template-columns: 110px 1fr;
        margin-top: 16px;
    }
}


/* text second area */
.more-text-4points {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--main-text);
}
.more-text-4points p {padding: .5rem 1rem;}
.more-text-4points div.list-context {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: reapeat(3,1fr);
    border-top: 2px solid var(--main-outline-green);
    gap: 0 24px;
}
.more-text-4points div.list-context  p {
    color: var(--main-text);
    height: 100%;
    line-height: 1.4;
    height: auto;
    margin: 0 !important;
    padding: 0;
}
.more-text-4points div.list-context p:nth-child(odd) {
    border-right: 2px solid var(--main-outline-green);
    font-family: 'Bitwise';
    font-size: 20px;
    padding:1rem 0 0;
    display: flex;
    color: #89e0c0;
    justify-content: center;
}
.more-text-4points div.list-context p:nth-child(even) {
    font-size: 18px;
    padding: .9rem .6rem .5rem 0;
}

    
@media only screen and (min-width: 1000px) {
    .more-text-4points { 
        max-width: 428px; 
    }
    .more-text-4points div.list-context {
        grid-template-columns: 80px 1fr;
    }
}



/*BLACKWALL SCAN*/
.blackwall-scan-container {
    flex-direction: column;
    display: flex;
    width: 100%;
    border-top: 2px solid var(--main-outline-green);
}
.blackwall-scan-wrapper {
    background-image: url("images/bg-grid.png");
    background-repeat: repeat;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0;
}
.blackwall-scan-wrapper::before {
    content: "";
    background-image: url("images/bg-blackwall-text.png");
    background-repeat: no-repeat;
    width: 100%;
    height: 59px;
    display: block;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}
.blackwall-scan-wrapper::after {
    content: "";
    background-image: url("images/bg-blackwall-text.png");
    background-repeat: no-repeat;
    width: 100%;
    height: 59px;
    display: block;
    z-index: 2;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.bw-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: .5rem .6rem;
    justify-content: space-between;
}
.bw-bottom .blackwall-type {
    color: var(--main-text);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.squares-container {
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    flex-wrap: nowrap;
    align-items: center;
    padding: .3rem .6rem .5rem;
}
.squares-container .squareB {
    display: inline-block;
    background-color: #464646;
    height: 9px;
}
.squares-container .square-01 {
    width: 9px;
}
.squares-container .square-01:not(:first-child) {
    margin: 0 5px;
}
.squares-container .square-02 {
    width: 49px;
    margin: 0 10px;
}
.squares-container .square-03 {
    width: 2px;
    margin: 0 3px;
}
.squares-container .square-04 {
    width: 5px;
    margin:0 4px;
}
.squares-container .mr-10 {margin-right: 12px !important;}
.squares-container .mr-20 {margin-right: 22px !important;}

.graph-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--main-text);
    display: block;
    margin: 1rem 0 .2rem .5rem;
}

.bar-graph {
    background: linear-gradient(to right, #a8e936 0%,#a8e936 30%, #a8e936 30%, #c8886e 84%,#ce4349 100%);
    width: 320px;
    height: 20px;
    display: block;
    position: relative;
    clip-path: polygon(0 0, 35% 0, 35% 100%, 0% 100%);
    animation: bar-graph-1 6s ease-in-out infinite;
}
.bar-g-02 { 
    clip-path: polygon(0 0, 75% 0, 75% 100%, 0% 100%);
    animation: bar-graph-2 5s ease-in-out infinite; 
}
.bar-g-03 { 
    clip-path: polygon(0 0, 75% 0, 75% 100%, 0% 100%);
    animation: bar-graph-2 4s ease-in-out infinite; 
}
.bar-g-04 { 
    clip-path: polygon(0 0, 60% 0, 60% 100%, 0% 100%);
    animation: bar-graph-4 8s ease-in-out infinite; 
}
.bar-g-05 { 
    clip-path: polygon(0 0, 20% 0, 20% 100%, 0% 100%);
    animation: bar-graph-5 7s ease-in-out infinite; 
}
.bar-g-06 { 
    clip-path: polygon(0 0, 18% 0, 18% 100%, 0% 100%);
    animation: bar-graph-6 6.5s ease-in-out infinite; 
}
.bar-g-07 { 
    clip-path: polygon(0 0, 30% 0, 30% 100%, 0% 100%);
    animation: bar-graph-7 8s ease-in-out infinite; 
}

@keyframes bar-graph-1 {
    0% {clip-path: polygon(0 0, 35% 0, 35% 100%, 0% 100%);}
    10% {clip-path: polygon(0 0, 35% 0, 35% 100%, 0% 100%);}
    20% {clip-path: polygon(0 0, 38% 0, 38% 100%, 0% 100%);}
    40% {clip-path: polygon(0 0, 30% 0, 30% 100%, 0% 100%);}
    60% {clip-path: polygon(0 0, 30% 0, 30% 100%, 0% 100%);}
    70% {clip-path: polygon(0 0, 29% 0, 29% 100%, 0% 100%);}
    80%{clip-path: polygon(0 0, 32% 0, 32% 100%, 0% 100%);}
    100%{clip-path: polygon(0 0, 35% 0, 35% 100%, 0% 100%);}
}
@keyframes bar-graph-2 {
    0% {clip-path: polygon(0 0, 75% 0, 75% 100%, 0% 100%);}
    10% {clip-path: polygon(0 0, 85% 0, 85% 100%, 0% 100%);}
    20% {clip-path: polygon(0 0, 95% 0, 95% 100%, 0% 100%);}
    40% {clip-path: polygon(0 0, 65% 0, 65% 100%, 0% 100%);}
    70% {clip-path: polygon(0 0, 80% 0, 80% 100%, 0% 100%);}
    100%{clip-path: polygon(0 0, 75% 0, 75% 100%, 0% 100%);}
}
@keyframes bar-graph-3 {
    0% {clip-path: polygon(0 0, 75% 0, 75% 100%, 0% 100%);}
    10% {clip-path: polygon(0 0, 85% 0, 85% 100%, 0% 100%);}
    20% {clip-path: polygon(0 0, 95% 0, 95% 100%, 0% 100%);}
    40% {clip-path: polygon(0 0, 65% 0, 65% 100%, 0% 100%);}
    70% {clip-path: polygon(0 0, 80% 0, 80% 100%, 0% 100%);}
    100%{clip-path: polygon(0 0, 75% 0, 75% 100%, 0% 100%);}
}
@keyframes bar-graph-4 {
    0% {clip-path: polygon(0 0, 60% 0, 60% 100%, 0% 100%);}
    40% {clip-path: polygon(0 0, 64% 0, 64% 100%, 0% 100%);}
    70% {clip-path: polygon(0 0, 66% 0, 66% 100%, 0% 100%);}
    80% {clip-path: polygon(0 0, 64% 0, 64% 100%, 0% 100%);}
    100%{clip-path: polygon(0 0, 60% 0, 60% 100%, 0% 100%);}
}
@keyframes bar-graph-5 {
    0% {clip-path: polygon(0 0, 20% 0, 20% 100%, 0% 100%);}
    30% {clip-path: polygon(0 0, 20% 0, 20% 100%, 0% 100%);}
    55% {clip-path: polygon(0 0, 28% 0, 28% 100%, 0% 100%);}
    78% {clip-path: polygon(0 0, 24% 0, 24% 100%, 0% 100%);}
    100%{clip-path: polygon(0 0, 20% 0, 20% 100%, 0% 100%);}
}
@keyframes bar-graph-6 {
    0% {clip-path: polygon(0 0, 18% 0, 18% 100%, 0% 100%);}
    30% {clip-path: polygon(0 0, 27% 0, 27% 100%, 0% 100%);}
    55% {clip-path: polygon(0 0, 35% 0, 35% 100%, 0% 100%);}
    78% {clip-path: polygon(0 0, 35% 0, 35% 100%, 0% 100%);}
    90% {clip-path: polygon(0 0, 20% 0, 20% 100%, 0% 100%);}
    100%{clip-path: polygon(0 0, 18% 0, 18% 100%, 0% 100%);}
}
@keyframes bar-graph-7 {
    0% {clip-path: polygon(0 0, 30% 0, 30% 100%, 0% 100%);}
    26% {clip-path: polygon(0 0, 24% 0, 24% 100%, 0% 100%);}
    50% {clip-path: polygon(0 0, 48% 0, 48% 100%, 0% 100%);}
    69% {clip-path: polygon(0 0, 70% 0, 70% 100%, 0% 100%);}
    87% {clip-path: polygon(0 0, 20% 0, 20% 100%, 0% 100%);}
    100%{clip-path: polygon(0 0, 30% 0, 30% 100%, 0% 100%);}
}


@media only screen and (min-width: 720px) { 
    .blackwall-scan-container {
        display: flex; 
        border-left: 2px solid var(--main-outline-green);
        max-width: 324px;
        border-top: 0;
    }
    .blackwall-scan-wrapper {
        padding: 3rem 0;
    }
    .blackwall-scan-wrapper::before {
        content: "";
        background-repeat:no-repeat;
        width: 324px;
    }
    .blackwall-scan-wrapper::after {
        content: "";
        background-repeat:no-repeat;
        width: 324px;
    }
}
@media only screen and (min-width: 1000px) { 
    .blackwall-scan-container {border-right: 2px solid var(--main-outline-green);}
}



/* ADS */

.corpoad-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px 0;
}
.corpoad-container .corpoad {
    width: 100%;
    height: auto;
    max-height: 100%;
    outline: 2px solid var(--main-outline-green);
    object-fit: contain;
    border-radius: 10px;
}

@media only screen and (min-width:500px) {
    .corpoad-container {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}
@media only screen and (min-width:900px) {
    .corpoad-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0 12px;
    }
}
@media only screen and (min-width:1100px) {
    .corpoad-container {
        gap: 0 54px;
    }
}

/*COMPANY*/
div.city-img {
    width: 100%;
    height: 350px;
    max-width: 520px;
    background-image: url("images/city-img.gif");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.container-company {
    border-right: 2px solid var(--main-outline-green);
    border-top: 2px solid var(--main-outline-green);
    border-left: 2px solid var(--main-outline-green);
    border-radius: 12px 12px 0 0;
    padding: 1.5rem;
    position: relative;
}
.container-company::after {
    content: "";
    background-image: url("images/bottom-company-line-03.png");
    height: 30px;
    width: calc(100% + 4px);
    background-size: auto;
    background-position: left;
    background-repeat:no-repeat;
    position: absolute;
    bottom: -30px;
    left: -2px;
}
.wrapper-company-container {
    display: grid;
    grid-template-columns: 1fr;
    gap:  20px 24px;
}
.content-company  h2 {
    color: var(--main-outline-green);
    font-size: 24px;
    font-weight: 500;
    margin-top: 0;
}

@media only screen and (min-width: 460px) {
    .container-company::after {
        content: "";
        background-image: url("images/bottom-company-line-02.png");
    }
}
@media only screen and (min-width: 700px) {
    .wrapper-company-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (min-width: 800px) {
    .container-company::after {
        background-image: url("images/bottom-company-line.png");
        content: "";
    }
    .wrapper-company-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (min-width: 1133px) {
}

/*ABOUT */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px 0;
}
.about-wrapper .about-container {
    display: grid;
    grid-template-columns: 36% 1fr;
}

.about-wrapper .about-container .box-left {
    position: relative;
    padding: 10px;
    overflow: hidden;
}
.about-wrapper .about-container .box-left div {
    background-image: url("images/attila-pic.png");
    width: 100%;
    max-width: 240px;
    height: 320px;
    background-position: top center;
    background-repeat:no-repeat;
    background-size: 110%;
    border-radius: 10px 0 0 10px;
}
.about-wrapper .about-container .box-left.varis-tranche div {
    background-image: url("images/varis-pic.png");
}
/*ART BY*/
.art-by-tallNQuirky {
    background-color: #d5e7715e;
    padding: .6rem 1rem;
    border-radius: 10px;
    color: #c9dbe1;
    font-size: 14px;
    width: auto;
    max-width: 460px;
    text-align: center;
    margin: 60px auto 0;
}
.art-by-tallNQuirky a {
    font-size: 16px;
}
.art-by-tallNQuirky a:hover {
    text-decoration: underline;
}
.about-wrapper .about-container .box-right {
    position: relative;
    padding: 12px;
    color: var(--main-text);
}
.about-wrapper .about-container h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 6px;
} 
.about-wrapper .about-container h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 1.5rem 0;
} 
.about-wrapper .about-container .box-left::before, .about-wrapper .about-container .box-left::after, .about-wrapper .about-container .box-right::before, .about-wrapper .about-container .box-right::after {
    content: "";
    background-image: url("images/corner-about.png");
    background-repeat: no-repeat;
    position: absolute;
    width: 47px;
    height: 47px;
}
.about-wrapper .about-container .box-left::before {
    background-position: top left;
    transform: rotate(-90deg);
    top: 0;
    left: 0;
}
.about-wrapper .about-container .box-left::after {
    background-position: top left;
    transform: rotate(-180deg);
    bottom: 0;
    left: 0;
}
.about-wrapper .about-container .box-right::before {
    background-position: top right;
    top: 0;
    right: 0;
}
.about-wrapper .about-container .box-right::after {
    background-position: top right;
    transform: rotate(90deg);
    bottom: 0;
    right: 0;
}
@media only screen and (min-width:680px) {
    .about-wrapper .about-container {
        grid-template-columns: 260px 1fr;
    }
}

@media only screen and (min-width:1000px) {
    .about-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 0 24px;
    }
    .about-wrapper .about-container {
        grid-template-columns: 200px 1fr;
    }
    .about-wrapper .about-container .box-left div {
        background-size: cover;
    }
}
@media only screen and (min-width:1100px) {
    .about-wrapper .about-container {
        grid-template-columns: 240px 1fr;
    }
    .about-wrapper .about-container .box-left div {
        background-size: 120%;
    }
}



/*NEWS*/
.news-main .container-spacing {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}
.news-main .container-spacing .news-01 {
    grid-column: 1/2;
    grid-row: 1/4;
    border-right: 1px solid var(--main-outline-green);
    border-bottom: 1px solid var(--main-outline-green);
    padding-bottom: 1rem;
}
.news-main .container-spacing .img-container {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 12px auto 0;
    display: block;
}
.news-main .container-spacing .img-container img {
    border-radius: 8px;
}
.news-main .container-spacing .news-02, .container-spacing .news-03, .container-spacing .news-04 {
    grid-column: 1/2;
}
.news-main .container-spacing .news-02, .container-spacing .news-03 {
    border-bottom: 1px solid var(--main-outline-green);
}
.news-main .container-spacing .news-container {
    padding: .5rem 1rem;
    color: var(--main-outline-green);
}
.news-main .container-spacing .news-container h2 {
    font-size: 25px;
}
.news-main .container-spacing p {
    line-height: 1.4;
    color: var(--main-text);
    border-left: 3px solid #89e0c0;
    padding-left: 1.4rem;
    margin-left: .3rem;
}
.news-main .container-spacing {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

@media only screen and (min-width: 720px) {
    .news-main .container-spacing {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
    } 
    .news-main  .news-01 { border-bottom: 0; padding-bottom: 0;}
    .news-main .container-spacing .news-02, .container-spacing .news-03, .container-spacing .news-04 {
        grid-column: 2/3;
    }
}

/* SERVICES */

.container-service {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    width: 100%;
    height: 100%;
    max-width: 300px;
    height: 400px;
    display: block;
    position: relative;
    margin: auto;
}
.services-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
}
.container-service .background-service {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: var(--main-outline-green);
    background-size: cover;
    background-position: center center;
    font-size: 28px;
    font-weight: 600;
    padding: 3rem .8rem;
    line-height: 1.2;
    overflow: hidden;
}
.container-service .background-service .services-overlay {
    opacity: 0;
    background: #e6f76f;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all .3s ease-in-out;
    padding: 3rem .8rem;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}
.container-service .background-service:hover .services-overlay {
    opacity: 1;
    transition: opacity .3s ease-in-out;
}
.container-service .background-service::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        0deg, 
        transparent, 
        transparent 24%, 
        rgba(0, 255, 200, 0.486)
      );
    transform: rotate(-45deg);
    transition: all 0.8s ease;
    opacity: 0;
    z-index: 5;
}
.container-service .background-service:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
  }
.container-service .background-service.service-img-01 {
    background-image: url("images/services-01.jpg");
}
.container-service .background-service.service-img-02 {
    background-image: url("images/services-02.jpg");
}
.container-service .background-service.service-img-03 {
    background-image: url("images/services-03.jpg");
}
.container-service .background-service.service-img-04 {
    background-image: url("images/services-04.jpg");
}
@media only screen and (min-width: 520px) {
    .services-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    .container-service {
        margin: unset;
    }
}
@media only screen and (min-width: 620px) {
    .services-wrapper {
        grid-template-columns: 300px 1fr;
    }
    .container-service {
        margin: unset;
    }
}
@media only screen and (min-width: 960px) {
    .services-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}


/*CONTACT */
.wrapper.contact { margin-bottom: 4rem;}
.contact .contact-box {
    background-color: var(--main-outline-green);
}
.contact .contact-box .contact-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 2.2rem;
}
.contact .contact-box .contact-wrapper p {
    color: #1a1d1e;
    font-size: 1.4rem;
    text-align: center;
}



/*PEN TEST PAGE */
.pen-test-body {
    margin: auto;
    max-width: 800px;
    text-align: center;
    padding: 5rem 0 1rem;
}
.pen-test-body p { color: var(--main-text); }

.pen-test-body span.small { font-size: .8rem;}
.pen-test-body span.title { 
    font-family: 'Neuropol'; 
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.pen-test-body a span.title{ font-size: 1.8rem !important;}

.pen-test-body span.negonepx { letter-spacing: -3px;}

.pen-test-body .container {
    text-align: center;
    transform: translate(-50%, -50%);
    position: relative;
    width: 100%;
    margin: auto;
    left: 50%;
}
      
.pen-test-body .container h2 {
    text-transform: uppercase;
    display: block;
    text-align: center; 
    margin: auto;
}
      
.pen-test-body .text1 {
    color: var(--main-outline-green);
    font-family:'Bitwise';
    font-size: 56px;
    text-align:center;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    position: relative;
    /*   shorthand animation property: name | duration | iteration count */
    /*   animation: text 4s 1; */
    animation-name: text;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}
      
      
@keyframes text {
    0% {
    }
    30% {
        letter-spacing: 18px;
    }
    85% {
        letter-spacing: 8px;
    }
    100% {
    }
}

  

  
/* FONTS */
@font-face {
    font-family: 'Chakra Petch Medium';
    src: url('fonts/ChakraPetch-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Chakra Petch Light';
    src: url('fonts/ChakraPetch-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Chakra Petch Bold';
    src: url('fonts/ChakraPetch-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Chakra Petch SemiBold';
    src: url('fonts/ChakraPetch-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Chakra Petch';
    src: url('fonts/ChakraPetch-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neotropolis';
    src: url('fonts/Neotropolis.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bitwise';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    src: url('fonts/bitwise.woff2') format('woff2'),
    url('fonts/bitwise.woff') format('woff');
}
@font-face {
    font-family: 'Neuropol';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/Neuropol-Regular.woff2') format('woff2');
}

