* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Albert Sans',sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none !important;
}

body {
    overflow-x: hidden !important;
}

a:hover {
    text-decoration: none;
}

li {
    list-style: none;
}

.dropdown-menu {
    --bs-dropdown-link-active-bg: transparent !important;
}

/* //////----------------- Main CSS Start-----------------///// */

/* / /////////////////////////////////////// / */
header {
  background-color: #0A9642;
  width: 100%;
  height: 110px;
  padding: 20px;
  align-items: center;
  color: #fff;
  position: relative;
}

header .social-links a{
    font-size: 16px;
    color: #0A9642;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    border-radius: 50px;
    padding: 5px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
}

header .contact-info a{
    color: #fff;
}

header .contact-info a .icon{
    box-shadow: 0px 0px 30px -5px;
    padding: 10px;
    background: transparent;
    border-radius: 50%;
}

header .contact-info  .phone_call a::after, 
header .contact-info .email_info a::after{
    content: '';
    border-left: 2px solid #fff;
    height: 32px;
    margin: 0px 0px 0px 15px;
}

.navbar-toggler:focus{
    box-shadow: none !important;
}

.navbar-toggler{
    border: 2px solid #1D3176c2 !important;
}

.navbar-toggler-icon{
    background: #0080004a;
}

/* / ////////////////////////////// / */
.navbar-nav {
  margin-left: auto;
}

.navbar {
  position: relative;
  top: -45px;
  margin-bottom: -98px;
}

.navbar .container {
  /* box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px; */
  color: #283B60;
  font-weight: 900;
  font-size: 20px;
  background: white;
  padding: 0px 50px;
  z-index: 999;
}

.navbar-nav .nav-link  {
  color: #283B60;
}

.navbar-nav .nav-item .active{
    color: #fff;
    background-color: #283B60;
    border-radius: 5px;
    padding: 6px 20px !important;
}

.navbar-nav .nav-link:hover{
    color: #F6BB19;
}

.navbar .navbar-nav .nav-item,
.dropdown-item {
  position: relative;
  padding: 0 20px;
}

/* Home Section Start */
.home-section{
    width: 100%;
    height: auto;
    position: relative;
}

.carousel-inner{
    z-index: 1;
}

.home-section .carousel-item img{
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-section .carousel-item .hero-overlay{
    background-color: #1D3176c2;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8%;
    right: 0;
    width: 50%;
    height: auto;
    transform: skewX(25deg);
    z-index: 0;
}

.home-section .carousel .carousel-control-prev,
.home-section .carousel .carousel-control-next{
    position: absolute;
    background: #90eeb6;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    opacity: 9;
    border: 5px solid #fff;
}

.home-section .carousel .carousel-control-next{
    top: 85%;
    right: 15%;
}

.home-section .carousel .carousel-control-prev{
    top: 85%;
    left: 76%;
}

.home-section .carousel .carousel-caption{
    width: 626px;
    left: 15%;
    top: 35%;
}

.home-section .carousel .carousel-caption h1{
    font-size: 3rem;
}

.home-section .carousel .carousel-caption .submit-btn{
    background: #F6BB19;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px;
    box-shadow: -2px 2px 0px 1px rgb(255, 255, 255);
}
/* Home Section End */

/* About Section Start */
.about-section{
    width: 100%;
    height: auto;
    padding: 5%;
    position: relative;
}

.about-section .title{
    color: #393939;
    font-size: 25px;
    font-weight: 800;
    text-transform: capitalize;
    position: relative;
}

.about-section .title::after{
    content: '';
    width: 100px;
    background: #393939;
    height: 1px;
    position: absolute;
    bottom: 25%;
    margin-left: 10px;
}

.about-section .subtitle{
    font-weight: bold;
    color: #000;
    font-size: 2.8rem;
}

.about-section .subtitle span{
    color: #F6BB19;
}

.about-section p{
    font-weight: 500;
}

.about-section .abt-icon{
    font-size: 1.8rem;
    color: #0A9642;
    border: 2px solid #0A9642;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.about-section .abt-title{
    font-weight: 900;
    font-size: 1.6rem;
}

.about-section .abt-contact{
    border: 7px solid #0A9642;
    border-radius: 10px;
    padding: 5px 20px;
    width: fit-content;
}

.about-section .abtimg-bx{
    border-radius: 20px;
    position: absolute;
    bottom: 5%;
    background: #fff;
    padding: 20px 25px;
}

.about-section .abtimg-bx h6{
    font-weight: 900;
    font-size: 18px;
}

.about-section .abt-heroimg img{
    width: 100%;
    height: auto;
}

.about-section .abtimg-bx img{
    width: 60px;
    height: 60px;
}
/* About Section End */
/* //////----------------- Main CSS End-----------------///// */