/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;

  /*===== Colores =====*/
  --blue-color: #00015e;
  --first-color: #329CD7;
  --dark-color: #f1f1f1;
  --dark-color-alt: #282b3a;
  /* --white-color: #E6E7E9; */
  --white-color: #fff;
  --black-color: #000000;
  --white-color: #ffffff;


  /*===== Fuente y tipografia =====*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;

  /*===== z index =====*/
  --z-fixed: 100;
}

@media (min-width: 768px) and (max-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
  }
}

/*===== BASE =====*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 500;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.bd-grid {
  max-width: 1024px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
/* ============ Hardware Break Fix / Start Header Section Style ============= */
/* ============ Hardware Break Fix / Start Header Style ============= */
.navbar {
  height: 80px;
  pad: 0.5rem;
  background-color: var(--first-color);
}
/* Logo container (a tag) */
.navbar .brand-logo {
    display: inline-block; /* Ensures the container behaves properly around the image */
    max-width: 150px; /* Limit the logo size */
    height: auto; /* Let the height adjust automatically to maintain aspect ratio */
    margin-left: 20px; /* Adjust spacing if needed */
    cursor: pointer;
    text-decoration: none; /* Remove any default link styling */
    padding: 0; /* Ensure no padding around the logo */
}

/* Logo image */
.navbar .brand-logo img {
    width: 100%; /* Fully responsive width */
    height: auto; /* Ensure aspect ratio is preserved */
    display: block; /* Remove any inline spacing issue */
    object-fit: contain; /* Ensure the image scales properly within the container */
    cursor: pointer;
}

/*.navbar .brand-logo {*/
/*  width: 9%;*/
/*  height: 35px;*/
/*  cursor:pointer;*/
/*  margin-left: 20px;*/
/*}*/

/*.navbar .brand-logo img {*/
/*  width: 100%;*/
/*  cursor:pointer;*/
/*  height: auto;*/
/*}*/

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #3e4095;
  transition: 0.3s color;

}

.navbar-brand a {
  color: var(--white-color);
}

.offcanvas-title {
  color: var(--white-color);
}

.contact-btn {
  width: 10%;
  margin-right: 30px;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  height: 8vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-color);
  border: 2px solid var(--white-color);
}

.navbar-toggler {
  border: none;
  font-size: 1.25rem;
}

.navbar-toggler:focus,
.btn-close:focus {
  box-shadow: none;
  outline: none;
}

.nav-link {
  color: var(--white-color);
  font-weight: 600;
  margin: auto 20px;
  position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
  color: var(--white-color);
}

.nav-link:hover,
.nav-link.active {
  color: #e2e2e2;
}

.fa-bars {
  color: var(--white-color);
  font-size: 2rem;
}

.btn-close {
  background-color: var(--first-color);
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  color: var(--white-color);
  background-color: var(--first-color);
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--white-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: var(--first-color);
  border: 0;
}

/* Optional: Add transition effect for dropdown */
.dropdown-menu {
  transition: all 0.3s ease-in-out;
  color: var(--white-color);
  background-color: var(--first-color);
  opacity: 0;
  visibility: hidden;
}

/* Optional: Adjust positioning if necessary */
.navbar-nav .dropdown-menu {
  margin-top: 0;
}


@media (max-width: 768px) {
  .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: var(--bs-navbar-nav-link-padding-x);
      padding-left: var(--bs-navbar-nav-link-padding-x);
      color: var(--black-color);
      font-size: 1rem;
      font-weight: 600;
  }

  .navbar {
      height: 55px;
      background-color: var(--first-color);
  }

  .navbar .brand-logo {
      width: 14%;
      cursor:pointer;
      height: 30px;
  }

  .navbar .brand-logo img {
      width: 100%;
      height: auto;
      cursor:pointer;
  }

  .navbar-toggler {
      border: none;
      padding: 0;
      font-size: 1.25rem;
  }

  .contact-btn {
      display: none;
      /*width: 16%;*/
      /*padding: 10px;*/
      /*font-size: 0.9rem;*/
      /*font-weight: 700;*/
      /*height: 8vh;*/
      /*text-align: center;*/
      /*color: var(--white-color);*/
      /*border-radius: 30px;*/
      /*border: 2px solid var(--white-color);*/
      /*margin-left: 28rem;*/
  }

  .btn-close {
      background-color: var(--first-color);
      margin-top: 20px;
  }

  /* Show dropdown on hover */
  .nav-item.dropdown:hover .dropdown-menu {
      display: block;
      width: 100%;
      opacity: 1;
      visibility: visible;
  }

  .offcanvas-header img {
      width: 15vw;
      height: 15vh;
  }

  /* Optional: Add transition effect for dropdown */
  .dropdown-menu {
      transition: all 0.3s ease-in-out;
      color: var(--white-color);
      font-size: 1rem;
      font-weight: 600;
      background-color: var(--first-color);
      opacity: 0;
      visibility: hidden;
  }

  /* Optional: Adjust positioning if necessary */
  .navbar-nav .dropdown-menu {
      margin-top: 0;
  }
}

@media (max-width: 425px) {
  .navbar {
      height: 55px;
      width: 100%;
      background-color: var(--first-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .navbar>.container-fluid {
      width: 100%;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-between;
      align-items: center;
  }

  .offcanvas.offcanvas-end {
      top: 0;
      right: 0;
      width: 75%;
      border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateX(100%);
  }

  .navbar .brand-logo {
      width: 24%;
      cursor:pointer;
      margin-left: 15px;
      height: 30px;
  }

  .navbar .brand-logo img {
      width: 100%;
      height: auto;
      cursor:pointer;
  }

  .navbar-toggler {
      margin-left: -20rem;
      margin-right: 2rem;
      border: none;
      background: none;
      font-size: 1.25rem;
  }

  .navbar-toggler:focus {
      outline: none;
  }

  .navbar-toggler .fa-bars {
      margin-bottom: 0;
      color: var(--white-color);
  }

  .offcanvas-header img {
      height: 15vh;
      width: 15vw;
  }

  /* Dropdown hover effect */
  .nav-item.dropdown:hover .dropdown-menu {
      display: block;
      width: 70vw;
      opacity: 1;
      visibility: visible;
  }

  .dropdown-menu {
      transition: all 0.3s ease-in-out;
      color: var(--white-color);
      font-size: 1rem;
      font-weight: 600;
      background-color: var(--first-color);
      opacity: 0;
      visibility: hidden;
  }

  .navbar-nav .dropdown-menu {
      margin-top: 0;
  }

  .blue-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(50, 156, 215, 0.535);
      z-index: 1;
      display: flex;
      flex-direction: column;
  }
}

/* ============ Hardware Break Fix / End Header Style ============= */
/* ============ Hardware Break Fix / End Header Section Style ============= */





/* ============ Hardware Break Fix / Start Hero Section Style ============= */
/* ============ Hardware Break Fix / Start Hero Style ============= */
.hardware-break-fix-section {
  position: relative;
  padding: 40px;
  min-height: 100vh;
  background-image: url('../images/hb-fix-cover.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.first-hero-div {
  display: flex;
  margin-left: 60px;
  color: var(--white-color);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 45%;
}

.first-hero-div .flex-item-1,
.first-hero-div .flex-item-2,
.first-hero-div .contact-us-btn {
  margin-bottom: 20px;
}

.first-hero-div .flex-item-1 h3 {
  font-size: 2rem;
  font-weight: 400;
}

.first-hero-div .flex-item-2 h2 {
  font-size: 3rem;
  font-weight: 600;
}

.second-hero-div {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 45%;
  text-align: left;
}

.second-hero-div .item {
  display: block;
  background-color: #00015e;
  border-radius: 10px 10px 0 0;
  text-align: left;
  color: var(--white-color);
  padding: 20px 0;
  height: 60vh;
  width: 60%;
  top: 40px;
  left: 20%;
  position: relative;
  overflow: hidden;
}

.second-hero-div .service-icons img,
.second-hero-div .service-heading-1,
.second-hero-div .serivece-details-1 {
  margin-bottom: 10px;

}

/* Optional styling for the button */
.contact-us-btn button {
  background-color: #00015e;
  color: white;
  width: 180px;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-us-btn button:hover {
  background-color: var(--first-color);
}

@media (max-width: 768px) {

  .hardware-break-fix-section {
    position: relative;
    padding: 40px;
    min-height: 100vh;
    background-image: url(../images/hb-fix-cover.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .first-hero-div {
    display: flex;
    margin-top: 5px;
    margin-left: -15px;
    color: var(--white-color);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 80%;
  }

  .first-hero-div .flex-item-1,
  .first-hero-div .flex-item-2,
  .first-hero-div .contact-us-btn {
    margin-bottom: 5px;
  }

  .first-hero-div .flex-item-1 h3 {
    font-size: 1.3rem;
    font-weight: 400;
  }

  .first-hero-div .flex-item-1,
  .first-hero-div .flex-item-2,
  .first-hero-div .contact-us-btn {
    margin-bottom: 5px;
  }

  .first-hero-div .flex-item-2 h2 {
    font-size: 35px;
    font-weight: 600;
  }

  .first-hero-div .flex-item-1,
  .first-hero-div .flex-item-2,
  .first-hero-div .contact-us-btn {
    margin-bottom: 5px;
  }

  .contact-us-btn button {
    background-color: #00015e;
    color: white;
    width: 170px;
    height: 50px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .second-hero-div {
    position: absolute;
    bottom: 20px;
    flex-direction: column;
    display: flex;
    right: 52px;
    width: 90%;
    text-align: left;
  }

  .second-hero-div .item {
    display: block;
    background-color: #00015e;
    border-radius: 10px;
    text-align: left;
    color: var(--white-color);
    padding: 20px 0;
    height: 55vh;
    width: 100%;
    position: initial;
    overflow: hidden;
  }

  .service-heading-1 h3 {
    display: none;
  }

  .contact-us-btn button:hover {
    background-color: var(--first-color);
  }
}

@media (max-width: 425px) {

  .hardware-break-fix-section {
    position: relative;
    padding: 20px 20px 0px 20px;
    width: 100%;
    min-height: 80vh;
    background-image: url(../images/hb-fix-cover.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .first-hero-div {
    display: flex;
    /* margin-top: -35px; */
    margin-left: 0px;
    color: var(--white-color);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .first-hero-div .flex-item-1,
  .first-hero-div .flex-item-2,
  .first-hero-div .contact-us-btn {
    margin-bottom: 0px;
  }

  .first-hero-div .flex-item-1 h3 {
    font-size: 1.3rem;
    font-weight: 400;
  }

  .first-hero-div .flex-item-1,
  .first-hero-div .flex-item-2,
  .first-hero-div .contact-us-btn {
    margin-bottom: 0px;
  }

  .first-hero-div .flex-item-2 h2 {
    font-size: 33px;
    font-weight: 600;
  }

  .first-hero-div .flex-item-1,
  .first-hero-div .flex-item-2,
  .first-hero-div .contact-us-btn {
    margin-bottom: 0px;
  }

  .contact-us-btn button {
    background-color: #00015e;
    color: white;
    width: 170px;
    height: 50px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .second-hero-div {
    position: absolute;
    bottom: 10px;
    flex-direction: column;
    display: flex;
    right: 25px;
    width: 90%;
    text-align: left;
  }

  .second-hero-div .item {
    display: block;
    /* margin-top: -36px; */
    background-color: #00015e;
    border-radius: 10px 10px 0 0;
    text-align: left;
    color: var(--white-color);
    padding: 10px 0;
    height: 45vh;
    width: 100%;
    position: initial;
    overflow: hidden;
  }

  .service-icons {
    width: 50px;
    margin-left: 20px;
  }

  .second-hero-div .service-heading-1 {
    margin-bottom: 5px;
  }

  .service-heading-1 h3 {
    display: none;
  }

  .serivece-details-1 {
    width: 100%;
    margin-top: 0px;
    padding: 10px;
  }

  .contact-us-btn button:hover {
    background-color: var(--first-color);
  }
}





/* ============ Hardware Break Fix / End Hardware Break Fix Hero Style ============= */
/* ============ Hardware Break Fix / End Hardware Break Fix Hero Section Style ============= */





/* ============ Hardware Break Fix / Start Hardware Break Fix Details Section Style ============= */
/* ============ Hardware Break Fix / End Hardware Break Fix  Style ============= */
/*=========== Start Hardware Break Fix Part-1 Style ====================*/
.hardware-break-fix-1 {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 10% 0 5% 0;
}

.hardware-break-fix-1 .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hardware-break-fix-1 .first-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hardware-break-fix-1 .flex-item-1 {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.hardware-break-fix-1 .first-div-dec {
  width: 100%;
  height: auto;
  text-align: left;
}

.hardware-break-fix-1 .flex-item-1 p {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 400;
  padding-right: 15%;
  line-height: 2rem;
}

.hardware-break-fix-1 .flex-item-2 {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hardware-break-fix-1 .flex-item-2 img {
  width: 100%;
  height: 40vh;
}

@media (min-width: 426px) and (max-width: 768px) {
  .hardware-break-fix-1 {
    flex-direction: column-reverse;
  }

  .hardware-break-fix-1 .container {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .hardware-break-fix-1 .first-div {
    width: 100%;
    display: block;
    flex-direction: column-reverse;
  }

  .hardware-break-fix-1 .flex-item-1 {
    width: 100%;
    display: block;
    text-align: left;
  }

  .hardware-break-fix-1 .first-div-dec {
    width: 100%;
    height: auto;
    text-align: left;
    margin: 10px 0;
    font-size: 16px;
    line-height: 2rem;
    font-weight: 400;
  }

  .hardware-break-fix-1 .flex-item-1 p {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 400;
    padding-right: 0;
    line-height: 2rem;
  }

  .hardware-break-fix-1 .flex-item-2 {
    width: 100%;
    display: block;
    text-align: left;
  }

  .hardware-break-fix-1 .flex-item-2 img {
    width: 90vw;
    margin-top: 5%;
    height: 60vh;
    object-fit: cover;
  }
}

@media (max-width: 425px) {
  .hardware-break-fix-1 {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    margin: 10% auto 5% auto;
  }

  .hardware-break-fix-1 .container {
    width: 100%;
    display: block;
  }

  .hardware-break-fix-1 .first-div {
    width: 100%;
    display: block;
  }

  .hardware-break-fix-1 .flex-item-1 {
    width: 100%;
    display: block;
    text-align: left;
  }

  .hardware-break-fix-1 .first-div-dec {
    width: 100%;
    height: auto;
    text-align: left;
    margin: 10px 0;
    font-size: 16px;
    line-height: 2rem;
    font-weight: 400;
  }

  .hardware-break-fix-1 .flex-item-1 p {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 400;
    padding-right: 0;
    line-height: 2rem;
  }

  .hardware-break-fix-1 .flex-item-2 {
    width: 100%;
    display: block;
    text-align: left;
  }

  .hardware-break-fix-1 .flex-item-2 img {
    width: 90vw;
    margin-top: 5%;
    height: 40vh;
    object-fit: cover;
  }
}



/*=========== Start Hardware Break Fix Part-2 Style ====================*/
.hardware-break-fix-2 {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 5% auto 5% auto;
}

.hardware-break-fix-2 .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
}

.hardware-break-fix-2 .first-div {
  width: 40%;
  height: auto;
}

.hardware-break-fix-2 .first-div .flex-item-1 {
  width: 100%;
  height: 100vh;
}

.hardware-break-fix-2 .first-div .flex-item-1 img {
  width: 100%;
  height: 100vh;
}

.second-div-2 {
  position: relative;
  width: 55%;
  line-height: 2rem;
  height: auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.second-div-2 .flex-item-1 {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}

.second-div-2 .second-div-2-title {
  width: 100%;
  font-size: 26px;
  font-weight: 700;
  color: var(--first-color);
  display: flex;
}

.second-div-2 .flex-item-2 {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}

.second-div-2 .second-div-dec {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.second-div-2 .flex-item-3 {
  width: 100%;
  margin-bottom: 20px;
}

.second-div-2 .flex-item-3 ul {
  width: 90%;
  margin-left: 50px;
}

.second-div-2 .flex-item-3 ul li {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  list-style: disc;
}

.second-div-2 .flex-item-4 {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.second-div-2 .flex-item-4 .second-div-dec {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

@media (min-width: 426px) and (max-width: 768px) {
  .hardware-break-fix-2 {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    text-align: left;
    margin: 5% auto 5% auto;
  }

  .hardware-break-fix-2 .container {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    padding: 0;
  }

  .hardware-break-fix-2 .first-div {
    width: 100%;
    margin-bottom: 5%;
    height: auto;
  }

  .hardware-break-fix-2 .first-div .flex-item-1 {
    width: 100%;
    height: 60vh;
  }

  .hardware-break-fix-2 .first-div .flex-item-1 img {
    width: 92vw;
    height: 60vh;
    object-fit: cover;
  }

  .second-div-2 {
    position: relative;
    width: 100%;
    line-height: 2rem;
    padding: 10px;
    height: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }

  .second-div-2 .flex-item-1 {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
  }

  .second-div-2 .second-div-2-title {
    width: 100%;
    font-size: 26px;
    font-weight: 700;
    color: var(--first-color);
    display: flex;
  }

  .second-div-2 .flex-item-2 {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
  }

  .second-div-2 .second-div-dec {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    display: flex;
  }

  .second-div-2 .flex-item-3 {
    width: 100%;
    margin-bottom: 20px;
  }

  .second-div-2 .flex-item-3 ul {
    width: 90%;
    margin-left: 50px;
  }

  .second-div-2 .flex-item-3 ul li {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    list-style: disc;
  }

  .second-div-2 .flex-item-4 {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
  }

  .second-div-2 .flex-item-4 .second-div-dec {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    display: flex;
  }
}



@media(max-width: 425px) {
  .hardware-break-fix-2 {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    text-align: left;
    margin: 5% auto 5% auto;
  }

  .hardware-break-fix-2 .container {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    padding: 0;
  }

  .hardware-break-fix-2 .first-div {
    width: 100%;
    margin-bottom: 5%;
    height: auto;
  }

  .hardware-break-fix-2 .first-div .flex-item-1 {
    width: 100%;
    height: 40vh;
  }

  .hardware-break-fix-2 .first-div .flex-item-1 img {
    width: 92vw;
    height: 40vh;
    margin-left: 10px;
    object-fit: cover;
  }

  .second-div-2 {
    position: relative;
    width: 100%;
    line-height: 2rem;
    padding: 20px;
    height: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }

  .second-div-2 .flex-item-1 {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
  }

  .second-div-2 .second-div-2-title {
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    color: var(--first-color);
    display: flex;
  }

  .second-div-2 .flex-item-2 {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
  }

  .second-div-2 .second-div-dec {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    display: flex;
  }

  .second-div-2 .flex-item-3 {
    width: 90%;
    margin-bottom: 20px;
  }

  .second-div-2 .flex-item-3 ul {
    width: 90%;
    margin-left: 50px;
  }

  .second-div-2 .flex-item-3 ul li {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    list-style: disc;
  }

  .second-div-2 .flex-item-4 {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
  }

  .second-div-2 .flex-item-4 .second-div-dec {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    display: flex;
  }
}



/*=========== Start Hardware Break Fix Part-3 Style ====================*/
.hardware-break-fix-3 {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5% 0 15% 0;
}

.hardware-break-fix-3 .container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  /* Align items to the top */
}

/* First div takes 65% width */
.hardware-break-fix-3 .first-div {
  width: 65%;
  display: flex;
  padding-right: 50px;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  line-height: 2rem;
}

.hardware-break-fix-3 .first-div {
  width: 60%;
  display: flex;
}

.hardware-break-fix-3 .first-div .flex-item-1 {
  width: 100%;
  display: flex;
}

.hardware-break-fix-3 .first-div .flex-item-1-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--first-color);
  margin-bottom: 1rem;
}

.hardware-break-fix-3 .first-div .flex-item-2 {
  width: 100%;
  display: flex;
}

.hardware-break-fix-3 .first-div .flex-item-2 .flex-item-2-dec {
  font-size: 16px;
  font-weight: 400;
}

/* Second div takes 35% width */
.hardware-break-fix-3 .second-div {
  width: 40%;
  height: 90vh;
  display: flex;
  justify-content: center;
}

.hardware-break-fix-3 .second-div .flex-item-1 {
  display: flex;
  width: 100%;
  height: 90vh;
}

.hardware-break-fix-3 .second-div .flex-item-1 img {
  width: 100%;
  height: 90vh;
}


@media (min-width: 426px) and (max-width: 768px) {
  .hardware-break-fix-3 {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    text-align: center;
    margin: 5% 0 25% 0;
  }

  .hardware-break-fix-3 .container {
    width: 100%;
    display: block;
  }

  .hardware-break-fix-3 .first-div {
    width: 100%;
    display: flex;
    line-height: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }
  .hardware-break-fix-3 .first-div .flex-item-1 {
    width: 100%;
    display: flex;
  }
  .hardware-break-fix-3 .first-div .flex-item-1-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--first-color);
    margin-bottom: 1rem;
  }
  
  .hardware-break-fix-3 .first-div .flex-item-2 {
    width: 100%;
    display: flex;
  }
  
  .hardware-break-fix-3 .first-div .flex-item-2 .flex-item-2-dec {
    font-size: 16px;
    font-weight: 400;
  }

  .hardware-break-fix-3 .second-div {
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
  }
  
  .hardware-break-fix-3 .second-div .flex-item-1 {
    display: flex;
    width: 100%;
    height: 60vh;
  }
  
  .hardware-break-fix-3 .second-div .flex-item-1 img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
  }
}



@media(max-width: 425px) {
  .hardware-break-fix-3 {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    text-align: center;
    margin: 5% 0 25% 0;
  }

  .hardware-break-fix-3 .container {
    width: 100%;
    display: block;
  }

  .hardware-break-fix-3 .first-div {
    width: 100%;
    display: flex;
    line-height: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }
  .hardware-break-fix-3 .first-div .flex-item-1 {
    width: 100%;
    display: flex;
  }
  /* Adjust the title size and color */
  .hardware-break-fix-3 .first-div .flex-item-2 {
    width: 100%;
    display: flex;
  }
  
  .hardware-break-fix-3 .first-div .flex-item-2 .flex-item-2-dec {
    font-size: 16px;
    font-weight: 400;
  }

  .hardware-break-fix-3 .second-div {
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: center;
  }
  
  .hardware-break-fix-3 .second-div .flex-item-1 {
    display: flex;
    width: 100%;
    height: 40vh;
  }
  
  .hardware-break-fix-3 .second-div .flex-item-1 img {
    width: 98%;
    height: 40vh;
    object-fit: cover;
  }
}




/* ============ Hardware Break Fix / End Hardware Break Fix Details Style ============= */
/* ============ Hardware Break Fix / End Hardware Break Fix Details Section Style ============= */



/* ============ About-us / Start hbf-Contact Section Style ============= */
/* ============ About Us / Start hbf-Contact Style ============= */

/* General section styling */
.hbf-contact-section {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 130px 40px;
  width: 100%;
  height: 30vh;
  margin-bottom: 5%;
  /* background-image: url(../images/Color.jpg);
  background-size: cover;
  background-position: center; */
}

.hbf-contact-section .container {
  position: relative;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 100px 150px;
  width: 95%;
  height: 35vh;
  padding: 20px 40px 20px 50px;
  background-image: url(../images/16.png);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  border: 1px solid black;
  border-color: #d3dae7;
  z-index: 2;
  transform: translateY(-50%);
}

.hbf-contact-content h2 {
  font-size: 40px;
  font-weight: 800;
  width: 100%;
  color: var(--first-color);
}

.hbf-contact-actions {
  display: flex;
  width: 100%;
  align-items: center;
  height: 40%;
}

.hbf-contact-actions button {
  background-color: var(--first-color);
  color: white;
  width: 180px;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  padding: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hbf-contact-actions .call-info {
  width: 100%;
  align-self: center;
  margin-left: 30px;
  margin-bottom: 20px;
}

.hbf-contact-actions .call-info h3 {
  font-size: 16px;
  color: var(--first-color);
  font-weight: 700;
}

.hbf-contact-actions .call-info h2 {
  font-size: 20px;
  font-weight: 700;
}

.hbf-contact-social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}

.hbf-contact-social h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--white-color);
}

.hbf-contact-social a {
  font-size: 16px;
  color: var(--white-color);
  margin: 0px 7px 7px 5px;
}

@media(max-width:768px) {
  .hbf-contact-section {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 90px 40px;
    width: 100%;
    height: 30vh;
    margin-top: 5%;
    margin-bottom: 10%;
    /* background-image: url(../images/Color.jpg);
    background-size: cover;
    background-position: center; */
  }

  .hbf-contact-section .container {
    position: relative;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 100px 150px;
    width: 95%;
    height: 30vh;
    padding: 20px 40px 20px 50px;
    background-image: url(../images/16.png);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    z-index: 2;
    transform: translateY(-50%);
  }

  .hbf-contact-content h2 {
    font-size: 26px;
    font-weight: 800;
    width: 100%;
    color: var(--first-color);
  }

  .hbf-contact-section {
    display: flex;
    width: 100%;
    align-items: center;
    height: 40%;
    margin-top: -30px;
  }

  .hbf-contact-actions button {
    background-color: var(--first-color);
    color: white;
    width: 150px;
    height: 50px;
    font-size: 15px;
    font-weight: 700;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .hbf-contact-actions .call-info {
    width: 100%;
    margin-left: 30px;
    margin-top: 10px;
    align-self: center;
  }

  .hbf-contact-actions .call-info h3 {
    font-size: 14px;
    color: var(--first-color);
    font-weight: 700;
  }

  .hbf-contact-actions .call-info h2 {
    font-size: 16px;
    margin-top: -5px;
    font-weight: 700;
  }

  .hbf-contact-social {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
  }

  .hbf-contact-social h3 {
    font-size: 18px;
        font-weight: 500;
    color: var(--white-color);
  }

  .hbf-contact-social a {
    font-size: 16px;
        color: var(--white-color);
        margin: 0px 7px 5px 5px;
  }
}

@media(max-width:425px) {
  .hbf-contact-section {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 85px 40px;
        width: 100%;
        height: 25vh;
        margin-top: 50%;
        margin-bottom: 10%;
        /* background-image: url(../images/Color.jpg);
        background-size: cover;
        background-position: center; */
    }

  .hbf-contact-section .container {
    position: relative;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 100px 150px;
    width: 90%;
    height: 23vh;
    padding: 10px;
    background: var(--white-color);
    /* background-image: url(../images/16.png);
    background-size: cover;
    background-position: center; */
    border-radius: 10px;
    z-index: 2;
    transform: translateY(-50%);
    }
  .hbf-contact-content{
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
  .hbf-contact-content h2 {
    font-size: 20px;
    font-weight: 800;
    width: 100%;
    text-align: center;
    color: var(--first-color);
    }

  .hbf-contact-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    height: 50%;
    margin-top: -50px;
    }

  .hbf-contact-actions button {
    background-color: var(--first-color);
    color: white;
    width: 110px;
    font-size: 10px;
    font-weight: 700;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .hbf-contact-section .call-info {
    width: 100%;
    margin-left: 30px;
    margin-bottom: 0px;
    align-self: center;
    }

  .hbf-contact-actions .call-info h2 {
    font-size: 16px;
    margin-top: -10px;
    font-weight: 700;
  }

  .hbf-contact-actions .call-info h3 {
    font-size: 12px;
    color: var(--first-color);
    font-weight: 700;
  }



  .hbf-contact-social {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
  }

  .hbf-contact-social h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
  }

  .hbf-contact-social a {
    font-size: 14px;
    color: var(--white-color);
    margin: 0px 7px 5px 5px;
  }

  .hbf-contact-social .social-icons i {
    color: var(--white-color);
  }
}




/* ============ About Us / End hbf-Contact Style ============= */
/* ============ About-us / End hbf-Contact Section Style ============= */



/* ============ About-us / Start Services Section Style ============= */
/* ============ About Us / Start Services Style ============= */


/* Video Section setup */
.service-section {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

/* Video styling */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Blue Overlay */
.blue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(50, 156, 215, 0.535);
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* Overlay Content */
.overlay-content {
  color: #fff;
  z-index: 2;
  margin: 40px;
}

.overlay-content h1 {
  font-size: 3rem;
  margin: 0;
}

.overlay-content p {
  font-size: 1.5rem;
  margin: 0;
}

.service-section .container-fluid {
  width: 100%;
}

.owl-carousel {
  width: 100%;
  z-index: 2;
}

.owl-carousel .item {
  background: var(--first-color);
  padding: 20px 0;
  height: 80vh;
  width: 31vw;
  border-radius: 5px;
  text-align: left;
  color: white;
  margin: 10px 40px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.owl-carousel .item:hover {
  background-color: #00015e;
}
.owl-carousel .item img {
  display: block;
  width: 100%;
  margin-bottom: 40px;
  margin-top: 35px;
}

.owl-carousel .item .hover-icon img {
    position: absolute;
    bottom: -55px;
    right: -2px;
    width: 140px;
    height: 140px;
    opacity: 0;
    transition: all 0.5s ease;
}


/* On hover, show and move icon from bottom to top */
.owl-carousel .item:hover .hover-icon img {
  opacity: .5;
  transform: translate(-10%, -20%);
  color: white;
}




.owl-carousel .item h4 {
  font-size: 1.5rem;
}

.service-icons {
  width: 50px;
  margin-left: 20px;
}

.service-heading-1 h3 {
  font-size: 22px;
  margin: 20px;
  font-weight: 700;
}

.serivece-details-1 {
  width: 100%;
  margin-top: 25px;
  padding: 10px
}

.serivece-details-1 li span {
  margin: 0 0 0 20px;
}

.serivece-details-2 {

  width: 100%;
  margin-top: 25px;
  padding: 10px;

}

.serivece-details-2 li span {
  margin: 0 0 0 20px;
}

.serivece-details-3 {


  width: 100%;
  margin-top: -20px;
  padding: 10px;

}

.serivece-details-3 li span {
  margin: 0 0 0 20px;
}

.serivece-details-4 {

  width: 100%;
  margin-top: 25px;
  padding: 10px;
}

.serivece-details-4 li span {
  margin: 0 0 0 20px;
}

.serivece-details-5 {
  width: 100%;
  margin-top: 25px;
  padding: 10px;
}

.serivece-details-5 span {
  margin: 0 0 0 20px;
}

.serivece-details-6 {

  width: 100%;
  margin-top: -15px;
  padding: 10px;
}

.serivece-details-6 span {
  margin: 0 0 0 20px;
}

.serivece-details-7 {
  width: 100%;
  margin-top: -15px;
  padding: 10px;
}

.serivece-details-7 li span {
  margin: 0 0 0 20px;
}

.fa-arrow-right {
  font-size: 15px;
  font-weight: bold;
  margin-right: 5px;
}

.serivece-details-1 li a {
  color: var(--white-color);
}

.serivece-details-2 li a {
  color: var(--white-color);
}

.serivece-details-3 li a {
  color: var(--white-color);
}

.serivece-details-4 li a {
  color: var(--white-color);
}

.serivece-details-5 li a {
  color: var(--white-color);
}

.serivece-details-6 li a {
  color: var(--white-color);
}

.serivece-details-7 li a {
  color: var(--white-color);
}

@media(max-width:768px) {
  .service-section {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
  }

  /* Video styling */
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  /* Blue Overlay */
  .blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 156, 215, 0.535);
    z-index: 1;
    display: flex;
    flex-direction: column;
  }

  /* Overlay Content */
  .overlay-content {
    color: #fff;
    z-index: 2;
    margin: 40px;
  }

  .overlay-content h1 {
    font-size: 3rem;
    margin: 0;
  }

  .overlay-content p {
    font-size: 1.5rem;
    margin: 0;
  }

  .owl-carousel {
    width: 100%;
    z-index: 2;
  }

  .owl-carousel .item {
    background: var(--first-color);
    padding: 20px 10;
    height: 90vh;
    width: 47vw;
    border-radius: 5px;
    text-align: left;
    color: white;
    margin: 10px 20px 60px 10px;
  }

  .owl-carousel .item img {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    margin-top: 35px;
  }

  .owl-carousel .item .hover-icon img {
    position: absolute;
    bottom: -55px;
    right: 0px;
    width: 140px;
    height: 140px;
    opacity: 0;
    transition: all 0.5s ease;
}

  .owl-carousel .item h4 {
    font-size: 1.5rem;
  }

  .service-icons {
    width: 50px;
    margin-left: 20px;
  }

  .service-heading-1 h3 {
    font-size: 22px;
    margin: 20px;
    font-weight: 700;
  }

  .serivece-details-1 {
    width: 100%;
    margin-top: 25px;
    padding: 10px
  }

  #deviceSpan {
    margin: 0 0 0 20px;
  }

  .serivece-details-2 {

    width: 100%;
    margin-top: 25px;
    padding: 10px;

  }

  .service-details-list-2 li span {
    margin: 0 0 0 20px;
  }

  .serivece-details-3 {


    width: 100%;
    margin-top: -20px;
    padding: 10px;

  }

  .service-details-list-3 li span {
    margin: 0 0 0 20px;
  }

  .serivece-details-4 {

    width: 100%;
    margin-top: 25px;
    padding: 10px;
  }

  .service-details-list-4 li span {
    margin: 0 0 0 20px;
  }

  .serivece-details-5 {
    width: 100%;
    margin-top: 25px;
    padding: 10px;
  }

  .serivece-details-5 span {
    margin: 0 0 0 20px;
  }

  .serivece-details-6 {

    width: 100%;
    margin-top: -15px;
    padding: 10px;
  }

  .serivece-details-6 span {
    margin: 0 0 0 20px;
  }

  .serivece-details-7 {
    width: 100%;
    margin-top: -15px;
    padding: 10px;
  }

  .service-details-list-4 li span {
    margin: 0 0 0 20px;
  }

  .fa-arrow-right {
    font-size: 15px;
    font-weight: bold;
    margin-right: 5px;
  }
}

@media(max-width:425px) {
  .service-section {
    position: relative;
    width: 100%;
    margin-top: 10%;
    height: 800px;
    overflow: hidden;
  }

  /* Video styling */
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  /* Blue Overlay */
  .blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 156, 215, 0.535);
    z-index: 1;
    display: flex;
    flex-direction: column;
  }

  /* Overlay Content */
  .overlay-content {
    color: #fff;
    z-index: 2;
    margin: 40px;
  }

  .overlay-content h1 {
    font-size: 3rem;
    margin: 0;
  }

  .overlay-content p {
    font-size: 1rem;
    margin: 0;
  }

  .owl-carousel {
    width: 100%;
    z-index: 2;
  }

  .owl-carousel .item {
    background: var(--first-color);
    height: 75vh;
    width: 94vw;
    border-radius: 5px;
    text-align: left;
    color: white;
    margin: 0px 0px 10px 0px;
  }

  .owl-carousel .item img {
    display: block;
    width: 100%;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .owl-carousel .item .hover-icon img {
    position: absolute;
    bottom: -10px;
    right: 0px;
    width: 120px;
    height: 120px;
    opacity: 0;
    transition: all 0.5s ease;
}

  .owl-carousel .item h4 {
    font-size: 1.5rem;
  }

  .service-icons {
    width: 50px;
    margin-left: 20px;
  }

  .service-heading-1 h3 {
    font-size: 22px;
    margin: 20px;
    font-weight: 700;
  }

  .serivece-details-1 {
    width: 100%;
    margin-top: 25px;
    padding: 10px
  }

  #deviceSpan {
    margin: 0 0 0 20px;
  }

  .serivece-details-2 {

    width: 100%;
    margin-top: 25px;
    padding: 10px;

  }

  .service-details-list-2 li span {
    margin: 0 0 0 20px;
  }

  .serivece-details-3 {


    width: 100%;
    margin-top: -20px;
    padding: 10px;

  }

  .service-details-list-3 li span {
    margin: 0 0 0 20px;
  }

  .serivece-details-4 {

    width: 100%;
    margin-top: 25px;
    padding: 10px;
  }

  .service-details-list-4 li span {
    margin: 0 0 0 20px;
  }

  .serivece-details-5 {
    width: 100%;
    margin-top: 25px;
    padding: 10px;
  }

  .serivece-details-5 span {
    margin: 0 0 0 20px;
  }

  .serivece-details-6 {

    width: 100%;
    margin-top: -15px;
    padding: 10px;
  }

  .serivece-details-6 span {
    margin: 0 0 0 20px;
  }

  .serivece-details-7 {
    width: 100%;
    margin-top: -15px;
    padding: 10px;
  }

  .service-details-list-4 li span {
    margin: 0 0 0 20px;
  }

  .fa-arrow-right {
    font-size: 15px;
    font-weight: bold;
    margin-right: 5px;
  }
}





/* ============ About Us / End Services Style ============= */
/* ============ About-us / End Services Section Style ============= */




/* ============ About-us / Start Contact Section Style ============= */
/* ============ About Us / Start Contact Style ============= */

/* General section styling */
.contact-section {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 130px 40px;
  width: 100%;
  height: 30vh;
  margin-top: 20%;
  background-image: url(../images/Color.jpg);
  background-size: cover;
  background-position: center;
}

.contact-section .container {
  position: relative;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 100px 150px;
  width: 95%;
  height: 35vh;
  padding: 20px 40px 20px 50px;
  background-image: url(../images/16.png);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  border: 1px solid black;
  border-color: #d3dae7;
  z-index: 2;
  transform: translateY(-50%);
}

.contact-content h2 {
  font-size: 40px;
  font-weight: 800;
  width: 100%;
  color: var(--first-color);
}

.contact-actions {
  display: flex;
  width: 100%;
  align-items: center;
  height: 40%;
}

.contact-actions button {
  background-color: var(--first-color);
  color: white;
  width: 180px;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  padding: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-actions .call-info {
  width: 100%;
  align-self: center;
  margin-left: 30px;
  margin-bottom: 20px;
}

.contact-actions .call-info h3 {
  font-size: 16px;
  color: var(--first-color);
  font-weight: 700;
}

.contact-actions .call-info h2 {
  font-size: 20px;
  font-weight: 700;
}

.contact-social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}

.contact-social h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--white-color);
}

.contact-social a {
  font-size: 16px;
  color: var(--white-color);
  margin: 0px 7px 7px 5px;
}

@media(max-width:768px) {
  .contact-section {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 90px 40px;
    width: 100%;
    height: 30vh;
    margin-top: 20%;
    background-image: url(../images/Color.jpg);
    background-size: cover;
    background-position: center;
  }

  .contact-section .container {
    position: relative;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 100px 150px;
    width: 95%;
    height: 30vh;
    padding: 20px 40px 20px 50px;
    background-image: url(../images/16.png);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    z-index: 2;
    transform: translateY(-50%);
  }

  .contact-content h2 {
    font-size: 26px;
    font-weight: 800;
    width: 100%;
    color: var(--first-color);
  }

  .contact-actions {
    display: flex;
    width: 100%;
    align-items: center;
    height: 40%;
    margin-top: -30px;
  }

  .contact-actions button {
    background-color: var(--first-color);
    color: white;
    width: 150px;
    height: 50px;
    font-size: 15px;
    font-weight: 700;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .contact-actions .call-info {
    width: 100%;
    margin-left: 30px;
    margin-top: 10px;
    align-self: center;
  }

  .contact-actions .call-info h3 {
    font-size: 14px;
    color: var(--first-color);
    font-weight: 700;
  }

  .contact-actions .call-info h2 {
    font-size: 16px;
    margin-top: -5px;
    font-weight: 700;
  }

  .contact-social {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
  }

  .contact-social h3 {
    font-size: 18px;
        font-weight: 500;
    color: var(--white-color);
  }

  .contact-social a {
    font-size: 16px;
        color: var(--white-color);
        margin: 0px 7px 5px 5px;
  }
}

@media(max-width:425px) {
  .contact-section {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 85px 40px;
        width: 100%;
        height: 20vh;
        margin-top: 40%;
        background-image: url(../images/Color.jpg);
        background-size: cover;
        background-position: center;
    }

  .contact-section .container {
    position: relative;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 100px 150px;
    width: 90%;
    height: 23vh;
    padding: 10px;
    background-image: url(../images/16.png);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    z-index: 2;
    transform: translateY(-50%);
    }
  .contact-content{
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
  .contact-content h2 {
    font-size: 20px;
    font-weight: 800;
    width: 100%;
    text-align: center;
    color: var(--first-color);
    }

  .contact-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    height: 50%;
    margin-top: -50px;
    }

  .contact-actions button {
    background-color: var(--first-color);
    color: white;
    width: 110px;
    font-size: 10px;
    font-weight: 700;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .contact-actions .call-info {
    width: 100%;
    margin-left: 30px;
    margin-bottom: 0px;
    align-self: center;
    }

  .contact-actions .call-info h2 {
    font-size: 16px;
    margin-top: -10px;
    font-weight: 700;
  }

  .contact-actions .call-info h3 {
    font-size: 12px;
    color: var(--first-color);
    font-weight: 700;
  }



  .contact-social {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
  }

  .contact-social h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
  }

  .contact-social a {
    font-size: 14px;
    color: var(--white-color);
    margin: 0px 7px 5px 5px;
  }

  .contact-social .social-icons i {
    color: var(--white-color);
  }
}




/* ============ About Us / End Contact Style ============= */
/* ============ About-us / End Contact Section Style ============= */









/* ============ About-us / Start Footer Section Style ============= */
/* ============ About Us / Start Footer Style ============= */

.footer {
  min-height: 65vh;
  width: 100%;
  background-image: url(../images/footer-cover.png);
  background-size: cover;
  background-position: center;
  margin-bottom: -5rem;
  background-color: var(--first-color);
  display: flex;
  gap: 2rem;
  padding: 5rem;
}

.footer:nth-child(1) {
  grid-area: one;
}

.footer:nth-child(2) {
  grid-area: two;
}

.footer:nth-child(3) {
  grid-area: three;
}

.footer-info {
  width: 40%;
  margin-top: -20px;
  padding: 30px;
  --grid-gap: 2rem;
}

.footer-info img {
  width: 50%;
  margin-left: 27px;
  height: 12%;
  margin-bottom:65px;
}

.footer-info p {
  font-size: 16px;
  padding: 25px;
  color: var(--white-color);
  font-weight: 400;
}

.footer-menu {
  width: 15%;
  padding: 20px;
  margin-bottom: 15px;
  --grid-gap: 2rem;
}

.footer-menu h3 {
  font-size: 2rem;
  margin-top: 10px;
  color: var(--white-color);
  font-weight: 700;
}

.footer-menu a {
  text-decoration: none;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
}

.footer-menu ul {
  margin-top: 5.2rem;
}

.footer-category {
  width: 25%;
  padding: 20px;
  margin-bottom: 10px;
  --grid-gap: 2rem;
}

.footer-category h3 {
  font-size: 2rem;
  margin-top: 10px;
  font-weight: 700;
  color: var(--white-color);
}

.footer-category a {
  text-decoration: none;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
}

.footer-category ul {
  margin-top: 5.2rem;
}

.footer-contact {
  width: 30%;
  padding: 20px;
  margin-bottom: 10px;
  --grid-gap: 2rem;
}

.footer-contact h3 {
  font-size: 2rem;
  margin-top: 10px;
  color: var(--white-color);
  font-weight: 700;
}

.footer-contact span {
  margin-left: 22px;
}

.footer-contact a {
  text-decoration: none;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  margin-left: 10px;
}

.footer-contact ul {
  margin-top: 5.2rem;
}

.footer li {
  margin-top: 0.5rem;
}

.footer .fa-location-dot {
  color: var(--white-color);
}
.footer .fa-earth-europe {
  color: var(--white-color);
}

.footer .fa-phone {
  color: var(--white-color);
}

.footer .fa-square-whatsapp {
  color: var(--white-color);
}

.footer .fa-linkedin {
  color: var(--white-color);
}

.footer .fa-facebook {
  color: var(--white-color);
}

.footer .fa-envelope {
  color: var(--white-color);
}

.footer .fa-square-instagram {
  color: var(--white-color);
}

@media (max-width: 768px) {
  .footer {
      display: grid;
      width: 100%;
      padding: 1rem;
      --grid-gap: 0.5rem;
      grid-template-columns: 1fr;
      grid-template-areas:
          'one two'
          'three four';
  }

  .footer-info {
      width: 100%;
      padding: 20px;
      margin-top: 65px;
      --grid-gap: 2rem;
  }

  .footer-info img {
      width: 40%;
      margin-left: 0px;
      height: 17%;
      margin-bottom: 40px;
  }

  .footer-info p {
      font-size: 16px;
      padding: 20px 20px 20px 0;
      color: var(--white-color);
      font-weight: 400;
  }

  .footer-menu {
      width: 100%;
      margin-top: 63px;
      padding: 20px;
      margin-bottom: 10px;
      --grid-gap: 2rem;
  }

  .footer-menu h3 {
      font-size: 2rem;
      color: var(--white-color);
      font-weight: 700;
  }

  .footer-menu a {
      text-decoration: none;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
  }

  .footer-menu ul {
      margin-top: 4.5rem;
  }

  .footer-category {
      width: 100%;
      padding: 20px;
      margin-bottom: 20%;
      --grid-gap: 2rem;
  }

  .footer-category h3 {
      font-size: 2rem;
      color: var(--white-color);
      font-weight: 700;
  }

  .footer-category a {
      text-decoration: none;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
  }

  .footer-contact {
      width: 100%;
      padding: 20px;
      margin-bottom: 10px;
      --grid-gap: 2rem;
  }

  .footer-contact h3 {
      font-size: 2rem;
      color: var(--white-color);
      font-weight: 700;
  }

  .footer-contact span {
      margin-left: 22px;
  }

  .footer-contact a {
      text-decoration: none;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
      margin-left: 10px;
  }

  .footer li {
      margin-top: 0.5rem;
  }

  .footer .fa-location-dot {
      color: var(--white-color);
  }

  .footer .fa-phone {
      color: var(--white-color);
  }

  .footer .fa-square-whatsapp {
      color: var(--white-color);
  }

  .footer .fa-linkedin {
      color: var(--white-color);
  }

  .footer .fa-facebook {
      color: var(--white-color);
  }

  .footer .fa-envelope {
      color: var(--white-color);
  }

  .footer .fa-square-instagram {
      color: var(--white-color);
  }
}

@media(max-width:425px) {
  .footer {
      display: block;
      width: 100%;
      padding: 1rem;
  }
  .footer-info img {
      width: 40%;
      height: 18%;
      margin-bottom: 40px;
  }

  .footer-menu {
      width: 100%;
      padding: 20px;
      margin-bottom: 10px;
  }

  .footer-menu h3 {
      font-size: 2rem;
      color: var(--white-color);
      font-weight: 700;
  }

  .footer-menu a {
      text-decoration: none;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
  }

  .footer-category {
      width: 100%;
      padding: 20px;
      margin-bottom: 10px;
  }

  .footer-category h3 {
      font-size: 2rem;
      color: var(--white-color);
      font-weight: 700;
  }

  .footer-category a {
      text-decoration: none;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
  }

  .footer-contact {
      width: 100%;
      padding: 20px;
      margin-bottom: 20%;
  }

  .footer-contact h3 {
      font-size: 2rem;
      color: var(--white-color);
      font-weight: 700;
  }

  .footer-contact span {
      margin-left: 22px;
  }

  .footer-contact a {
      text-decoration: none;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
      margin-left: 10px;
  }

  .footer li {
      margin-top: 0.5rem;
  }

  .footer .fa-location-dot {
      color: var(--white-color);
  }

  .footer .fa-phone {
      color: var(--white-color);
  }

  .footer .fa-square-whatsapp {
      color: var(--white-color);
      
  }

  .footer .fa-linkedin {
      color: var(--white-color);
  }

  .footer .fa-facebook {
      color: var(--white-color);
  }

  .footer .fa-envelope {
      color: var(--white-color);
  }

  .footer .fa-square-instagram {
      color: var(--white-color);
  }
}






/* ============ About Us / End Footer Style ============= */
/* ============ About-us / End Footer Section Style ============= */



/* ============ About-us / Start Copyright Section Style ============= */
/* ============ About Us / Start Copyright Style ============= */

.copyRight {
  background-color: var(--first-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 10px 80px;
  justify-content: space-between;
  align-items: center;
}

/*================== CopyRight Section ================== */

/* ====== Utility Classes =======*/

.text-allign {
  text-align: center;
}

.p-top {
  color: var(--white-color);
}

.copyRight {
  margin-top: 2rem;
  height: 6vh;
  padding: 2rem 5rem 1rem 5rem;
  margin-inline: auto;
  background-color: var(--first-color);
  color: var(--white-color);
}

.copyRight p {
  font-size: 2rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  .copyRight {
      height: 6vh;
      padding: 2rem 2rem 1rem 2rem;
      margin-inline: auto;
      background-color: var(--first-color);
      color: var(--white-color);
  }

  .copyRight p {
      font-size: 0.8rem;
      font-weight: 400;
  }
}

@media (max-width:425px) {
  .copyRight {
      height: 6vh;
      padding: 2rem 1rem 1rem 1rem;
      margin-inline: auto;
      background-color: var(--first-color);
      color: var(--white-color);
  }

  .copyRight p {
      font-size: 0.6rem;
      font-weight: 400;
  }
}






/* ============ About Us / End Copyright Style ============= */
/* ============ About-us / End Copyright Section Style ============= */