:root {
  --color-dark: #000;
  --color-orange: #ea5b0c;
  --color-gray: #c3c3c3;
  --color-light: #fefefe;
}
* {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: var(--color-dark);
}

/* main-components */
button.btn-miletus-primary {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  border-style: none !important;
}
button.btn-miletus-primary:active,
button.btn-miletus-primary:focus,
button.btn-miletus-primary:hover {
  border-style: none !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.btn-miletus-primary {
  padding: 10px 40px;
  font-weight: 500;
  color: var(--color-light) !important;
  transition: all 700ms ease;
}
.btn-miletus-primary:hover {
  color: var(--color-orange) !important;
}
/* Nav */
.navbar-top-main {
  padding: 20px 80px;
  height: 120px;
  width: 100%;
}

.navbar-logo img:nth-child(1) {
  width: 60px;
}
.navbar-logo img:nth-child(2) {
  width: 150px;
}
.navbar-menu {
  display: flex;
}
.nav-section-info {
  display: flex;
  justify-content: flex-end;
}
.navbar-menu li {
  list-style: none;
}

.navbar-menu li a {
  margin-right: 20px !important;
}
.navbar-toggler {
  border: 1px solid var(--color-orange) !important;
}
.navbar-toggler-icon {
  color: var(--color-gray) !important;
  height: 10px !;
}
.navbar-top-content {
  display: flex !important;
  justify-content: space-between !important;
}

@media screen and (max-width: 900px) {
  .navbar-logo img:nth-child(1) {
    width: 40px;
  }
  .navbar-logo img:nth-child(2) {
    width: 100px;
  }
  .navbar-top-main {
    padding: 10px 40px;

    height: auto;
  }
}

/* Home */
.carousel-inner {
  position: relative !important;
}
.home-overlay-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.carousel-item {
  height: 100vh !important;
}
.carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.home-area {
  height: calc(100vh - 220px);
  /* border: 1px solid red; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.home-description {
  color: var(--color-light);
}
.home-description-title {
  font-size: 42px;
}
.home-description-title span {
  color: var(--color-orange);
}
.home-description-text {
  font-size: 20px;
}
.home-cta {
  width: 100%;
  display: flex;
  justify-content: center;
}
/* Form */
.home-form {
  background: var(--color-light);
  padding: 20px 50px;
  text-align: center;
  border-radius: 5px;
}
.home-form-title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}
.home-form-title-modal {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 55px;
  font-size: 20px;
  font-weight: 600;
}
.home-form input:focus {
  box-shadow: none;
  border-color: var(--color-orange);
}
.home-form input[type="text"],
input[type="email"] {
  background: var(--color-gray);
  color: var(--color-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.home-form input[type="submit"] {
  background: var(--color-orange);
  color: var(--color-dark);
  font-size: 18px;
  padding: 10px 40px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  outline: none;
  border: 2px solid transparent;
  width: 100%;
  transition: all 700ms ease;
}
.home-form input[type="submit"]:hover {
  border: 2px solid var(--color-dark);
}
.form-aditional-info {
  font-size: 12px;
}
.form-aditional-info p {
  margin-bottom: 0;
}
.form-aditional-info a {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 10px;
}

@media screen and (max-width: 900px) {
  .carousel-inner {
    height: auto;
  }
  .home-overlay-section {
    position: relative !important;
  }
  .home-area {
    height: auto !important;
  }
  .carousel-item {
    display: none !important;
  }
  .home-form {
    padding: 30px;
  }
  .home-form input[type="submit"] {
    text-align: center;
    padding: 5px;
    font-size: 14px;
  }
  .home-form-title-modal {
    font-size: 16px;
  }
}
@media screen and (max-width: 700px) {
  .home-form-title-modal {
    margin-left: 60px !important;
    font-size: 16px;
  }
  .btn-miletus-modal {
    height: 30px !important;
    width: 30px !important;
  }
}

@media screen and (max-width: 380px) {
  .home-form-title-modal {
    margin-left: 20px;
    font-size: 16px;
  }
}

@media screen and (max-width: 340px) {
  .home-form-title-modal {
    font-size: 13px;
  }
}

/* Gallery */
.gallery-container {
  min-height: calc(100vh - 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gallery-titles {
}
.gallery-description-title {
  font-size: 28px;
}
.gallery-description-title {
  color: var(--color-orange);
}
.gallery-description-subtitle {
  line-height: 10px;
  font-size: 16px;
  color: var(--color-light);
}

.gallery-images {
  justify-content: center !important;
  margin-top: 5px;
}
.gallery-image {
  margin-top: 0;
  display: flex;
  justify-content: center;
}
.gallery-image img:hover {
  border: 3px solid var(--color-orange);
}
.gallery-image img {
  border: 3px solid transparent;
  border-radius: 5px;
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.gallery-img:hover {
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  .gallery-description-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .gallery-image img {
    width: 100%;
    height: 100%;
  }
}

/* Footer */
.footer {
  width: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.footer-text {
  font-size: 14px;
  margin-top: 30px;
}
.footer-text a,
span {
  color: var(--color-light);
  text-decoration: none;
}
.footer-text a:hover {
  text-decoration: underline;
}

/* Modal */
.modal-section {
  background: var(--color-light);
  display: flex;
  justify-content: flex-end;
  border: 2px solid transparent;
}
.home-form-nav {
  display: flex;
  justify-content: space-between;
}

.btn-miletus-modal {
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  background-color: transparent;
  transition: all 700ms ease;
  margin-top: 10px;
  height: 40px;
  width: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-body {
  padding-top: 0px !important;
}
