/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root{
    /* Fonts */
    --font-family-primary:   "Oswald", sans-serif;
    --font-family-secondary: "Poppins", sans-serif;
    /* Colors for font */
    --font-primary: #0B7D4C;
    --font-secondary: #DB2027;
    --font-dark: #0D0A09;
    --font-light: #ffffff;
    
    /* Colors for background */
    --color-primary: #0B7D4C;
    --color-secondary: #DB2027;
    --color-white: #ffffff;
}

/************************************/
/*** 	   02. General Css		  ***/
/************************************/
p{
	margin-bottom: 1.1em;
}
ul,li{
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
  font-family: var(--font-family-primary);
}
h1{
	font-size: 50px;
	line-height: 50px;
}
h2{
	font-size: 50px;
	line-height: 50px;
}
h3{
	font-size: 38px;
	line-height: 38px;
}
h4{
	font-size: 20px;
	line-height: 24px;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
	display: inline-block;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1140px;
  margin: 0 auto;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 25px;
    padding-left: 25px;
}
body{
	position: relative;
	font-family: var(--font-family-secondary);
	font-size: 18px;
    line-height: 24px;
	font-weight: 400;
	color: var(--font-dark);
  margin: 0;
}


/************************************/
/*** 	    HEADER CSS            ***/
/************************************/	
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 20px;
}

.logo-img {
  display: flex;
  justify-content: center;
}

.logo-img img {
  height: 130px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav ul li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  color: var(--font-dark);
}
.nav ul li a.active{
  color: var(--font-primary);
}
.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.desktop-social {
  display: flex;
  gap: 20px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.mobile-social {
  display: none;
}


/************************************/
/*** 	    Footer CSS            ***/
/************************************/	
.footer {
  background: linear-gradient(to right, #000, #111);
  padding: 30px 20px 30px;
  color: var(--font-light);
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: end;
}
.footer-social-icon {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
}
.footer-right p{
  margin: 0;
}

/************************************/
/*** 	    Index CSS            ***/
/************************************/	
.banner-slider {
    padding: 80px 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.quote-item h2 {
  text-transform: uppercase;
  margin-bottom: 30px;
}

.owl-dots {
  margin-top: 30px;
}

.owl-dot span {
  width: 14px !important;
  height: 14px !important;
  background: #C2C9C6 !important;
  margin: 5px !important;
      display: block;
    border-radius: 100%;
}

.owl-dot.active span {
  background: var(--color-secondary) !important;
}
.video-section{
  position: relative;
}
.video-img{
  width: 100%;
}
.video-play-icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.green-text{
  position: relative;
  background: linear-gradient(
    to right,
    var(--color-primary) 0%,
    var(--color-primary) 85%,
    transparent 85%,
    transparent 100%
  );
  padding: 80px 0;
  margin-top: -50px;
  z-index: 9;
}
.green-text h2{
  color: var(--font-light);
}
.green-text h2 span{
  display: block;
  font-weight: 300;
}
.about-section {
  padding: 80px 0px;
}
.stats {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 50px;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.line {
  width: 3px;
  height: 100%;
  background: var(--color-secondary);
}
.stat-content{
  padding: 15px 0;
}
.stat-content h3 {
    font-size: 65px;
    line-height: 50px;
    font-weight: 800;
    margin-bottom: 15px;
}

.stat-content p {
  margin: 0;
}

.red-btn {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--font-light);
  padding: 14px 50px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
/************************************/
/*** 	    Our Mission CSS         ***/
/************************************/	
.top-text{
  text-align: center;
  padding: 80px 0 50px;
  max-width: 950px;
  margin: 0 auto;
}
.top-text h3{
  color: var(--font-secondary);
  text-transform: uppercase;
  font-size: 22px;
  line-height: 50px;
  font-weight: 200;
}
.w-100{
  width: 100%;
}
.mission-section .content{
  display: flex;
  gap: 50px;
  align-items: end;
  justify-content: space-between;
  margin-top: -170px;
}
.content p{
  max-width: 400px;
}

.vision-top {
    background: var(--color-primary);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 60px 120px;
    color: var(--font-light);
    margin-top: 70px;
}
.vision-item{
    border-left: 2px solid var(--color-white);
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.vision-item img{
  margin-bottom: 30px;
}
.vision-item h5{
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.vision-images {
    position: relative;
    margin-top: -50px;
    display: flex;
    align-items: center;
}
.vision-images .image-large, .vision-images .image-large img{
  width: 90%;
}
.vision-images .image-small{
    margin-left: -200px;
    margin-top: 60px;
}

.vision-content {
    margin: 60px 0;
}

.vision-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
/************************************/
/*** 	    Our leadership CSS         ***/
/************************************/	
.small-image {
  text-align: right;
  margin-top: -180px;
}
.story-section {
  padding-top: 80px;
  position: relative;
}
.story-line{
  position: relative;
}
.story-line:before{
    content: '';
    width: 2px;
    height: 88%;
    background: var(--color-secondary);
    left: 20px;
    position: absolute;
    top: 15px;
    z-index: -1;
}
.story-item {
    display: grid;
    grid-template-columns: 45px 300px 1fr;
    gap: 30px;
    align-items: flex-start;
}
.story-item p{
  padding-bottom: 70px;
}
.story-number {
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    color: var(--font-light);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.story-title h3 {
    font-size: 38px;
    font-weight: 700;
    line-height: 38px;
    margin: 0;
}

.story-content p {
    margin: 0;
}
/************************************/
/*** 	    news CSS         ***/
/************************************/	
.news-section{
  padding-bottom: 80px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

.news-card {
    display: flex;
    flex-direction: column;
}

.news-card h3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    margin-top: 15px;
    color: var(--font-dark);
}

.news-date {
    font-size: 16px;
    line-height: 22px;
    display: block;
    padding: 10px 0 15px;
}

.news-btn {
    width: fit-content;
    padding: 12px 22px;
    border: 2px solid var(--color-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 35px;
    transition: all 0.3s ease;
    color: var(--font-dark);
}

/************************************/
/*** 	    news Detail CSS         ***/
/************************************/	
.news-detail{
  padding: 40px 0;
}
.news-detail h1{
  font-size: 70px;
  line-height: 70px;
}
.back-btn {
    display: inline-block;
    margin-bottom: 30px;
    padding: 15px 35px;
    background: var(--color-secondary);
    color: var(--font-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 40px;
}

.news-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 60px;
}

.news-main h1 {
    font-size: 70px;
    line-height: 70px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-date {
    font-size: 16px;
    font-weight: 400;
    display: block;
    margin-bottom: 25px;
}

.share {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 2px solid var(--color-secondary);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.share span {
    margin-right: 10px;
}

.share a {
    background: var(--color-white);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.news-sidebar h4 {
    color: var(--font-secondary);
    text-transform: uppercase;
    font-size: 22px;
    line-height: 50px;
    font-weight: 200;
}

.related-card {
    margin-bottom: 40px;
}

.related-image {
    margin-bottom: 15px;
}

.related-card h5 {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--font-dark);
}

.related-card span {
    font-size: 16px;
    line-height: 22px;
    display: block;
    margin-top: 5px;
    margin-bottom: 12px;
}

.read-btn {
    display: inline-block;
    padding: 10px 18px;
    border: 2px solid var(--color-secondary);
    border-radius: 40px;
    font-size: 15px;
    text-decoration: none;
    color: var(--font-dark);
    transition: 0.3s;
}











