* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  outline: none;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans Armenian", sans-serif;
}

.gap-12 {
  gap: 12px;
}

.gap-24 {
  gap: 24px;
}

.d-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: end;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.prime-color {
  color: #254760;
}

.w-10 {
  width: 10%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-65 {
  width: 65%;
}

.w-75 {
  width: 75%;
}

.w-100 {
  width: 100%;
}

.m-auto {
  margin: auto;
}

img {
  width: 100%;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.white-color {
  color: #ffffff;
}

.pos-abs {
  position: absolute;
}

.pos-rel {
  position: relative;
}

.direction-column {
  flex-direction: column;
}

.d-none {
  display: none;
}

.error {
  color: #ff0000;
  font-size: 12px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -14px;
}

.flex-1 {
  flex: 1;
}

@media (max-width: 768px) {
  .w-10, .w-20, .w-25, .w-30, .w-40, .w-50, .w-60, .w-75 {
    width: 100%;
  }
  .d-flex {
    flex-wrap: wrap;
  }
}
main {
  margin-top: 98px;
}

.container {
  max-width: 1280px;
  width: 94%;
  margin: auto;
}

p {
  color: #254760;
  margin-bottom: 16px;
}

/*Pagination*/
.pagination {
  color: #254760;
  font-size: 14px;
}
.pagination .prev-page {
  transform: rotate(180deg);
}
.pagination .current-page,
.pagination a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.pagination .current-page {
  background-color: #254760;
  color: #ffffff;
  border-radius: 50%;
}
.pagination img {
  width: 18px;
  height: 18px;
}

header {
  background-color: #254760;
  transition: all 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
header ul {
  display: flex;
}
header ul li {
  margin-right: 25px;
}
header ul li a {
  color: #ffffff;
  letter-spacing: 1px;
  padding-bottom: 5px;
  position: relative;
}
header ul li a:before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #b09b5c;
  left: 0;
  top: 100%;
  position: absolute;
  transition: width 0.5s;
}
header ul li a:hover::before {
  width: 100%;
}
header ul li a:hover {
  color: #b09b5c;
  transition: all 0.5s;
}
header ul .active a {
  color: #b09b5c;
}

.logo img {
  height: auto;
  border-radius: 10px;
}

.socials {
  gap: 16px;
}
.socials svg {
  width: 35px;
  height: 35px;
}
.socials svg path {
  fill: #b09b5c;
}
.socials svg:hover path {
  fill: #ffffff;
  transition: all 0.5s;
}
.socials img {
  width: 35px;
  height: 35px;
}

footer {
  background-color: #254760;
  padding: 20px 0;
}
footer #menu-footer-menu li {
  margin-bottom: 15px;
}
footer #menu-footer-menu li a {
  color: #ffffff;
  position: relative;
  padding-bottom: 5px;
}
footer #menu-footer-menu li a:before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #b09b5c;
  left: 0;
  top: 100%;
  position: absolute;
  transition: width 0.5s;
}
footer #menu-footer-menu li a:hover::before {
  width: 100%;
}
footer #menu-footer-menu li a:hover {
  color: #b09b5c;
  transition: all 0.5s;
}
footer iframe {
  height: 160px;
  border: 1px solid #b09b5c;
}
footer p {
  color: #ffffff;
}

.menu_toggle {
  display: none;
}

.mobile_menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 40px;
  z-index: 15;
  transform: translateX(100%);
  transition: all 0.5s;
}

.not-found {
  height: 40vh;
}

.btns {
  background-color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.5s;
  color: #000000;
  letter-spacing: 1px;
}
.btns:hover {
  background-color: #254760;
  color: #ffffff;
}

.btn_primary {
  background-color: #254760;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.5s;
  color: #ffffff;
  letter-spacing: 1px;
}
.btn_primary:hover {
  background-color: #b09b5c;
}

.disable_submit_btn {
  pointer-events: none;
  opacity: 0.1;
}

.three_cols,
.two_cols {
  display: flex;
  justify-content: start;
  gap: 2%;
  row-gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}
.three_cols .item,
.two_cols .item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 0;
  flex-basis: 32%;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
}

.title h1 {
  font-size: 40px;
  line-height: 50px;
  position: relative;
  letter-spacing: 1.5px;
}
.title h1:before {
  content: "";
  background-image: url(../img/electric.svg);
  background-position: center;
  background-repeat: no-repeat;
  display: inline-flex;
  width: 20px;
  height: 30px;
  background-size: cover;
  margin-right: 12px;
}
.title h2 {
  font-size: 40px;
  line-height: 50px;
  position: relative;
}
.title h2:before {
  content: "";
  background-image: url(../img/electric.svg);
  background-position: center;
  background-repeat: no-repeat;
  display: inline-flex;
  width: 20px;
  height: 30px;
  background-size: cover;
  margin-right: 12px;
}

h2 {
  margin-bottom: 24px;
  letter-spacing: 1.5px;
}

.description p {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 24px;
  color: #ffffff;
}

.swiper-button-next,
.swiper-button-prev {
  color: #254760;
}

.banner {
  background-position: top center;
  background-size: cover;
  min-height: 500px;
}
.banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.banner .banner_wrapper {
  max-width: 700px;
  width: 80%;
  margin: auto;
  height: 100%;
  position: relative;
  padding: 70px 0;
}

.contact {
  background-position: top center;
  background-size: cover;
  min-height: 500px;
}
.contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
.contact .contact_wrapper {
  max-width: 860px;
  width: 80%;
  margin: auto;
  height: 100%;
  position: relative;
  padding: 70px 0;
}
.contact input[type=text],
.contact textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #254760;
  border-radius: 10px;
}
.contact textarea {
  width: 100%;
  height: 150px;
  resize: none;
}
.contact input[type=submit] {
  border: none;
}
.contact .d-flex {
  flex-wrap: wrap;
}
.contact .description p {
  color: #254760;
}

.license {
  margin-bottom: 24px;
}
.license .swiper-slide img {
  object-fit: cover;
  width: 260px;
  height: 180px;
}

.text-img img {
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
.text-img .description p {
  color: #254760;
}
.text-img h2 {
  font-size: 33px;
}

.blog_section .title {
  margin-bottom: 16px;
}
.blog_section .three_cols .item {
  box-shadow: 0 0 7px #b09b5c;
  border-radius: 10px;
}
.blog_section .three_cols .item h3 {
  margin: 0px 0 10px;
  flex: 1;
  font-size: 26px;
}
.blog_section .three_cols .item .post_info {
  padding: 20px;
  height: calc(100% - 230px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog_section .three_cols .item .post_info p {
  color: #254760;
  padding: 12px 0 16px;
}
.blog_section .three_cols .item .post_info .read-more-section {
  margin: 20px 0;
}
.blog_section .three_cols .item .post_info .read-more-section a {
  color: #ffffff;
}
.blog_section .three_cols .item .post_info .date_post {
  color: #b09b5c;
}
.blog_section .three_cols .item .post_img {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.blog_section .three_cols .item .post_img img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.single .post_img img {
  object-fit: cover;
  height: 400px;
}
.single .swiper_works {
  max-width: 1024px;
  width: 90%;
  padding: 26px 0;
  margin: auto;
}
.single .swiper_works .swiper-slide {
  width: 500px;
}
.single .swiper_works .swiper-slide img {
  display: block;
  width: 500px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}

.our_works .two_cols .item {
  box-shadow: 0 0 7px #b09b5c;
  border-radius: 10px;
  flex-basis: 49%;
}
.our_works .two_cols .item h3 {
  margin: 0px 0 10px;
  flex: 1;
  font-size: 26px;
}
.our_works .two_cols .item .post_info {
  padding: 20px;
  height: calc(100% - 230px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.our_works .two_cols .item .post_info p {
  color: #254760;
  padding: 12px 0 16px;
}
.our_works .two_cols .item .post_info .read-more-section {
  margin: 20px 0;
}
.our_works .two_cols .item .post_info .read-more-section a {
  color: #ffffff;
}
.our_works .two_cols .item .post_info .date_post {
  color: #b09b5c;
}
.our_works .two_cols .item .post_img {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.our_works .two_cols .item .post_img img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 1200px) {
  main {
    margin-top: 100px;
  }
  header ul li {
    margin-right: 15px;
  }
  header ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  main {
    margin-top: 90px;
  }
  header .socials {
    display: none;
  }
  .menu {
    display: none;
  }
  .menu_toggle {
    display: flex;
    flex-direction: column;
    gap: 7px;
    top: 20px;
    right: 20px;
    z-index: 12;
    position: fixed;
  }
  .menu_toggle span {
    width: 35px;
    height: 2px;
    background-color: #b09b5c;
    display: block;
  }
  .mobile_menu {
    background-color: #254760;
  }
  .mobile_menu nav ul {
    flex-direction: column;
    align-items: start;
    display: flex;
  }
  .mobile_menu nav ul .has-submenu ul {
    opacity: 0;
    height: 0;
    margin-left: 15px;
  }
  .mobile_menu nav ul .has-submenu ul li {
    padding: 10px 0 0 0;
  }
  .mobile_menu nav ul .has-submenu .open {
    transition: all 0.3s;
    opacity: 1;
    height: auto;
  }
  .mobile_menu nav ul li {
    width: 80%;
    padding: 10px 0;
    position: relative;
  }
  .mobile_menu nav ul li a {
    color: #ffffff;
  }
  .mobile_menu .menu_wrapper {
    height: 38vh;
    overflow-y: auto;
    margin-top: 30px;
  }
  .mobile_menu .close_menu {
    top: 30px;
    right: 30px;
  }
  .mobile_menu .logo {
    width: 120px;
  }
  .show {
    transform: translateX(0);
  }
}
@media (max-width: 960px) {
  .three_cols .item {
    flex-basis: 49%;
  }
}
@media (max-width: 768px) {
  .logo img {
    width: 100px;
  }
  footer .d-flex {
    margin: auto;
    justify-content: center;
    text-align: center;
  }
  footer .d-flex div {
    margin-top: 30px;
  }
  .flex-1 {
    flex-basis: 100%;
  }
  .three_cols .item,
  .our_works .two_cols .item {
    flex-basis: 100%;
  }
  .single .swiper_works .swiper-slide {
    width: 400px;
  }
  .single .swiper_works .swiper-slide img {
    width: 350px;
    height: 280px;
  }
  .swiper-button-next, .swiper-button-prev {
    top: 70%;
  }
}
@media (max-width: 520px) {
  .single .swiper_works .swiper-slide {
    width: 300px;
  }
  .single .swiper_works .swiper-slide img {
    display: block;
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
  }
}