@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300&display=swap');

:root {
    --primary-color: #2E8B57;   /* main green */
    --secondary-color: #145A32; /* dark green */
    --third-color: #66BB6A;     /* light green */
    --white-color:#fff;
    --text-color: #555;
    --text-gray: #999;
    --black-color: #000;
    --primary-font: 'Roboto', sans-serif;
    --secondary-font: 'Quicksand', sans-serif;
}

body {
    font-family: var(--primary-font);
    font-size: 100%;
    font-weight: 400;
    overflow-x: hidden;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

h2 {
    font-weight: 700;
    font-size: 2.25rem;
    text-transform: capitalize;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    line-height: 3rem;
}

p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.74rem;
}
#hero .hero-bg {
   min-height: 100vh;
  background: url("../images/img/img-1.png") no-repeat center center/cover;
  background-attachment: fixed;
}
.logo{
    width: 150px;
    height: 75px;
}
.text-sec{
    color: white;
}
.main-btn {
    display: inline-block;
    padding: 0.625rem 1.875rem;
    background-color: var(--primary-color);
    border: 2px solid white;
    color: var(--white-color);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: capitalize;
    transition: all .4s ease-out;
}

.main-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid;
    border-color: white;
}

.navigation-wrap{
    position: fixed;
    width: 100%;
     background: url("images/img/img-1.png") no-repeat center center/cover;
    z-index: 1000;
    background: white;
    transition: all 0.3s ease-out;
}

/* Base nav link style */
.navbar-nav .nav-link {
  position: relative;
  color: var(--primary-color) !important; 
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; 
  width: 0;
  height: 3px;
  background-color: #FFD700; 
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}


/* Hero section */
.top-banner{
    width: 100%;
    background: url('../images/img/photo-1542601906990-b4d3fb778b09.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 16.875rem 0 9.375rem;
}

.hero-section1{
    display: flex;
}
/* Counter */
.counter-section{
    background-color: var(--primary-color);
    padding: 2.5rem 0;
}
.counter-section p{
    color: var(--white-color);
    text-transform: uppercase;
}

/* Footer */
.footer{
    background: var(--primary-color)!important;
}
.footer .footer-link{
    font-size: 1rem;
    color: var(--white-color);
    padding: 0 1.875rem;
}
.footer a i{
    font-size: 1.5rem;
    color: var(--white-color);
    padding: 0 1rem;
}
