/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

body {
  background-color: black;
  overflow-x: hidden;
}

#box {
  background: linear-gradient(to right, #fcf7f9, #d3f3f16b);
}

/*--------------------------------------------------------------
# Back to top and whatsapp button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: red;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}


.whatsapp {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 75px;
  z-index: 996;
  background: rgb(131, 230, 138);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  text-decoration: none;
}

.whatsapp,
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: blue;
  color: #fff;
}

.whatsapp:hover {
  background: rgb(0, 255, 17);
  color: #fff;
}

.whatsapp,
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}



/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(57, 57, 57, 0.526);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.nitya-logo {
  height: 50px;
  padding: 5px 0px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding-right: 130px;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #e03a3c;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin-top: 5px;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(57, 57, 57, 0.526);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: black;
  background: rgba(255, 255, 255, 0.485);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 1080px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background: rgba(134, 132, 132, 0.485);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: white;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: white;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgba(134, 132, 132, 0.485);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: white;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Carousel 
--------------------------------------------------------------*/

#carouselExampleDark {
  border-bottom: 15px solid black;
  /* margin-bottom: 100px; */
}

.d-block {
  width: 100vw;
  height: 99vh;
}

.nitya-info span {
  font-size: 100px;
}

.Home-picture h1 {
  font-size: 50px !important;
  font-weight: 400 !important;
}

.carousel-caption h1 {
  font-size: 5rem;
  font-weight: 300;
  color: white;
}

#home-text {
  align-items: center !important;
}

.home-page-button {
  margin-top: 20px;
  padding: 7px 20px;
  background-color: rgba(255, 255, 255, 0.678);
  transition: 0.5s;
}

.home-page-button a {
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  color: black;
  display: block;
}

.home-page-button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid white;
  border-radius: 8px;
  padding: 10px 30px;
  letter-spacing: 2px;
}

.home-page-button:hover>a {
  color: white;
}

.carousel-caption {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-direction: column !important;
  height: 100% !important;
}

.right {
  display: flex !important;
  justify-content: end !important;
  align-items: start !important;
  flex-direction: column !important;
  height: 100% !important;
  padding-bottom: 100px;
}

.right h1.text-dark {
  font-weight: 600 !important;
  font-size: 70px !important;
}

.right>.center {
  text-align: center !important;
  color: black;
  padding-left: 50px;
}

.slide-text {
  font-weight: 400 !important;
  font-size: 80px !important;
}

.carousel-caption .nitya-info {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
}

.carousel-caption .red {
  color: red;
}

.carousel-caption .blue {
  color: rgb(0, 60, 255);
}

.carousel-caption p {
  font-size: 20px;
  color: white;
}

#slider-pic-1 {
  filter: brightness(65%);
}

.data-recovery-image {
  filter: brightness(70%);
}

#os-install {
  filter: blur(1px) brightness(70%);
}

#networking {
  filter: brightness(50%);
}

.network h1,
p {
  font-weight: 400;
}

.custom-pc {
  height: 99vh;
  filter: blur(2px) brightness(80%);
}

.Pc-accessories {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-direction: column !important;
  padding-top: 100px;
}

.Pc-accessories {
  filter: blur(2px) brightness(70%);
}

.amc {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding-bottom: 50px;
}

.amc-image {
  filter: brightness(60%);
}

.cctv-text {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

#cctv {
  filter: brightness(80%);
}

.amc h1,
.cctv-text h1,
.website-design h1 {
  font-weight: 500 !important;
}

#laptop-rent {
  filter: brightness(60%);
}

.laptop-rent h1 {
  font-weight: 400 !important;
}

.website-design {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-direction: column !important;
}

.website-design h1 {
  font-size: 60px !important;
}

.website-design-img {
  filter: blur(3px) brightness(70%);
}

.water-filter {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.water-filter-img {
  filter: blur(1px) brightness(70%);
}

.water-filter h1,
p {
  font-weight: 400 !important;
}

@media (max-width: 1181px) {
  .carousel-item {
    width: 100vw;
    height: 85vh;
  }
}


@media (max-width: 811px) {
  .carousel-item {
    width: 100vw;
    height: 62vh;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    height: 90vh;
    width: 100vw;
    overflow: hidden;
  }

  .carousel-inner .carousel-caption h1 {
    font-size: 30px !important;
    text-align: center;
  }

  .red,
  .blue {
    font-weight: 400 !important;
    font-size: 40px !important;
  }

  .carousel-inner p {
    font-size: 15px;
  }

  .os>h1 {
    color: black;
    padding-top: 150px;
    font-weight: 400 !important;
  }

  .rent {
    padding-top: 150px;
    font-weight: 500 !important;
  }

  .carousel-item img {
    height: 100%;
  }

  .home-page-button:hover {
    padding: 7px 20px;
    letter-spacing: 0px;
  }

  .cctv-text p {
    display: none;
  }

  .cctv-text h1 {
    padding-bottom: 70px 0px;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    height: 75vh;
  }
}

@media (max-width: 376px) {

  .carousel-item {
    height: 95vh;
  }

  .carousel-item img {
    height: 95vh;
  }

  .carousel-inner {
    overflow: hidden;
  }

  .carousel-inner .carousel-caption h1 {
    font-size: 30px !important;
    text-align: center;
  }

  .red,
  .blue {
    font-weight: 400 !important;
    font-size: 40px !important;
  }

  .carousel-inner p {
    font-size: 15px;
  }

  .os>h1 {
    color: black;
    padding-top: 150px;
    font-weight: 400 !important;
  }

  .rent {
    padding-top: 150px;
    font-weight: 500 !important;
  }


  .home-page-button:hover {
    padding: 7px 20px;
    letter-spacing: 0px;
  }

  .cctv-text p {
    display: none;
  }

  .cctv-text h1 {
    padding-bottom: 70px 0px;
  }
}

/*--------------------------------------------------------------
# About section 
--------------------------------------------------------------*/
#about-us-section {
  display: flex;
  justify-content: center;
  background-color: black;
  color: white;
  overflow: hidden;
  height: 110vh;
}

.abt-txt {
  margin: 100px 0px 60px;
  text-align: center;
}

#about-us-section p {
  padding: 0px 60px;
  font-size: 20px;
}

#about-us-section .image {
  padding: 50px;
}

@media (max-width: 1181px) {
  #about-us-section {
    height: 100vh;
  }

  #about-us-section p {
    padding: 0px 10px;
    text-align: justify;
  }
}

@media (max-width: 980px) {
  #about-us-section {
    display: block;
    height: fit-content;
    padding: 0px 70px;
  }

  #about-us-section p {
    text-align: justify;
  }

  #about-us-section .image {
    padding: 20px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  #about-us-section {
    display: block;
    height: fit-content;
    padding: 0px;
  }

  #about-us-section p {
    padding: 0px 30px;
    font-size: 18px;
    text-align: center justify;
  }
}

@media (max-width: 376px) {
  #about-us-section {
    height: 110vh;
    padding: 0px;
  }

  .abt-txt {
    margin: 30px 0px 40px;
  }

  #about-us-section p {
    padding: 0px 20px;
    font-size: 15px;
  }
}

@media (max-width: 325px) {
  #about-us-section {
    height: 125vh;
  }

  .abt-txt {
    margin: 30px 0px 40px;
  }

  #about-us-section p {
    padding: 0px 20px;
    font-size: 15px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# windows service section 
--------------------------------------------------------------*/

p.windows-service {
  font-size: 20px;
  font-weight: 500;
}

p.windows-service strong {
  opacity: 0.8;
}

.windows-service-container {
  height: 110vh;
  width: 100%;
  background-image: url(../img/products/Nitya-windows.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  background-position: center;
  display: flex;
  align-items: top;

}

.appointment,
.learn-more {
  font-size: 20px;
  text-decoration: none;
  height: fit-content;
  width: fit-content;
  color: orangered;
}

.appointment:hover,
.learn-more:hover {
  text-decoration: underline;
  color: blue;
  transition: 0.5s;
}

.fa-chevron-right {
  font-size: 10px;
}

@media (max-width: 1181px) {
  .windows-service-container {
    margin: 0px 0px 0px;
    padding: 0px;
    height: 100vh;
    background-size: 100%;
    width: 100vw;
    background-size: cover;
    background-position: center;
  }

  .window-text {
    margin-top: 200px;
  }
}

@media (max-width: 811px) {
  .windows-service-container {
    margin: 70px 0px 0px;
    height: 80vh;
  }

  .window-text {
    margin-top: 250px;
  }
}



@media (max-width: 768px) {
  .windows-service-container {
    height: 110vh;
    background-size: cover;
    background-position: center;
  }

  .windows-service-container h1 {
    font-size: 30px;
  }

  p.windows-service {
    font-size: 17px;
  }

  .window-text {
    margin-top: 40px;
  }
}

@media (max-width: 481px) {
  .windows-service-container {
    margin: 200px 0px 0px;
    padding: 0px;
    height: 100vh;
    background-size: 100vh;
    width: 100vw;
    background-position: center;
  }

  p.windows-service {
    text-wrap: balance;
    margin-top: 30px;
    font-size: 15px;
  }

  .windows-service-container h1 {
    font-size: 35px;
    margin-top: 70px;
  }

  .window-text {
    margin-top: 100px;
  }
}

@media (max-width: 376px) {
  .windows-service-container {
    margin: 0px;
    padding: 0px;
    height: 100vh;
    background-size: 100vh;
    width: 100vw;
    background-position: center;
  }

  .windows-service-container h1 {
    font-size: 25px;
    margin-bottom: 40px;
  }

  .windows-service-container p {
    font-size: 15px;
  }
}

@media (max-width: 326px) {
  .windows-service-container {
    height: 130vh;
  }
}

/*--------------------------------------------------------------
# apple service section 
--------------------------------------------------------------*/

p.apple-service {
  font-size: 20px;
  font-weight: 500;
  color: white !important;
}

p.apple-service strong {
  opacity: 0.8;
}

.apple-service-container .text-box {
  margin-left: 30px;
}

.apple-service-container {
  padding: 200px 0px;
  height: 130vh;
  background-image: url(../img/products/Nitya-laptop.jpg);
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.apple-service-container .learn-more {
  display: block;
  margin: 0 auto;
}

.apple-service-container .appointment {
  margin-left: 43%;
}

@media (max-width: 1181px) {
  .apple-service-container {
    margin: 50px 0px 0px;
    height: 100vh;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100vw;
    background-position: center;
    background-color: rgba(54, 235, 255, 0.663);
    background-blend-mode: multiply;
    background-size: cover;
  }

  p.apple-service {
    color: white;
  }

  .apple-service-container .appointment {
    margin-left: 430px;
  }
}

@media (max-width: 811px) {
  .apple-service-container {
    height: 70vh;
    margin-top: 100px;
  }

  .apple-text-box h1 {
    text-wrap: balance;
    text-align: center;
  }

  p.apple-service {
    font-size: 18px;
  }

  .apple-service-container .appointment {
    margin-left: 280px;
  }
}

@media (max-width: 769px) {
  .apple-service-container {
    height: 100vh;
    background-position: center;
    background-size: cover;
  }

  .apple-service-container h1 {
    font-size: 30px;
  }

  p.apple-service {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .apple-service-container {
    height: 80vh;
    margin-top: 50px;
    padding: 0px;
    background-color: rgba(0, 0, 0, 0.322);
    background-size: 100vh;
    background-position: center;
    margin-bottom: 0px;
  }

  .apple-service-container h1 {
    font-size: 30px;
    margin-bottom: 40px;
    padding: 10px;
  }

  .apple-service-container p {
    font-size: 15px;
    padding: 10px;
    text-wrap: balance;
    text-align: center;
  }

  .apple-service-container .learn-more {
    display: block;
    margin-left: 110px;

  }

  .apple-service-container .appointment {
    margin-left: -15px;
  }

  .apple-service-container .text-box {
    text-align: center;
    margin-left: 0px;
  }
}

@media (max-width: 376px) {
  .apple-service-container {
    height: 110vh;
    padding: 0px;
  }

  .apple-service-container h1 {
    font-size: 25px;
  }

  .apple-service-container p {
    text-align: center;
  }

  .apple-service-container .learn-more {
    margin-left: 90px;
  }

  .apple-service-container .appointment {
    margin-left: 0px;
  }

  .apple-service-container .text-box {
    text-align: center;
    margin-left: 0px;
  }
}

@media (max-width: 326px) {
  .apple-service-container {
    height: 130vh;
    padding: 0px;
    background-size: 120vh;
  }

  .apple-service-container p {
    text-align: center;
    width: 80vw;
    margin: 0 auto;
    color: rgb(245, 245, 245) !important;
  }
}

/*--------------------------------------------------------------
# Service 
--------------------------------------------------------------*/

.main-service-container {
  margin: 20rem 0px 100px;
  overflow: hidden;
}

.service-text-box {
  margin: 30px 0px 100px;
}

.service-text-box h1 {
  font-size: 60px;
}

.service-section {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.service-section p {
  text-align: center;
}

.Liquid-Damage,
.Custom-Desktop,
.IT-Support,
.Data-Recovery {
  border-radius: 5px;
  box-shadow: 2px 2px 25px rgb(74, 73, 73);
  height: 80vh;
  width: 45vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: top;
  margin: 5px;
}

.Liquid-Damage {
  background: url(../img/products/Nitya-LiquidDamage.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #a6a0a0;
  background-blend-mode: multiply;
}

.service_heading {
  margin: 200px 0px 20px;
  font-size: 40px;
}

.Liquid-Damage p {
  font-size: 20px;
}

.Custom-Desktop {
  background: url(../img/products/Nitya-Custom-PC.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f849bbb4;
  background-blend-mode: multiply;
}

.Custom-Desktop p {
  font-size: 20px;
}

.Data-Recovery {
  background: url(../img/products/Nitya-Data-Recovery.jpg);
  background-size: cover;
  background-color: #4f5052;
  background-blend-mode: multiply;
}

.IT-Support {
  background: url(../img/products/Nitya-IT-Support.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #5a88a1;
}

@media (max-width: 1181px) {

  .Liquid-Damage,
  .Custom-Desktop,
  .IT-Support,
  .Data-Recovery {
    height: 65vh;


    .service_heading {
      margin: 100px 0px 20px;
      font-size: 40px;
    }
  }

  @media (max-width: 811px) {

    .Liquid-Damage,
    .Custom-Desktop,
    .IT-Support,
    .Data-Recovery {
      height: 45vh;
    }

    .main-service-container {
      margin: 10rem 0px 100px;
      overflow: hidden;
    }

    .service_heading {
      margin: 90px 0px 20px;
      font-size: 30px;
    }

    .Liquid-Damage p,
    .Custom-Desktop p,
    .IT-Support p,
    .Data-Recovery p {
      font-size: 15px;
      text-align: justify;
      padding: 10px;
      margin: 0px;
    }
  }

  @media (max-width: 768px) {
    .service-text-box h1 {
      font-size: 40px;
    }

    .service_heading {
      font-size: 30px !important;
    }

    .Liquid-Damage,
    .Custom-Desktop,
    .IT-Support,
    .Data-Recovery {
      height: 60vh;
      justify-content: end;
      text-align: justify;
      padding-bottom: 100px;
    }

    .Liquid-Damage p,
    .Custom-Desktop p,
    .IT-Support p,
    .Data-Recovery p {
      font-size: 15px;
      text-align: justify;
      padding: 10px;
      margin: 0px;
    }

    .Liquid-Damage br,
    .Custom-Desktop br,
    .IT-Support br,
    .Data-Recovery br {
      display: none;
    }
  }

  @media (max-width: 450px) {

    .main-service-container {
      margin: 3rem 0px 0px;
    }

    .service-text-box h1 {
      font-size: 30px !important;
    }
  }

  @media (max-width: 376px) {

    .main-service-container {
      margin: 0px;
    }

    .service-section {
      width: 95vw;
      /* height: 200vh; */
      margin: 0 auto;
    }
  }

  .service-section {
    display: block;
  }

  .Liquid-Damage,
  .Custom-Desktop,
  .IT-Support,
  .Data-Recovery {
    height: 70vh;
    width: 100%;
    justify-content: center;
    border-radius: 0px;
    margin: 15px 0px;
  }

  .service_heading {
    font-size: 30px;
  }

  .service-section p {
    font-size: 20px;
    text-align: justify;
  }

  .Liquid-Damage p,
  .Custom-Desktop p,
  .IT-Support p,
  .Data-Recovery p {
    font-size: 15px;
    text-wrap: balance;
    text-align: center;
    padding: 10px;
    margin: 0px;
  }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #2b2b2b;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #aaaaaa;
}

.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #e03a3c;
  content: "/";
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
#clients {
  height: 60vh;
  margin-top: 100px;
}

.clients .heading h1 {
  font-size: 50px;
  color: white;
}

.clients .swiper-pagination {
  margin-top: 70px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: grey;
  opacity: 1;
  border: 1px solid white;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: white;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  opacity: 1;
  filter: none;
}

@media (max-width: 768px) {
  #clients {
    height: 100vh;
    margin-top: 100px;
  }

  #clients h1 {
    font-size: 30px !important;
  }
}

@media (max-width: 450px) {
  #clients {
    height: 60vh;
    margin-top: 100px;
  }

  #clients h1 {
    font-size: 30px !important;
  }

  .clients .swiper-slide img {
    object-fit: contain;
    width: 70%;
    mix-blend-mode: darken;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 80px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.counts .count-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: #e03a3c;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #111111;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.count-box {
  background-color: #ffffff;
}

@media (max-width: 811px) {
  .hour-count-box {
    margin-left: 180px;
  }
}

@media (max-width: 768px) {
  #counts {
    margin-top: 70px;
    height: 140vh;
  }

  .hour-count-box {
    margin-left: 0px;
  }
}

@media (max-width: 450px) {
  #counts {
    margin-top: 70px;
    height: 60vh;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

#testimonials {
  margin-top: 200px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  min-height: 250px;
  box-shadow: 0px 2px 12px rgb(0, 0, 0);
  position: relative;
  background: #fff;
  border-radius: 15px;
  transition: 0.5s;
}

.testimonials .testimonial-item:hover {
  background: #cfcfcf7a;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #222222;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fceaea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 30px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: grey;
  opacity: 1;
  border: 1px solid white;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: white;
}

/*--------------------------------------------------------------
# help
--------------------------------------------------------------*/

.help-container-main {
  height: 100vh;
  width: 100%;
  background-color: #111111;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.help-sub-container {
  background: url(../img/products/contact\ help.jpg);
  height: 90%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgb(126, 225, 243);
  background-blend-mode: multiply;
  background-position: center;
}

.help-text {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  padding-left: 100px;
}

.help-text p {
  font-size: 17px;
}

@media (max-width: 1181px) {
  .help-container-main {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .help-container-main {
    height: 90vh;
  }
}

@media (max-width: 450px) {
  .help-text {
    padding-left: 10px;
  }

  .help-text h1 {
    font-size: 40px;
    text-wrap: balance;
    text-align: center;
  }

  .help-text p {
    font-size: 15px;
  }

  .help-container-main {
    height: 90vh;
    width: 100vw;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

#contact {
  margin-top: 120px;
  background: url(../img/products/motherboard.jpg);
}

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px 0 32px 0;
  border-radius: 4px;
}

.contact .info-box i {
  font-size: 32px;
  color: #e03a3c;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f8d4d5;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 4px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 25px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #111111;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #e03a3c;
  border: 0;
  padding: 10px 32px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #e35052;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111111;

}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1b1b1b;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #e03a3c;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #e03a3c;
  bottom: 0;
  left: 0;
}


#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  text-align: center;
}

.credits a {
  color: #e35052;
  text-decoration: none;
}

.credits a:hover {
  color: yellow;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2b2b2b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links .twitter:hover {
  background: #1da1f2;
  color: #fff;
  text-decoration: none;
}

#footer .social-links .facebook:hover {
  background: #4267b2;
  color: #fff;
  text-decoration: none;
}

#footer .social-links .instagram:hover {
  background: #e1306c;
  color: #fff;
  text-decoration: none;
}

#footer .social-links .whatsapp:hover {
  background: #7eef8d;
  color: #fff;
  text-decoration: none;
}

#footer .social-links .linkedin:hover {
  background: #4267b2;
  color: #fff;
  text-decoration: none;
}

.footer_logo {
  height: 150px;
  width: 180px;
}

.address {
  font-size: 20px;
  text-align: center;
}

.location-map {
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  background-color: rgb(37, 37, 37);
  width: 300px;
  margin-left: 100px;
  padding: 30px 40px;
  border-radius: 10px;
}

@media (max-width: 1081px) {
  .location-map {
    width: 300px;
    margin-left: 20px;
    padding: 30px 40px;
    border-radius: 10px;
  }

}


@media (max-width: 811px) {
  .location-map {
    width: 60vw;
    margin: 50px auto;
    padding: 30px 40px;
    border-radius: 10px;
  }

  .location-map iframe {
    width: 50vw;
    height: 230px;
  }

  .address {
    font-size: 18px;
    margin-bottom: 30px;
  }

}

@media (max-width: 450px) {
  #footer .footer-top .container .row {
    text-align: center;
  }

  .address {
    font-size: 17px;
    margin-bottom: 30px;
  }

  .location-map {
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    background-color: rgb(37, 37, 37);
    width: auto;
    margin: 0px auto;
    padding: 30px 40px;
    border-radius: 10px;
  }

  .location-map iframe {
    width: 70vw;
    height: 230px;
  }
}

@media (max-width: 326px) {
  #footer .footer-top .container .row {
    text-align: center;
  }

  .address {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .location-map {
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    background-color: rgb(37, 37, 37);
    width: auto;
    margin: 0px auto;
    padding: 30px 40px;
    border-radius: 10px;
  }

  .location-map iframe {
    width: 85vw;
    height: 180px;
  }


}



/*--------------------------------------------------------------
# About us page css
--------------------------------------------------------------*/

.about-page-main {
  background: url(../img/products/about_us.jpg);
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-color: #f4d438;
  background-blend-mode: multiply;
  overflow: hidden;
}

.sub-about-us {
  height: 100%;
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sub-about-us .main-text {
  font-weight: 900 !important;
  font-size: 80px;
}

.sub-about-us p {
  font-size: 30px;
  text-align: justify;
}

.red {
  color: red;
}

.blue {
  color: blue;
}

/* second section css */
.second-Section {
  height: 60vh;
  width: 100%;
  background-color: rgb(21, 19, 19);
  display: flex;
  justify-content: center;
  align-items: center;
  color: whitesmoke;
  overflow: hidden;
}

.second-Section p {
  font-size: 18px;
  text-align: center;
  text-wrap: balance;

}

/* third section */

.third-section-main {
  height: 90vh;
  background-color: rgb(21, 19, 19);
  overflow: hidden;
  padding-bottom: 70px;
  overflow: hidden;
}

.third-sub-section p {
  font-size: 18px;
}

.third-sub-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sub-section-item {
  width: 40%;
  margin: 10px;
  padding: 0px 30px;
  background-color: rgb(170, 164, 164);
  text-align: justify;
  box-shadow: 1px 1px 5px rgb(212, 212, 212);
  height: 60vh;
}

.button-box {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.third-section-main .button-box .home-page-button {
  border: 3px solid rgb(0, 132, 255);
  border-radius: 5px;
}

.third-section-main .button-box .home-page-button a {
  color: rgb(0, 132, 255);
}

.third-section-main .button-box .home-page-button:hover {
  background-color: rgb(39, 158, 237);
}

.third-section-main .button-box .home-page-button:hover a {
  color: black;
}

/* fourth section css */

.fourth-section-main {
  height: fit-content;
  background-color: rgb(21, 19, 19);
  padding-bottom: 90px;
  overflow: hidden;
}

.fourth-sub-section {
  background-color: rgb(170, 164, 164);
  box-shadow: 1px 1px 5px rgb(212, 212, 212);
  padding: 40px;
  font-size: 18px;
  text-align: justify;
}

.fourth-section-main .button-box .home-page-button {
  border: 3px solid rgb(0, 132, 255);
  border-radius: 5px;
}

.fourth-section-main .button-box .home-page-button a {
  color: rgb(0, 132, 255);
}

.fourth-section-main .button-box .home-page-button:hover {
  background-color: rgb(39, 158, 237);
}

.fourth-section-main .button-box .home-page-button:hover a {
  color: black;
}

@media (max-width: 1180px) {
  .about-page-main {
    height: 80vh;
  }

  .sub-about-us .main-text {
    font-size: 70px;
  }

  .sub-about-us p {
    font-size: 35px;
  }

  .second-Section {
    height: 70vh;
  }

  .second-sub-section {
    height: 100%;
    padding-top: 70px;
  }

  .second-sub-section h1 {
    padding-top: 70px;
    font-size: 35px;
  }

  .second-sub-section p {
    margin-top: 50px;
    font-size: 20px;
  }

  .second-sub-section p br {
    display: none;
  }
}


@media (max-width: 811px) {
  .about-page-main {
    height: 60vh;
  }

  .second-Section {
    height: 60vh;
  }

  .sub-about-us .main-text {
    font-size: 50px;
  }

  .sub-about-us p {
    font-size: 28px;
  }

  .second-sub-section p {
    text-align: justify;
    padding: 0px 30px;
  }

  .second-sub-section p br {
    display: none;
  }

  .third-section-main {
    height: 80vh;
  }

  .third-sub-section {
    display: block;
  }

  .third-sub-section .sub-section-item {
    width: 98%;
    margin: 20px 0px;
    padding: 50px 15px;
    height: fit-content;
  }

  .fourth-section-main {
    padding: 70px;
  }

  .fourth-sub-section p {
    margin-top: 40px;
    text-align: justify;
  }

}

@media (max-width: 450px) {
  .about-page-main {
    background-position: center;
    background-size: cover;
    height: 80vh;
  }


  .sub-about-us .main-text {
    font-weight: 500 !important;
    font-size: 40px;
    text-align: center;
  }

  .sub-about-us .main-text>.red,
  .blue {
    font-weight: 500 !important;
  }

  .sub-about-us {
    padding-top: 50px;
  }

  .sub-about-us p {
    font-size: 25px;
  }

  .second-Section {
    height: fit-content;
  }

  .second-sub-section {
    height: 100%;
    padding-top: 30px;
  }

  .second-sub-section h1 {
    font-weight: 600;
    font-size: 30px;
  }

  .second-sub-section p {
    font-size: 18px;
    text-align: justify;
    padding: 10px;
    width: 90vw;
    margin: 50px auto;
  }

  .third-section-main {
    height: fit-content;
  }

  .fourth-section-main {
    padding: 20px;
  }

  .fourth-sub-section p {
    text-align: justify;
  }

}


@media (max-width: 376px) {
  .about-page-main {
    height: 100vh;
  }

  .sub-about-us {
    justify-content: top;
    padding-top: 0px;
  }

  .second-sub-section p {
    font-size: 18px;
    text-align: center;
    padding: 10px;
    width: 90vw;
    margin: 50px auto;
  }

  .fourth-sub-section p {
    text-align: justify;
    margin: 0px auto;
  }

}

@media (max-width: 326px) {
  .about-page-main {
    height: 100vh;
  }
}