body{
  margin: 0 ;
  padding: 0;
}
@font-face {
  font-family: "BebasNeueRegular";
  src: url("./fonts/BebasNeueRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

.layout_city_logo{
width: 160px;
height: 150px;
position: absolute;
z-index: 9;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.layout_city{
display: flex;
flex-wrap: wrap;
}
.layout_city_list:hover{
  background: #00A1E3;
}
.layout_city_list{
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 50vh;
  position: relative;
  z-index: 2;
}
.layout_city_list:hover .layout_city_item{
  color: #fff;
}
.layout_city_list:hover .layout_city_item p{
  color: #fff;
}
.layout_city_list:hover svg{
background: #fff;
}
.layout_city_list:hover svg path{
fill: #00A1E3;
}
.layout_city_item svg path{
fill: #fff;
}
.layout_city_list a{
font-family: BebasNeueRegular;
height: 50vh;
}
.layout_city_item {
font-size: 68px;
font-style: normal;
font-weight: 400;
line-height: 68px;
letter-spacing: 0em;
text-decoration: none;
color: #00A1E3;
text-align: center;
}
.layout_city_item p{
color: #222222;
font-family: Open Sans;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 30px;
letter-spacing: 0em;
}
.layout_city_item svg {
padding: 15px;
border-radius: 50%;
}
.layout_city_item::before{
  content: '';
  display: inline-block;
  height: 25vh;
  transition: all ease .2s;
}
.layout_city_item:hover::before{
  height: 20vh ;
}
.triangle{
  width: 160px;
  height: 150px;
  position: absolute;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%);
}
.triangle span{
  position: absolute;
  z-index: 1;
}
.triangle span:nth-child(1),
.triangle span:nth-child(2){
  border: 80px solid transparent;
  border-top: 80px solid #00A1E3;
}
.triangle span:nth-child(3),
.triangle span:nth-child(4){
  border: 75px solid transparent;
  border-top: 75px solid #00A1E3;

}
.triangle span:nth-child(1){
  top: 150px;
  display: none;
}
.triangle span:nth-child(2){
  bottom: 150px;
  transform: rotate(180deg);
  display: none;
}
.triangle span:nth-child(3){
  right: 160px;
  transform: rotate(90deg);
  display: none;
}
.triangle span:nth-child(4){
  left: 160px;
  transform: rotate(270deg);
  display: none;
}
.one:hover ~ .triangle span:nth-child(3){
  display: block;
}
.one:hover ~ .triangle span:nth-child(2){
  display: block;
}
.two:hover ~ .triangle span:nth-child(4){
  display: block;
}
.two:hover ~ .triangle span:nth-child(2){
  display: block;
}
.three:hover ~ .triangle span:nth-child(1){
  display: block;
}
.three:hover ~ .triangle span:nth-child(3){
  display: block;
}
.four:hover ~ .triangle span:nth-child(1){
  display: block;
}
.four:hover ~ .triangle span:nth-child(4){
  display: block;
}