body{
	margin: 0px;
	height: auto;
	overflow-x: hidden;
}

footer{
	margin-top: auto;
	margin-bottom: 0px;
}

.roboto-regular {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-style: normal;
}

*{
	box-sizing:border-box;
}

a{
	text-decoration:none;
}


.container{
	width: 100%;
  max-width: 5000px;
  margin: 0 auto;
}

body {
  background-color: white;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    overflow-x: hidden;
  }

  .container {
    flex-direction: column;
    overflow-x: hidden;
  }

}


#Parent1{
	width: 100%;
	padding: 10px 5px;
  display: flex;
  flex-wrap: wrap;
	justify-content: space-evenly;	
	align-items: center;
	background-color: #6D1B1B;
	color: white;
	gap: 10px;
	box-sizing: border-box;
}
.Phone{
	white-space: nowrap;
	font-size: 14px;
}
@media(max-width:768px){

	#Parent1{
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}

	#Parent1 div{
		display: flex;
		align-items: center;
		font-size: 14px;
		gap: 5px;
	}

	select{
		padding: 3px;
		border-radius: 4px;
	}

}

#box{
	width: 50%;
	padding-right: 30px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
	background-color: #6D1B1B;
	color: white;
}

@media(max-width:768px){

	#box{
		margin-left: -250px;
	}
}
#logo{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 10px;
	gap: 5px;
}
#logo a{
	text-decoration: none;
	color: white;
}
#size{
	margin-right: 2%;
}
#logo2{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 10px;
}
#logo2 a{
	text-decoration: none;
	color: white;
}
#size3{
	margin-right: 4%;
	margin-top: 1%;
}
#logo3{
	width: 50%;
	display: flex;
	align-items: center;
	margin-left: 8px;
}
#logo3 a{
	text-decoration: none;
	color: white;
}
#size5{
	margin-right: 1%;
}

@media (max-width: 768px){

   #size{
    width: 25px;
   }
   #size3{
    width: 25px;
   }
   #size5{
    width: 60px;
   }
}

#logo4{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

@media (max-width: 768px){

	 #logo4{
	 	margin-left: -100px;
	 }
}

#logo4 a{
	text-decoration: none;
	color: white;
}

.language-switcher {
  position: relative;
  display: inline-block;
}

.language-switcher select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 40px 10px 15px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.language-switcher select:hover {
  border-color: #007bff;
}

/* Focus effect */
.language-switcher select:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

/* Custom arrow */
.language-switcher::after {
  content: "▼";
  font-size: 10px;
  color: #555;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

#Parent2{
	width: 90%;
  display: flex;
	justify-content: space-between;	
	align-items: center;
	padding: 1px 20px;
}
#Heading1{
	display: flex;
	justify-content: center;
	margin-left: 10%;
	margin-right: 10px;
	margin-top: -60px;
}
#size8{
	margin-left: 35%;
	margin-top: 3%;
}
#size9{
	margin-top: 0;
	margin-left: 0;
}
#Heading2{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: flex-end;
	align-items: center;
	margin-top: -85px;
	margin-right: 0;
}
#Heading2 a{
	text-decoration: none;
	color: #222;
	font-weight: 500;
	position: relative;
	padding-bottom: 5px;
	transition: 0.3s ease;
}

@media(max-width:768px){

#Heading1{
    flex-direction:column;
    align-items:center;
    margin-top: 2px;

}
#Heading2{
    flex-direction:column;
    align-items:center;
    gap:15px;
    margin-top: 15px;
    margin-left: 50px;
}

}

/* Hover effect */
#Heading2 a:hover{
	color: #6D1B1B;
}

/* Animated underline */
#Heading2 a::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	background-color: goldenrod;
	transition: 0.3s ease;
}

#Heading2 a:hover::after{
	width: 100%;
}

#Heading2 a.active{
	color: #6D1B1B;
}

#Heading2 a.active::after{
	width: 100%;
}
/* Hover effect */
#Heading2 a:hover{
    color: goldenrod;
}

#Wrapper2{
  width: 100%;
  min-height: 40vh;
  margin-top: -60px;
  padding: 100px 20px;
  background-image: url('images/image.png');
  background-size: cover;      /* makes it fill the screen */
  background-position: center; /* keeps it centered */
  background-repeat: no-repeat;
}
	
#Parent3{
	padding-top: 5%;
	text-align: center;
  color: black;
}

@media (max-width: 768px) {
 
  #Wrapper2{
  	margin-top: 15%;
    object-fit: contain;
  }
  #Parent12{
  	margin-top: 4%;
    object-fit: contain;
  }
}

#g{
	color: #6D1B1B;
	font-size: 50px;
	font-weight: bolder;
}

#line4{
	width: 5%;
	border: 1px solid goldenrod;
	margin-top: 2%;
	margin-left: 47%;
}
#Wrapper3{
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:center;
	gap:40px;
	padding:50px 20px;
}

#Parent12,
#Parent13{
	flex:1 1 500px;
	max-width:600px;
	width:100%;
}

#Parent12 img{
	width:100%;
	height:auto;
	display:block;
}

#Parent12 img{
	border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
#Parent13{
	width: 60%;
	margin-left: 5%;
}
#text14{
	margin-top: 3%;
	font-size: 25px;
	color: goldenrod;
	display: flex;
	align-items: center;
}

#wrap7{
	width: 100%;
	margin-top: 2%;
}
#text15{
	font-size: 40px;
	font-weight: bolder;
}
#f{
	color: #6D1B1B;
	font-size: 40px;
	font-weight: bolder;
}
#text16{
	font-size: 17px;
	margin-top: 3%;
	margin-bottom: 3%;
  line-height: 2;
}

#text17{
	font-size: 17px;
	margin-top: 3%;
	margin-bottom: 3%;
  line-height: 2;
}
.wrap9{
	width: 30%;
	margin-top: 5%;
	padding: 1%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
	background-color: #6D1B1B;
	color: white;
}
.wrap9 a{
	text-decoration: none;
	color: white;
}
#text18{
	margin-right: 4%;
}
.text18{
	font-size: 15px;
	color: goldenrod;
	display: flex;
	align-items: center;
}

@media (max-width: 768px) {

  #Wrapper3{
    flex-direction: column;
    text-align: center;
  }
   
  #text14{
       display: flex;
       justify-content: center;
   }

   #text17{
   	margin-top: 20px;
   }

}

#Parent5{
	width: 80%;
	text-align: center;
	margin-top: 5%;
	margin-left: 10%;
}

@media (max-width: 768px){

	#Parent5{
		margin-top: -100px;
	}

}
#text8{
	font-size: 20px;
	color: goldenrod;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
}
#line3{
	width: 2%;
	border: 1px solid goldenrod;
	margin-left: 1%;
	margin-right: 1%;
}
#Wrapper4{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:30px;
	padding:20px;
	margin:0 auto;
	width:100%;
}

.Parent6{
	flex:1 1 30px;
	max-width:610px;
	width:100%;
	padding-right: 15px;
}

.Parent6{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  padding-left: 40px;
  text-align: left;
	border: 1px solid lightgray;
	border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}


@media (max-width: 768px){

  #Wrapper4{
  	width: 100%;
  	flex-direction: column;

  }

  .Parent6{
  	width: 500px;
  	margin-left: 40px;
  	padding-right: 15px;
  }

}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


.text11{
	margin-top: 8%;
	font-size: 18px;
	font-weight: bolder;
}
.text-box {
  display: flex;  
  flex-direction: column;
  gap: 3px; /* vertical spacing */
  margin-top: -5px;
}

/* ICON CIRCLE */
.icon-circle {
  width: 70px;
  height: 70px;
  background: #6D1B1B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 2s linear infinite;
}


@media (max-width: 600px) {
  .mission-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ICON CIRCLE */
.icon-circle {
  width: 90px;
  height: 90px;
  background: #6D1B1B;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  animation: spin 2s linear infinite;
}

.text{
  flex: 1;
}

.icon-circle{
    width: 90px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 768px){

    .Icon-circle{
        width: 70px;
        height: 70px;
    }

}

.core-values {
	width: 95%;
	margin-left: 2%;
  text-align: center;
  padding: 0px 20px;
  background: #fff;
}

/* TITLE */
.section-title {
  color: goldenrod;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 40px;
  position: relative;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 2%;
  height: 2px;
  background: #C9A24A;
  position: absolute;
  top: 50%;
}

.section-title{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:15px;
}

.section-title::before,
.section-title::after{
	position:static;
	width:50px;
	height:2px;
}

@media (max-width: 768px){
	.section-title::before,{
    left: 10px;
	}
	.section-title::after,{
    right: 10px;
	}
}

@media (max-width: 1200px){
	.section-title::before,{
    left: 10px;
	}
	.section-title::after,{
    right: 10px;
	}
}

/* CONTAINER */
.values-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: px;
}

/* EACH ITEM */
.value-item {
  padding: 20px;
  position: relative;
}

/* VERTICAL DIVIDER */
.value-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 1px;
  height: 60%;
  background: #ddd;
}

/* ICON CIRCLE */
.value-icon {
  width: 80px;
  height: 80px;
  border: 1px solid goldenrod;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* ICON */
.value-icon svg {
  width: 35px;
  height: 35px;
}

/* TEXT */
.value-item h3 {
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.value-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .values-container {
    grid-template-columns: 1fr 1fr;
  }

  .value-item::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .values-container {
    grid-template-columns: 1fr;
  }
}


#Wrapper5{
	width: 96%;
	margin-top: 2%;
	margin-left: 30px;
	display: flex;
}
#Parent14{
	width: 60%;
}
#text18{
	font-size: 20px;
	color: goldenrod;
	display: flex;
	align-items: center;
}
#wrap10{
	width: 100%;
	margin-top: 2%;
}
#text19{
	font-size: 40px;
}
#text20{
	font-size: 17px;
	margin-top: 6%;
	gap: 3px;
}
.text-box2 {
  display: flex;  
  flex-direction: column;
  gap: 10px; /* vertical spacing */
  margin-top: 3%;
  line-height: 1.8;
}

#line2{
	height: 400px;
  margin-left: 20px;
	border-left: 2px solid lightgray;
}

#Journey{
    display:flex;
    flex-wrap:nowrap;
    justify-content:center;
    gap:15px;
}

#wraps{
    flex:1 1 180px;
    max-width:220px;
}

@media (max-width:  768px){

	#Journey{
		display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
	}
}
#wraps h2{
	margin-top: 10%;
	color: #6D1B1B;
}
#wraps2 p{
	width: 90%;
	margin-bottom: 1%;
}


.timeline-section {
  position: relative;
  padding: px 2px;
  margin-left: 2%;
  text-align: center;
  overflow: hidden;
}

#wmap{
  margin-top: -2%;
  height: 60vh;
  background-image: url('world map3.png');
  background-size: cover;      /* makes it fill the screen */
  background-position: center; /* keeps it centered */
  background-repeat: no-repeat;
}
/* Background map */
.bg-map {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  z-index: 0;
}

@media (max-width: 768px){

	#Wrapper5{
     flex-direction: column;
	}

  #Parent14{
  	width: 100%;
     text-align: center;
  }

  #text18{
  	margin-left: 220px;
  	text-align: center;
  }
  .text-box2{
  	line-height: 1.8;

  }
	#wmap{
		object-fit: contain;
	}
}



/* Timeline items */
.timeline-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* Each item */
.item {
  width: 18%;
  margin-top: 10%;
  position: relative;
}

/* Dot */
.dot {
  width: 12px;
  height: 12px;
  background: #6D1B1B;
  border-radius: 50%;
  margin: 0 auto 10px;
}

/* Year */
.item h3 {
  color: #6D1B1B;
  margin-bottom: 10px;
}

/* Text */
.item p {
  font-size: 14px;
  color: #000;
  min-height: 60px;
}



/* Drawing animation */
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}


/* Odd years */
.panel:nth-child(odd) h2,
.item:nth-child(odd) h3 {
  color: #6D1B1B;
}

/* Even years */
.panel:nth-child(even) h2,
.item:nth-child(even) h3 {
  color: goldenrod;
}

/* Odd items */
.panel:nth-child(odd) .dot,
.item:nth-child(odd) .dot {
  background: #6D1B1B;
}

/* Even items */
.panel:nth-child(even) .dot,
.item:nth-child(even) .dot {
  background: goldenrod;
}

.segment {
  stroke-dasharray: 400;
  animation:
    drawLine 2s ease forwards,
    pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

.segment {
  filter: drop-shadow(0 0 4px rgba(109,27,27,0.3));
}


/* Image */
.img-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 15px auto 0;
}
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  transform: scale(1.9) translateX(15px) translateY(1px);
}

#img-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 15px auto 0;
}
#img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1) translateX(1px) translateY(1px);
}

#img-box2 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 15px auto 0;
}
#img-box2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1) translateX(1px) translateY(1px);
}

#img-box3 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 15px auto 0;
}
#img-box3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1) translateX(1px) translateY(1px);
}

#img-box4 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 15px auto 0;
}
#img-box4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1) translateX(1px) translateY(1px);
}
@media (max-width: 768px) {
  .timeline-items {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .item {
    width: 250px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: -30px;
  }

  .item p{
  	flex-wrap: wrap;
  }

  .curve {
    display: none; /* cleaner on mobile */
  }
}

#Wrapper6{
	width: 100%;
	padding: 2%;
	margin-top: 2%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #6D1B1B;
}

.stat2 {
	display: flex;
	margin-left: 10%;
  position: relative;
  color: #FFD700;
}
.stat2 h2 {
  font-size: 25px;
  margin: px 0;
  font-weight: bold;
  color: #FFD700;
}

.stat2 p {
  width: 100%;
	margin-bottom: 3%;
  font-size: 16px;
  color: #fff;
}
.stat2 img{
  position: relative;
  top: -1px;
}
#merge{
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.wrap16{
	margin-right: 10%;
	padding-left: 1.8%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid white;
	border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
	background-color: goldenrod;
}

.wrap16 a{
	text-decoration: none;
	color: #6D1B1B;
}

#BGcolor{
	width: 100%;
  background-color: black;
  color: white;
}
#Wrapper7{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 10px;
  box-sizing: border-box;
}

@media(max-width:768px){

    #Wrapper7{
        flex-direction:column;
        align-items:flex-start;
    }

    .Parent2,
    #GParent2{
        width:100%;
    }

    #divider2{
        display:none;
    }

}


.Parent2{
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}

#GParent2{
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  margin-top: -90px;
  position: relative;
}

.Parent2,
#GParent2{
    flex: 1;
}

.footer-logo{
    width:100%;
    max-width:300px;
    height:auto;
    margin-bottom: -30px;
    margin-left: 2%;
   }

#your-text {
  width: 500px;
  line-height: 1.8;
  text-align: center;
  position: relative;
  top: -70px;
  left: -60px;
}

#footer,
#Heading3,
#your-text,
.logo,
.logo2,
.logo3{
	word-break: normal;
	overflow-wrap: break-word;
}

#Heading3{
	width: 100%;
	max-width: 350px;
	line-height: 1.6;
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-top: 2%;
	margin-left: 0;
	position: relative;
}

.size8{
	margin-left: 100px;
	margin-top: 3%;
}

#Heading4{
	width: 100%;
	display: flex;
	margin-left: 10%;
	margin-top: -40px;
}
.social-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background-color: #000; /* your theme */
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 5px;
  transition: 0.3s;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #8B2C2C;
}

#divider2{
  width: 2px;
  height: 250px;
  background-color: rgba(255,255,255,0.3);
  margin: 0 20px;
}

.Heading2{
  width: 100%;
  margin-top: 10%;
  margin-left: 25%;
  line-height: 2;
}
.Heading2 a{
	margin-top: 10%;
	line-height: 1.2;
	text-decoration: none;
	color: white;
}
#footer{
  width: 90%;
  margin-top: 10%;
  margin-left: 28%;
  line-height: 2;
}
#footer a{
	margin-top: 10%;
	text-decoration: none;
	color: white;
}
.Heading3{
	width: 90%;
	margin-top: 8%;
	font-size: 20px;
}
#link{
	margin-left: -2%;
}

.box2{
	margin-left: 20%;	
	margin-top: 50px;
	color: white;
}

.logo{
	display: flex;
	align-items: center;
}
.logo a{
	text-decoration: none;
	color: white;
}
.size{
	margin-right: 4%;
}

.logo2{
	display: flex;
	align-items: center;
}
.logo2 a{
	text-decoration: none;
	color: white;
}
.size3{
	margin-right: 4%;
	margin-top: 3%;
}

.logo3{
	display: flex;
	align-items: center;
}
.logo3 a{
	text-decoration: none;
	color: white;
}
.size5{
	margin-right: 2%;
}
.box3{
	width: 80%;
	height: 3%;
	margin-left: 3%;
	margin-top: 8%;	
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}
.logo4{
	margin-left: 3%;
}
#size2{
	margin-left: 15%;
	text-decoration: none;
	color: white;
}
.logo5{
	margin-left: 2%;
}
#size4{
	margin-left: 12%;
	text-decoration: none;
	color: white;
}
.logo6{
	display: flex;
	align-items: center;
}
.logo6 a{
	text-decoration: none;
	color: white;
}
#note{
	color: black;
}

@media (max-width: 768px){
   
   .footer-logo{
    width:100%;
    max-width:300px;
    height:auto;
    margin-top: 10px;
    margin-bottom: -70px;
    margin-left: 10%;
    }

   #your-text{
   	width: 95%;
   	margin-left: 90px;
    margin-top: 40px;
   	line-height: 1.8;
   	text-align: center;
   }
  #Heading4{
  	 margin-top: -10%;
     margin-left: 35%;
  }
	#footer{
		text-align: left;
    margin-top: 25px;
		margin-left: 40%;
	}
	.Heading2{
    margin-top: 25px;
		margin-left: 30%;
		text-align: left;
	}
	.Heading3{
  	 margin-top: 12%;
  }
  #link{
     margin-top: 7%;
  }
	#gap{
		line-height: 1.8;
	}
	.size50{
		margin-left: 8%;
	}
	.size51{
		margin-left: 20%;
	}
	.box2{
    margin-top: 25px;
		margin-left: 30%;
	}
	.logo{
		margin-bottom: 3%;
	}
	#size2{
		margin-left: 30%;
	}
	#size4{
		margin-left: 30%;
	}
	#size6{
		margin-bottom: 1%;
	}
	.size8{
		margin-left: 42%;
	}
	.box3{
		margin-left: 15%;
	}
	#time{
		width: 100%;
	}
  #link2{
    margin-left: 17%;
  }

}

#Wrapper8{
	width: 100%;
	margin-top: -95px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}
#GParent3{
	display: flex;
	align-items: center;
}
#GParent4{
	width: 40%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 2%;
	margin-top: -1%;
}
#GParent4 a{
	text-decoration: none;
	color: white;
}
.children2{
	width: 60%;
	margin-top: 1%;
	margin-left: 4%;
	margin-right: 4%;
}


@media (max-width:768px){

	#Parent1,
	#Parent2,
	#Wrapper3,
	#Wrapper5,
	#Wrapper6,
	#Wrapper8{
		flex-direction:column;
		text-align:center;
	}

	#Heading2{
		justify-content:center;
		gap:15px;
	}


	.wrap9{
		width:250px;
		margin:30px auto;
	}
}

/* =========================
TABLET
========================= */

@media (max-width: 992px){

	#Parent1,
	#Parent2,
	#Wrapper3,
	#Wrapper6,
	#Wrapper8{
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	#Heading2{
		justify-content: center;
	}

	.hero{
		flex-direction: column;
		text-align: center;
	}

	#Parent12{
		margin-left: 0;
	}

}

/* =========================
MOBILE
========================= */

@media (max-width: 768px){

	body{
		font-size: 16px;
    overflow-x: hidden;
	}
  
  #Parent1 {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
	#Heading2{
		flex-direction: column;
		gap: 15px;
	}

	#Parent4{
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	#line2{
		display: none;
	}

	.wrap9{
		width: 80%;
		margin: auto;
		margin-top: 30px;
	}

	#merge{
		width: 100%;
		flex-direction: column;
		gap: 20px;
	}

	.wrap17 a{
		position: static;
	}

	#GParent4{
		width: 100%;
		flex-direction: column;
		gap: 15px;
		margin-bottom: 4%;
	}

	#Wrapper8{
		margin-top: 20px;
		flex-direction: column;
		gap: 20px;
	}
  #GParent3{
    text-align: center;
    flex: 1;
  }
  #GParent3{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  #text{
    margin: 0;
  }

}

/* =========================
SMALL PHONES
========================= */

@media (max-width: 480px){
  
  #Parent1 {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  #box{
     margin-left: -200px;
   }
   #size20{
    margin-left: -10px;
   }
   #logo2{
    margin-left: -2px;
   }
   #size3 {
    margin-right: -4%;
  }
   #logo3{
    margin-left: -4px;
   }
   #size6{
    margin-left: -8px;
   }
   #logo4 {
    margin-left: -0px;
  }

  #Wrapper2 {
    margin-top: 1%;
    height: 20vh;
    padding: 5px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
  }
  #Parent3 {
    padding-top: 35%;
    margin-left: 8%;
    text-align: center;
    color: black;
  }
  #line4{
    width: 10%;
  }
  #g,
    #f,
    #text15,
    #text9{
        font-size: 28px;
    }
    #Wrapper3 {
    padding: 10px 20px;
    }
    .wrap9 {
    width: 100%;
  }
    #text16,
    #text10{
        font-size: 17px;
        margin-top: 15px;
        line-height: 1.8;
    }
	.hero-text h1{
		font-size: 1.8rem;
	}
	#Parent5 {
    margin-top: -200px;
  }
  #Wrapper4 {
    width: 100%;
    margin-left: -30px;
    flex-direction: column;
  }
  .Parent6 {
    width: 350px;
    margin-left: 25px;
    padding-right: 15px;
    line-height: 1.6;
  }
  .text{
    width: 50%;
    margin-left: -0px;
  }
  .core-values{
    margin-top: 50px;
  }
	#g{
		font-size: 2rem;
	}

	#text9,
	#text15,
	#text20{
		font-size: 24px;
	}
  #Wrapper5{
    margin-top: 20px;
    margin-left: 2px;
  }
  #text18 {
    margin-left: 120px;
    text-align: center;
  }
  #wrap10 {
    width: 100%;
    margin-top: 2%;
    margin-left: 8px;
  }
	.stat h2,
	#stat h2{
		font-size: 28px;
	}
  #Journey{
    margin-left: 30px;
    margin-top: 10px;
  }
  #wraps {
    flex: 1 1 180px;
    max-width: 100px;
}
  #Wrapper5 path{
    margin-top: 5px;
  }
  .timeline-items {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
  }
  .item {
    width: 150px;
    margin-top: 40px;
    margin-bottom: -30px;
}
  #GParent3{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left: -20px;
    }

    #GParent3 .notranslate{
    margin-right: -10px;
    font-size:20px;
    color:white;
  }

  #text{
    margin-right: -20px;
  }
  .stat2{
    margin-left: 2px;
  }
  #Wrapper7{
    margin-left: -50px;
  }
  .box3 {
    margin-left: 15%;
    gap: 10px;
  }
  #Wrapper8{
    margin-left: 50px;
  }
}

/* LIGHT MODE */
body{
    background-color:white;
    color:black;
}

/* DARK MODE - follows device setting */
@media (prefers-color-scheme: dark){

    body{
        background-color:#121212;
        color:white;
    }

    #Parent2{
        background-color:#1e1e1e;
    }

    #Heading2 a{
        color:white;
    }

    #Heading2 a.active{
        color:goldenrod;
    }

    .Parent6{
        background-color:#1e1e1e;
        border:1px solid #333;
        color:white;
    }

    .value-item p,
    #text16,
    #text17,
    .text-box2,
    .item p{
        color:#d0d0d0;
    }

    #BGcolor{
        background:black;
    }
}

 /* Language dropdown */
  .language-switcher select{
    background:#1e1e1e;
    color:white;
    border:1px solid #444;
  }



    