.tittle {
  color: #f40d0d;
}

.topbar-right {
  position: relative;
  background: #d44c4c;
}


.topbar-right::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 100%;
  top: 0;
  left: -15px;
  transform: skewX(-30deg);
  background-color: #d44c4c;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand {
  position: relative;
  padding-right: 50px;
  height: 75px;
  display: flex;
  align-items: center;
}

.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
  color: #c8242c;
  font-weight: bold;
}

/* Active link styling */
.nav-item.nav-link.active {
  color: #ff6b4a;
  font-weight: bold;
}

/* Base nav link */
.navbar .navbar-nav .nav-link {
  margin-right: 13px;
  padding: 20px 0;
  color: var(--dark);
  font-size: 16px;
  font-weight: 500;
  outline: none;
}
/* Desktop dropdown behavior */
@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover > .dropdown-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
}
/* Hover + Active state */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #c8242c;
  font-weight: bold;
}
/* Dropdown arrow (Font Awesome down icon) */
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  vertical-align: middle;
  margin-left: 8px;
}

/* Mobile nav style */
@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}


:root {
  --primary: #ff5e14;
  --secondary: #5f656f;
  --light: #f5f5f5;
  --dark: #02245b;
}

        /* whatsapp_icon */

        .Whatsapp_btn {
            position: fixed;
            bottom: 0px;
            left: 20px;
            width: 100px;
            height: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .Whatsapp_icon {
            color: #fff;
            width: 50px;
            height: 50px;
            font-size: 30px;
            border-radius: 50px;
            text-align: center;
            box-shadow: 2px 2px 3px #999;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translatey(0px);
            box-shadow: 0 0 0 0 #00833b;
            animation-name: pulse;
            animation-duration: 1.5s;
            animation-timing-function: ease-out;
            animation-iteration-count: infinite;
            font-weight: normal;
            font-family: sans-serif;
            text-decoration: none !important;


        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 206, 0, 0.795);
            }

            80% {
                box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
            }

        }

        .Phone_btn {
            position: fixed;
            bottom: 0px;
            right: 20px;
            width: 100px;
            height: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .Phone_icon {
            color: #fff;
            width: 50px;
            height: 50px;
            font-size: 30px;
            border-radius: 50px;
            text-align: center;
            box-shadow: 2px 2px 3px #999;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translatey(0px);
            box-shadow: 0 0 0 0 #0066ff;
            animation-name: pulse;
            animation-duration: 1.5s;
            animation-timing-function: ease-out;
            animation-iteration-count: infinite;
            font-weight: normal;
            font-family: sans-serif;
            text-decoration: none !important;
        }

        @media only screen and (max-width: 1200px) {
            .slogan {
                font-size: 18px;
            }
        }
        .page_header_two{
            background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../images/banner/01.jpeg) center center no-repeat;
            background-size: cover;
        }
        

  .form-control {
  border-radius: 30px;
  padding: 10px 15px;
}

.form-label {
  font-weight: 600;
  margin-bottom: 0px;
}

  .form-control {
    height: 45px;
  }

  .form-group {
    margin-right: 10px;
  }

  .form-group:nth-child(4) {
    margin-right: 0;
  }
.form-control:focus {
  border-color: #16f0b2;
  box-shadow: 0 0 8px rgba(22, 240, 178, 1);
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:focus::placeholder {
  opacity: 0.5;
}
@media only screen and (max-width: 100px) {
  .slogan {
    font-size: 42px;
  }
}

/* Extra styling for alignment and padding */
.form-group {
  margin-bottom: 15px;
}

/*** Footer ***/
.footer {
  color: #b0b9ae;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #b0b9ae;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: #b0b9ae;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.btn_hover:hover {
  background: #2863a7 !important;
  color: white !important;
}

.nav-item {
  flex: 0 0 auto;
}

