
/** funfact-section **/

.funfact-section{
  position: relative;
  padding: 50px 0;
}

.funfact-section[style*="background-color: #d8c6b4"]{
  background-color: #d8c6b4 !important;
}

.funfact-section .inner-container{
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.funfact-section .funfact-block-one{
  position: relative;
  display: flex;
  width: 100%;
}

.funfact-block-one .inner-box{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 30px 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.funfact-block-one .inner-box:hover{
  transform: translateY(-5px);
}

.funfact-block-one .inner-box .icon-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 36px;
  color: #fff;
  border-radius: 50%;
  margin-bottom: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.funfact-block-one .inner-box:hover .icon-box{
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.funfact-block-one .inner-box .count-outer{
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 48px;
  line-height: 1;
  font-family: var(--title-font);
  font-weight: 700;
  color: #b46b56;
  margin-bottom: 10px;
  letter-spacing: 0px;
}

.funfact-block-one .inner-box .count-outer .odometer{
  letter-spacing: 0px;
}

.funfact-block-one .inner-box .count-outer .odometer .odometer-digit{
  padding-right: 2px !important;
  margin-right: 0 !important;
}

.funfact-block-one .inner-box .count-outer .odometer .odometer-digit:last-child{
  padding-right: 0 !important;
}

.funfact-block-one .inner-box .count-outer .symble{
  font-size: 40px;
  font-weight: 600;
  margin-left: 2px;
  color: #b46b56;
}

.funfact-block-one .inner-box h4{
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: #b46b56;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.3px;
}

.funfact-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.funfact-section.alternat-2 .funfact-block-one .inner-box{
  padding-left: 0px;
}


/** funfact-style-two **/

.funfact-style-two{
  position: relative;
}

.funfact-style-two .inner-container{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.funfact-block-two .inner-box{
  position: relative;
  display: block;
  margin: 0px 45px;
  margin-bottom: 30px;
}

.funfact-block-two .inner-box .count-outer{
  position: relative;
  display: inline-block;
  font-size: 100px;
  line-height: 75px;
  font-family: var(--title-font);
  color: var(--title-color);
  opacity: 0.07;
}

.funfact-block-two .inner-box .odometer.odometer-auto-theme .odometer-digit:last-child{
  padding-right: 25px;
}

.funfact-block-two .inner-box p{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  width: 100%;
  text-align: center;
}


/** rtl-css **/

.rtl .funfact-block-one .inner-box{
  padding-left: 0px;
  padding-right: 120px;
}

.rtl .funfact-block-one .inner-box .icon-box{
  left: inherit;
  right: 0px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){
  .funfact-section .inner-container{
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .funfact-section{
    padding: 45px 0;
  }
  
  .funfact-block-one .inner-box{
    padding: 25px 12px;
  }
  
  .funfact-block-one .inner-box .icon-box{
    width: 70px;
    height: 70px;
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .funfact-block-one .inner-box .count-outer{
    font-size: 42px;
    color: #b46b56;
  }
  
  .funfact-block-one .inner-box .count-outer .symble{
    font-size: 36px;
    color: #b46b56;
  }
  
  .funfact-block-one .inner-box h4{
    font-size: 15px;
    line-height: 20px;
    color: #b46b56;
  }
}

@media only screen and (max-width: 991px){
  .funfact-section .inner-container{
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .funfact-section{
    padding: 40px 0;
  }
  
  .funfact-block-one .inner-box{
    padding: 20px 10px;
  }
  
  .funfact-block-one .inner-box .icon-box{
    width: 65px;
    height: 65px;
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .funfact-block-one .inner-box .count-outer{
    font-size: 36px;
    margin-bottom: 8px;
    color: #b46b56;
  }
  
  .funfact-block-one .inner-box .count-outer .symble{
    font-size: 30px;
    color: #b46b56;
  }
  
  .funfact-block-one .inner-box h4{
    font-size: 14px;
    line-height: 18px;
    color: #b46b56;
  }
  
  .funfact-block-two .inner-box{
    margin: 0px 15px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px){
  .funfact-section .inner-container{
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .funfact-section{
    padding: 35px 0;
  }
  
  .funfact-block-one .inner-box{
    padding: 18px 8px;
  }
  
  .funfact-block-one .inner-box .icon-box{
    width: 55px;
    height: 55px;
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .funfact-block-one .inner-box .count-outer{
    font-size: 28px;
    margin-bottom: 6px;
    color: #b46b56;
  }
  
  .funfact-block-one .inner-box .count-outer .symble{
    font-size: 24px;
    color: #b46b56;
  }
  
  .funfact-block-one .inner-box h4{
    font-size: 12px;
    line-height: 16px;
    color: #b46b56;
  }
}

  .funfact-style-two .inner-container{
    display: block;
    text-align: center;
  }

  .funfact-block-two .inner-box p{
    position: relative;
    left: 0px;
    top: 0px;
    transform: translate(0,0);
  }

  .funfact-style-two{
    padding: 60px 0px 20px 0px;
  }
}

@media only screen and (max-width: 599px){
  .funfact-section .inner-container{
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  
  .funfact-section{
    padding: 30px 0;
  }
  
  .funfact-block-one .inner-box{
    padding: 15px 6px;
  }
  
  .funfact-block-one .inner-box .icon-box{
    width: 50px;
    height: 50px;
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .funfact-block-one .inner-box .count-outer{
    font-size: 24px;
    margin-bottom: 5px;
    color: #b46b56;
  }
  
  .funfact-block-one .inner-box .count-outer .symble{
    font-size: 20px;
    color: #b46b56;
  }
  
  .funfact-block-one .inner-box h4{
    font-size: 11px;
    line-height: 14px;
    color: #b46b56;
  }
}

@media only screen and (max-width: 499px){
  .funfact-section{
    padding: 25px 0;
  }
  
  .funfact-block-one .inner-box{
    padding: 12px 4px;
  }
  
  .funfact-block-one .inner-box .icon-box{
    width: 45px;
    height: 45px;
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .funfact-block-one .inner-box .count-outer{
    font-size: 20px;
    margin-bottom: 4px;
    color: #b46b56;
  }
  
  .funfact-block-one .inner-box .count-outer .symble{
    font-size: 18px;
    color: #b46b56;
  }
  
  .funfact-block-one .inner-box h4{
    font-size: 10px;
    line-height: 13px;
    color: #b46b56;
  }
}











































