* {
  font-size: 14px;
}

h4.special {
  letter-spacing: -0.055em;
}

h4, b {
  color: #487e9a;
  font-weight: 700;
}

a {
  color: #487e9a;
	text-decoration: none;
	margin: 0px;
	padding: 5px 5px;
}

.current-link {
  background-color: #a3d9f6af;
}

.header {
  display: flex;
  flex-wrap: wrap;
  height: 125px;
/*  max-width: 1200px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding:10px 20px; */
}

.outer_container {
  width: 1000px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.languages {
  width: 100%;
  height: 18px;
}

.flag {
  float: left;
}

.header-text {
  font-size: 2.5em;
}

.logo {
  height: 125px;
  padding-right: 10px;
}

.child-text {
  position: absolute;
  bottom: 0;
}

.header-background {
  position: relative;
  /*width: 400px;*/
  height: 125px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)), url('images/drones.jpg');
  background-size: 60% 100%;
  background-position: right;
  background-repeat: no-repeat;
  border-radius: 0.70rem;
  flex: 1;
  padding-left: 10px;
}

.about-background {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url('images/mavic2enterprise.jpg');
  background-size: cover;
  background-position: right 30%;
  border-radius: .5rem;
}

.services-background {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url('images/Screenshot_20230711_033737.png');
  background-size: cover;
  background-position: bottom right 10%;
  border-radius: .5rem;
}

.pricing-background {
  position: relative;
  width: 100%;
  border: 1px red dotted;
  /* background-image: url('images/pilot01.png'); */
  /*background-image: url('images/romania_house_01.jpg');
  background-size: cover;
  background-position: 80% 20%;
  border-radius: 1rem;
  /*
  webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  */
}

.row {
  height: 700px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 20px;
}

/* container */
.padded-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* boxes */
.padded-boxes>* {
  width: 100%;
  background: #fff;
  border-radius: .5rem;
}

/* headings */
.panel-heading {
  background: #c0e5f9;
  margin: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  border-radius: .5rem;
}

/* padded content */
.padded-boxes .padded {
  padding: .1rem 0;
}

.padded-content {
  min-height: 450px;
  padding: 0px 30px 0px 30px;
}

.padded-images {
  clear: both;
  padding: 0;
  margin: 0;
  height: 150px;
}


#ac-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.6);
  z-index: 1001;  
}

/*  ---------- carousel styles -------  */

.slideshow-container {
  width: 464px;
  height: 600px;
  overflow: hidden;
  margin: 30px auto;
  position: relative;
  border: 2px solid #444;
  border-radius: 10px;
}

.slideshow {
  display: flex;
  flex-direction: column;
  position: relative;
}

.video-preview {
  position: relative;
  width: 464px;
  height: 150px;
  overflow: hidden;
  cursor: pointer;
}

.video-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-preview .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  color: white;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.slideshow {
  animation: scroll infinite linear;
  will-change: transform;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: #000;
  border: 2px solid #444;
  border-radius: 10px;
  display: none;
  z-index: 1000;
}

.popup iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #444;
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.popup .close-btn:hover {
  background: #666;
}