body {
  font-family: "Roboto", sans-serif;
  background: white;
  margin: 0;

}


 .navbar{
    margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fafafa;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  border-radius: 2px;

  }
  .navbar__menu {
    

    display: flex;
    justify-content: space-between;
  align-items: center;
  padding: 10px;
   
  }

.menu a {
  color: #333;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
}



.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.menu__item {
  display: inline-block;
  position: relative;
}

.menu__link {
  display: block;
  padding: 10px 10px;
  color: #fff;
  /* Navbar link color */
  text-decoration: none;
  margin-left: 20px;
  margin-top: 5px;
  transition: all 0.3s ease-in-out;
}

.main-logo img {
  width: 200px;
  padding-right: 50px;

}

.menu__link:hover {
  color: #af0101;
  transform: scale(1.1);
}

/* Hide dropdown menu by default */
.dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  /* Dropdown background color */
  border-top: 2px solid #fff;
  /* Dropdown border */
  padding: 10px;

  z-index: 1;

  /* Ensure dropdown is above other elements */
  a {
    font-size: 15px;
  }
}

/* Show dropdown menu on hover */
.menu__item:hover .dropdown__menu {
  display: block;
}

/* Show nested dropdown menu on hover */
.dropdown__menu li:hover .dropdown__menu--right {
  display: block;
}

/* Style for dropdown items */
.dropdown__menu li {
  list-style: none;
  position: relative;
}

.main-logo2 img {
  display: none;

}

/* Style for nested dropdown items */
.dropdown__menu--right {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  background-color: #ffffff;
  /* Nested dropdown background color */
  border-top: 2px solid #fff;
  /* Nested dropdown border */
  padding: 5px 10px;
  z-index: 1;

  /* Ensure nested dropdown is above other elements */
  a {
    font-size: 15px;
  }

  transition: all 0.9s ease-in-out;
}

/* Style for links */
.dropdown__item {
  display: block;
  text-decoration: none;
  color: #fff;
  /* Link color */
  padding: 5px 10px;
}

/* Hover effect for links */
.dropdown__item:hover {
  color: #b20603;
  transform: scale(1.01);
  /* Hover background color */
}

/* Mobile styles */
.menu__toggle {
  display: none;
  /* Button background color */
  /* Button text color */
  border: none;
  padding: 10px;
  font-size: 24px;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;

  }

  .menu__item {
    width: 100%;

  }

  .menu__toggle {
    display: block;
  }

  .menu.active {
    display: flex;

  }

  .navbar {
    position: static;
  }

  .navbar__menu {
    margin: 0;
    /*padding: 0;*/
    border-radius: 0;
  }

  .main-logo img {
    display: none;
  }

  .main-logo2 img {
    display: block;
    width: 100px;

  }

  .navbar button {
    margin-left: 10px;
    margin-bottom: 10px;
    color: #a32d2d;
    background-color: #f9f8f8;
    border: none;
  }

  .dropdown__menu,
  .dropdown__menu--right {
    position: relative;
    left: 0;
    width: 100%;
  }

}

@media only screen and (min-width: 769px) {
  .toggle-btn {
    display: none;

  }

  .menu {
    display: block;
  }
}


@media(max-width:768px) {
  .loading-card-top {
    display: grid;
    grid-template-columns: auto;
  }
}

.breadcrumbs-container {
  max-width: 1500px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.breadcrumbs {
  margin-bottom: 50px;
}

.banner-bg{
  background: linear-gradient(rgba(0, 0, 0, 0.417), rgba(0, 0, 0, 0.553)), 
           url(https://avoornetworks.com/hardware-repairs/network-repairs/assets/hardware-repair-bg.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
width: 100%;
}
 .banner{
    
   height: 480px;
   padding: 50px;
   max-width: 1500px;
   margin-left: auto !important;
 margin-right: auto !important;
   margin-bottom: 10px;
   /* For browsers that do not support gradients */
   
 display: grid;
   grid-template-columns: auto auto;
   img{
     width: 100%;
    
    margin-top: 40px;
   }
   h1{
     font-size: 80px;
     background: -webkit-linear-gradient(#7ed2f3, #ff8dff,#e98787);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   }
   p{
     font-size: 22px;
     margin-top: -40px;
     color: white;
   }
   button{
     
     border: none;
     border-radius: 20px;
     padding:5px 10px;
     background: linear-gradient(to right, rgb(36, 152, 235) , rgb(238, 68, 94));
   }
   button a{
 text-decoration: none;
 color:#e5e5e5;
 font-weight: 500;
 font-size: 20px;
 
   }
 }

.banner-left {
  width: 100%;
}

.banner-right img {
  margin-top: 45%;
}

@media(max-width:1000px) {
  .banner {

    h1 {
      font-size: 30px;
    }

    p {
      margin: 0;
    }

    img {
      margin-top: 10px;

    }
  }
}

@media(max-width:768px) {
  .banner {
    height: 280px;
    padding: 10px;

    h1 {
      font-size: 25px;
    }

    p {
      font-size: 14px;
      margin: 0;
    }

    button {
      margin-top: 10px;
    }

    button a {

      font-size: 12px;
    }
  }
  .banner-right img {
  margin-top: 70%;
}
}

.breadcrumbs-title h1 {
  font-size: 40px;
  font-weight: bold;
  background-color: red;
  /* For browsers that do not support gradients */
  background-image: linear-gradient(to bottom left, #861c21, #e33539);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-top: 30px;
  margin-left: 30px;

}

.breadcrumbs {
  border: 1px solid #cbd2d9;
  border-radius: 0.3rem;
  display: inline-flex;
  overflow: hidden;
  margin-top: 30px;
  height: 25px;
  margin-left: 30px;

}

.breadcrumbs__item {
  background: #fff;
  color: #333;
  outline: none;
  padding: 0.35em 0.35em 0.35em 1.25em;
  position: relative;
  text-decoration: none;
  transition: background 0.2s linear;

}

.breadcrumbs__item:hover:after,
.breadcrumbs__item:hover {
  background: #edf1f5;
}

.breadcrumbs__item:focus:after,
.breadcrumbs__item:focus,
.breadcrumbs__item.is-active:focus {
  background: #8e0028;
  color: #fff;
}

.breadcrumbs__item:after,
.breadcrumbs__item:before {
  background: white;
  bottom: 0;
  clip-path: polygon(50% 50%, -50% -50%, 0 100%);
  content: "";
  left: 100%;
  position: absolute;
  top: 0;
  transition: background 0.2s linear;
  width: 1em;
  z-index: 1;
}

.breadcrumbs__item:before {
  background: #cbd2d9;
  margin-left: 1px;
}

.breadcrumbs__item:last-child {
  border-right: none;
  background: #8e0028;
  color: white;

}

.breadcrumbs__item.is-active {
  background: #edf1f5;
}

.breadcrumbs a {
  font-size: 12px;


}

.footer-bg {
  background-color: #000000;
}

.footer {
  max-width: 1500px;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

.footer-column {
  padding: 10px;
  text-align: left;
}

.footer-column h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #8e0028;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #6a60f9;
}

@media(max-width:768px) {
  .footer {
    display: block;
  }

  .newsletter-container {
    width: 70%;
  }
}

.address {
  font-size: 14px;
  color: #ffffff;
}

.adressinfo {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
}

address a {
  color: #ffffff;
  text-decoration: none;
}

@media(max-width:768px) {
  .main-container {
    grid-template-columns: auto;
    padding: 0;
    margin: 0;
  }

  .main-content {
    padding: 20px;

  }

}



.subscription-description {
  font-size: 1.1rem;
  color: #636363;
  margin-top: 10px;
}

.subscription-title {
  text-transform: uppercase;
  font-weight: 900;
  color: #4a4a4a;
}

.header-image {
  width: 100%;
  height: auto;
  margin-top: 45px;
}

.subscription-container {
  background-color: white;
  text-align: center;
  width: 769px;
  height: 486px;
  border-radius: 50px;
  margin: 50px auto;
}

@media only screen and (max-width: 768px) {

  .header-image {
    margin-top: 75px;
    width: 80%;
  }

  .form-container {
    display: grid;
  }

  .input-wrapper {
    margin-right: 0;
  }

  .submit-button {
    margin-top: 16px;
  }

  .subscription-description {
    font-size: 1rem;
    margin: 0 35px;
  }

  .subscription-title {
    font-size: 1.5rem;
  }

  .form-container {
    margin-top: 25px;
  }

  .subscription-container {
    border-radius: 15px;
    width: 100%;
  }
}

.clients {
  max-width: 1500px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.clients h4 {
  font-family: "Saira", sans-serif;
  font-size: 40px;
  text-align: center;
  color: #a40303;
}

.clients-image {
  display: grid;
  grid-template-columns: auto auto auto auto;
  margin-left: 7%;
  width: 90%;

}

.clients-image2 {

  display: grid;
  grid-template-columns: auto auto auto;
  width: 70%;
  margin-left: 20%;
  margin-top: 50px;
}

.main-content {
  max-width: 1500px;
  margin-left: auto !important;
  margin-right: auto !important;

  margin-top: -100px;
  margin-bottom: -100px;


  h4 {
    font-size: 30px;
  }

  p {
    font-size: 20px;
    text-align: justify;
  }
}

.card-bg {
  background-color: #f5f4ff;
}

.cisco1 {
  max-width: 1500px;
  margin-left: auto !important;
  margin-right: auto !important;


  display: grid;
  grid-template-columns: auto auto;

  ul {
    list-style-type: none;
    padding: 0;
  }

  li {
    margin: 5px 0;
  }

  .section {
    margin-bottom: 20px;
    h4,h3,h2{
  font-size: 25px;
}
  }

  .highlight {
    font-weight: bold;
  }
}

.cisco2 {
  max-width: 1500px;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid;
  grid-template-columns: auto auto;

  ul {
    list-style-type: none;
    padding: 0;
  }

  li {
    margin: 5px 0;
  }

  .section {
    margin-bottom: 20px;
  }

  .highlight {
    font-weight: bold;
  }

  p {
    font-size: 18px;
    line-height: 27px;
    color: #484747;
  }
}

.cisco-left {

  padding: 50px;

  h4,h3,h2 {
    font-size: 25px;
  }

  p {
    font-size: 18px;
    line-height: 27px;
    color: #484747;
  }

  li {
    color: #484747;
    font-size: 18px;
  }

}

.cisco-right {
  padding: 50px;
  h4,h3,h2{
  font-size: 25px;
}

}

.cisco-products li {
  list-style-type: disc;
  font-size: 18px;
  color: #484747;
}

.cisco-right img {
 
  width: 99%;
  height: 70%;
}

.electronics-repair img {
  width: 80%;
  margin-left: 20%;
}

.out-warrenty {
  padding: 50px;

  h4 {
    font-size: 30px;
  }

  p {
    font-size: 20px;
  }
}

.cisco-products {
  padding: 50px;


  h2 {
    font-size: 25px;
  }

  p {
    font-size: 18px;
  }
  ul{
    font-size: 16px;
    line-height: 27px;
    width: 70%;
  }
}

@media(max-width:768px) {
  .cisco1 {
    grid-template-columns: auto;
    margin: 0;

  }

  .cisco2 {
    grid-template-columns: auto;
    margin: 0;

  }

  .main-content {
    margin: 0;
    margin-top: -80px;

    padding: 0;
  }

  .cisco-left {
    padding: 25px;

  }

  .cisco-right {
    padding: 25px;

  }

  .cisco-right img {
    margin-top: 0;

  }

  .clients {
    margin-left: 5%;
  }

  .clients img {
    padding-bottom: 20px;
  }

  .clients-image {
    grid-template-columns: auto auto;
    width: 100%;
    margin: 0;

  }

  .clients-image2 {
    grid-template-columns: auto auto;
    width: 100%;
    margin: 0;
  }

  .electronics-repair img {
    margin-left: 10%;
  }
}

.main-left {

  padding: 20px 50px;
}

.office {
  margin-left: 50px;
  height: 300px;
  padding: 20px;

}

@media(max-width:768px) {
  .main-left {

    grid-template-columns: auto;
    padding: 20px 50px;
  }

  .office {
    margin-left: 0;
    margin-top: 150px;
  }

}



.deal-image img {
  width: 70%;
  margin-top: 30px;
  margin-left: 10%;
}

@media(max-width:768px) {
  .container {

    width: 88%;
    /* padding: 30px; */

  }

  .deal-image img {
    width: 50%;
    margin-top: -15%;
    margin-left: 20%;
  }
}

.asia-img img {
  width: 70%;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 100px;
}

@media(max-width:400px) {
  .container {
    width: 80%;
    box-shadow: none;
  }

  .clients-image {
    grid-template-columns: auto;
    width: 60%;
    margin: 0;
    padding: 0;
    margin-left: 20%;

  }

  .clients-image2 {
    grid-template-columns: auto;
    width: 60%;
    margin: 0;
    padding: 0;
    margin-left: 15%;
  }

  .main-left {

    padding: 20px;
  }

  .office {

    margin: 0;
    margin-top: 150px;
    height: 300px;
    padding: 0;

  }

  .asia-img img {
    margin-left: 10%;
  }
}

.partner-container h4 {
  font-family: "Saira", sans-serif;
  font-size: 40px;
  text-align: center;
  color: #a40303;
}

/* Slider */
.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.faq-title {
    font-size: 2em;
    margin: 0.4em 0;
    padding-left: 5%;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* FAQ item animation */
.wow {
    animation: fadeInLeft 0.5s ease-in-out;
}

/* FAQ item fade in animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Details and summary styling */
details {
    margin-bottom: 10px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid hsl(0, 82%, 76%);
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

summary {
    font-weight: 450;
    cursor: pointer;
    font-size: 20px;
}

summary::marker {
    font-size: 25px;
    color: #ae0707;
}

summary:hover {
    color: #b31e00;
}

summary h3 {
    font-family: "Roboto", sans-serif;
    display: inline;
    font-size: inherit;
    margin: 0;
    font-weight:400;
}
summary p{
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}

.faq-content {
    margin-top: 10px;
}

/* Wow effect delay */
.wow[data-wow-delay] {
    animation-delay: var(--wow-delay, 0s);
}

.wow[data-wow-delay=".3s"] {
    --wow-delay: 0.3s;
}


/* FAQ container styling */
.faq-title {
  text-align: center;
  font-size: 25px;

  padding-top: 60px;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  margin-top: -10px;
  padding: 35px;
}
/* FAQ item animation */
.wow {
  animation: fadeInLeft 0.5s ease-in-out;
}

/* FAQ item fade in animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Details and summary styling */
details {
  margin-bottom: 20px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid hsl(0, 82%, 76%);
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

summary {
  font-weight:450;
  cursor: pointer;
  font-size: 16px;
}

summary::marker {
  font-size: 25px;
  color: #ae0707;
}

summary:hover {
  color: #b31e00;
}
summary h3 {
    font-family: "Roboto", sans-serif;
    display: inline;
    font-size: inherit;
    margin: 0;
    font-weight:400;
}
summary p{
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}



/* Wow effect delay */
.wow[data-wow-delay] {
  animation-delay: var(--wow-delay, 0s);
}

.wow[data-wow-delay=".3s"] {
  --wow-delay: 0.3s;
}



.split-container{
  padding: 10px 50px;
  max-width: 1500px;
    margin-left: auto !important;
    margin-right: auto !important;
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto auto;
  
  
}


.faq-body{
  margin-left: 20%;
  width: 480px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: -10px;
}
@media(max-width:1268px){
  .faq-body{
    margin-left: 10%;
  }
}
@media(max-width:1168px){
  .faq-body{
    margin-left: 5%;
  }
}
@media(max-width:1068px){
  .faq-body{
    margin-left: 0;
  }
  .container{
    width: 400px;
  }
}

.container {
  margin-left: 5%;
  width: 480px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  
  }
 
.container h5 {
  text-align: center;

  font-size: 25px;
}
label {
  display: block;
  margin: 15px 0 5px;
  font-size: 14px;
  font-family: "Roboto", sans-serif; 
}
input, select, textarea {
  width: 95%;
  padding: 10px;

  border: 1px solid hsl(0, 82%, 76%);
  border-radius: 4px;
  
  
}


.container button {
  background: linear-gradient(45deg, #fb4764, #f88d5f) no-repeat;
  border: none;
  outline: none;
  cursor: pointer;
  color: white;
  margin-top: 20px;
  margin-left: 35%;
  padding: 11px 35px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
}

.input-wrapper input {
  height: 26px;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #a2a2a2;
  font-size: 1rem;
  margin-top: 15px;
}

.input-wrapper input::placeholder {
  color: #a2a2a2;
}

.input-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 45px;
  background-color: #ebebeb;
  border-radius: 100px;
  margin-right: 15px;
}

.input-wrapper svg {
  width: 30px;
  height: auto;
  fill: #a2a2a2;
  margin-right: 10px;
}

.form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  margin-top: 39px;
}



.input-wrapper input {
  height: 26px;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #a2a2a2;
  font-size: 1rem;
  margin-top: 15px;
}

.input-wrapper input::placeholder {
  color: #a2a2a2;
}

.input-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 45px;
  background-color: #ebebeb;
  border-radius: 100px;
  margin-right: 15px;
}

.input-wrapper svg {
  width: 30px;
  height: auto;
  fill: #a2a2a2;
  margin-right: 10px;
}

.form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  margin-top: 39px;
}


@media(max-width:1268px){
  .faq-body{
    margin-left: 10%;
  }
  .container{
    width: 400px;
  }
}
@media(max-width:1168px){
  .faq-body{
    margin-left: 5%;
  }
}
@media(max-width:1068px){
  .faq-body{
    width: 400px;
    margin-left: 0;
  }
  .container{
    width: 400px;
  }
  
}
@media(max-width:768px){
  .faq-body{
      width:80%;
    margin-bottom:50px;
    margin-left: 13%;
  }
  .container{
      margin-left:20%;
  }
  
  
}
@media(max-width:668px){
  .faq-body{
    margin-left: 10%;
  }
  .container{
      margin-left:14%;
  }
  
}
@media(max-width:568px){
  .faq-body{
      width:80%;
    margin-left: 10%;
  }
    .container{
    width: 80%;
    margin-left:5%;
  }
    .banner {
        h1 {
            margin-top: 20%;
        }
    }

  .banner-right{
      img{
          margin-top:60%;
      }
  }
  
  
}

@media(max-width:468px){
    .banner-right{
      img{
          margin-top:75%;
      }
  }
}
@media(max-width:368px){
    .banner-right{
      img{
          margin-top:125%;
      }
  }
}


