* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

header {
  position: fixed;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 10px 0;
  z-index: 1000;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav .logo {
  width: 250px;
  height: auto;
  margin: 10px 0 10px 20px;
}

header nav .lang-flag {
  margin-right: 20px;
}

header nav .lang-flag img {
  width: 30px;
  height: auto;
  cursor: pointer;
}

.section {
  min-height: 100vh;
  padding: 0 30px 0 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

#gallery.section,
#contact.section {
  min-height: auto;
}

.jumbo {
  background-image: url('images/jumbo-bg.jpg');
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  height: 100vh;
  padding: 0 !important;
}

.jumbo .left {
  background-color: rgba(0, 0, 0, 0.5);
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* text-align: left; */
  /* padding: 0 0 0 60px; */
  padding: 0 !important;
}

.jumbo .right {
  background-color: rgba(0, 0, 0, 0.5);
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}


.jumbo h1 {
  font-size: 4em;
  margin-top: 150px;
}

#about-services {
  background-color: #fadb5e;
}

#gallery {
  border-top: 15px #000 solid;
  border-bottom: 15px #000 solid;
}

.content {
  display: flex;
  width: 100%;
  align-items: center;
}

.left {
  width: 50%;
  padding: 20px;
}

#contact .left {
  width: 30%;
  padding: 0;
}

#about-services .left img,
#contact .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right {
  width: 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact .right {
  width: 70%;
}

#about-services .right {
  padding: 20px 10%;
}

#about-services h3 {
  font-size: 1.6em;
}

#about-services p {
  font-size: 1.2em;
}

.service {
  text-align: center;
}

.service img {
  margin-bottom: 10px;
  width: 20%;
}

.image-scroll {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  gap: 20px;
  white-space: nowrap;
  scrollbar-width: none;
  /* Firefox */
}

.image-scroll::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.image-scroll img {
  height: 120px;
  flex-shrink: 0;
}

#contact h2 {
  font-size: 2em;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 2px solid #c0c0c0;
  background: rgba(255, 255, 255, 0.15);
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 1.2em;
}

form input::placeholder,
form textarea::placeholder {
  color: #999;
}

form button {
  background: #000;
  color: #fadb5e;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  font-size: 1.2em;
  margin-top: 10px;
}

form button:hover {
  background: #fadb5e;
  color: #000;
}

.form-message {
  margin-top: 10px;
  font-size: 1.2em;
  color: #f00;
}

footer {
  background: #000;
  color: #eee;
  padding: 20px 20px 20px 50px;
  font-size: 1.1em;
  margin-top: -10px;
  z-index: 100;
}

footer .f-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer .f-left {
  flex: 1;
  text-align: left;
}

footer .f-center {
  flex: 1;
  padding-left: 50px;
  text-align: left;
  align-self: flex-start;
}

footer .f-right {
  flex: 3;
  text-align: right;
  align-self: flex-end;
}

footer .f-right img {
  width: 150px;
  height: auto;
}

footer h3 {
  font-size: 1.5em;
}

footer a {
  color: #eee;
  text-decoration: none;
}

#aboutimage1 {
  display: none;
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .left,
  .right,
  .jumbo .left {
    width: 100%;
  }

  .jumbo .right {
    display: none;
  }

  #about-services .content {
    flex-direction: row;
  }

  #about-services .left {
    width: 200%;
    margin-left: -70%;
    padding: 0;
    z-index: 0;
  }

  #about-services .right {
    width: 85%;
    padding-left: 0;
    padding-right: 3%;
    margin-left: -25%;
    z-index: 100;
  }

  #about-services h3 {
    font-size: 1.3em;
  }
  
  #about-services p {
    font-size: 1em;
  }

  #home,
  #about-services,
  #contact {
    padding: 0;
  }

  .jumbo h1 {
    font-size: 2.5em;
  }

  #contact .left {
    width: 100%;
  }

  .right .service {
    flex-direction: column;
  }

  .service img {
    margin-bottom: 0px;
  }

  .image-scroll img {
    height: 80px;
  }

  footer .f-columns {
    flex-direction: column;
    text-align: center;
  }

  footer h3,
  footer .f-left,
  footer .f-center,
  footer .f-right {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }

  footer .f-right {
    align-self: center;
    margin-top: 20px;
  }

  footer {
    font-size: 1em;
    padding: 20px 0;
  }
  

  #aboutimage {
    display: none;
  }

  #aboutimage1 {
    display: block;
  }

  #contact .right {
    width: 100%;
  }
 
}