/* ===================================== 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');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,
::after,
::before {
  box-sizing: border-box;
}
body {
  background-color: #fff;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}
h1,h2,h3{
  font-family: "Montserrat", sans-serif;
}
.main-header{
  background: #FFF;
}
.main-header .text h6{
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
}
.main-text{
  text-align: end;
}
.main-text h4{
  font-size: 24px;
  font-weight: 500;
}
.main-text a{
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #808080;
}
.main-text a.active{
  color:#DAAC0B;
}
.hero_section{ 
  padding: 30px 0;
  position: relative;
  min-height: calc(100vh - 110px);
  overflow: hidden;
}
.hero_section::after{
  content: "";
  position: absolute;
  top: -70px;
  left: -70px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(255, 196, 0 , 0.1);
  filter: blur(200px);
  -webkit-filter: blur(200px);
  z-index: -1;
}
.hero_section::before{
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(198, 11, 30 , 0.1);
  filter: blur(200px); 
  -webkit-filter: blur(200px);
  z-index: -1;
}
.hero_section h3{
  color:#DAAC0B;
  font-weight: 500;
}
.hero_section .hero_section_inner{
  position: relative;
  background-size: cover;
  background-position: center;
}
.theme_fontcolor{
  color:#DAAC0B;
}
/* .heading-wrapper{
  position: relative;
  z-index: 99;
} */
.hero_section .main-wrapper{
  overflow: hidden;
  /* box-shadow: 0 1px 6px rgba(0,0,0,0.16); */
}
.hero_section .main-wrapper input[type="text"]{
  height: 50px;
  border-color: #DAAC0B;
  padding: 10px 20px 10px 40px;
}
.hero_section .main-wrapper input[type="text"]::placeholder {
  color: #DAAC0B;
  opacity: 1; /* Firefox */
}
.hero_section .main-wrapper input[type="text"]::-ms-input-placeholder { /* Edge 12 -18 */
  color: #DAAC0B;
}
.hero_section .main-wrapper .i.fa-search{
  position: absolute;
  top: 17px;
  left: 15px;
  color: #DAAC0B;
  font-size: 16px;
  width: 16px;
}
.hero_section .main-wrapper input[type="text"]:focus{
  box-shadow: none;
}
.hero_section .list-item{
  margin-right: 0;
  list-style-type: none;
  padding: 0;
}
.country-card{
  margin-top: 10px;
}
.country-card h2{
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  /* letter-spacing: 1px; */
  margin-bottom: 12px;
  color: #3c3b3b;
}
.country-card .country-list{
  list-style-type: none;  
  background: #fff;
  padding: 10px;
  border: 1px solid #DAAC0B;
  border-radius: 5px;
  box-shadow: 0px 1px 10px rgba(218, 172, 11, 0.5);
  max-height: 210px;
  min-height: 210px;
  overflow-y: auto;
  margin-bottom: 0;
}
.country-card .country-list::-webkit-scrollbar {
  width: 7px;
  height: 30px;
}
.country-card .country-list::-webkit-scrollbar-track {
  background: #EEEEEE;
  border-radius: 5px;
}
.country-card .country-list::-webkit-scrollbar-thumb {
  background: #DAAC0B;
  border-radius: 5px;
  box-shadow: inset 2px 2px 2px rgba(218, 172, 11, 0.5),inset -2px -2px 2px rgba(0,0,0,.25);
}
.country-card .country-list li{
  padding: 5px;
  border-bottom: 1px solid #D2D2D2;
  margin-bottom: 5px;
}

.country-card .country-list li:hover{
  background: #fef9ea;
}
.country-card .country-list li a{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.country-card .country-list li a .text{
  color: #333;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-left: 12px;
  font-size: 13px;
}
.country-card .country-list li a .flag{
  width: 35px;
  height: 35px;  
  /* border-radius: 50%; */
  text-align: center;
  line-height: 35px;
  overflow: hidden;
}
.country-card .country-list li a .flag img{
  width: 100%;
  border: 1px solid #eee;
}
.country-carousel .country-cards{
  box-shadow: 0px 1px 10px rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.country-carousel .country-cards a{
  position: relative;
  z-index: 9;
}
.country-carousel .country-cards:hover{
  transform: scale(1.2);
}
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;
}
.country-carousel .owl-prev{
  position: absolute;
  top: 18%;
  left: 0px;
  width: 20px;
  height: 20px;
  background: #daac0b !important;
  color: #fff !important;
  line-height: 2px !important;
  border-radius: 50%;
  opacity: 0.7;
}
.country-carousel .owl-next{
  position: absolute;
  top: 18%;
  right: 0;  
  width: 20px;
  height: 20px;
  background: #daac0b !important;
  color: #fff !important;
  line-height: 2px !important;
  border-radius: 50%;
  opacity: 0.7;
}
.hero_section.spanish .country-card h2{
  font-size: 13px;
}

@media screen and (min-width: 1300px) and (max-width: 1550px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1200px;
  }
  /* .hero_section{ 
    min-height:auto;
  } */
}

.spain-home .col-md-3{
  width: 20%;
}

