/* ===================================== Import Fonts ================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&display=swap');


*,
::after,
::before {
  box-sizing: border-box;
}
body {
  background-color: #fff;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}
h1,h2,h3{
  font-family: 'Poppins', sans-serif;
}
.main-header{
  background: #EAE3E3;
}
.main-header .text h6{
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
}

.text a{
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}
.text a.active{
  color:#ee1c25;
}
.hero_section{
  background-image:url(../images/bginfo.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  position: relative;
  min-height: calc(100vh - 112px);
}
/*.hero_section:after{
  content: "";
  background: url(../images/plane.png) no-repeat;
  width: 300px;
  height: 100%;
  position: absolute;
  top: 10px;
  right: 0px;
  background-size: contain;
}*/
.hero_section::before{
  content: "";
  background: url(../images/about-thumb-2.png) no-repeat;
  width: 167px;
  height: 234px;
  position: absolute;
  bottom: -10px;
  left: -10px;
  background-size: contain;
  opacity: 0.3;
}
.hero_section h3{
  color:#ee1c25;
  font-weight: 500;
}
.theme_fontcolor{
  color:#ee1c25;
}

.hero_section .list-item{
  margin-right: 0;
  list-style-type: none;
  padding: 0;
}
.hero_section .list-item .filter{
  background: #fff;
  color: #333;
  padding: 10px 25px;
  font-weight: 500;
  border: 1px solid #ee1c25;
  cursor: pointer;
}
.hero_section .list-item .filter.active{
  background: #ee1c25;
  color: #fff;
}
.hero_section .filter1 .list_items{
  padding: 20px;
}
.hero_section .countries_box{ 
  border-radius: 10px;
  border: 1px solid #ee1c25;
  background: rgba(255,255,255,0.9);
}
.hero_section .countries_box .portfolio_list{
  max-height: 220px;
  overflow-y: auto;
}
.hero_section .countries_box .portfolio_list::-webkit-scrollbar {
  width: 6px;
}

.hero_section .countries_box .portfolio_list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.hero_section .countries_box .portfolio_list::-webkit-scrollbar-thumb {
  background: #ee1c25;
}

.hero_section .countries_box .portfolio_list::-webkit-scrollbar-thumb:hover {
  background: #0c4ea2;
}
#portfoliolist .portfolio {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	display: none;
	overflow: hidden;
}
.country_flag{
  position: relative;
  max-width: 150px;
  display: block;
  transition: all 0.3s ease-in-out;
}
.country_flag:hover {
  transform: translateY(-2px);
}
.country_flag img{
  min-height: 100px;
  width: 100%;
  border-radius: 10px;
}
.country_flag:before{
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
}
.country_flag .country_nam{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 11;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
footer {
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
  padding: 7px 0px;
  background: rgba(0,0,0,0.8);
  color: #FFF;
  text-align: center;
  z-index: 9;
  font-size: 12px;
}
.chat-title {
    font-size: 12px;
    color: black;
    background: #ffffffc9;
    padding: 6px 9px;
    border-radius: 15px;
    width: auto;
    text-align: center;
    position: absolute;
    bottom: 25px;
    right: 73px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
