@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Quicksand", sans-serif;
  color: white;
}

body {
  background-color: #2b5f67;
  width: 100vw;
  min-width: 557px;
  margin: 0 auto;
  padding-bottom: 20px;
}

::-webkit-scrollbar {
  display: none;
}

.no_scroll {
  overflow: hidden;
}

.hideLabel {
  opacity: 0;
}

.hideBodyContainer {
  background-color: #0e0e0e;
  opacity: 0.9;
}

.bodyContainer {
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  position: relative;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
}

.hamburgerMenuContainer {
  cursor: pointer;
  user-select: none;
}

.hamburger {
  width: 40px;
  height: 4px;
  border-radius: 5px;
  background-color: white;
  margin: 5px 0px;
}

.color_yellow {
  color: yellow;
}

.color_green {
  color: rgb(11, 215, 11);
}

.color_red {
  color: red;
}

.line1,
.line2,
.line3 {
  transition: all 0.5s ease;
}

.removeLine2 {
  opacity: 0;
}

.rotatePlus45Deg {
  transform: rotate(45deg) translate(4px, 9px);
}

.rotateMinus45Deg {
  transform: rotate(-45deg) translate(4px, -9px);
}

.overlayMenu {
  display: none;
  position: absolute;
  width: 100%;
  height: 100vh;
  padding-bottom: 20px;
}

.overlayMenu .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hideHeading {
  display: none;
}

.showLayout {
  display: inline;
}

ul li {
  list-style: none;
  user-select: none;
  cursor: pointer;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 15px;
  opacity: 0.8;
  text-align: center;
}

ul li:hover {
  opacity: 1;
}

ul li:active {
  opacity: 1;
  color: #00b4d8;
}

ul a {
  text-decoration: none;
}

.bodyImage {
  width: 100%;
  height: 86%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
  opacity: 0.6;
}

.heading {
  position: absolute;
  top: 300px;
  left: 200px;
}

.heading p {
  font-size: 30px;
}

.imageAndDetailsContainer {
  display: flex;
  column-gap: 20px;
  width: 80%;
  margin: 0 auto;
}

.imageAndDetailsContainerReverse {
  display: flex;
  column-gap: 20px;
  width: 80%;
  margin: 0 auto;
}

.imageForDetails {
  width: 100%;
  height: 300px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.8);
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 25px;
}

.textForImage {
  margin-bottom: 40px;
}

.footer {
  margin-top: 30px;
}

.footerComponent {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.footerComponent2 {
  display: flex;
  width: 80%;
  margin: 0 auto;
  justify-content: space-evenly;
  column-gap: 30px;
  margin-top: 70px;
  row-gap: 30px;
}

@media (max-width: 1399px) {
  .heading {
    left: 200px;
  }
}

@media (max-width: 1280px) {
  .overlayMenu .menu {
    height: 100%;
  }
}

@media (max-width: 1199px) {
  .heading {
    left: 150px;
  }
}

@media (max-width: 1025px) {
  .imageAndDetailsContainer {
    flex-direction: column;
  }

  .imageAndDetailsContainerReverse {
    flex-direction: column-reverse;
  }

  .imageForDetails {
    width: 100%;
    margin-bottom: 20px;
  }

  .overlayMenu .menu {
    height: 90%;
  }

  .overlayMenu {
    top: 110px;
  }

  .footerComponent {
    flex-direction: column;
  }

  .footerComponent2 {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .heading {
    left: 150px;
  }
}

@media (max-width: 852px) {
  .overlayMenu {
    height: 100%;
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .heading {
    left: 80px;
  }
  .overlayMenu {
    height: 100%;
  }
}

@media (max-width: 575px) {
  .heading {
    text-align: center;
  }
}

@media (max-width: 853px) {
  .overlayMenu .menu {
    height: 65%;
  }
}

@media (max-width: 429px) {
  .overlayMenu .menu {
    height: 65%;
  }
}

@media (max-width: 412px) {
  .overlayMenu .menu {
    height: 65%;
  }
}

@media (max-width: 360px) {
  .overlayMenu {
    height: 100%;
  }
  .bodyImage {
    height: 89.3%;
  }
}

@media (max-width: 344px) {
  .overlayMenu .menu {
    height: 65%;
  }
  .bodyImage {
    height: 91%;
  }
}
