/* start to the code */
html, body , .container {
  background-image: url("/imgs/Rotatedbackdrop-01.svg");
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  margin: 0;
}



/* Entire website container */
.container {  
  display: grid;
  grid-template-columns: repeat(21, 1fr);
  grid-template-rows: 0.1fr 1fr 2.4fr 0.3fr;
  position: relative;
  gap: 0px 0px;
  grid-auto-flow: row;
}

nav {
  background: transparent;
  padding: 5px 0px;
}

ul {
  list-style-type: none;
  display: flex;
  justify-content: flex-start; /* Adjusted justify-content */
}

.item img {
  filter: drop-shadow(0px 2px 5px #333);
  transform: translate(0, 0%);
  width: 110%;
  height: 14vh;
}

.item.home-button img {
  width: 90%;
  height: 3vh;
}

.item.login-button img {
  width: 90%;
  height: 5vh;
}

.menu li {
  font-size: 16px;
  padding: 15px 5px;
  white-space: nowrap;
}

.logo img {
  filter: drop-shadow(0px 2px 5px #333);
  transform: translate(0, 0%);
  padding: 1.5vw;
  width: 15vw;
  height: 10vh;
  min-height: 7vh;
}

/* Mobile menu */
.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.toggle {
  order: 1;
  cursor: pointer;
}

.bars {
  background: #999;
  display: inline-block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.bars:before,
.bars:after {
  background: #999;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.bars:before {
  top: 5px;
}

.bars:after {
  top: -5px;
}

.item {
  width: 100%;
  text-align: center;
  order: 3;
  display: none;
  z-index: 2;
}

.item.active {
  display: block;
}

.mobile-menu {
  display: none;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu li {
  text-align: center;
}

.mobile-menu li a {
  display: block;
  padding: 10px;
  color: white;
}





/* Tablet menu */
@media all and (min-width: 468px) {
  .menu {
    justify-content: center;
  }

  .logo {
    flex: 1;
  }

  .toggle {
    order: 2;
  }
}

/* Desktop menu */
@media all and (min-width: 1098px) {
  .item {
    display: block;
    width: auto;
  }

  .toggle {
    display: none;
  }

  .logo {
    order: 0;
  }

  .item {
    order: 1;
  }

  .menu li {
    padding: 15px 10px;
  }
}





/* Sub Navigation */
.subnavigation { 
  grid-area: 2 / 1 / 3 / 22; 
  background-image: url("/imgs/Subnav-I.svg");
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  -webkit-background-size: cover;
  background-attachment: scroll;
  height: 50px;
  min-height: 8vh;
  max-height: 25vh;
}

.subnav-area {
  display: grid;
  grid-template-columns: repeat(8, 1fr); /* Changed from .5fr to 1fr */
  grid-template-rows: 50px;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: "pagename . nav1 nav2 nav3 nav4 nav5 nav6 nav7"; /* Removed extra dot separators */
  grid-area: 2 / 1 / 3 / 22;
  color: #C2FDEB;
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 300;
  font-size: 30px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 15px; /* Add margin value here */
}

.subnav-area .pagename {
  grid-area: pagename;
  color: #46FBC4;
}

.nav1,
.nav2,
.nav3,
.nav4,
.nav5,
.nav6,
.nav7 {
  color: #46FBC4;
  font-size: 12px;
}

.subnav-area div.active {
  font-weight: 600;
}

/* Mobile */
@media (max-width: 767px) {
  .subnav-area,
  .subnav-area .pagename {
    font-size: 20px;
  }

  .nav1,
  .nav2,
  .nav3,
  .nav4,
  .nav5,
  .nav6,
  .nav7 {
    font-size: 10px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .subnav-area,
  .subnav-area .pagename {
    font-size: 25px;
  }

  .nav1,
  .nav2,
  .nav3,
  .nav4,
  .nav5,
  .nav6,
  .nav7 {
    font-size: 12px;
  }
}







/* Page content layout */
.content { 
  grid-area: 3 / 5 / 4 / 18; 
  align-self: center;
}

/* Footer */
.footer-container { 
  grid-area: 4 / 1 / 5 / 22; 
  background-image: url("/imgs/Footer.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.twitter { 
  grid-area: 4 / 14 / 5 / 15; 
  padding-top: 5px;
}
.linkedin { 
  grid-area: 4 / 15 / 5 / 16; 
  padding-top: 5px;
}
.instagram { 
  grid-area: 4 / 16 / 5 / 17; 
  padding-top: 5px;
}


/* Industries content layout */

.industries-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: .5fr .5fr repeat(2, 1fr);
  gap: 0px 20px;
  grid-auto-flow: row;
  grid-area: 3 / 3 / 4 / 20;
}

.industries-content {
  grid-area: 3 / 1 / 4 / 8;
}

.button1 {
  grid-area: 2 / 1 / 3 / 2;
}

.button2 {
  grid-area: 2 / 2 / 3 / 3;
}

.button3 {
  grid-area: 2 / 3 / 3 / 4;
}

.button4 {
  grid-area: 2 / 4 / 3 / 5;
}

.button5 {
  grid-area: 2 / 5 / 3 / 6;
}

.button6 {
  grid-area: 2 / 6 / 3 / 7;
}


.industries-header-text {
  grid-area: 1 / 1 / 2 / 8;
  transform: translate(-10px, -10px);
  color: #DFFFF5;
  padding-top: 40px;
  text-align: center;
  justify-content: right;
  z-index: 10;
}

.industries-header-text h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.industries-header-text p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.industries-footer-area {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: 2fr auto; /* Updated to allocate more space to the first row */
  gap: 0px 0px;
  padding-top: 45px;
  padding-bottom: 45px;
  grid-auto-flow: row;
  grid-area: 3 / 1 / 5 / 8;
  margin-left: 90px;
  margin-right: 90px;
}


.industries-footer-box {
  grid-area: 1 / 1 / 3 / 9;
  background-image: url('/imgs/Text-Box-G.svg');
  background-size: cover;
  background-position: center;
}

.industries-footer-box svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.industries-footer-text {
  grid-area: 1 / 1 / 3 / 9;
  transform: translate(10px, 10px);
  color: #DFFFF5;
  padding: 15px 35px 35px 35px;
  z-index: 10;
}

.industries-footer-text h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.industries-footer-text p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .industries-container {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: .5fr .5fr repeat(2, 1fr);
  }

  .industries-footer-area {
    grid-template-columns: repeat(4, 1fr);
    grid-area: 3 / 1 / 5 / 5;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .industries-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: .5fr .5fr repeat(4, 1fr);
  }

  .industries-footer-area {
    grid-template-columns: repeat(2, 1fr);
    grid-area: 3 / 1 / 7 / 3;
  }
}


/* Media Content Page Layout */

.media-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: .1fr .1fr repeat(2, 1fr);
  gap: 0px 20px;
  grid-auto-flow: row;
  grid-area: 3 / 3 / 4 / 20;
}

.media-content {
  grid-area: 3 / 1 / 4 / 8;
}

.media-icon1 {
  grid-area: 2 / 1 / 3 / 2;
  padding: 80px;
  margin-top: -20px;
}

.media-icon2 {
  grid-area: 2 / 2 / 3 / 3;
  padding: 80px;
  margin-top: -20px;
}

.media-icon3 {
  grid-area: 2 / 3 / 3 / 4;
  padding: 80px;
  margin-top: -20px;
}

.media-header-text {
  grid-area: 1 / 1 / 2 / 8;
  transform: translate(-10px, 10px);
  color: #DFFFF5;
  padding-top: 40px;
  margin-top: -20px;
  text-align: center;
  justify-content: center;
  z-index: 10;
}

.media-header-text h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.media-header-text p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.media-footer-area {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: 2fr auto; /* Updated to allocate more space to the first row */
  gap: 0px 0px;
  padding-top: 45px;
  padding-bottom: 45px;
  grid-auto-flow: row;
  grid-area: 3 / 1 / 5 / 8;
  margin-left: 90px;
  margin-right: 90px;
}


.media-footer-box {
  grid-area: 1 / 1 / 3 / 9;
  background-image: url('/imgs/Text-Box-G.svg');
  background-size: cover;
  background-position: center;
}

.media-footer-box svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.media-footer-text {
  grid-area: 1 / 1 / 3 / 9;
  transform: translate(10px, 40px);
  color: #DFFFF5;
  padding: 15px 35px 35px 35px;
  z-index: 10;
}

.media-footer-text h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.media-footer-text p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .media-container {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: .5fr .5fr repeat(2, 1fr);
  }

  .media-footer-area {
    grid-template-columns: repeat(4, 1fr);
    grid-area: 3 / 1 / 5 / 5;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .media-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: .5fr .5fr repeat(4, 1fr);
  }

  .media-footer-area {
    grid-template-columns: repeat(2, 1fr);
    grid-area: 3 / 1 / 7 / 3;
  }
}


/* About section content */

.about-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: .1fr .1fr repeat(2, 1fr);
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-area: 3 / 3 / 4 / 20;
}

.about-content {
  grid-area: 3 / 1 / 4 / 8;
}

.about-icon1 {
  grid-area: 2 / 1 / 3 / 2;
  padding: 42px;
  margin: 20px;
}

.about-icon2 {
  grid-area: 2 / 2 / 3 / 3;
  padding: 42px;
  margin: 20px;
}

.about-icon3 {
  grid-area: 2 / 3 / 3 / 4;
  padding: 42px;
  margin: 20px;
}

.about-icon4 {
  grid-area: 2 / 4 / 3 / 5;
  padding: 42px;
  margin: 20px;
}


.about-header-text {
  grid-area: 1 / 1 / 2 / 8;
  transform: translate(-10px, -10px);
  color: #DFFFF5;
  padding-top: 40px;
  text-align: center;
  justify-content: right;
  z-index: 10;
}

.about-header-text h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.about-header-text p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.about-footer-area {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: 2fr auto; /* Updated to allocate more space to the first row */
  gap: 0px 0px;
  padding-top: 45px;
  padding-bottom: 45px;
  grid-auto-flow: row;
  grid-area: 3 / 1 / 5 / 8;
  margin-left: 90px;
  margin-right: 90px;
}


.about-footer-box {
  grid-area: 1 / 1 / 3 / 9;
  background-image: url('/imgs/Text-Box-G.svg');
  background-size: cover;
  background-position: center;
}

.about-footer-box svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.about-footer-text {
  grid-area: 1 / 1 / 3 / 9;
  transform: translate(10px, 10px);
  color: #DFFFF5;
  padding: 15px 35px 35px 35px;
  z-index: 10;
}

.about-footer-text h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.about-footer-text p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
}


/* Media Queries */
@media screen and (max-width: 768px) {
  .about-container {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: .5fr .5fr repeat(2, 1fr);
  }

  .about-footer-area {
    grid-template-columns: repeat(4, 1fr);
    grid-area: 3 / 1 / 5 / 5;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .about-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: .5fr .5fr repeat(4, 1fr);
  }

  .about-footer-area {
    grid-template-columns: repeat(2, 1fr);
    grid-area: 3 / 1 / 7 / 3;
  }
}

/* Solution Content Area */

.solution-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: .5fr .5fr repeat(2, 1fr);
  gap: 0px 20px;
  grid-auto-flow: row;
  grid-area: 3 / 3 / 4 / 20;
}

.solution-content {
  grid-area: 3 / 1 / 4 / 8;
}

.solution-button1 {
  grid-area: 2 / 1 / 3 / 2;
}

.solution-button2 {
  grid-area: 2 / 2 / 3 / 3;
}

.solution-button3 {
  grid-area: 2 / 3 / 3 / 4;
}

.solution-button4 {
  grid-area: 2 / 4 / 3 / 5;
}

.solution-button5 {
  grid-area: 2 / 5 / 3 / 6;
}

.solution-button6 {
  grid-area: 2 / 6 / 3 / 7;
}

.solution-button7 {
  grid-area: 2 / 7 / 3 / 8;
}

.solution-header-text {
  grid-area: 1 / 1 / 2 / 8;
  transform: translate(-10px, -10px);
  color: #DFFFF5;
  padding-top: 40px;
  text-align: center;
  justify-content: right;
  z-index: 10;
}

.solution-header-text h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.solution-header-text p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.solution-footer-area {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: 2fr auto; /* Updated to allocate more space to the first row */
  gap: 0px 0px;
  padding-top: 45px;
  padding-bottom: 45px;
  grid-auto-flow: row;
  grid-area: 3 / 1 / 5 / 8;
  margin-left: 90px;
  margin-right: 90px;
}


.solution-footer-box {
  grid-area: 1 / 1 / 3 / 9;
  background-image: url('/imgs/Text-Box-G.svg');
  background-size: cover;
  background-position: center;
}

.solution-footer-box svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.solution-footer-text {
  grid-area: 1 / 1 / 3 / 9;
  transform: translate(10px, 10px);
  color: #DFFFF5;
  padding: 15px 35px 35px 35px;
  z-index: 10;
}

.solution-footer-text h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.solution-footer-text p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .solution-container {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: .5fr .5fr repeat(2, 1fr);
  }

  .solution-footer-area {
    grid-template-columns: repeat(4, 1fr);
    grid-area: 3 / 1 / 5 / 5;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .solution-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: .5fr .5fr repeat(4, 1fr);
  }

  .solution-footer-area {
    grid-template-columns: repeat(2, 1fr);
    grid-area: 3 / 1 / 7 / 3;
  }
}




/* Compliance Content Area */

.compliance-layout {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: 0.1fr .1fr .1fr 1fr repeat(1, .4fr) .5fr .6fr; /* Updated row size */
  grid-auto-flow: row;
  grid-area: 3 / 3 / 4 / 20;
}


.compliance-header { 
  grid-area: 1 / 3 / 2 / 6; 
  padding-top: 30px;
  margin-top: 30px;
  background-image: url('/imgs/Text-Box-G.svg');
  background-size: cover;
  background-position: center;
}

.compliance-header svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.compliance-header-text { 
  grid-area: 1 / 3 / 2 / 6;
  transform: translate(-10px, -10px);
  color: #DFFFF5;
  padding: 48px 35px 35px 35px;
  z-index: 10;
}

.compliance-header-text h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.compliance-header-text p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}

.compliance-footer { grid-area: 6 / 2 / 7 / 5; }

.cont1 { 
  grid-area: 4 / 2 / 6 / 2; 
  padding-top: 70%;

}

.cont2 { 
  grid-area: 4 / 3 / 6 / 4; 
  padding-top: 70%;
}

.cont3 { 
  grid-area: 4 / 4 / 6 / 5; 
  padding-top: 70%;
}


.compliance-left { 
  grid-area: 2 / 2 / 3 / 4; 
  margin-top: 30px;
  background-image: url('/imgs/Text-Box-G.svg');
  background-size: cover;
  background-position: center;
}

.compliance-left svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.compliance-left-text { 
  grid-area: 2 / 2 / 3 / 4; 
  transform: translate(-20px, 10px);
  color: #DFFFF5;
  padding: 30px 35px 35px 35px;
  z-index: 10;
}
.compliance-left-text h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.compliance-left-text p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}


.compliance-right { 
  grid-area: 2 / 5 / 3 / 7; 
  margin-top: 30px;
  background-image: url('/imgs/Text-Box-G.svg');
  background-size: cover;
  background-position: center;
}

.compliance-right svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.compliance-right-text { 
  grid-area: 2 / 5 / 3 / 7; 
  transform: translate(-20px, 10px);
  color: #DFFFF5;
  padding: 30px 35px 35px 35px;
  z-index: 10;
}
.compliance-right-text h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.compliance-right-text p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}


.compliance-footer-text {  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "comp-footer-one comp-footer-two comp-footer-three";
  grid-area: 6 / 2 / 7 / 5;
  z-index: 10;
}

.comp-footer-one { 
  grid-area: comp-footer-one; 
  transform: translate(-10px, -10px);
  color: #DFFFF5;
  padding: 15px 35px 35px 35px;
  z-index: 10;
}

.comp-footer-one h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.comp-footer-one p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}

.comp-footer-two { 
  grid-area: comp-footer-two; 
  transform: translate(-10px, -10px);
  color: #DFFFF5;
  padding: 15px 35px 35px 35px;
  z-index: 10;
}

.comp-footer-two h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.comp-footer-two p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}

.comp-footer-three { 
  grid-area: comp-footer-three; 
  transform: translate(-10px, -10px);
  color: #DFFFF5;
  padding: 15px 35px 35px 35px;
  z-index: 10;
}

.comp-footer-three h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.comp-footer-three p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}
  


.worldmap { 
  grid-area: 4 / 1 / 5 / 7; 
}


.compliance-header0 { 
  grid-area: 5 / 3 / 6 / 6; 
  padding-top: 30px;
  margin-top: 30px;
  background-image: url('/imgs/Text-Box-G.svg');
  background-size: cover;
  background-position: center;
}

.compliance-header0 svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.compliance-header-text0 { 
  grid-area: 5 / 3 / 6 / 6;
  transform: translate(-10px, 10px);
  color: #DFFFF5;
  padding: 48px 35px 35px 35px;
  z-index: 10;
}

.compliance-header-text0 h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.compliance-header-text0 p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}


.compliance-header01 { 
  grid-area: 7 / 1 / 9 / 8; 
  padding-top: 30px;
  margin-top: 30px;
  margin-bottom: 15px;
  background-image: url('/imgs/Text-Box-G.svg');
  background-size: cover;
  background-position: center;
}

.compliance-header01 svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.compliance-header-text01 { 
  grid-area: 7 / 1 / 9 / 1;
  transform: translate(-10px, 40px);
  color: #DFFFF5;
  padding: 48px 35px 35px 35px;
  z-index: 10;
}

.compliance-header-text01 h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.compliance-header-text01 p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}

.compliance-header-text001 { 
  grid-area: 7 / 2 / 9 / 2;
  transform: translate(-10px, 40px);
  color: #DFFFF5;
  padding: 48px 35px 35px 35px;
  z-index: 10;
}

.compliance-header-text001 h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.compliance-header-text001 p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}

.compliance-header-text002 { 
  grid-area: 7 / 3 / 9 / 3;
  transform: translate(-10px, 40px);
  color: #DFFFF5;
  padding: 48px 35px 35px 35px;
  z-index: 10;
}

.compliance-header-text002 h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.compliance-header-text002 p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}

.compliance-header-text003 { 
  grid-area: 7 / 4 / 9 / 4;
  transform: translate(-10px, -10px);
  color: #DFFFF5;
  padding: 48px 35px 35px 35px;
  z-index: 10;
}

.compliance-header-text003 h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.compliance-header-text003 p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}

.compliance-header-text004 { 
  grid-area: 7 / 5 / 9 / 5;
  transform: translate(-10px, 40px);
  color: #DFFFF5;
  padding: 48px 35px 35px 35px;
  z-index: 10;
}

.compliance-header-text004 h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.compliance-header-text004 p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}

.compliance-header-text005 { 
  grid-area: 7 / 6 / 9 / 6;
  transform: translate(-10px, 40px);
  color: #DFFFF5;
  padding: 48px 35px 35px 35px;
  z-index: 10;
}

.compliance-header-text005 h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.compliance-header-text005 p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}

.compliance-header-text006 { 
  grid-area: 7 / 7 / 9 / 7;
  transform: translate(-10px, 40px);
  color: #DFFFF5;
  padding: 48px 35px 35px 35px;
  z-index: 10;
}

.compliance-header-text006 h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
}

.compliance-header-text006 p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}






















































































.compliance-left0 { 
  grid-area: 6 / 2 / 6 / 4; 
  margin-top: 30px;
  background-image: url('/imgs/Text-Box-G.svg');
  background-size: cover;
  background-position: center;
}

.compliance-left0 svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.compliance-left-text0 { 
  grid-area: 6 / 2 / 6 / 4; 
  transform: translate(-20px, 0px);
  margin-top: 25px;
  color: #DFFFF5;
  padding: 30px 35px 35px 35px;
  z-index: 10;
}
.compliance-left-text0 h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.compliance-left-text0 p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}


.compliance-right0 { 
  grid-area: 6 / 5 / 6 / 7; 
  margin-top: 30px;
  background-image: url('/imgs/Text-Box-G.svg');
  background-size: cover;
  background-position: center;
}

.compliance-right0 svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.compliance-right-text0 { 
  grid-area: 6 / 5 / 6 / 7; 
  transform: translate(-20px, 0px);
  margin-top: 25px;
  color: #DFFFF5;
  padding: 30px 35px 35px 35px;
  z-index: 10;
}
.compliance-right-text0 h1 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.compliance-right-text0 p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-weight: 300;
  font-size: 13.33px;
}

