body {
  background-color: #f1f5f9;
}
.text-primary {
  color: #0a66c2 !important;
}
.navbar {
  box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
  border-radius: 0 0 15px 15px;
}
.dropdown-menu {
  min-width: 200px;
  padding: 0 0;
  border-radius: 10px;
  border: 1px solid #dadce0;
  text-align: center;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
}
.navbar .dropdown-menu .dropdown-item {
  padding: 15px 1rem;
  border-radius: 10px;
  font-weight: 600;
  color: #3c4043;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #f1f5f9;
  color: #0a66c2;
}
@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  /* 80% {
        transform: scaleY(1.1)
    } */
  100% {
    transform: scaleY(1);
  }
}
.banner {
  background: url("/media/RoofExample-3.jpg") no-repeat right bottom;
  background-size: contain;
  position: relative;
}
.banner .space {
  min-height: 250px;
}
.keyFN {
  margin: -100px 0 0;
  padding: 150px 0;
  background-color: #0a66c2;
  color: #fff;
}
.keyFN ul li {
  font-size: 25px;
  list-style: none;
  display: flex;
  margin-bottom: 15px;
}
.keyFN ul li i {
  margin: 8px 20px 0;
  color: rgba(255, 255, 255, 0.5);
}
.roundedBox.video {
  margin: -100px auto 50px;
}
.roundedBox {
  padding: 15px;
  margin: 15px 0;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
}
#pagination {
  text-align: center;
  padding-top: 15px;
}
#pagination i {
  color: #0a66c2;
  font-size: 34px;
  cursor: pointer;
}
.btn-primary {
  background-color: #0a66c2;
}
#loader {
  position: fixed;
  z-index: 1000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0a66c2;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f1f5f9;
  font-size: 50px;
  transition: all 0.3s ease-in-out;
}
#loader.show {
  opacity: 1;
  visibility: visible;
}
#loader.show i {
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tableWraapper table {
  background-color: #dadce0;
  border-spacing: 1px;
  border-collapse: inherit;
  margin-top: 10px;
  width: 100%;
}
.tableWraapper th {
  background-color: #0a66c2;
  padding: 5px;
  color: #fff;
}
.tableWraapper td {
  background-color: #f1f5f9;
  padding: 5px;
}
.fixedBgBanner {
  min-height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 1px 2px #000;
  background: url(/media/RoofExample-p-1080.jpeg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  margin-bottom: 50px;
}
.fixedBgBanner h1 {
  position: relative;
}
.fixedBgBanner::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
}
.pricing-header {
  max-width: 700px;
}
.compair {
  background-color: #fff;
  padding: 50px 0;
  margin-top: 50px;
}
.form-control {
  background-color: #f1f5f9;
  border-color: #dadce0;
  border-radius: 8px;
}
#contactForm .form-control.is-valid,
.was-validated .form-control:valid {
  background-image: none;
  border-color: #dadce0;
}

.accountInfo th {
  color: #0a66c2;
  padding: 10px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
