
/** location-section **/

.location-section{
  position: relative;
}

.location-section .inner-container{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
img.round {
  width: 100%;
  max-width: 250px;
  height: 251px;
}

.location-block-one .inner-box{
  position: relative;
  display: block;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.location-block-one .inner-box:hover{
  transform: translateY(-10px);
}

.location-block-one .inner-box .image-box{
  position: relative;
  display: block;
}

.location-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 2px;
  height: 63px;
  left: 50%;
  margin-left: -1px;
}

.location-block-one:nth-child(odd) .inner-box .image-box:before{
  bottom: 15px;
}

.location-block-one:nth-child(even) .inner-box .image-box:before{
  top: 15px;
}

.location-block-one .inner-box .image-box:after{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 11px;
  height: 11px;
  left: 50%;
  border-radius: 50%;
  margin-left: -5.5px;
}

.location-block-one:nth-child(odd) .inner-box .image-box:after{
  bottom: 5px;
}

.location-block-one:nth-child(even) .inner-box .image-box:after{
  top: 5px;
}

.location-block-one .inner-box .image-box .image{
  position: relative;
  display: inline-block;
  border-radius: 50%;
}

.location-block-one .inner-box .image-box .image img{
  width: 100%;
  border-radius: 50%;
}

.location-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 26px;
  line-height: 36px;
  font-weight: 500;
}

.location-block-one .inner-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.location-block-one .inner-box h3 a:hover{
  color: var(--secondary-color);
}

.location-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}



/** RTL **/



/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){
  .location-section{
    padding: 70px 0px 40px 0px;
  }
}

@media only screen and (max-width: 599px){
  .location-section .inner-container{
    display: block;
  }
}

@media only screen and (max-width: 499px){

}










































