* {
  /* border: solid red; */
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  padding: 0px;
  margin: 0px;
  font-family: "roboto";
}

.blue {
  color: #e5e7eb;
  background-color: #1f2937;
  font-size: 18px;
  padding: 0 10%;
  /* originally used 230px padding */
}

.top-bar {
  display: flex;
  justify-content: space-between;
  color: #e5e7eb;
  /* background-color: #1f2937; */
  align-items: center;
  margin-top: 20px;
  /* border: solid; */
}
/* .logo{
    border: solid;
} */

.second-bar {
  display: flex;
  /* border: 4px solid purple; */
  padding: 0px;

  align-items: stretch;
}
.left,.right{flex: 1;
/* border: solid palegoldenrod; */
}
.left div {
  margin-bottom: 10px;
  /* border: solid; */
}
.right {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* height:204px; */
  
  flex: 1;
  background-color: #9a9999;
}

.right img {
  border-radius: 1em;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.top-bar,
.second-bar {
  margin-bottom: 75px;
}

.white {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.info {
  /* border: solid red; */
  text-align: center;
  padding: 1em;
}

.items {
  display: flex;
  /* border: solid; */
  gap: 50px;
  padding-bottom: 10%;
}
.contain{
  text-align: center;
  width: 175px;
}

.blue-border {
  border: 4px solid #3882f6;
  border-radius: 8%;
  height: 175px;
  width: 175px;
  margin-bottom: 10px;
}
.text {
  
  /* border: solid; */
  text-align: justify;
  text-align-last: center;
  /* word-spacing: 0.01em; */
  /* hyphens: auto; */
  /* max-width: 100%; */
  color: #666;
  
}

.quote{
    background-color: #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:10% 25% 7%;
}
.quoter{
    margin: 0;
    padding: 0;
    align-self: flex-end;
    font-size: 20px;
    font-weight: 600;
}

.last{display: flex;
justify-content: center;
align-items: center;
padding: 7% 10%;}

.blue-area{
    background-color: #3882f6;
    color: #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4% 9%;
    border-radius: 1em;
    width: 100%;

}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  display: flex;
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  gap: 1em;
}

button {
  color: inherit;
  background-color: #3882f6;
  padding: 0.5em 2.5em;
  border-radius: 0.7em;
  font-weight: bolder;
  font-size: 18px;
  
}
#second{
    border: solid #e5e7eb;
    background-color: #3882f6;
    border-radius: 0.7em;
    padding: 0.5em 2.5em;

}

h1,p{margin: 0;
padding: 0;}

footer{
    background-color: #1f2937;
    color: #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2% 20%;
    font-size: 18px;
}