/*Black #191716*/
/*White #e0e2db*/
/*Yellow #e6af2e*/
/*Gray #beb7a4*/
@font-face {
  font-family: "Big Shoulders Inline Display Black";
  src: local("Big Shoulders Inline Display Black"),
    url("BigShouldersInlineDisplay-Black.woff")
      format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.animate-in {
  -webkit-animation: fadeIn 2s ease-in;
  animation: fadeIn 2s ease-in;
}

.animate-out {
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
  opacity: 0;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

html,
body {
  font-family: "Hind", sans-serif;
  min-width: 100vw;
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
}
body {
  background-color: #000000;
  overflow-x: hidden;
}
.anchor {
  display: block;
  position: relative;
  top: -130px !important;
  visibility: hidden;
}
a.anchor {
  display: block;
  position: relative;
  top: -330px !important;
  visibility: hidden;
}

nav ul {
  list-style-type: none;
  background: rgb(0, 0, 0);
  transition: background 1s;
}
#nav-ul {
  background: rgba(25, 23, 22, 1);
  transition: background 1s;
}
nav ul:hover {
  opacity: 1 !important;
  transition: opacity 1s, background 1s;
}
nav ul li a {
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  padding: 10px 25px;
  color: white;
  transition: color 1s ease;
}
.line {
  width: 0;
  height: 2px;
  background: #558fec;
  transition: width 1s ease;
}

nav ul li:not(:first-child) a:hover {
  color: #558fec;
}
nav ul li a:hover + .line {
  width: 100%;
}
.list {
  display: none;
}
.list {
  color: #01173b;
}
.list-1 {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
#btn {
  padding: 5px 5px 5px 8px;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
#btn img {
  width: 50px;
}
#btn:hover {
  border: 2px solid #e0e2db;
}
.logo {
  font-family: "Big Shoulders Inline Display Black";
  font-weight: normal;
  font-size: 40px;
  color: #ffffff;
}

.logo:hover {
  border-bottom: none;
}
#navigation {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid white;
}
@media screen and (min-width: 950px) {
  nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  nav ul li {
    flex: 1 0 auto;
  }
  a.anchor {
    top: 0px !important;
  }
  #btn {
    padding: 0;
    margin: 0;
    border: 0;
  }

  #btn:hover {
    border: 0;
  }
  .list {
    display: block !important;
  }
  .list-1 {
    display: flex;
    justify-content: left;
    padding: 10px;
  }
  .logo {
    display: block;
    text-align: center;
  }

  .logo .fa-utensils {
    margin-left: 20px;
    opacity: 0.8;
  }
}
@media screen and (min-width: 960px) {
  #navigation {
    border-bottom: none;
  }
}
/*#################### BANNER SECTION ###################*/

#banner {
  min-height: 90vh;
  width: 100%;
  position: relative;
  z-index: 11;
}
.image-slider {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.slides {
  display: flex;
}
.slide {
  position: relative;
  min-width: 100vw;
  height: 90vh;
  opacity: 1;
  z-index: 9;
}

.slide img {
  position: relative;
  width: 100%;
  height: 100%;
}
.bcg-big {
  display: none;
}
.overlay {
  position: absolute;
  width: 100%;
  top: 70% !important;
  text-align: center;
  z-index: 9;
  color: white;
  padding: 10px;
}

.overlay h1 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 5px;
}
.overlay h3 {
  font-size: 11px;
  font-weight: normal;
  width: 70%;
  margin: 0 auto;
}
.overlay a {
  color: rgb(255, 255, 255);
}
.overlay2,
.overlay4 {
  color: black;
}
.fa-chevron-left {
  box-sizing: unset;
  font-size: 50px;
  padding: 10px;
  border-radius: 5px;
  color: rgb(129, 129, 129);
  position: absolute;
  left: 1%;
  top: 40%;
  transition: background 0.5s ease, color 1s ease;
}
.fa-chevron-left:hover {
  background: rgb(97, 97, 97);
  color: white;
}
.fa-chevron-right {
  box-sizing: unset;
  font-size: 50px;
  padding: 10px;
  border-radius: 5px;
  color: rgb(173, 173, 173);
  position: absolute;
  right: 1%;
  top: 40%;
  transition: background 0.5s ease, color 1s ease;
}
.fa-chevron-right:hover {
  background: rgb(97, 97, 97);
  color: white;
}
@media screen and (min-width: 960px) {
  .owl-carousel .owl-nav {
    overflow: hidden;
    height: 0px;
    margin: -10px;
  }
  .overlay h1 {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 5px;
    padding-top: 50px;
  }
  .overlay h3 {
    font-size: 17px;
    font-weight: normal;
    width: 70%;
    margin: 0 auto;
    padding-top: 10px;
  }
}
/*#################### BRANDS SECTION ###################*/

#brands {
  padding: 0;
  background-color: #000000;
  position: relative;
  z-index: 11;
}

.brands-container {
  max-width: 100%;
}
.brand-item {
  width: 100vw;
  margin: 0 auto;
  padding-top: 10px;
}
.brand-item img {
  width: 200px !important;
  margin: 10px auto;
}
.owl-theme .owl-dots {
  background: #000000;
  width: 100%;
  margin: 0px !important;
  padding-bottom: 10px;
}

@media screen and (min-width: 976px) {
  .brands-container {
    max-width: 100%;
    margin: 0;
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .brand-item {
    width: auto;
  }
}

/*#################### SERVICES SECTION ###################*/

#services {
  height: auto;
  min-width: 100vw;
  margin: 0 auto;
  padding: 80px 0;
  background: whitesmoke;
}

.services-container {
  min-width: 90vw;
  margin: 0 auto;
  color: #ffffff;
}

.service-item {
  overflow: hidden;
  position: relative;
  width: 80%;
  height: calc(70vw);
  padding: 60px 0;
  margin: 0 auto;
  margin-bottom: 30px;
  border-radius: 20px;
}
.service-item-1 {
  background: url(images/services/alarm.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.service-item-2 {
  background: url(images/services/video.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.front-text {
  text-align: left;
  transition: transform 2s;
  position: absolute;
  left: 5%;
  top: 78%;
  font-size: 13px;
}
.front-text a {
  color: white;
}
.front-text h1 {
  font-size: 18px;
}
.fa-arrow-circle-right {
  font-size: 20px;
  margin-left: 5px;
  vertical-align: middle;
  cursor: pointer;
  transition: all 1s ease;
}
.fa-arrow-circle-right:hover {
  transform: translateX(3px);
}

@media screen and (min-width: 776px) {
  #services {
    min-height: auto;
  }
  .services-container {
    max-width: 90vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5em;
  }
  .service-item {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 40vw;
    margin: 0 auto;
    border-radius: 10px;
  }
}
@media screen and (min-width: 1200px) {
  #services {
    min-height: auto;
  }
  .services-container {
    max-width: 90vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5em;
  }
  .service-item {
    overflow: hidden;
    position: relative;
    width: 90%;
    height: 30vw;
    margin: 0 auto;
    border-radius: 20px;
  }
  .front-text {
    text-align: left;
    transition: transform 2s;
    position: absolute;
    left: 5%;
    top: 80%;
    font-size: 15px;
    color: rgb(204, 204, 204);
  }
  .front-text a {
    color: white;
  }
  .front-text h1 {
    font-size: 20px;
    color: white;
  }
  .fa-arrow-circle-right {
    font-size: 23px;
    margin-left: 5px;
    vertical-align: middle;
    cursor: pointer;
    transition: all 1s ease;
  }
}
/*#################### FILLER SECTION ###################*/

#filler-contact {
  min-height: 15vh;
  display: flex;
  padding: 0px;
  position: relative;
  background: url("images/filler.jpg")
    center/cover fixed no-repeat;
}

#filler-contact h1 {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  position: absolute;
  z-index: 10;
  width: 100%;
  top: 40%;
  text-align: center;
}
#filler-contact img {
  width: 100%;
  display: none;
}

#filler-contact button {
  display: none;
  font-size: 30px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 10px 15px;
  background: transparent;
  transition: background 2s ease, color 2s ease,
    border 2s ease;
  cursor: pointer;
}

#filler-contact button:hover {
  color: rgba(255, 255, 255, 1);
  border: 2px solid rgba(255, 255, 255, 1);
}

@media screen and (min-width: 776px) {
  #filler-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #filler-contact h1 {
    font-size: 15px;
  }
}

@media screen and (min-width: 1200px) {
  #filler-contact {
    justify-content: space-between;
  }
  #filler-contact {
    min-height: 25vh;
    display: flex;
    padding: 0px;
    position: relative;
    background: url("images/filler.jpg")
      center/cover fixed no-repeat;
  }

  #filler-contact h1 {
    font-size: 20px;
    position: unset;
    width: auto;
    margin-left: 100px;
  }
  #filler-contact img {
    width: 100%;
    display: none;
  }

  #filler-contact button {
    display: flex;
    font-size: 25px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 10px 15px;
    background: transparent;
    transition: background 2s ease, color 2s ease,
      border 2s ease;
    cursor: pointer;
    margin-right: 100px;
  }
}

/*#################### PRODUCTS SECTION ###################*/

#products {
  padding: 40px 0 60px 0;
  background: white;
  height: auto;
}
.product-slider {
  box-sizing: border-box;
  width: 100%;
  height: 50vh;
}
.products {
  display: flex;
}
#product1 {
  left: 0;
}
.product {
  position: relative;
  width: 100%;
  height: 50vh;
  opacity: 1;
  z-index: 9;
}

.product img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.product-overlay {
  position: absolute;
  width: 100%;
  top: 80% !important;
  text-align: center;
  z-index: 9;
  color: white;
  padding: 10px;
}

.product-overlay h1 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 5px;
}
.product-overlay h3 {
  font-size: 11px;
  font-weight: normal;
  width: 70%;
  margin: 0 auto;
}
.product-overlay a {
  color: rgb(255, 255, 255);
}
.more {
  display: none;
}
.more-btn {
  display: none !important;
}
.less-btn {
  display: none !important;
}
.more {
  display: none !important;
}
@media screen and (min-width: 960px) {
  .product-slider {
    width: 100%;
    margin: 50px auto;
  }

  .product {
    position: relative;
    width: 100%;
    height: 50vh;
  }

  .product img {
    height: 50vh;
  }
  .product-min-camera {
    display: none;
  }
  .more {
    display: none;
  }
  .more-btn {
    padding: 20px 30px;
    border-radius: 30px;
    display: flex !important;
    width: 200px;
    margin: 0 auto;
    background: #000000;
    border: none;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: transform 1s ease;
  }
  .more-btn:hover {
    transform: scale(1.1);
  }
  .more-btn img {
    width: 25px;
    margin-right: 30px;
    vertical-align: middle;
  }

  .less-btn {
    padding: 20px 30px;
    border-radius: 30px;
    width: 200px;
    margin: 0 auto;
    background: #000000;
    border: none;
    color: #ffffff;
    display: none !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: transform 1s ease;
  }
  .less-btn:hover {
    transform: scale(1.1);
  }
  .less-btn img {
    width: 25px;
    margin-right: 30px;
    vertical-align: middle;
  }
  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @-webkit-keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
}
@media screen and (min-width: 1200px) {
  .product-slider {
    margin: 50px auto;
    height: auto;
    width: 80%;
  }

  .product {
    position: relative;
    width: 95%;
    padding: 0 10px;
    height: 60vh;
  }

  .product img {
    height: 60vh;
  }
}
/*########## ABOUT US SECTION ##########*/

#about-us-section {
  height: auto;
}
.about-us-container {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
}
.about-us-container img {
  width: 80%;
}
.about-us-black {
  color: rgb(206, 206, 206);
  width: 100%;
  min-height: auto;
  padding: 20px;
  font-weight: 500;
}
.about-us-white {
  width: 100%;
  min-height: auto;
  padding: 20px;
}
.about-1 {
  background-color: #171717;
}

.about-2 {
  background-color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-3 {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  grid-row: 4/4;
}
.about-4 {
  border-radius: 0px 0 0 0;
  background-color: white;
  color: #000000;
}

.fa-circle {
  padding-right: 8px;
}
.text {
  width: 90%;
  margin: auto;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}
.text span {
  font-size: 23px;
  color: rgb(255, 255, 255);
}
.about-4 span {
  color: #000000;
  font-weight: 600;
}
.text ul {
  list-style-type: none;
  padding-left: 30px;
  padding-top: 5px;
}
@media screen and (min-width: 700px) {
  .about-us-container img {
    width: 70%;
  }
  .text {
    width: 80%;
    margin: auto;
    font-size: 16px;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 960px) {
  .about-us-container {
    grid-template-columns: 1fr 1fr;
  }
  .about-1 {
    background-color: #171717;
    color: rgb(206, 206, 206);
  }
  .about-1 span {
    font-size: 23px;
    color: rgb(255, 255, 255);
  }
  .about-2 {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1;
    grid-row: 2/2;
  }
  .about-4 {
    border-radius: 0px 0 0 0;
    background-color: #171717;
    color: rgb(206, 206, 206);
  }
  .about-4 span {
    color: #ffffff;
  }
}
@media screen and (min-width: 1200px) {
  .about-us-container {
    grid-template-columns: 1fr 1fr;
  }
  .about-us-container img {
    width: 60%;
  }
  .about-us-black {
    width: 100%;
    min-height: 45vh;
    padding: 20px;
    font-weight: 500;
  }
  .about-us-white {
    width: 100%;
    min-height: 45vh;
    padding: 20px;
  }
  .about-1 {
    background-color: #171717;
    color: rgb(206, 206, 206);
  }
  .about-1 span {
    font-size: 23px;
    color: rgb(255, 255, 255);
  }
  .about-2 {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1;
    grid-row: 2/2;
  }
  .about-4 {
    border-radius: 0px 0 0 0;
    background-color: #171717;
    color: rgb(206, 206, 206);
  }
  .about-4 span {
    color: #ffffff;
  }
  .text {
    width: 70%;
    height: 100%;
    margin: auto;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .text p {
    padding-top: 5px;
  }
}
/*#################### CONTACT SECTION ###################*/
#contact-section {
  min-height: auto;
  background-color: #000000;
  color: #e7e7e7;

  border-bottom: 1px solid white;
}

.contact-container {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.contact-links {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contact-nav {
  font-size: 15px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.contact-nav ul {
  color: #c2c2c2;
  list-style-type: none;
}
.contact-nav ul h2 {
  padding-bottom: 10px;
  font-size: 20px;
}
.contact-nav a {
  color: #c2c2c2;
  text-decoration: none;
}
.line-contact {
  background-color: #e0e2db;
  height: 0px;
}

.contact-info {
    width:90vw;
    margin:0 auto;
  font-size: 15px;
  padding: 20px;
  border-top: 1px solid #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #dddddd;
}
.contact-center {
  display: flex;
  flex-direction: row;
  
}
.contact-center p {
  padding: 20px;
  /*border: 2px solid #c2c2c2;*/
}
.contact-center p:nth-child(1) {
  border-right: none;
  /*border-left: 2px solid #c2c2c2;*/
}
.contact-center p:nth-child(2) {
  /*border-right: 2px solid #c2c2c2;*/
}

.contact-info h2 {
  font-size: 20px;
  color: #ececec;
  padding-bottom: 10px;
}
@media screen and (min-width: 500px) {
    .contact-nav {
  
  justify-content: space-around;
}
    
}
@media screen and (min-width: 790px) {
  .contact-container {
    flex-direction: row-reverse;
    justify-content: space-around;
    padding: 20px;
  }
  .contact-links {
    flex-direction: row;
    justify-content: flex-end;
  }
  .contact-nav {
    font-size: 18px;
  }
  .contact-nav ul a:hover {
    color: #4267b2;
  }
  .contact-nav .ul-2 {
    padding-left: 50px;
   
  }
  .contact-info {
    font-size: 18px;
    padding: 0;
    padding-left: 30px;
    border-top: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #dddddd;
    min-width: 50%;
  }
  .contact-center {
    border-top: 1px solid #c2c2c2;
    border-bottom: 1px solid #c2c2c2;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .contact-center p {
    padding: 0px;
  }
  .contact-center p:nth-child(1) {
    border-right: none;
    border-left: none;
  }
  .contact-center p:nth-child(2) {
    border-right: none;
    padding-left: 20px;
  }
}
@media screen and (min-width: 882px) {
  
  .contact-nav .ul-2 {
    padding-left: 50px;
   padding-right:50px;
  }
}
@media screen and (min-width: 982px) {
  
  .contact-nav .ul-2 {
    padding-left: 50px;
   padding-right:100px;
  }
}
@media screen and (min-width: 1400px) {
  .contact-container {
    background: url("logo-hover.png");
    background-repeat: no-repeat;
    background-position: 50%;
  }
}
/*#################### ARROW TOP BUTTON ###################*/

.arrow-top {
  position: fixed;
  z-index: 10;
  right: 5%;
  bottom: 5%;
  font-size: 30px;
  color: white;
  padding: 5px 20px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.7);
  color: rgb(214, 214, 214);
  cursor: pointer;
  transition: background 1s, color 1s, border 1s;
}
.arrow-top:hover {
  cursor: pointer;
  background: #cccccc;
  color: #000000;
  transition: background 1s, color 1s, border 1s;
}
@media screen and (min-width: 960px) {
  .arrow-top {
    bottom: 20%;
    right: 3%;
  }
}
/*#################### FOOTER SECTION ###################*/

#footer-section {
  min-height: 10vh;
  background: #000000;
}
.footer {
  display: flex;
  flex-direction: column;
}
.footer-left {
  padding: 30px 0px 30px 0px;
  display: flex;
  flex-direction: column;
  border-bottom:1px solid white;
}
.footer-logo h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
}
.footer-logo h3 {
  font-family: "Courier New", Courier, monospace;
  color: #c2c2c2;
  font-size: 12px;
  padding-top: 5px;
  text-align: center;
}

.footer-middle {
  display: flex;
  align-self: center;
  padding: 20px;
  color: #797979;
}

.footer-middle span {
  color: #ffffff;
}
.fa-copyright {
  color: #797979;
  display: flex;
  align-self: center;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-self: center;
  font-size: 15px;
  color: rgb(214, 214, 214);
  padding: 10px;
}
.footer-right h2 {
  font-size: 15px;
  color: #797979;
}
.footer-right h3 {
  font-size: 17px;
  text-align: center;
  margin-top: -5px;
}
@media screen and (min-width: 960px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-left {
    padding: 20px 0px 0px 50px;
	border:none;
  }
  .footer-middle {
    align-self: flex-end;
	padding-top:50px;
  }
  .footer-right {
    align-self: center;
    font-size: 15px;
    color: rgb(214, 214, 214);
    padding-right: 50px;
  }
  .footer-right h3 {
    margin-top: 0;
  }
}

/*#################### ALARM SYSTEM SECTION ###################*/

.alarm-div {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: #000000;
  z-index: 11;
}

.alarm-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 20px;
}
.alarm-text h1 {
  color: #b80000;
  font-size: 24px;
}
.alarm-div p {
  width: 70%;
  padding-top: 10px;
  text-align: justify;
  color: #cfcfcf;
  font-size: 15px;
}
.alarm-text-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 30px;
}
.alarm-img {
  padding-top: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alarm-img img {
  width: 100%;
}

#brands-alarm {
  padding: 0;
  background-color: #000000;
  position: relative;
  z-index: 11;
}

@media screen and (min-width: 1200px) {
  .alarm-div {
    height: 80vh;
    background-image: url("images/alarmvideo/alarm-bcg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .alarm-div h1 {
    padding-bottom: 20px;
  }
  .alarm-div p {
    width: 100%;
    padding-top: 10px;
    text-align: justify;
    color: #cfcfcf;
  }
  .alarm-img {
    display: none;
  }
  .alarm-text-2 {
    padding-top: 0px;
  }
  .alarm-big {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 15%;
  }
}
@media screen and (min-width: 1900px) {
  .alarm-div p {
    width: 100%;
    padding-top: 10px;
    text-align: justify;
    color: #cfcfcf;
    font-size: 18px;
  }
  .alarm-big {
    position: absolute;
    top: 15%;
    width: 20%;
  }
}
/*########## AJAX PARADOX SECTION ##########*/
#ajax-paradox {
  height: auto;
}

.ajax-paradox-container {
  max-width: 100vw;
  color: #ffffff;
  border-top: 1px solid #f3f3f3;
}

.ajax-paradox-item {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 420px;
}

.ajax-item {
  background: url(images/alarmvideo/ajax-bcg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.paradox-item {
  background: url(images/alarmvideo/paradox-bcg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.ajax-paradox-back-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 1;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  transition: left 1s;
  padding: 30px 30px;
  text-align: center;
  font-size: 13px;
}

.ajax-paradox-back-text h1 {
  margin-top: 10px;
  color: #1da1f2;
}
.ajax-paradox-back-text p {
  text-align: justify;
  margin-top: 10px;
}
.ajax-back-text {
  background: rgb(19, 19, 19);
}

.paradox-back-text {
  background: rgb(19, 19, 19);
}
.paradox-back-text h1 {
  color: #d30000;
}
@media screen and (min-width: 575px) {
  .ajax-paradox-item {
    height: 600px;
  }
  .ajax-paradox-back-text {
    font-size: 16px;
  }
  .ajax-paradox-back-text h1 {
    margin-top: 20px;
  }
  .ajax-paradox-back-text p {
    width: 70%;
    margin: 0 auto;
    margin-top: 10px;
  }
}

@media screen and (min-width: 950px) {
  .ajax-paradox-container {
    display: flex;
  }
  .ajax-paradox-item {
    overflow: hidden;
    position: relative;
    width: 50%;
    height: 60vw;
    border-right: 1px solid white;
  }
  .ajax-paradox-back-text {
    font-size: 15px;
  }
  .ajax-paradox-back-text p {
    width: 80%;
  }
}
@media screen and (min-width: 1260px) {
  .ajax-paradox-item {
    height: 40vw;
  }
  .ajax-paradox-back-text {
    padding: 50px 50px;
    text-align: center;
    font-size: 1em;
  }
  .ajax-paradox-back-text p {
    width: 80%;
    margin: 0 auto;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1600px) {
  .ajax-paradox-item {
    height: 40vw;
  }
  .ajax-paradox-back-text {
    font-size: 1.1em;
  }
  .ajax-paradox-back-text p {
    width: 60%;
    margin-top: 20px;
  }
}
/*####################### SLAJDOVI ALARMNIH UREDJAJA ###########################*/
#alarm-products {
  background-color: white;
  height: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
.alarm-product-slider {
  box-sizing: border-box;
  width: 100%;
  height: 50vh;
}
.alarm-products {
  display: flex;
}
#alarm-product1 {
  left: 0;
}
.alarm-product {
  position: relative;
  width: 80%;
  height: 50vh;
  opacity: 1;
  z-index: 9;
  margin: 0 auto;
}

.alarm-product img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.alarm-product-overlay {
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 80%;
  text-align: center;
  z-index: 9;
  color: white;
  padding: 10px;
  transition: top 2s ease;
  background-color: rgba(0, 0, 0, 0.4);
}
.alarm-product-back-text {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 80%;
  margin: 0 auto;
  text-align: justify;
  font-size: 11px;
}

.alarm-product-overlay h1 {
  font-size: 18px;
  font-weight: 600;
  padding-top: 10px;
}
.alarm-product-overlay h3 {
  font-size: 11px;
  font-weight: normal;
  width: 70%;
  margin: 0 auto;
}
.alarm-product-overlay a {
  color: rgb(255, 255, 255);
}
.fa-arrow-circle-up {
  font-size: 20px;
  margin-left: 5px;
  vertical-align: middle;
  cursor: pointer;
  transition: all 1s ease;
  color: #aaaaaa;
}
.fa-arrow-circle-up:hover {
  color: rgb(255, 255, 255);
}
@media screen and (min-width: 1200px) {
  .alarm-product-back-text {
    margin-top: 50px;
    width: 70%;
    margin: 0 auto;
    text-align: justify;
    font-size: 14px;
  }
}
@media screen and (min-width: 2000px) {
  .alarm-product {
    height: 40vh;
  }
  .alarm-product-back-text {
    font-size: 1.5em;
  }
  .alarm-product-overlay h1 {
    font-size: 2em;
  }
  .alarm-product-overlay h3 {
    font-size: 1.5em;
  }
}
/*####################################################################*/
.about-us-container-alarm {
  align-items: center;
  height: auto;
}
.alarm-about-us {
  background-color: white;
  color: #000000;
  font-weight: 500;
  text-align: justify;
}

.alarm-about-us span {
  color: #000000;
  font-weight: 900;
  font-family: "Times New Roman", Times, serif;
}
.alarm-about-us-img {
  background-color: white;
  padding-top: 0;
  margin-top: 0;
  display: flex;
  justify-content: center;
}
.alarm-about-us-img img {
  width: 80%;
}
@media screen and (min-width: 700px) {
  .alarm-about-us-img img {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  .about-us-container-alarm {
    display: flex;
    flex-direction: row;
    background-color: white;
  }
  .alarm-about-us {
    width: 50%;
  }
  .alarm-about-us .text {
    width: 80%;
    font-size: 15px;
  }
  .alarm-about-us-img {
    width: 50%;
  }
  .alarm-about-us-img img {
    width: 70%;
  }
  .fa-arrow-circle-up {
    font-size: 23px;
    margin-left: 5px;
    vertical-align: middle;
    cursor: pointer;
    transition: all 1s ease;
  }
}
@media screen and (min-width: 1700px) {
  .alarm-about-us .text {
    width: 70%;
    font-size: 18px;
  }
  .alarm-about-us-img img {
    width: 60%;
  }
}
/*#################### VIDEO SYSTEM SECTION ###################*/

.video-div {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  z-index: 11;
}

.video-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 20px;
}
.video-text h1 {
  color: #000000;
  font-size: 24px;
}
.video-div p {
  width: 70%;
  padding-top: 10px;
  text-align: justify;
  color: #3d3d3d;
  font-size: 15px;
}
.video-text-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 30px;
}
.video-img {
  padding-top: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-img img {
  width: 100%;
}

#brands-alarm {
  padding: 0;
  background-color: #000000;
  position: relative;
  z-index: 11;
}
.about-us-container-video {
  align-items: center;
  background-color: white;
}
@media screen and (min-width: 1200px) {
  .video-div {
    height: 80vh;
    background-image: url("images/alarmvideo/video-bcg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .video-div h1 {
    padding-bottom: 20px;
    color: #1da1f2;
  }
  .video-div p {
    width: 100%;
    padding-top: 10px;
    text-align: justify;
    color: #ffffff;
  }
  .video-img {
    display: none;
  }
  .video-text-2 {
    padding-top: 0px;
  }
  .video-big {
    position: absolute;
    top: 20%;
    left: 35%;
    width: 30%;
  }
}
@media screen and (min-width: 1900px) {
  .video-div p {
    width: 100%;
    padding-top: 10px;
    text-align: justify;
    color: #ffffff;
    font-size: 20px;
  }
  .video-div h1 {
    padding-bottom: 20px;
    color: #1da1f2;
    font-size: 26px;
  }
}

/*########## DAHUA SAMSUNG HIKVISION SECTION ##########*/
#dahua-samsung-hikvision {
  min-width: 100%;
  height: auto;
}

.dahua-samsung-hikvision-container {
  display: flex;
  flex-direction: column;
  min-width: 100vw;
  color: #272727;
  background-color: #ffffff;
}

.dahua-samsung-hikvision-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
  transition: background-color 1s ease;
}
.dahua-samsung-hikvision-item:hover {
  background-color: #d1d1d1;
}
.dahua-item {
  background: url(images/alarmvideo/dahua-bcg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-bottom: 1px solid #6e6e6e;
}
.samsung-item {
  background: url(images/alarmvideo/samsung-bcg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-bottom: 1px solid #6e6e6e;
}
.hikvision-item {
  background: url(images/alarmvideo/hikvision-bcg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-bottom: 1px solid #6e6e6e;
}
.dahua-samsung-hikvision-back-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -100%;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  transition: left 1s;
  padding: 30px 30px;
  text-align: center;
  background: rgb(0, 0, 0);
  color: #909090;
  font-size: 13px;
}

.dahua-samsung-hikvision-back-text h1 {
  margin-bottom: 10px;
  color: #ffffff;
}
.dahua-samsung-hikvision-back-text p {
  text-align: justify;
  margin-top: 10px;
  width: 90%;
}
.alarm-front-text {
  text-align: left;
  transition: transform 2s;
  position: absolute;
  left: 5%;
  top: 78%;
  font-size: 13px;
  color: #167ab8;
}
.alarm-front-text h1 {
  font-size: 15px;
  color: #4b4b4b;
}

@media screen and (min-width: 1200px) {
  .dahua-samsung-hikvision-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .dahua-samsung-hikvision-item {
    height: 30vw;
  }

  .dahua-item {
    border: none;
  }
  .samsung-item {
    border: none;
  }
  .hikvision-item {
    border: none;
  }
  .dahua-samsung-hikvision-back-text {
    font-size: 1em;
  }
  .dahua-samsung-hikvision-back-text p {
    width: 80%;
  }
  .alarm-front-text {
    font-size: 15px;
    left: 10%;
  }
  .alarm-front-text h1 {
    font-size: 18px;
    color: #4b4b4b;
  }
}

/*#########################################*/

.video-about-us {
  background-color: #ffffff;
  color: #171717;
}
.video-about-us span {
  color: #000000;
}
.video-about-us-img {
  background-color: #ffffff;
}
