
body {
  margin: 0;
  font-family: Manrope, arial, sans-serif;
}

.gregy_main {
  height: 100vh;
  max-width: 100%;
  background-image: url('images/main_bg_gregy.jpg');
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.lang {
  position: absolute;
  top: 30px;
  right: 20px;
  background-color: #f3ac1e;
  padding: 10px;
    padding-left: 10px;
  border-radius: 80px;
  padding-left: 21px;
}

.lang a {
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 700;
}

.current_lang {
  opacity: 0.7;
}

.lang a:hover{
  text-decoration: underline;
  opacity: 1;
}

.lang_box .lang {
  position: relative;
}

.lang_box a {
  color:#122759;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 700;
}

header {
  display: flex;
  align-items: center;
  padding: 0 20px 0 10px;
  background-color: #fff;
  justify-content: space-between;
}
.menu_item {
  color: #122759;
  text-decoration: none;
  font-weight: 700;
}

.menu_item:hover {
  opacity: 0.8;
}
.inside_menu {
  display: flex;
  gap: 40px;
}
.logo {
  max-width: 316px;
  padding: 30px;
  width: 316px;
}

.left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  max-width: 30%;
}

.main-text {
  color: #fff;
  font-size: 21px;
  padding: 30px;
  font-weight: 700;
}
.construction-text {
  padding: 10px 0px 10px 29px;
  margin: 0;
  color: #122759;
  background-color: #f3ac1e;
  display: inline-block;
  max-width: 240px;
  border-radius: 0 12px 12px 0px;
  line-height: 33px;
  box-shadow: 0px 1px 10px #122659;
  text-decoration: none;
  font-weight: 900;
}


.construction-text:hover {
  background-color: #122759;
  color: #f3ac1e;
}

.top-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.right-side {
  max-width: 50%;
  align-items: center;
  justify-content: center;
  display: flex;
  height: 100vh;
}

.right-content {
  background-color: rgba(15, 35, 86, 0.87);
  padding: 30px;
  border-radius: 20px 0 0 20px;
}
.text {
  padding: 10px;
}
.text li {
  color: #fff;
  margin: 0;
  line-height: 29px;
  font-size: 18px;
}

.gregy_icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-right: 20px;
  flex-wrap: wrap;
}

.gregy_icons img {
	width:100%;
	max-width: 270px;
}



.project_content {
  max-width: 1320px;
  margin: 30px auto;
  padding: 10px;
}

.project_title {
  color: #122759;
  font-weight: 900;
  font-size: 40px;
}

.project_text {
  font-size: 18px;
  line-height: 33px;
}

.project_list {
  display: flex;
  gap: 40px;
  align-items: center;
}

.list_box {
  padding: 30px;
}

.list_box_item {
  font-size: 19px;
  font-weight: 900;
}
.project_list img {
  width: 100%;
  display: block;
}


.numbers {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
}

.numbers_title {
  color: #122759;
  font-weight: 900;
  font-size: 40px;
}

.numbers_boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.numbers_box {
  background-color: #fff;
  box-shadow: 0 0 5px #dbdbdb;
  border-radius: 20px;
  width: 25%;
  min-height: 165px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: 17px;
  font-weight: 700;
}

.highlights {
  max-width: 980px;
  margin: 0 auto;
  padding: 10px;
}

.highlights_title {
    color: #122759;
  font-weight: 900;
  font-size: 40px;
}




/* GALLERY PAGE */

.gregy_video {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

.gregy_video video {
  width: 80%;
}
.press_title {
  text-align: center;
  color: #122759;
  font-size: 48px;
}
.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1320px;
  margin: 60px auto;
}
.thumbnail {
  width: 200px;
  height: auto;
  cursor: pointer;
  transition: 0.3s;
  object-fit: cover;
  border: 1px solid #919191;
  padding: 10px;
}
.thumbnail:hover {
    opacity: 0.7;
}

/* Lightbox Modal Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.slides {
    display: none;
}

.slides img {
  width: auto;
  height: 80vh;
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
  object-fit: contain;
}

/* Close Button */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 22222;
}

/* Navigation Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    color: white;
    font-size: 40px;
    user-select: none;
    padding: 16px;
    transform: translateY(-50%);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}



/* CONTACT PAGE */

.contact_box {
  max-width: 1320px;
  padding: 10px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.contact_info_text {
  font-weight: 300;
  font-size: 24px;
}

.contact_info_text span {
  color: #122759;
  font-weight: 800;
  margin-right: 10px;
}


/* PRESS POSTS PAGE */

.articles_container {
  max-width: 1320px;
  margin: 0 auto 90px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.article_box {
  width: 40%;
}

.article_box img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}

.article_link {
  text-decoration: none;
  color: #000;
}
.post_title {
  font-size: 18px;
}


/* ARTICLE PAGE */

.article_container {
  max-width: 980px;
  margin: 0 auto 50px;
  padding: 10px;
}

.article_container img {
  width: 100%;
}

.article_title {
  color: #122759;
  font-size: 28px;
}

.article_content {
  font-size: 19px;
  line-height: 36px;
  margin-bottom: 30px;
}

.article_content li {
  margin-bottom: 20px;
}


footer {
  border-top: 1px solid #ccc;
  text-align: center;
  padding: 10px 10px 10px;
}

.footer_text {
  color: #122759;
  font-size: 17px;
}

.copyrights {
  color: #999;
  font-size: 15px;
}



@media only screen and (max-width: 1272px) {
  .gregy_main {
    display: block;
        background-position: 16%;
  }
  .logo {
  max-width: 176px;
  padding: 30px;
}

	.left-side {
	  display: flex;
	  flex-direction: column;
	  justify-content: space-between;
	  height: 100vh;
	  max-width: 100%;
	  text-align: center;
	  align-items: center;
	}
	.right-side {
  max-width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  height: auto;
}
.right-content {
	background-color: rgb(15, 35, 86);
  border-radius: 0;
}

  .main-text {
    margin: 0;
    background-color: #0F2356;
    border-radius: 20px 20px 0px 0px;
  }
  .top-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.construction-text {
  padding: 10px 20px;
  margin: 0;
  color: #122759;
  background-color: #f3ac1e;
  display: inline-block;
  max-width: none;
  border-radius: 12px;
  line-height: 24px;
  box-shadow: 0px 1px 10px #122659;
  font-weight: 400;
  text-align: center;
  font-size: 19px;
}


.project_list {
  flex-wrap: wrap;
}

}



@media only screen and (max-width: 1010px) {
  header {
    flex-wrap: wrap;
  }
  .logo_box {
    width: 100%;
    text-align: center;
  }
  .inside_menu {
  display: flex;
  gap: 40px;
  justify-content: center;
  width: 100%;
}
.lang_box {
  position: absolute;
  top: 10px;
  right: 10px;
}
} 


@media only screen and (max-width: 936px) {
  .contact_box {
    flex-wrap: wrap;
  }
  .map_box {
  width: 100%;
  text-align: center;
}
  .map_box iframe {
  width: 100%;
}
}


@media only screen and (max-width: 806px) {
  .article_box img {
  width: 100%;
  max-height: none;
  object-fit: cover;
}
.article_box {
  width: 100%;
}
}


@media only screen and (max-width: 656px) {
  .inside_menu {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    width: 100%;
    white-space: nowrap;
    overflow: auto;
  }
}


@media only screen and (max-width: 560px) {
  .numbers_boxes {
    gap: 20px;
  }
  .numbers_box {
    width: 100%;
    min-height: 65px;
  }
}