body {
  margin: 0;
  color: #333;
}

:root {
  --primary: #0a3859ff;
  --secondary: #f26d1fff;
}

.button {
  color: white !important;
  padding: 10px 25px;
  border-radius: 10px;
  background-color: var(--secondary);
  box-shadow: 4px 4px 8px #000;
}
.button:hover{
  background-color: var(--primary);
}

.button2 {
  color: white !important;
  padding: 10px 25px;
  border-radius: 10px;
  background-color: var(--primary);
  box-shadow: 4px 4px 8px #000;
}
.button2:hover{
  background-color: var(--secondary);
}

.t-blue {
  color: var(--primary);
}

.t-orange {
  color: var(--secondary)
}

.b-blue {
  background-color: var(--primary);
}

.b-orange {
  background-color: var(--secondary);
}

nav {
  position: sticky;
  top: 0;
  margin-top: 0 !important;
}

nav a {
  color: var(--primary);
  font-weight: bold;
}
.nav-links a:hover {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

nav .active {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

.hamburger {
  display: none !important;
}
.sidepanel {
  height: 100%; /* Specify a height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0;
  right: 0;
  background-color: var(--primary); /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */
}

/* The sidepanel links */
.sidepanel a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  color: white;
  display: block;
  transition: 0.3s;
}

.sidepanel .active {
  color: var(--secondary);
}

/* When you mouse over the navigation links, change their color */
.sidepanel a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style the button that is used to open the sidepanel */
.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: var(--secondary);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
}

.openbtn:hover {
  background-color: #444;
}
.hover-btn{
  position: fixed;
  bottom: 30px;
  z-index: 100;
  right: 30px;
  padding: 15px 18px;
  background-color: var(--secondary);
  color: white;
  border-radius: 50%;
}
.contact-hover{
  position: fixed;
  bottom: 60px;
}


.banner {
  background: url('../images/chip-7732459_1280.png');
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: white;
  height: 500px;
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.3);
  height: 500px;
  width: 100%;
}
/* .about-section{
  background: url('../images/Untitled-2.png');
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} */
.about-mini{
  box-shadow: 0 0 15px var(--primary);
}

.call {
  background: url('../images/banner.jpg');
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
}
.about-overlay {
  background: rgba(255,255,255,.4);
}

.service-card {
  box-shadow: 0 0 10px #888;
}

.c2a {
  box-shadow: 0 0 10px #555;
  background: #fff;
}

.about {
  overflow: hidden;
}

.based {
  background: url('../images/geometric-1732847_1280.jpg');
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin: 0;
}

input {
  width: 100%;
  padding: 10px 10px !important;
  margin-bottom: 10px !important;
  border-radius: 10px;
  color: #000 !important;
}
textarea {
  width: 100%;
  padding: 10px 10px !important;
  margin-bottom: 10px !important;
  border-radius: 10px;
  color: #000 !important;
}
.footer{
  max-width: 800px;
  margin: auto;
}
.footer i {
  font-size: 30px;
}

.side-tabs {
  width: 22%;
}

.content {
  width: 78%;
  max-height: 530px;
  overflow: auto;
}

.tab {
  cursor: pointer;
  padding: 10px;
  border-bottom: 1px solid #fff;
  font-weight: bold;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.tab:hover {
  background-color: var(--secondary);
}

.tab.active {
  font-weight: bold;
  color: #fff;
  background-color: var(--secondary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tools {
  flex-wrap: wrap;
}

@media screen and (max-width: 900px) {
  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .ham-links {
    display: none !important;
  }

}

@media screen and (max-width: 700px) {
  .side-tabs {
    width: 100%;
  }

  .content {
    width: 100%;
    max-height: 100%;
  }

  .serve {
    display: block !important;
  }
  .about-section{
    background: url('../images/Untitled-2.png');
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: center; */
  }
}