* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Montserrat_regular;
  position: relative;
}

@font-face {
  font-family: PKFGlobalSans-bold;
  src: url(./fonts/PKFGlobalSans-Bold.otf);
}
@font-face {
  font-family: PKFGlobalSans-regular;
  src: url(./fonts/PKFGlobalSans-Regular.otf);
}

@font-face {
  font-family: Montserrat_bold;
  src: url(./fonts/Montserratarm-Bold.otf);
}
@font-face {
  font-family: Montserrat_regular;
  src: url(./fonts/Montserratarm-Regular.otf);
}

.container {
  padding: 0 3%;
  /* max-width: 1140px; */
  margin: 0 auto;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: black;
}

ul,
ol {
  list-style: none;
}
nav {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.nav_top {
  height: 50px;
  padding: 30px 0;
  background-color: #edeff1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav_top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav_top .container h2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav_top .container h2 a {
  font-family: PKFGlobalSans-regular;
  font-size: 18px;
  color: #0e2b8d;
}

.nav_top_language {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav_top_language img {
  height: 13px;
}
#cont {
  margin-top: 3px;
  height: 18.2px;
}

.social {
  min-height: 14px;
}

.nav_middle .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.nav_middle .container a img {
  height: 40px;
}
.nav_middle .container h2 {
  color: #0e2b8d;
  font-size: 18px;
}

.nav_bot {
  background-color: #fffffff6;
  top: -100px;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.5s ease-out;
}
.nav_bot.fixed {
  position: fixed;
  transform: translateY(100px);
  box-shadow: 10px 2px 15px rgba(0, 0, 0, 0.459);
  padding: 10px 0;
  justify-content: flex-end;
}

.nav_bot .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: 100%;
}
.nav_bot .container ul {
  display: flex;
  align-items: center;
  /* height: 100%; */
  gap: 40px;
}
.nav_bot .container ul > li {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
  /* height: 100%; */
}
.close_menu {
  display: none;
  height: 30px;
  margin-top: 50px;
  cursor: pointer;
}
.nav_bot .container ul > li > a {
  font-size: 13px;
  color: #0f3780;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px;
}
.nav_bot .container ul > li > a span {
  font-size: 24px;
  font-weight: 900;
  color: #0a8aa7;
  display: inline-block;
  transition: all 0.3s;
}
.nav_bot .container ul > li > a:hover {
  background-color: #c2c5c9;
  border-radius: 15px;
}
.nav_bot .container ul > li:hover a > span {
  transform: rotate(180deg);
  color: black;
}
.nav_bot .container ul > li > ul {
  position: absolute;
  background-color: white;
  align-items: flex-start;
  flex-direction: column;
  top: 49px;
  left: 0;
  z-index: 3;
  width: fit-content;
  max-height: max-content;
  white-space: nowrap;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.445);
  gap: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.2s;
}
.nav_bot.fixed .container ul > li > ul {
  top: 51px;
}
.nav_bot .container ul > li:hover ul {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  display: flex !important;
}
.nav_bot .container ul > li > ul li {
  width: 100%;
  padding: 0;
}
.nav_bot .container ul > li > ul li a {
  padding: 10px;
  width: 100%;
  border-bottom: 1px solid #d0d0d3;
}
.nav_bot .container ul > li > ul li a:hover {
  border-radius: 0;
}
.active_nav {
  background-color: #c2c5c9;
  border-radius: 15px;
}

header,
.about_us_header {
  background-image: url(./images/starburst.png);
  background-color: #0e2b8d;
  background-position: right;
  background-repeat: no-repeat;
  background-size: 900px;
  display: flex;
  align-items: center;
  margin-top: 0;
  transition: all 0.5s ease-out;
  padding: 40px 0;
}
header .container,
.about_us_header .container {
  display: flex;
  align-items: center;
  /* gap: 50px; */
  justify-content: space-evenly;
}
.header_text {
  display: flex;

  flex-direction: column;
  color: white;
  width: 40%;
  align-items: flex-start;
}
.header_text h1 {
  font-size: 2rem;
}
.header_text p {
  padding: 40px 0;
  font-size: 13px;
  line-height: 1.5;
}
.header_text a {
  text-decoration: none;
  border-radius: 18px;
  border: 1px solid #0eb4da;
  padding: 0.5em 1em;
  color: #fff;
  background-color: #0eb4da;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.header_text a:hover {
  background-color: #0a8aa7;
  border-color: #0a8aa7;
}

.header_image img {
  border-radius: 50%;
  height: 350px;
  width: 350px;
  object-fit: cover;
  object-position: 100% 50%;
}

section {
  padding: 80px 0;
}

.section_first .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
h2 {
  font-size: 1.5rem;
  color: #0f3780;
}
.about_services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  gap: 100px;
}
.about_services_left,
.about_services_right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about_services_left p,
.about_services_right p {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  /* transition: all 0.2s; */
}

.about_services_left p:hover,
.about_services_right p:hover {
  scale: 1.1;
}

.about_services_left img,
.about_services_right img {
  width: 40px;
  height: 40px;
}

.section_second {
  padding: 80px 0;
}
.section_second_carts {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}
.laws_cart_second_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #f1f1f1;
  box-shadow: 10px 5px 12px rgba(0, 0, 0, 0.288);
  overflow: hidden;
  border-radius: 4px;
}
.laws_cart_second_section img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s;
}

.laws_cart_second_section:hover img {
  scale: 1.2;
}
.laws_cart_second_section h3 {
  transition: all 0.5s;
  font-size: 14px;
  font-weight: 100;
  text-transform: uppercase;
}
.laws_cart_second_section:hover h3 {
  padding-top: 25px;
}
.law_cart_text {
  padding: 0 15px 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.law_cart_text p {
  font-size: 12px;
}
.law_cart_text p:not(.show-full-text) {
  display: none;
}

.law_cart_text a {
  color: #0e2b8d;
  font-size: 12px;
}

.section_threth {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 45px;
}
.section_threth .container {
  width: 100%;
}
.section_threth_items {
  padding: 0 2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  overflow-x: scroll;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0.2)
  );
}
.section_threth_items::-webkit-scrollbar {
  width: 0;
}

.section_threth_items img {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  object-fit: cover;
  padding: 3px;
  transition: all 0.2s;
}

.section_threth_items img:hover {
  scale: 1.1;
}

/* ---------------------------------footer---------------------------- */

footer {
  background: linear-gradient(
    45deg,
    rgba(151, 153, 155, 1) 0%,
    rgba(151, 153, 155, 1) 0%,
    rgba(151, 153, 155, 1) 1%,
    rgba(8, 104, 168, 1) 57%,
    rgba(0, 52, 148, 1) 100%
  );
  padding: 40px 0;
}

footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer_up_side {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #9c9c9c;
  padding-bottom: 30px;
}

.footer_up_side > a img {
  height: 60px;
}

.footer_up_right {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer_up_right h3 {
  color: white;
  font-size: 18px;
}

.footer_up_right .footer_contacts {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.footer_up_right p {
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
  line-height: 2;
  font-size: 10px;
}

.footer_up_right p img {
  height: 14px;
}

.footer_down_side p {
  color: rgb(202, 198, 198);
  font-size: 12px;
  line-height: 1.5;
  text-align: justify;
}

/* arrow------------------------------------------ */

.arrowToUp {
  height: 40px;
  width: 40px;
  background-color: #06133b;
  position: fixed;
  bottom: 40px;
  right: -40px;
  padding: 10px;
  opacity: 0.8;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}
.arrowToUp:hover {
  background-color: #080824;
  scale: 1.2;
  opacity: 0.7;
}
.arrowToUp.scrolled {
  right: 40px;
}

#burger_menu {
  display: none;
  height: 40px;
}

/* abou us page part--------------------------------------------------- */

.about_us_header {
  background-color: #d24e12;
  background-position: 5% 50%;
}

.about_us_header .container {
  flex-direction: row-reverse;
  justify-content: space-around;
}

.about_us_section {
  padding: 50px 0;
}

.about_us_section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  line-height: 2;
}
.about_us_section .container p {
  width: 50%;
  font-size: 14px;
  text-align: justify;
}

.about_us_section .container p a {
  color: #0e2b8d;
  transition: all 5s;
}

.about_us_section .container p a:hover {
  border-bottom: 1px solid #0e2c8dc0;
}

/* history page part--------------______________________ */

.history_header {
  height: 500px;
  background-image: url(./images/history/nightYerevan.jpg);
  background-color: black;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.history_header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
}

.history_header .container {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 70%;
  color: white;
  position: relative;
  z-index: 3;
  text-align: right;
}

.history_section {
  padding: 60px 0;
  background-color: #eee;
}
.history_section .container {
  display: flex;
  justify-content: center;
}

.history_section .container ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}

.history_section .container ul li {
  font-size: 12px;
  text-align: justify;
}

.history_section .container ul h3 {
  font-size: 18px;
  padding-bottom: 40px;
}

/* media---page------------------------------------------------------_______________________________ */

.header_media_page {
  background-image: url(./images/mediaPage/mediaMain.jpg);
  height: 60vh;
  background-size: cover;
  background-position: center;
}

.mediaZone_section {
  padding: 40px 0;
}
.mediaZone_section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.mediaZone_section .container h1 {
  color: #0e2b8d;
}
.media_zone_images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.media_zone_images_top,
.media_zone_images_bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.media_zone_images_top img {
  border: 2px solid #d0d0d3;
}
.media_zone_images_bottom {
  gap: 10px;
}
.media_zone_images_bottom img {
  height: 300px;
  object-fit: cover;
  width: 100%;
  border: 2px solid #d0d0d3;
}
.media_zone_images_bottom img:nth-child(4) {
  object-position: center;
}

/* hashvetvityun----------------------------____________________________________ */

.hashv_header {
  background-image: url(./images/hashvetv/hashvImgOne.jpg);
  height: 700px;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: top;
}
.hashv_section {
  padding: 80px 0;
}
.hashv_section .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.hashv_section .container h1 {
  color: #0e2b8d;
  font-size: 1.8rem;
}
.statements_items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.statements_items .statement_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.statements_items .statement_item h3 {
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
}
.statements_items .statement_item h3:hover {
  text-decoration: underline 1px #06133b;
  color: #0a8aa7;
}

.statements_items .statement_item .pdf_wrapper {
  width: 45vw;
  height: 90vh;
  display: none;
}

.pdf_file {
  display: block;
}

.pdf_wrapper iframe {
  min-width: 100%;
  min-height: 100%;
}

.pdf_wrapper_none {
  display: none !important;
}

/* our team -----------------------------_________________________________ */

.our_team_header {
  background-image: url(./images/starburst.png);
  background-color: #7089d3;
  height: 500px;
  background-size: 1000px;
  background-repeat: no-repeat;
  background-position: right;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our_team_header .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.our_team_head_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #ffffff;
}
.our_team_header_leader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.our_team_header_leader img {
  border-radius: 50%;
  height: 350px;
  width: 350px;
  object-fit: cover;
  box-shadow: 10px 2px 15px rgba(0, 0, 0, 0.185);
}
.our_team_header_leader h3 {
  font-size: 20px;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.205);
  color: white;
}
.our_team_header_leader p {
  font-size: 12px;
  color: white;
}

.section_our_tean .container {
  padding: 0;
}
.section_our_tean .section_our_tean_persons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px solid #e5e5e6;
  padding: 30px 20px;
  transition: all 0.2s;
}
.person:hover {
  transform: translateY(-10px);
  box-shadow: 4px 10px 10px rgba(0, 0, 0, 0.363);
  border: none;
}
.person .person_img {
  border-radius: 50%;
  height: 200px;
  width: 200px;
  overflow: hidden;
}

.person .person_img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.person .person_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.person .person_text h3 {
  font-size: 14px;
  color: #0e2b8d;
}
.person .person_text p {
  font-size: 12px;
  white-space: nowrap;
}

/* karyera-------------------------------------------------- */

.karyera_header .container {
  padding-top: 60px;
  padding-bottom: 60px;
  color: #06133b;
}

.karyera_section {
  padding-bottom: 60px;
  display: flex;
  align-items: center;
}
.karyera_section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.karyera_job {
  display: flex;
  gap: 40px;
  align-items: center;
}
.karyera_job img {
  height: 200px;
  width: 200px;
  object-fit: cover;
}
.karyera_job .karyera_job_text {
  display: flex;
  flex-direction: column;
  width: 60%;
  text-align: center;
  gap: 20px;
  transition: all 0.2s;
  text-align: left;
  /* margin: 40px; */
}
.karyera_job:hover .karyera_job_text {
  scale: 1.2;
  margin-left: 20px;
}

/* news________________________________________________________________________ */

.news_header {
  padding: 60px 0;
}
.news_header .container h1 {
  color: #06133b;
}

.news_section {
  padding-bottom: 60px;
}
.news_section .container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news_section .container img {
  height: 600px;
}
.news_section .container .news_section_texts {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 60%;
  text-align: justify;
}
.news_section_texts .news_text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.news_section_texts .news_text p {
  transition: all 0.2s;
}

.news_section_texts .news_text p:hover {
  scale: 1.1;
}
