:root {
    --background: #000000;
    --primary-color: #FFFFFF;
    --secondary-color: #673090;
    --secondary-text-color: #A285BA;
    --border-color: #7F7F7F;
}

body {
    background-color: var(--background);
    color: var(--primary-color);
    font-family: 'Roboto', sans-serif !important;
    height: 100vh;
}


/* Navigation style */

nav {
    min-width: 46rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--primary-color);
}

nav a.btn {
    background-color: var(--secondary-color);
    border-radius: 0;
    color: var(--primary-color);
}

nav a.btn:hover {
    background-color: var(--secondary-color);
}

/* End navigation style */


.branch-title {
    font-size: 4rem;
}

.branch-image {
    width: 100%;
    height: 25rem;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-image-main-container {
    height: 30rem;
    border-radius: 1rem;
}

.grid-image-main-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.grid-image-container {
    height: 15rem;
    border-radius: 1rem;
}

.grid-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}



/* EFFICENT LOGISTIC SOLUTIONS FOR SEAMLESS SUPPLY CHAINS */

.solutions-container {
    height: 35rem;
}

.info-image-container {
    border-radius: 1rem;
    height: 100%;
}

.info-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.star {
    font-size: 2rem !important;
}


/* What's on site */
.site-details-image-container {
    height: 20rem;
}

.site-details-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/* Built for Export. Ready to Grow */
.side-image-container {
    height: 20rem;
}

.side-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/* ========== footer code ==========  */
.footer{
  position: relative;
  padding-bottom: 30px;
  /* top: 50%;
  left: 50%; */
  left: 40%;
  bottom: 0%;
  transform: translate(-50%, -50%);
  /* max-width: 1280px; */
  width: 100%;
  background: #000000;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  border-radius: 6px;
}
.footer .footer-row{
   display: flex;
   flex-wrap: wrap;
   /* justify-content: space-between; */
   justify-content: center;
   gap: 4px;
   /* pad: 60px; */
   padding-left: 40px; 
   padding-right: 120px;
   padding-top: 30px;
   padding-bottom: 20px;
}
.footer-row .footer-col{
  padding-left: 10%;
}

.footer-row .footer-col h4{
  /* color: ; */
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 5px;
}
.footer-col .links{
  list-style: none;
  margin-bottom: 10px;
}
.footer-col .links li{
  /* list-style: none; */
  margin-bottom: 1px;
}

.footer-col .links li a{
  text-decoration: none;
  color: var(--body-font);
}
.footer-col .links li a:hover{
  color: var(--secondary-text-color);
}

.footer-col p{
  /* color: ; */
  margin: 10px 0;
  max-width: 300px;
}
.footer-col form{
  display: flex;
  /* gap: 5px; */
}
.footer-col input{
  height: 40px; 
  border-radius: 6px;
  background: none;
  width: 100%;
  outline: none;
  border: 1px solid #7489c6;
  caret-color: black;
  color: black;
  padding-left: 10px;
}
.footer-col input::placeholder{
  color: black;
}

.footer-col form button{
background: var(--secondary-text-color);
outline: none;
border: none;
padding: 10px 15px;
border-radius: 6px;
cursor: pointer;
font-weight: 500;
transition: 0.2s ease;
}

.footer-col form button:hover{
  background: var(--first-color);
}
/* .footer-col .icons{
  display: flex;
  margin-top: 30px;
  gap: 30px;
  cursor: pointer;
}
.footer-col .icons i{
  color: var(--first-color );
}
.footer-col .icons i:hover{
  color: black;
} */

/* ===================== media footer =================== */
@media(max-width: 768px){
•footer{
  position: relative;
  bottom: 0;
  left: 0;
  transform: none;
  width: 100vh;
  border-radius: 0;
  padding-right: 20px;
} 
.footer .footer-row{
  padding: 20px;
  gap: 1rem;
}
.footer-col form{
  display: block;
}
.footer-col form :where(input, button){
  width: 100%;
}
.footer-col form :no-button{
  margin: 10px 0px 0px 0px;

}
.footer-col:nth-child(1){
  opacity: 0;
}
.footer-col .links .icons{
  justify-content: center;
  display: flex;
 
}

}

