
.home .banner {
  object-fit: cover;
  object-position: left;
  width: 100%;
}

.home .detail {				
  align-items: center;
  background-color: #efefef;
  box-sizing: border-box;
  color: #1e1e1e;
  display: flex;
  font-weight: 500;
  font-size: 1.75em;
  line-height: 1.5em;
  min-height: 250px;
  padding: 0 calc(50% - 480px);
  text-align: center;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  
  .home .detail {
    padding: 0 48px;
  }
}

@media only screen and (max-width: 750px) {
  
  .home .detail {			
    padding: 0 24px;	
    font-size: 1.25em;
  }
}

.home .values {
  align-items: center;
  background-color: #a81e20;
  color: #fff;
  display: flex;				
  flex-direction: column;
  padding: 84px calc(50% - 480px) 96px;
}

.home .values h3 {
  font-weight: 600;
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 48px;
  width: 100%;
  text-align: left;
}

.home .values .tiles {
  display: flex;				
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.home .values .tiles .tile {
  align-items: center;
  display: flex;				
  flex-direction: column;
  font-weight: 500;
  font-size: 1.5em;
  gap: 24px
}

@media only screen and (max-width: 1024px) {
  
  .home .values {
    padding: 64px 48px;
  }

  .home .values h3 {	
    text-align: center;
    padding: 0 24px;
  }
}

@media only screen and (max-width: 750px) {
  
  .home .values {			
    padding: 24px;
  }

  .home .values h3 {	
    margin: 18px 0;
    padding: 0 24px;
  }
  
  .home .values .tiles {			
    padding: 24px;	
    font-size: 1.25em;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 24px;
  }
  
  .home .values .tiles .tile {
    font-size: 1em;
    gap: 12px;
  }
}

.home .who {
  background-color: #d8d8d8;
  display: flex;
  flex-direction: row;
  padding: 96px calc(50% - 480px);				
  gap: 45px;
}

.home .who h3 {
  color: #a81e20;
  font-size: 2em;
  margin: 0 0 36px;
}

.home .who .more {
  background-color: #a81e20;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  color: #fff;
  font-weight: 500;
  display: block;
  margin-top: 24px;
  padding: 16px 32px;
  text-decoration: none;
  text-align: center;
  width: 240px;
}

.home .who .more:hover {
  background-color: #262626;
}

@media only screen and (max-width: 1024px) {
  
  .home .who {
    padding: 48px;
  }
}

@media only screen and (max-width: 750px) {

  .home .who > img {
    object-fit: cover;
    width:100%;
  }
    
  .home .who {
    flex-direction: column;
    padding: 24px;
  }
  
  .home .who .more {
    width: 100%;
  }
}


.home .founders {
  align-items: center;
  background-color: #262626;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 96px calc(50% - 480px);
}

.home .founders h3 {
  color: #fff;
  font-weight: 600;
  font-size: 2em;
  margin: 0;
  width: 100%;
}

.home .founders p {
  color: #fff;
  margin: 24px 0 36px;
}

.home .founders .tiles {
  display: flex;				
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  gap: 36px;
}

.home .founders .tiles .tile {
  color: #fff;
  display: flex;
  flex-direction: column;
}

.home .founders .tiles .tile > img {  
  object-fit: cover;
  width: 100%;
}

.home .founders .tiles .tile > span {  
  align-items: center;
  background-color: #a81e20;
  display: flex;
  height: 42px;
  justify-content: center;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  
  .home .founders {
    padding: 48px;
  }
    
  .home .founders .tiles {   
    flex-wrap: wrap;
  }
    
  .home .founders .tiles .tile {
    width: calc(50% - 18px);
  }
}

@media only screen and (max-width: 550px) {
    
  .home .founders {
    padding: 24px;
  }
    
  .home .founders .tiles {    
    flex-direction: column;
    gap: 24px;
  }
    
  .home .founders .tiles .tile {
    width: 100%;
  }
}

.home .events {
  background-color: #d8d8d8;
  display: flex;
  flex-direction: row;
  gap: 45px;
  justify-content: center;
  align-items: center;
  height: 450px;
}

.home .events .background {
  height: 450px;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.home .events .overlay {
  align-items: center;
  background-color: rgb(168 30 32 / 70%);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 45px;
  width: 100%;
  z-index: 0;
}

.home .events .overlay h3 {
  color: #fff;
  font-weight: 600;
  font-size: 2em;
  margin: 0;
  text-align: center;
}

.home .events .overlay .register {
  background-color: #fff;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  font-weight: 500;
  color: #a81e20;
  display: block;
  margin-top: 12px;
  padding: 16px 32px;
  text-decoration: none;
  text-align: center;
}

.home .events .overlay .register:hover {
  background-color: #262626;
  color: #fff;
}

@media only screen and (max-width: 750px) {

  .home .events .overlay {
    padding: 24px;
  }
    
  .home .events .overlay .register {
    width: 100%;
  }
}