@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary-color: #fff;
  --secondary-color: #4978ff;
  --text-color: #000;
  --boxHover-color: #000;
  --placeholder-color: #000;
  --hover-a: rgba(255, 255, 255, 1);
}
.dark-theme {
  --primary-color: #1e1e1e;
  --secondary-color: #4978ff;
  --text-color: #fff;
  --boxHover-color: #fff;
  --placeholder-color: rgba(255, 255, 255, 0.5);
  --hover-a: #000;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 1000px;
}

header {
  position: fixed;
  width: 100%;
  min-height: 66px;
  background: var(--primary-color);
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

header .logo {
  position: relative;
  transition: 0.6s;
  margin-right: auto;
  margin-left: 0;
  height: 65px;
  padding: 5px;
  padding-right: 10px;
}

header ul {
  position: relative;
}

header ul li {
  position: relative;
  list-style: none;
  float: left;
}

header ul li a {
 color: var(--text-color);
 font-size: 1.1em;
 padding: 20px 25px;
 text-decoration: none;
 display: flex;
 justify-content: space-between;
}

header ul li a:hover {
  background: var(--secondary-color);
}

header ul li ul {
  position: absolute;
  left: 0;
  width: 200px;
  background: var(--primary-color);
  display: none;
  max-height: 400px;
  overflow-y: scroll;
}

header ul li:hover ul {
  display: block;
}

header ul li ul li {
  position: relative;
  width: 100%;
  border: 1px solid rgba(0,0,0,0.2);
}

.searchbar {
  background: var(--primary-color);
  border-radius: 3px;
}

#form {
  background-color: var(--primary-color);
  width: 300px;
  height: 44px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#form input {
  all: unset;
  font: 16px system-ui;
  color: var(--text-color);
  height: 100%;
  width: 100%;
  padding: 6px 10px;
}

#form button {
  all: unset;
  cursor: pointer;
  width: 44px;
  height: 44px;
}

.result-box {
  position: absolute;
  background: var(--primary-color);
  max-height: 200px;
  max-width: 300px;
  overflow-y: scroll;
}

.result-box ul {
  padding: 10px 5px;
  display: inline-block;
  width: 100%;
  color: var(--text-color);
}

.result-box ul li {
  list-style: none;
  border-radius: 3px;
  padding: 10px 5px;
  cursor: pointer;
  width: 100%;
}

.result-box ul li:hover {
  background: #e9f3ff;
  color: #000;
}

::placeholder {
  color: var(--placeholder-color);
}

.icon {
  color: var(--text-color);
  fill: currentColor;
  width: 24px;
  height: 24px;
  padding: 10px;
}

#icon {
  width: 30px;
  cursor: pointer;
  margin: 0 15px;
}

.banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url(Cyber.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center
}

.banner h2 {
  color: #fff;
  font-size: 90px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1em;
}

.sec {
  background: var(--primary-color);
  padding: 100px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sec .content {
  position: relative;
  text-align: center;
  width: 100%;
}

.sec .content a {
  color: var(--secondary-color);
  text-decoration: none;
}

.sec .text h3,
.sec .text p,
.sec h2 {
  transition: 0.5s;
}

.sec .buttons {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 20px;
}

.sec .buttons .btn {
  padding: 0 10px;
  display: inline-flex;
  background: #ddd;
  color: var(--primary-color);
  margin-left: 10px;
  cursor: pointer;
}

.sec .buttons .btn.clicked {
  background: var(--secondary-color);
}

.sec .buttons .btn:nth-child(2) {
  font-size: 1.5em;
}

.sec .buttons .btn:nth-child(3) {
  font-size: 2em;
}

.text {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-color);
}

h3 {
  font-size: 40px;
  font-weight: 200;
  margin-bottom: 10px;
  color: var(--text-color);
}

.sec h4 {
  font-size: 30px;
  font-weight: 200;
  margin-bottom: 10px;
  color: var(--text-color);
}

.sec p {
  position: relative;
  font-size: 1em;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: var(--text-color);
}

.contact {
  background: #000;
}

.contact h3,
.contact p {
  color: #fff;
}

.contactForm {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
}

.contactForm .message {
  width: 100%
}

.contactForm .row100 {
  display: flex;
  width: 100%;
}

.contactForm .row100 .inputBx50 {
  width: 50%;
  margin: 0 20px;
}

.contactForm .row100 .inputBx100 {
  width: 100%;
  margin: 0 20px;
}

.contactForm .row100 input,
.contactForm .row100 textarea {
  position: relative;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;;
  background: transparent;
  width: 100%;
  padding: 10px 0;
  outline: none;
  font-size: 18px;
  font-weight: 300;
  margin: 20px 0;
  resize: none;
}

.contactForm .row100 textarea {
  height: 100px;
}

.contactForm .row100 input::placeholder,
.contactForm .row100 textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contactForm .row100 input[type="submit"] {
  background: #fff;
  color: #000;
  max-width: 140px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  font-weight: 500;
}

.content .copyright a {
  color: #fff;
  text-decoration: underline;
}

.sitemapSection {
  display: grid;
  justify-content: center;
  align-content: end;
  padding: 50px;
  background: #141414;
}

.sitemap {
  position: relative;
  width: 100%;
  padding: 50px 100px;
  color: #fff;
}

.sitemap .container {
  width: 100%;
  display: grid;
  grid-template-columns: 1.75fr 2fr 1fr;
  grid-gap: 20px;
}

.sitemap .container h2 {
  position: relative;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.sitemap .container .information,
.sitemap .container .information2 {
  position: relative;
}

.sitemap .container .information ul li,
.sitemap .container .information2 ul li {
  list-style: none;
}

.sitemap .container .information ul li a,
.sitemap .container .information2 ul li a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}

.sitemap .container .information ul li a:hover,
.sitemap .container .information2 ul li a:hover {
  opacity: 0.8;
}

.sitemap .container .contactInfo .contactList {
  position: relative; 
}

.sitemap .container .contactInfo .contactList li {
  display: grid;
  grid-template-columns: 30px 1fr;
  margin-bottom: 16px;
}

.sitemap .container .contactInfo .contactList li span {
  font-size: 20px;
}

.language {
  background: #141414;
  text-align: center;
  padding: 60px 0 50px;
}

.language a {
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 0 15px;
  font-weight: bold;
  background: #555656;
  font-size: 18px;
}

.language a.active {
  background: var(--secondary-color);
}

@media (max-width: 1400px) {
  .sitemap {
    padding: 40px;
  }

  .sitemap .container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px;
  }
}

@media (max-width: 1300px) {
  #form {
    width: 150px;
  }
}

@media (max-width: 1150px) {
  .searchbar {
    margin-left: 50%;
  }

  header {
    padding: 10px 20px;
  }

  header nav {
    position: absolute;
    width: 100%;
    top: 73px;
    left: 0;
    background: var(--primary-color);
    display: none;
  }

  header.dropdown nav {
    display: initial;
  }

  header nav ul li {
    width: 100%;
  }

  header nav ul li ul {
    position: relative;
    width: 100%;
    overflow-y: scroll;
    max-height: 270px;
    left: 0;
  }

  .menuToggle {
    position: relative;
    width: 40px;
    height: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
  }

  .menuToggle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--text-color);
    transform: translateY(-12px);
    box-shadow: 0 12px var(--text-color);
  }

  .menuToggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--text-color);
    transform: translateY(12px);
  }

  .header .logo {
    padding: 0; 
  }

  #icon {
    margin-right: 0;
    padding-right: 0;
  }

  #form {
    width: 250px;
  }
}

@media (max-width: 1030px) {
  .banner {
    background-position: center;
  }

  .banner h2 {
    font-size: 60px;
    padding: 0;
  }

  .sec {
    padding: 100px 50px 50px 50px;
  }

  .row100 {
    flex-direction: column;
  }

  .contactForm .row100 .inputBx50,
  .contactForm .row100 .inputBx100 {
    width: 100%;
    margin: 0;
  }

  h3 {
    font-size: 36px;
  }
}

@media (max-width: 1000px) {
  .searchbar {
    margin-left: 40%;
  }
}

@media (max-width: 991px) {
  .sitemap .container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-gap: 20px;
  }
}

@media (max-width: 830px) {
  .searchbar {
    margin-left: 30%;
  }
}

@media (max-width: 715px) {
  .searchbar {
    margin-left: 20%;
  }
}

@media (max-width: 630px) {
  .searchbar {
    margin-left: 10%;
  }
}

@media (max-width: 575px) {
  .searchbar {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  header .logo {
    display: none;
  }

  header nav {
    top: 66px;
  }
}

@media (max-width: 550px) {
  .banner h2 {
    font-size: 40px;
  }

  .infoBx {
    margin: 0;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 410px) {
  header .logo {
    display: none;
  }
}