/* Start Global Rules */
@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");

:root {
  --main-color: #274da3;
  --light-color-gradiant: #ffffffb7;
  --light-main-color: #f0ece4;
  --dark-color: #000000;
  --text-color: #636e72;
  --white-color: #fff;
  --main-transition: all 0.4s;
}

body {
  font-family: "Mulish", sans-serif;

  /* font-family: "Alexandria", sans-serif !important; */
  background-color: var(--light-main-color);
}

.call-btn {
  padding: 10px;
}
.call-btn .call-btn-link {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 100px;
  background-color: var(--main-color);
  color: var(--white-color);
}
.call-btn .call-btn-link:hover {
  color: var(--dark-color);
  background-color: var(--white-color);
}
.text-color {
  color: var(--text-color);
}
.text-main {
  color: var(--main-color);
}
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: bold !important;
}
/* End Global Rules */

.topbar {
  background-color: var(--dark-color);
  color: var(--white-color);
  border-radius: 0 !important;
}

/* Start Client Bar */
.client-bar {
  padding: 30px 0;
}
.client-bar .logo {
  width: 120px;
}
.client-bar .inner {
  display: flex;
  /* align-items: center; */
  justify-content: center;
}
.client-bar .inner .icon {
  margin-left: 10px;
}
.client-bar .inner .icon i {
  font-size: 35px;
}
.client-bar .inner .text-call {
  line-height: 10px;
}
.client-bar .inner .text-call a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: bold;
}
.client-bar .inner .text-call .number {
  font-size: 25px;
  font-weight: bold;
  transition: var(--main-transition);
}
.client-bar .inner .text-call .number:hover {
  color: var(--main-color);
}
.client-bar .inner .text-call .text {
  transition: var(--main-transition);
}
.client-bar .inner .text-call .text:hover {
  color: var(--main-color);
}

@media (max-width: 768px) {
  .client-bar {
    padding: 50px 0 150px 0;
  }
  .client-bar .inner {
    margin: 30px 0;
  }
  .client-bar .logo {
    padding-bottom: 30px;
    display: none;
  }
}
/* End Client Bar */

/* Start Navbar */
.navbar {
  background-color: var(--white-color);
  border-top: solid 10px var(--main-color);
}
.navbar .navbar-brand img {
  width: 150px !important;
  display: none;
}
.navbar .navbar-nav .nav-link {
  padding: 10px 15px;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 500;
  border-radius: 100px;
  transition: var(--main-transition);
}
.navbar .navbar-nav .nav-link:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}

@media (max-width: 768px) {
  .navbar .navbar-brand img {
    display: block;
    width: 100px !important;
  }
}
/* End Navbar */

/* Start Hero Section */
.hero-section {
  background-image: url(../img/showcase-img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 550px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.hero-section .bg-overlay {
  background: #0f2027; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to top,
    var(--light-color-gradiant),
    #203a43a6,
    #2d3436ad
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to top,
    var(--light-color-gradiant),
    #203a43a6,
    #2d3436ad
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  min-height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.hero-section .bg-overlay2 {
  background-color: var(--main-color);
  min-height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.hero-section .bg-overlay2 .call-btn .call-btn-link {
  background-color: var(--dark-color);
}
.hero-section h1 {
  font-weight: 600;
  margin-top: 40px;
}
.hero-section a {
  font-weight: bold;
  text-decoration: none;
  color: var(--white-color);
}
.hero-section a:hover {
  color: var(--main-color) !important;
  transition: var(--main-transition);
}
.hero-section .phone-numbers {
  list-style: none !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 !important;
}
.hero-section .phone-numbers li {
  background-color: var(--main-color);
  padding: 10px 30px;
  border-radius: 100px;
  min-width: 140px;
  text-align: center;
}
.hero-section .phone-numbers li:hover {
  background-color: var(--dark-color);
}
.hero-section .card {
  border-radius: 30px;
  padding: 30px 15px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.hero-section .card h4 {
  color: var(--main-color);
  font-size: 30px;
}
.hero-section .card .form-label {
  text-align: right !important;
  font-size: 18px;
  /* padding: 10px; */
}
.hero-section .card .send-btn {
  background-color: var(--main-color);
  color: var(--white-color);
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .hero-section {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .hero-section .bg-overlay,
  .hero-section .bg-overlay2 {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }
}
/* End Hero Section */

/* Start About */
.about {
  padding: 100px 0;
  background-color: var(--white-color);
}
.about .box {
  background-color: var(--dark-color);
  padding: 20px 15px;
  border-radius: 30px;
  margin: 40px 0;
  min-height: 300px;
}
.about .box h3 {
  color: var(--white-color);
}
.about .box p {
  color: var(--white-color);
}
.about p a {
  color: var(--main-color);
  text-decoration: none;
  font-weight: bold;
}
/* End About */

/* Start Services */
.services {
  padding: 100px 0;
}
.services img {
  border-radius: 30px;
}
.services .row {
  padding: 40px 0;
}
.services p a {
  color: var(--main-color);
  text-decoration: none;
  font-weight: bold;
}
/* End Services */

/* Start Advice */
.advice {
  padding: 100px 0;
  background-color: var(--dark-color);
}
.advice .lead {
  color: var(--white-color);
}
.advice p a {
  color: var(--main-color);
  text-decoration: none;
  font-weight: bold;
}
/* End Advice */

/* Start Contact */
.contact {
  padding: 100px 0;
  background-color: var(--white-color);
}
.contact .call-box {
  background-color: var(--main-color);
  border-radius: 30px;
  padding: 50px 15px;
}
.contact .call-box .note-text {
  background-color: var(--dark-color);
  padding: 10px 15px;
  font-style: italic;
  border-radius: 20px;
  display: inline-block;
  margin: 30px 0;
  font-size: 20px;
}
.contact .call-box .phone-numbers {
  list-style: none;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  flex-wrap: wrap;
  padding: 0 !important;
}
.contact .call-box .phone-numbers a {
  text-decoration: none;
  color: var(--white-color);
  font-size: 30px;
  font-weight: bold;
  padding: 10px 35px;
  border: solid 1px #fff;
  border-radius: 100px;
  display: inline-block;
  margin: 20px;
}
.contact p a {
  color: var(--main-color);
  text-decoration: none;
  font-weight: bold;
}
/* End Contact */

/* Start Footer */
footer {
  background-color: #1b1b1b;
  padding: 20px 10px;
}
footer p {
  color: var(--white-color);
  padding: 0;
  margin: 0;
}
/* End Footer */

/* Sticky Button */
.call-btn-sticky {
  position: fixed;
  bottom: 30px;
  left: 20px;
  background-color: #0984e3;

  color: var(--white-color);
  padding: 10px;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  animation: pulseZoom 1.5s ease-in-out infinite;
}
.whatsapp-btn-sticky {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background-color: rgb(14, 158, 14);

  color: var(--white-color);
  padding: 10px;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  animation: pulseZoom 1.5s ease-in-out infinite;
}
.call-btn-sticky:hover,
.whatsapp-btn-sticky:hover {
  color: var(--white-color);
}
@keyframes pulseZoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Start Content */
.content {
  padding: 100px 0;
}
.content h2,
.content h3 {
  color: var(--main-color);
}
/* End Content */
