:root {
  --dialog-display: block;
}

@media (max-width: 766.98px) {
  :root {
    --dialog-display: none;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "cairo", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.tooltip-inner {
  background-color: #4caf50 !important; /* green background */
  color: #fff !important; /* white text */
  font-weight: 500;
}

.tooltip.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-right-color: #4caf50 !important;
}

.component-section {
  text-align: center;
  position: relative;
  padding-bottom: 100px;
}
.component-section h1 {
  font-weight: 700;
  margin-bottom: 15px;
}
.component-section p {
  font-size: 18px;
}
.component-section::after {
  content: " ";
  background-color: #0a6d97;
  position: absolute;
  width: 200px;
  height: 2px;
  transform: translate(-50%, -50%);
  left: 50%;
  margin-top: 5px;
}

.call-btn {
  background-color: #0a6d97;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  animation: pulse 1.5s infinite;
  transition: background-color 0.3s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 #0a6d97;
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
}
.header .navbar .container {
  justify-content: space-between !important;
}
.header .navbar .container img {
  max-height: 75px;
}
.header .navbar .container .navbar-toggler {
  border: 2px solid #0a6d97;
}
.header .navbar .container .navbar-toggler svg {
  font-size: 25px;
  color: #0a6d97;
}
.header .navbar .container .navbar-toggler:focus {
  box-shadow: none;
}
.header .navbar .container .nav-list ul {
  display: flex;
  margin: 0;
}
.header .navbar .container .nav-list ul .nav-item {
  position: relative;
  padding-inline: 15px;
}
.header .navbar .container .nav-list ul .nav-item .nav-link {
  font-size: 18px;
  font-weight: 700;
  color: #0d0d0d;
}
.header .navbar .container .nav-list ul .nav-item::after {
  content: " ";
  position: absolute;
  width: calc(100% - 20px);
  height: 2px;
  background-color: #0a6d97;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 35px;
  display: none;
}
.header .navbar .container .nav-list ul .nav-item:hover::after {
  display: block;
}
.header .navbar .container .nav-list ul .nav-item.active {
  position: relative;
}
.header .navbar .container .nav-list ul .nav-item.active::after {
  content: " ";
  position: absolute;
  width: calc(100% - 20px);
  height: 2px;
  background-color: #0a6d97;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 35px;
  display: block;
}

.side-menu {
  position: fixed;
  background-color: white;
  padding-top: 60px;
  height: 100%;
  width: 0;
  overflow-x: hidden;
  top: 0;
  right: 0;
  z-index: 1000;
  transition: 0.3s;
}
.side-menu img {
  margin-bottom: 40px;
  margin-right: 20px;
  height: 90px;
}
.side-menu .close-btn {
  font-size: 18px;
  position: absolute;
  left: 20px;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.431372549);
  top: 20px;
  padding: 1px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.side-menu a {
  display: block;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: black;
  margin-left: 40px;
  margin-right: 10px;
  border-radius: 5px;
}
.side-menu a:hover {
  background-color: #0a6d97;
  color: white;
}

.over-lay {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 109, 151, 0.3098039216);
  z-index: 999;
}

.hidden {
  display: none;
}

.landing {
  height: calc(100vh - 87px);
  background-image: url("/images/landing.jpg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.landing .landing-text {
  color: white;
  font-size: 18px;
  max-width: 600px;
  position: absolute;
  left: 100px;
  top: 150px;
  text-align: center;
}
@media (max-width: 992px) {
  .landing .landing-text {
    left: 0;
  }
}
.landing .landing-text img {
  margin-bottom: 40px;
}
.landing .landing-text p {
  line-height: 2;
  font-size: 18px;
  word-spacing: 1px;
}
.landing .landing-text .hot-line {
  background-color: #0a6d97;
  display: inline-block;
  color: white;
  text-decoration: none;
  margin-top: 20px;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 5px;
}

.social-media ul {
  list-style: none;
  justify-content: space-around;
  display: flex;
  align-items: center;
  padding-top: 20px;
}

.about {
  padding-top: 100px;
  padding-bottom: 30px;
}
.about .about-text {
  padding-top: 35px;
}
@media (max-width: 768px) {
  .about .about-text {
    padding-top: 0;
  }
}
.about .about-text .about-title {
  margin-bottom: 40px;
}
.about .about-text .about-title h1 {
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 15px;
}
.about .about-text .about-title p {
  font-size: 18px;
  line-height: 30px;
}
.about .about-text .about-item h5 {
  font-weight: 700;
  margin-bottom: 18px;
}
.about .about-text .about-item ul {
  padding-right: 0;
}
.about .about-text .about-item ul li {
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 10px;
}
.about .about-text .about-call-btn {
  margin-top: 40px;
}
.about .about-pic .about-pic-item img {
  margin-top: 30px;
}
.about .about-pic .bout-pic-item-large {
  margin-top: 70px;
}

.services {
  padding-top: 100px;
  padding-bottom: 30px;
  margin-top: 100px;
  background-color: #f2f4f5;
  margin-bottom: 94px;
}
.services .service-item {
  min-height: 340px;
  text-align: center;
  box-shadow: 0px 0px 8px 3px #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  margin-bottom: 100px;
}
@media (max-width: 990px) {
  .services .service-item {
    min-height: 280px;
  }
}
.services .service-item .service-item-pic {
  background-color: white;
  padding: 20px;
  border-radius: 50%;
  margin-top: -40px;
  overflow: hidden;
}
.services .service-item .service-item-pic img {
  transition: transform 0.5s;
}
.services .service-item .service-item-pic img:hover {
  transform: scale(1.5);
}
.services .service-item h5 {
  color: #0d0d0d;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.services .service-item p {
  font-size: 15px;
  color: #4e4e4e;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 15px;
  padding: 10px 20px;
}

.choose-us .choose-us-text {
  padding-top: 80px;
  padding-left: 60px;
}
@media (max-width: 768px) {
  .choose-us .choose-us-text {
    padding-top: 0;
  }
}
.choose-us .choose-us-text h1 {
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 15px;
}
.choose-us .choose-us-text p {
  font-size: 18px;
  line-height: 30px;
}
.choose-us .choose-us-pic {
  padding-top: 20px;
}
@media (max-width: 768px) {
  .choose-us .choose-us-pic {
    margin-bottom: 30px;
  }
}
.choose-us .choose-us-list {
  padding-right: 50px;
}
.choose-us .choose-us-list .choose-us-list-item {
  margin-bottom: 35px;
}
.choose-us .choose-us-list .choose-us-list-item svg {
  font-size: 45px;
  color: #0a6d97;
  margin-bottom: 20px;
}
.choose-us .choose-us-list .choose-us-list-item h5 {
  font-weight: 700;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .choose-us .choose-us-list {
    text-align: center;
    padding-right: 0px;
  }
}

.call-us {
  margin-top: 200px;
  background-image: url("/images/call-bg.jpg.webp");
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .call-us {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .call-us .row {
    flex-direction: column-reverse;
  }
}
.call-us .call-us-pic {
  margin-top: -160px;
}
@media (max-width: 992px) {
  .call-us .call-us-pic {
    margin-top: 40px;
  }
}
.call-us .call-us-text {
  padding-top: 80px;
  text-align: center;
  color: white;
}
.call-us .call-us-text h4 {
  font-weight: 700;
  margin-bottom: 20px;
}
.call-us .call-us-text p {
  margin-bottom: 40px;
}

.statistics {
  padding-top: 100px;
  padding-bottom: 30px;
}
.statistics .col-lg-3:last-child .statistic-item {
  border: none;
}
.statistics .statistic-item {
  text-align: center;
  border-left: 1px solid #0a6d97;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .statistics .statistic-item {
    border: none;
  }
}
.statistics .statistic-item .statistic-item-pic {
  margin-bottom: 10px;
}
.statistics .statistic-item .statistic-item-pic svg {
  color: #0a6d97;
  font-size: 40px;
}
.statistics .statistic-item .statistic-item-text h2 {
  display: inline-block;
  font-weight: 700;
}
.statistics .statistic-item .statistic-item-text span {
  font-size: 36px;
  display: inline-block;
  font-weight: 700;
}
.statistics .statistic-item .statistic-item-text p {
  font-size: 18px;
  margin-top: 9px;
}

.footer {
  padding-top: 60px;
  padding-bottom: 5px;
  margin-top: 40px;
  background-color: #222222;
  position: relative;
}
.footer .footer-content {
  margin-bottom: 80px;
}
.footer .footer-content .footer-about .footer-logo {
  margin-bottom: 20px;
  margin-top: -10px;
}
.footer .footer-content .footer-about p {
  color: #b7b7b7;
  margin-right: 30px;
}
.footer .footer-content .footer-about h5 {
  color: white;
  font-size: 25px;
}
.footer .footer-content .footer-about h5 svg {
  color: #0a6d97;
  margin-right: 34px;
  margin-left: 15px;
  margin-top: 10px;
}
@media (max-width: 992px) {
  .footer .footer-content .footer-widget {
    padding-right: 0;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.footer .footer-content .footer-widget h3 {
  color: white;
  padding-right: 40px;
  margin-bottom: 15px;
}
.footer .footer-content .footer-widget ul {
  color: #b7b7b7;
}
.footer .footer-content .footer-widget ul img {
  margin-left: 10px;
}
.footer .footer-content .footer-widget ul li {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .footer .footer-content .footer-social {
    padding-right: 0;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.footer .footer-content .footer-social h3 {
  color: white;
  padding-right: 40px;
  margin-bottom: 15px;
}
.footer .footer-content .footer-social ul {
  display: flex;
  margin-top: 50px;
}
.footer .footer-content .footer-social ul li {
  padding: 11px;
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0a6d97;
  border-radius: 50%;
}
.footer .footer-content .footer-social ul li a svg {
  color: white;
  font-size: 25px;
}
.footer .footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b7b7b7;
}
.footer .footer-copyright .copyright-text {
  text-align: center;
  padding-top: 20px;
}
.footer .footer-copyright .copyright-text a {
  text-decoration: none;
  color: #0a6d97;
  margin-right: 10px;
}
.footer .footer-copyright .copyright-text a svg {
  margin-right: 5px;
  color: red;
}
.footer .whatsapp {
  position: fixed;
  bottom: 90px;
  left: 30px;
}
.footer .whatsapp a svg {
  font-size: 50px;
  color: #45c441;
}
.footer .fixed-call-us {
  position: fixed;
  bottom: 85px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px;
  border-radius: 50%;
  background-color: #0a6d97;
  animation: pulse 1.5s infinite;
  transition: background-color 0.3s ease;
}
.footer .fixed-call-us svg {
  font-size: 25px;
  color: white;
}/*# sourceMappingURL=main.css.map */