@font-face {
  font-family: "main";
  src: url("../fonts/Heebo.ttf");
}
@font-face {
  font-family: "main-bold";
  src: url("../fonts/Heebo-Bold.ttf");
}
:root {
  --main-red: #FF0303;
  --light-red: #FF5B5B;
  --dark-gray: #494949;
  --footer-color: #272727;
}

* {
  margin: 0;
}

body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 0.5vw;
  background: white;
  padding: 0.1vw;
}

html::-webkit-scrollbar-track {
  margin-block: 0.3rem;
  border-radius: 100vw;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--main-red);
  border-radius: 100vw;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: white;
  border: 1px solid var(--light-red);
}

.footer {
  background-color: var(--footer-color);
  height: 25vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer section div {
  display: flex;
  flex-direction: row;
  height: 15vh;
  align-items: center;
}
.footer section div a {
  font-family: main;
  font-size: 1vw;
  color: #CBCBCB;
  text-decoration: none;
  margin: 0 1vw;
}
.footer section div img {
  height: 2vw;
}
.footer section h1 {
  font-size: 1vw;
  font-weight: 200;
  color: #ffffff;
  text-align: center;
  font-family: main;
  margin-bottom: 1vw;
}
.footer section h2 {
  font-size: 1vw;
  color: #CBCBCB;
  text-align: center;
  font-family: main-bold;
}

@media (max-width: 700px) {
  .footer section div {
    width: 100%;
  }
  .footer section div a {
    font-size: 3vw;
    text-decoration: none;
  }
  .footer section div a:nth-child(4), .footer section div a:nth-child(5), .footer section div a:nth-child(6) {
    display: none;
  }
  .footer section div img {
    height: 8vw;
  }
  .footer section h1 {
    font-size: 2vw;
  }
  .footer section h2 {
    font-size: 2vw;
  }
}
.page1 {
  display: flex;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.nav {
  width: 100%;
  padding-left: 2vw;
  height: 5vw !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.nav a:not(.build) {
  font-size: 1vw;
  font-family: main-bold;
  color: black;
  text-decoration: none;
  margin: 0 2vw;
  padding: 0.5vw;
  border: 0.1vw solid transparent;
  float: left;
  transition: 0.03s all;
  position: relative;
}
.nav a:not(.build):hover {
  color: red;
  border-radius: 2vw;
}
.nav a:not(.build)::after {
  content: "";
  position: absolute;
  left: 0.5vw;
  top: 92%;
  width: 0;
  height: 0.1vw;
  background-color: red;
  transition: 0.25s ease-out;
}
.nav a:not(.build):hover::after {
  width: 60%;
}
.nav a:not(.build):active {
  transform: scale(0.9);
}
.nav button {
  position: absolute;
  right: 4vw;
  top: 1vw;
  background-color: var(--main-red);
  border-radius: 1vw;
  box-shadow: var(--main-red) 0 10px 20px -10px;
  color: white;
  font-size: 1vw;
  line-height: 24px;
  padding: 1.1vw 18px;
  border: 0;
  font-family: main-bold;
  transition: 0.2s all;
  cursor: pointer;
}
.nav button:hover {
  background-color: var(--light-red);
}
.nav button:active {
  transform: scale(0.9);
}

.redLine {
  position: fixed;
  top: 0;
  height: 0.5vw;
}

.logo {
  height: 3vw;
}

#services {
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* supported by Chrome and Opera */
}
#services p:nth-child(2) {
  display: none;
}
#services p:nth-child(1) {
  display: block;
}

.popOut {
  position: absolute;
  z-index: -2;
}
.popOut a {
  padding-left: 0;
}

.whiteBox {
  position: absolute;
  background-color: white;
  height: 100%;
  width: 40vw;
  z-index: -1;
}

.arrow {
  height: 2vw;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.spin {
  animation: 1s spin;
}

@keyframes backspin {
  100% {
    transform: rotate(-360deg);
  }
}
.backspin {
  animation: 1s backspin;
}

@keyframes moveRight {
  0% {
    left: 0;
  }
  100% {
    left: 42vw;
  }
}
.moveRight {
  animation: 1s moveRight forwards;
}

@keyframes moveLeft {
  0% {
    left: 46vw;
  }
  100% {
    left: 0;
  }
}
.moveLeft {
  animation: 1s moveLeft forwards;
}

.grayBox {
  display: none;
}

@media (max-width: 700px) {
  canvas {
    display: none;
  }
  .popOut {
    position: absolute;
    z-index: 2;
  }
  .nav {
    margin-top: 4.4vw;
    margin-bottom: 3.4vw;
  }
  .nav a {
    font-size: 3.5vw;
  }
  .nav a:nth-child(1) {
    display: none;
  }
  .nav a:nth-child(2) {
    display: none;
  }
  .nav a:nth-child(3) {
    display: none;
  }
  .nav a:nth-child(5) {
    display: none;
  }
  .nav a:nth-child(6) {
    display: none;
  }
  .nav button {
    display: none;
  }
  .logo {
    height: 7vw;
    display: block;
  }
  .redLine {
    height: 1.5vw;
  }
  #services {
    background-color: var(--main-red);
    border-radius: 1vw;
    box-shadow: var(--main-red) 0 10px 20px -10px;
    color: white;
    font-size: 1vw;
    line-height: 24px;
    padding: 1.1vw 18px;
    border: 0;
    font-family: main-bold;
    transition: 0.2s all;
    cursor: pointer;
    font-size: 3vw;
    padding: 1vw;
    margin-left: 51vw;
  }
  #services:hover {
    background-color: var(--light-red);
  }
  #services:active {
    transform: scale(0.9);
  }
  #services p:nth-child(1) {
    display: none;
  }
  #services p:nth-child(2) {
    display: block;
  }
  .build button {
    font-size: 1vw;
    font-family: main-bold;
    color: black;
    text-decoration: none;
    margin: 0 2vw;
    padding: 0.5vw;
    border: 0.1vw solid transparent;
    float: left;
    transition: 0.03s all;
    position: relative;
    font-size: 10vw;
    background-color: transparent;
    color: white;
  }
  .build button:hover {
    color: red;
    border-radius: 2vw;
  }
  .build button::after {
    content: "";
    position: absolute;
    left: 0.5vw;
    top: 92%;
    width: 0;
    height: 0.1vw;
    background-color: red;
    transition: 0.25s ease-out;
  }
  .build button:hover::after {
    width: 60%;
  }
  .build button:active {
    transform: scale(0.9);
  }
  .arrow {
    height: 5vw;
  }
  .grayBox {
    height: 92vh;
    width: 90vw;
    background: #0F2027;
    /* fallback for old browsers */
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2C5364, #203A43, #0F2027);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    left: -100vw;
    top: 6.7vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    align-items: center;
    z-index: 100;
  }
  .grayBox a {
    font-size: 1vw;
    font-family: main-bold;
    color: black;
    text-decoration: none;
    margin: 0 2vw;
    padding: 0.5vw;
    border: 0.1vw solid transparent;
    float: left;
    transition: 0.03s all;
    position: relative;
    font-size: 10vw;
    color: white;
  }
  .grayBox a:hover {
    color: red;
    border-radius: 2vw;
  }
  .grayBox a::after {
    content: "";
    position: absolute;
    left: 0.5vw;
    top: 92%;
    width: 0;
    height: 0.1vw;
    background-color: red;
    transition: 0.25s ease-out;
  }
  .grayBox a:hover::after {
    width: 60%;
  }
  .grayBox a:active {
    transform: scale(0.9);
  }
  .slideUp {
    animation: 1s slideUp forwards;
  }
  @keyframes slideUp {
    0% {
      left: -100vw;
    }
    100% {
      left: 5vw;
    }
  }
  .slideDown {
    animation: 1s slideDown forwards;
  }
  @keyframes slideDown {
    0% {
      left: 3vh;
    }
    100% {
      left: -100vw;
    }
  }
}
svg {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.loadingCircle {
  transform: rotate(60deg);
  transform-origin: 50% 50%;
  fill: #EDEFF3;
  animation: rotation 1.5s infinite linear;
}

@keyframes rotation {
  0% {
    transform: rotate(60deg);
  }
  100% {
    transform: rotate(420deg);
  }
}
.loader {
  background-color: white;
}

.bgimagepatrol {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 85vh;
}
.bgimagepatrol div {
  background: url("security.png");
  border-radius: 2vw;
  background-size: cover;
  width: 90%;
  height: 90%;
}

.cards {
  display: flex;
  flex-direction: row;
  gap: 2vw;
  overflow: visible;
  z-index: 2000;
}
.cards div {
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: start;
  border-radius: 2vw;
  height: auto;
  width: 15vw;
  padding: 1vw;
  border: 0.15vw solid black;
  margin-bottom: 2vw;
}
.cards div:nth-child(2) {
  position: relative;
  border-color: red;
  overflow: visible;
  padding-bottom: 2vw;
  min-height: calc(100% + 2vw);
}
.cards div:nth-child(2)::after {
  background-color: red;
  font-family: main-bold;
  width: 80%;
  left: 10%;
  height: 2vw;
  content: "Most Popular";
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -2vw;
  z-index: 2000;
  border-bottom-left-radius: 1vw;
  border-bottom-right-radius: 1vw;
}
.cards div h1 {
  color: black !important;
  font-size: 2vw;
}
.cards div h2 {
  font-family: main-bold;
  font-size: 2.5vw;
}
.cards div h3 {
  font-family: main;
  font-size: 1vw;
  margin-bottom: 2vw;
}
.cards div button {
  font-family: main-bold;
  width: 100%;
  font-size: 1.5vw;
  border-radius: 0.5vw;
  background-color: transparent;
  transition: 0.3s all;
  padding: 0.5vw;
}
.cards div button:hover {
  background-color: var(--main-red);
  color: white;
  cursor: pointer;
}

.leftmain {
  overflow: visible;
  width: 60%;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.main {
  width: 100vw;
  padding-bottom: 2vw;
  height: auto;
  display: flex;
  align-items: center;
}
.main h1 {
  color: var(--main-red);
  font-family: main-bold;
  font-size: 3.4vw;
}
.main p {
  font-family: main;
  font-size: 1.5vw;
  margin: 1vw 0;
}
.main section:nth-child(2) {
  width: 100%;
  overflow: hidden;
}

.footer {
  width: 100vw;
  padding-bottom: 4vw;
}

@media (max-width: 500px) {
  .cards {
    display: flex;
    flex-direction: column;
    gap: 4vw;
    overflow: visible;
    z-index: 1;
    align-items: center;
    text-align: center;
  }
  .cards div {
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: start;
    border-radius: 2vw;
    height: auto;
    width: 75vw;
    padding: 1vw;
    border: 0.15vw solid black;
    margin-bottom: 2vw;
  }
  .cards div:nth-child(3) {
    margin-top: 5vw;
  }
  .cards div:nth-child(2) {
    position: relative;
    border-color: red;
    overflow: visible;
    padding-bottom: 10vw;
    min-height: 100%;
    height: 30vw;
  }
  .cards div:nth-child(2)::after {
    background-color: red;
    font-family: main-bold;
    width: 60%;
    left: 20%;
    height: 6vw;
    content: "Most Popular";
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    font-size: 3vw;
    bottom: -6vw;
    z-index: 2000;
    border-bottom-left-radius: 1vw;
    border-bottom-right-radius: 1vw;
  }
  .cards div h1 {
    color: black !important;
    font-size: 7vw;
  }
  .cards div h2 {
    font-family: main-bold;
    font-size: 5.5vw;
  }
  .cards div h3 {
    font-family: main;
    font-size: 5vw;
    margin-bottom: 2vw;
  }
  .cards div button {
    font-family: main-bold;
    width: 60%;
    font-size: 4.5vw;
    border-radius: 14vw;
    background-color: transparent;
    transition: 0.3s all;
    padding: 0.5vw;
  }
  .cards div button:hover {
    background-color: var(--main-red);
    color: white;
    cursor: pointer;
  }
  .leftmain {
    overflow: visible;
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    flex-direction: column;
    gap: 2vw;
  }
  .main {
    width: 100vw;
    padding-bottom: 2vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main h1 {
    color: var(--main-red);
    font-family: main-bold;
    font-size: 10.4vw;
    text-align: center;
  }
  .main p {
    font-family: main;
    width: auto;
    padding: 0 10vw;
    font-size: 4.5vw;
    margin: 1vw 0;
    text-align: center;
  }
  .main section:nth-child(2) {
    width: 100%;
    overflow: hidden;
  }
  .main img {
    height: 90%;
  }
  .footer {
    width: 100vw;
    padding-bottom: 4vw;
  }
}/*# sourceMappingURL=patrolsubs.css.map */