/*
Theme Name:  YM
Version:     1.0.0
Description: Custom WordPress Responsive Multi-Purpose Theme.
Theme URI:   #
Author:      EVIP
Author URI:  #
License:     Custom license
License URI: #
Text Domain: evip
*/

@font-face {
    font-family: 'Open Sans Hebrew';
    src: url('assets/fonts/OpenSansHebrew-Bold.woff2') format('woff2'),
        url('assets/fonts/OpenSansHebrew-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans Hebrew';
    src: url('assets/fonts/OpenSansHebrew-Regular.woff2') format('woff2'),
        url('assets/fonts/OpenSansHebrew-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

body {
  font-family: "Open Sans Hebrew", sans-serif;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

/* common */
.container {
  max-width: 1380px;
  margin: auto;
}

.size-full {
  width: 100%;
  height: 100%;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

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

.hidden {
  display: none;
}

.translate-x-full {
  transform: translateX(100%);
}

.overflow-hidden {
  overflow: hidden;
}

.justify-end {
  justify-content: end;
}

.relative {
  position: relative;
}

.title {
  font-size: 48px;
  text-align: center;
  font-weight: bold;
  color: rgba(77, 94, 106, 1);
  margin-bottom: 16px;
}

.paragraph {
  max-width: 738px;
  margin: auto;
  text-align: center;
  font-size: 17px;
  color: rgba(0, 0, 0, 1);
  line-height: 25px;
}

.long-paragraph {
  font-size: 17px;
  color: rgba(0, 0, 0, 1);
  line-height: 25px;
}

.border {
  border: 1px solid red;
}

.button {
  background-color: #4d5e6a;
  color: white;
  font-size: 20px;
  height: 42px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(21, 152, 197, 1) 0%,
    rgba(16, 172, 208, 1) 50%,
    rgba(52, 106, 176, 1) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 500ms ease;
}

.button:hover::before {
  opacity: 1;
}

.vertical-bar {
  width: 1px;
  height: 104px;
  background: rgba(77, 94, 106, 0.5);
  margin: auto;
}

.vertical-bar-sm {
  width: 1px;
  height: 56px;
  background: rgba(77, 94, 106, 0.5);
  margin: auto;
  margin-top: 40px;
}

.gradient-bar {
  width: 100px;
  height: 100vh;
  background: linear-gradient(
    to bottom,
    rgba(21, 152, 197, 1) 0%,
    rgba(16, 172, 208, 1) 50%,
    rgba(52, 106, 176, 1) 100%
  );
  position: absolute;
  top: 0;
  right: 40px;
  z-index: -1;
  transform: rotate(-30deg) translateY(-180px) translateX(405px);
  transition: transform 0.8s ease-in-out;
  pointer-events: none;
}

.services:hover .gradient-bar {
  transform: rotate(-30deg) translateY(-180px) translateX(0px);
}

/* .service-gradient-bar { */
.project-gradient-bar {
  width: 160px;
  height: 1800px;
  background: linear-gradient(
    to bottom,
    rgba(21, 152, 197, 1) 0%,
    rgba(16, 172, 208, 1) 50%,
    rgba(52, 106, 176, 1) 100%
  );
  position: absolute;
  top: 0;
  z-index: -1;
  transform: rotate(30deg) translateY(-370px) translateX(-600px);
  transition: transform 0.8s ease-in-out;
  pointer-events: none;
}

.project-section:hover .project-gradient-bar {
  transform: rotate(30deg) translateY(-370px) translateX(130px);
}

.gradient-border {
  border: 1px solid;
  border-image: linear-gradient(90deg, #10acd0, #346ab0) 1;
}

.page-header {
  position: relative;
  height: 126px;
  background: rgba(77, 94, 106, 1);
  color: white;
  margin-top: 10px;
  border-bottom: 1px solid white;
}
.page-template-template-contact-us .page-header {border-bottom: none;}
.page-header h1 {
  font-size: 48px;
  font-weight: 700;
}

.page-header p {
  font-size: 15px;
  opacity: 0.9;
  position: absolute;
  bottom: 7px;
  right: 40px;
}

/* ***HOME PAGE*** */
/* hero */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero_bg img.move {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: zoomInOut 25s ease-in-out infinite alternate;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1) translate(0, 0);
  }
  33% {
    transform: scale(1.15) translate(2%, -2%);
  }
  66% {
    transform: scale(1.2) translate(-2%, 2%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
.hero_bg video {
    width: 100%;
    object-fit: cover;
    height: 100vh;
    display: block;
}

/* header */
.header_area {
  position: relative;
  z-index: 50;
}

.header_area nav {
  display: flex;
  max-width: 1818px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.header_area .logo {
  width: 80px;
  height: auto;
  text-align: center;
}

.header_area .logo img {
  width: 100%;
  position: relative;
  top: 7px;
}

.header_area nav ul {
  display: flex;
  gap: 32px;
  font-size: 18px;
  flex: 1;
}

.header_area nav ul:last-of-type {
  justify-content: flex-end;
}

.header_area nav ul li a {
  color: #333;
  font-size: 18px;
  transition: color 0.3s ease;
}

.header_area nav ul li a:hover {
  color: rgba(21, 152, 197, 1);
}

#menu-btn {
  background: none;
  border: none;
  font-size: 30px;
  color: #1b2e70;
  cursor: pointer;
  display: none;
}

#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4d5e6a;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

#mobile-menu a {
  font-size: 24px;
  color: white;
}

#mobile-menu hr {
  width: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
#mobile-menu .menu-slide {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 20px;
    width: 100%;
    border-bottom: 1px solid #fff;
}

#close-btn {
  /*position: absolute;
  top: 20px;
  left: 20px;*/
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* slider */
.slider_container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.slider_container .content img {
  /*object-fit: cover;*/
  transition: opacity 500ms;
  height: auto !important;
}
.slider_container .img-bottom {
    display: flex;
    align-items: flex-end;
}
.slider_container .content .text {
  max-width: 1818px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: end;
  text-align: end;
}

.slider_container .content .text .text-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider_container .content .text h1 {
  font-size: 58px;
  font-weight: normal;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.slider_container .content .text a {
  margin-top: 32px;
  font-weight: bold;
  pointer-events: auto;
  padding: 0 12px;
  display: inline-block;
  line-height: 42px;
}

/* why choose us */
.why_choose_us .header_section {
  margin-bottom: 112px;
  text-align: center;
  margin-top: 10px;
  overflow: hidden;
}

.why_choose_us .button {
  padding: 0 36px;
  margin-top: 24px;
  display: inline-block;
  line-height: 40px;
}

.why_choose_us .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 50px;
}

.why_choose_us .left_side {
  /* width: 50%; */
  display: flex;
  justify-content: flex-end;
}

.why_choose_us .left_side ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.why_choose_us .left_side li {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px;
}

.why_choose_us .left_side img {
  width: 50px;
  height: 55px;
}

.why_choose_us .left_side h4 {
  font-size: 27px;
  margin-bottom: 8px;
  font-weight: normal;
}

.why_choose_us .left_side p {
  font-size: 17px;
  width: 492px;
}

.why_choose_us .right_side {
  width: 50%;
  /*height: 490px;*/
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  /*overflow: hidden;*/
}

.why_choose_us .bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: url("./assets/images/bg_logo_colorful.png") no-repeat
    center/contain;*/
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s ease-in-out;
  transition-delay: 1s;
  z-index: 1;
  background-repeat: no-repeat !important;
    z-index: 1;
    background-position: center !important;
    background-size: cover !important;
}

.why_choose_us.animate-now .bg-layer {
  clip-path: inset(0% 0 0 0);
  overflow: hidden;
}

.why_choose_us .right_side .img-div {
  opacity: 0;
  transform: translateX(200px);
  transition:
    opacity 1.2s ease-out,
    transform 1.2s ease-out;
  z-index: 2;
  height: 95%;
}

.why_choose_us.animate-now .right_side .img-div {
  opacity: 1;
  transform: translateX(0);
}

.why_choose_us .right_side img {
  height: 95%;
  width: auto;
  display: block;
}

/* services */
.services {
  background-color: #4d5e6a;
  padding-bottom: 112px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.services .vertical-bar {
  background-color: rgba(255, 255, 255, 0.5);
  height: 170px;
  width: 1px;
  margin-right: 50%;
}

.services .title {
  color: white;
  margin-bottom: 32px;
}

.services .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1380px;
  margin: 0 auto;
  z-index: 10;
}

.service-card {
  width: 100%;
  height: 540px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border 0.3s ease;
  border: 1px solid rgba(77, 94, 106, 0.9);
}

.service-card:hover {
  border: 2px solid rgba(16, 172, 208, 1);
}

.card-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(77, 94, 106, 0.9);
  color: white;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover .card-overlay {
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
}

.icon-area {
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.icon-wrapper {
  position: relative;
  width: 133px;
  height: 100px;
}

.icon-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.icon-colored {
  opacity: 0;
}

.service-card:hover .icon-default {
  opacity: 0;
}

.service-card:hover .icon-colored {
  opacity: 1;
}

.text-area {
  height: 50%;
  text-align: center;
  padding: 0 20px;
}

.text-area h2 {
  font-size: 27px;
  margin-bottom: 32px;
  font-weight: 400;
}

.text-area p {
  font-size: 16px;
  max-width: 288px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: normal;
}

.rotate-bar {
  width: 1px;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  transform: rotate(35deg) translateX(350px) translateY(-120px);
  z-index: -10;
}

/* --- Project Section --- */
.project-section {
  padding-top: 80px;
  padding-bottom: 112px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.project-title {
  font-size: 48px;
  font-weight: bold;
  color: #4d5e6a;
  text-align: center;
}

.project-section .button {
  padding: 0px 24px;
  display: inline-block;
  line-height: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
}

.col-span-2 {
  grid-column: span 2;
}
.col-span-4 {
  grid-column: span 4;
}

.project-item {
  height: 412px;
  position: relative;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-item:hover .project-img {
  transform: scale(1.25);
}

/* --- Hover Overlay --- */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(77, 94, 106, 0.6);
  align-items: center;
  justify-content: center;
  display: none;
  transition: transform 0.3s ease;
  align-items: center;
}

.project-item:hover .project-overlay {
  display: flex;
}

.project-overlay h4 {
  font-size: 24px;
  color: white;
}
.project-overlay h4 a {color: #fff}
/* --- Decorative Elements --- */
.project-rotate-bar {
  width: 1px;
  height: 1500px;
  background-color: rgba(77, 94, 106, 0.5);
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(-35deg) translateX(-430px) translateY(0px);
  z-index: -10;
}

/* --- Clients Section --- */
.clients-section {
  background-color: rgba(244, 246, 248, 1);
  padding-bottom: 112px;
  position: relative;
}

.clients-header {
  margin-bottom: 112px;
  text-align: center;
  margin-top: 20px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.client-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  padding: 48px;
}

.client-logo {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition:
    filter 0.5s ease,
    transform 0.5s ease;
  filter: grayscale(0%);
}

.client-item:hover .client-logo {
  filter: grayscale(100%);
}

/* --- Custom Border Separators --- */
.border-right {
  position: absolute;
  right: 0;
  top: 5%;
  bottom: 5%;
  width: 1px;
  background-color: #d1d5db;
}

.border-bottom {
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background-color: #d1d5db;
}

.clients-grid .client-item:nth-child(5n) .border-right {
  display: none;
}

.clients-grid .client-item:nth-last-child(-n + 5) .border-bottom {
  display: none;
}

/* --- Contact Section --- */
.contact-section {
  padding: 128px 0;
  position: relative;
}
.bg-logo-wrapper {
  position: absolute;
  top: 0;
  height: 100%;
  display: none;
  z-index: 1;
  left: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .bg-logo-wrapper {
    display: block;
  }
}

.contact-banner {
  /*max-width: 1440px;
  margin: 0 auto;*/
  /*background-image: url("./assets/images/service_bg_1.jpg");*/
  background-size: cover;
  background-position: center;
}

.contact-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(77, 94, 106, 0.9);
  color: white;
  padding: 72px 40px;
  transition: all 0.3s ease;
}

.contact-div {
  position: relative;
  z-index: 5;
}

.contact-section:hover .contact-overlay {
  background-color: rgba(255, 255, 255, 0.9);
  color: #4d5e6a;
}

.contact-content {
  margin-bottom: 40px;
}

.contact-title {
  font-size: 54px;
  font-weight: bold;
  line-height: 60px;
}

.contact-desc {
  font-size: 18px;
  font-weight: normal;
}

.contact-form {
  display: flex;
  gap: 8px;
  position: relative;
}
.contact-form .wpcf7,
.contact-form .wpcf7 form,
.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"] {direction: rtl !important;}

.contact-input {
  background: transparent;
  border: 1px solid white;
  height: 48px;
  width: 268px;
  padding-right: 10px;
  outline: none;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-input::placeholder {
  color: white;
  font-size: 17px;
}

.contact-section:hover .contact-input {
  color: #4d5e6a;
  border-color: #4d5e6a;
}

.contact-section:hover .contact-input::placeholder {
  color: #4d5e6a;
}

.contact-section .contact-form .button {
  background-color: white;
  color: #4d5e6a;
  height: 48px;
  padding: 0 32px;
}

.contact-section:hover .button::before {
  opacity: 1;
}

.contact-section:hover .button {
  background: linear-gradient(to right, rgba(21, 152, 197, 1) 0%, rgba(16, 172, 208, 1) 50%, rgba(52, 106, 176, 1) 100%);
  color: #fff;
}
.wpcf7-spinner {
    margin: 0;
    position: absolute;
    top: 15px;
}
.page-template-template-contact-us .wpcf7-spinner {top: auto;bottom: 10px;}
.wpcf7 form .wpcf7-response-output {
    margin: 2em 0 0 0;
    padding: 0;
    border: none;
}

/* footer */
.main-footer {
  background-color: #4d5e6a;
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
}

.footer-container {
  max-width: 1818px;
  width: 100%;
  margin: 0 auto;
  padding-top: 24px;
  color: white;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  text-align: right;
  justify-content: space-between;
}

.footer-links-group {
  display: flex;
  list-style: none;
  gap: 32px;
  padding: 0;
  margin: 0;
}

.footer-links-group a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: opacity 0.3s ease;
}

.footer-links-group a:hover {
  opacity: 0.7;
}

.footer-divider {
  margin: 16px 0;
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}

.branding-text {
  text-align: left;
  font-size: 17px;
  font-weight: normal;
}
.branding-text img {
  width: auto !important;
  display: inline-block;
  position: relative;
    top: 2px;
    left: 1px;
}
.extra-bold {
  font-size: 24px;
  font-weight: bold;
}
p.breadcrumb {direction: rtl;}
p.breadcrumb, p.breadcrumb a {color: #fff; }

/* ***ABOUT*** */
.about_hero {
  padding: 100px 0;
  position: relative;
  /* overflow: hidden; */
}

.about_hero_left_bar {
  height: 807px;
  width: 1px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 377px;
  left: 205px;
  transform: rotate(35deg);
  z-index: -1;
}

.about_hero_right_bar {
  height: 944px;
  width: 1px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0px;
  right: 0px;
  transform: rotate(-35deg) translateX(-150px) translateY(-250px);
  z-index: -1;
}

.about_hero .title_p {
  max-width: 920px;
  margin: auto;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  color: rgba(0, 0, 0, 1);
  line-height: 25px;
  margin-bottom: 24px;
}

.about_hero .about_hero_img {
  height: 498px;
}

.about_hero_text_content .title {
  text-align: start;
}

.about_hero_text_content .part_1 {
  margin: 36px 0px 46px 0;
}

.about_hero_text_content .part_1 strong {
  margin: 16px 0px;
  display: inline-block;
}

.about_hero_text_content .why_choose_us .left_side {
  width: 100%;
  justify-content: start;
}

.about_hero_text_content .why_choose_us .left_side ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.about_hero_text_content .why_choose_us .left_side p {
  width: 100%;
}

.section_hero {
  display: flex;
  gap: 40px;
  margin-top: 100px;
}

.section_hero .image {
  width: 50%;
  height: 458px;
}

.section_hero .text {
  width: 50%;
}

.section_hero_text_area {
  margin-top: 24px;
}

.all_project {
  padding: 100px 0px;
}

.all_project .project-rotate-bar-left {
  width: 1px;
  height: 1500px;
  background-color: rgba(77, 94, 106, 0.5);
  position: absolute;
  left: 0;
  z-index: -10;
  top: 1400px;
  transform: rotate(35deg) translateX(-100px) translateY(-200px);
}

.all_project .project-rotate-bar-right {
  width: 1px;
  height: 1500px;
  background-color: rgba(77, 94, 106, 0.5);
  position: absolute;
  right: 0;
  z-index: -10;
  top: 600px;
  transform: rotate(-35deg) translateX(-130px) translateY(0px);
}

/* ***MAGAZINE*** */
.magazine {
  position: relative;
  padding: 100px 0;
  background: rgba(244, 246, 248, 1);
  z-index: 0;
}

.magazine_card_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
}

.magazine_card_container .card {
  background: white;
}

.magazine_card_container .image {
  height: 308px;
}

.magazine_card_container .title {
  font-weight: normal;
  text-align: end;
  padding: 36px 20px;
  line-height: 0px;
  margin: 0;
  font-size: 27px;
}
.magazine_card_container .title a {color: rgba(77, 94, 106, 1);}
.magazine-rotate-bar-left {
  width: 1px;
  height: 1306px;
  background-color: rgba(77, 94, 106, 0.5);
  position: absolute;
  top: 395px;
  left: 0;
  transform: rotate(35deg) translateX(100px) translateY(-120px);
  z-index: -1;
}

.magazine-rotate-bar-right {
  width: 1px;
  height: 1306px;
  background-color: rgba(77, 94, 106, 0.5);
  position: absolute;
  top: 150px;
  right: 0;
  transform: rotate(-35deg) translateX(100px) translateY(-300px);
  z-index: -1;
}

.article .section_hero_text_area {
  margin-bottom: 100px;
}

/* ***CONTACT-US*** */
.contact_us_content {
  display: flex;
  position: relative;
  color: white;
  background: url('./assets/images/bg-contact.png') rgba(77, 94, 106, 0.95);
  background-repeat: no-repeat;
}

.contact_us_text {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-left: 8%;
}

.contact_us_text .title {
  color: white;
  font-size: 54px;
  text-align: start;
}

.contact_us_text .pair {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact_us_text .pair p {
  font-size: 21px;
}
.contact_us_text .pair p a {color: #fff}
.contact_us_text .whatsapp {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  margin-bottom: 90px;
}

.contact_us_text .whatsapp h4 {
  font-size: 21px;
  line-height: 25px;
}

.contact_us_text .whatsapp .sm-icon {
  width: 28px;
  height: 28px;
}

.sm-icon {
  width: 18px;
  height: 18px;
}

.contact_us_text .contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  direction: rtl;
}

.contact_us_text .contact-form .button {
  background: white;
  color: rgba(0, 0, 0, 1);
  width: 77px;
}

.contact_us_image {
  position: relative;
  height: 823px;
  width: 50%;
  padding: 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.contact_us_image > img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  z-index: 1;
}

.contact_us_image .inner_image {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  height: 95%;
  opacity: 0;
  transform: translate(calc(-50% - 200px), 0);
  transition:
    opacity 1.2s ease-out,
    transform 1.2s ease-out;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.contact_us_content.animate-now .inner_image {
  opacity: 1;
  transform: translate(-50%, 0);
}

/*.inner_image img {
  height: 100%;
  width: 90%;
}*/

@media screen and (max-width: 1840px) {
  .hero,
  .header_area,
  .slider_container .text {
    padding: 0 24px;
  }
}

@media screen and (max-width: 1415px) {
  .container {
    padding: 0 24px;
  }

  .about_hero {
    padding: 80px 0px;
    margin: 0px;
  }
  .hero_bg video {
        height: 125%;
        position: relative;
        top: -10%;
    }
}

@media screen and (max-width: 1335px) {
  .header_area {
    padding: 38px 24px;
  }

  .header_area nav ul li {
    white-space: nowrap;
  }

  .header_area .logo {
    display: none;
  }

  .page-header {
    margin-top: 0;
  }

  .why_choose_us .left_side ul {
    width: 100%;
  }

  .why_choose_us .left_side p {
    width: 100%;
  }

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

  .section_hero .image {
    width: 100%;
    height: 458px;
  }

  .section_hero .text {
    width: 100%;
  }
	.why_choose_us .right_side .img-div {display: flex; align-items: center}
}

@media screen and (max-width: 1200px) {
  .contact_us_content {
    flex-direction: column-reverse;
    gap: 24px;
    padding: 0 24px;
  }

  .contact_us_text {
    width: 100%;
    justify-content: start;
    margin-bottom: 24px;
  }

  .contact_us_text .whatsapp {
    margin-top: 28px;
    margin-bottom: 38px;
  }

  .contact_us_image {
    width: 60%;
    height: 400px;
    margin: auto;
  }
}
@media screen and (max-width: 1335px) and (min-width: 1120px) {
		.header_area nav ul {
			gap: 15px;
			font-size: 16px;
	}
	.header_area {
        padding: 5px 24px;
 }
	.header_area nav ul li a {
    font-size: 16px;
}
	.header_area .logo {
        padding-right: 10px;
    }
}
@media screen and (max-width: 1120px) {
#menu-btn {
    display: block;
  }
.header_area nav ul {
    display: none;
  }
}
@media screen and (max-width: 1042px) {
  .magazine_card_container .title {
    padding-left: 0px;
    padding-right: 16px;
    font-size: 36px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    padding: 0 24px;
  }

  .button {
    font-size: 17px;
    height: 38px;
  }

  .title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .md-hidden {
    display: none;
  }

  .hero {
    padding: 0;
    height: 60vh;
  }
  .header_area {
    border-bottom: 1px solid #e5e7eb;
    padding: 0px;
  }

  .header_area .logo {
    width: 50px;
    display: block;
  }

  .header_area .logo img {
    top: 0;
  }

  .header_area nav {
    padding: 10px 24px;
  }

  #mobile-menu {
    gap: 16px;
  }
  .logo {
    width: 50px;
  }

  .logo img {
    top: 0;
  }

  .slider_container .content .text {
    padding-right: 24px;
  }

  .slider_container .content .text h1 {
    font-size: 40px;
  }
    .slider_container .content .text .text-content {
        top: 65%;
    }
  .page-header {
    height: 100px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .why_choose_us {
    margin: 32px 0px;
  }

  .why_choose_us .vertical-bar {
    display: none;
  }

  .vertical-bar-sm {
    display: none;
  }
    .why_choose_us .bg-layer {
            background-size: contain !important;
        }
  .why_choose_us .content {
    flex-direction: column-reverse;
    align-items: center;
    padding: 0px;
  }

  .why_choose_us .left_side {
    width: 100%;
    justify-content: center;
  }

  .why_choose_us .left_side ul {
    width: 100%;
    max-width: 100%;
  }

  .why_choose_us .left_side p {
    width: 100%;
  }

  .why_choose_us .right_side {
    width: 100%;
  }
	.why_choose_us .right_side img {height: 100%; max-height: 400px;}
  .services {
    padding: 40px 0px;
  }

  .services .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-section {
    padding: 32px 0;
  }

  .project-header {
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
  }

  .project-title {
    font-size: 36px;
  }

  .project-item {
    height: 300px;
  }

  .project-rotate-bar {
    display: none;
  }

  .clients-section {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .clients-header {
    margin-bottom: 32px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .clients-grid .client-item:nth-child(5n) .border-right {
    display: block;
  }
  .clients-grid .client-item:nth-child(3n) .border-right {
    display: none;
  }

  .clients-grid .client-item .border-bottom {
    display: block !important;
  }

  .clients-grid .client-item:nth-last-child(-n + 3) .border-bottom {
    display: none !important;
  }

  .vertical-bar {
    display: none;
  }

  .contact-section {
    padding: 48px 0;
  }

  .contact-form {
    flex-direction: column;
    width: 100%;
  }

  .contact-input {
    width: 100%;
    height: 40px;
  }

  .contact-overlay {
    padding: 96px 40px;
  }

  .contact-title {
    font-size: 40px;
  }

  .footer-nav {
    gap: 20px;
  }

  .footer-links-group {
    gap: 16px;
  }

  .footer-links-group a {
    font-size: 16px;
  }
  .about_hero_text_content .part_1 {
    margin: 24px 0px;
  }

  .about_hero .about_hero_img {
    height: 400px;
  }

  .section_hero {
    gap: 30px;
    margin-top: 70px;
  }

  .section_hero .image {
    height: 400px;
  }

  .section_hero_text_area {
    margin-top: 16px;
  }

  .all_project {
    padding: 70px 0px;
  }

  /* ***MAGAZINE*** */
  .magazine {
    padding: 70px 0;
  }

  .magazine_card_container {
    gap: 36px 24px;
  }

  .magazine_card_container .image {
    height: 250px;
  }

  .magazine_card_container .title {
    font-size: 28px;
    padding: 28px 0px;
    padding-right: 16px;
  }

  .article .section_hero_text_area {
    margin-bottom: 70px;
  }

  .contact_us_text .title {
    font-size: 48px;
  }
}

@media screen and (max-width: 640px) {
  .container {
    padding: 0 24px;
  }

  .button {
    font-size: 16px;
    height: 36px;
  }

  .title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .paragraph {
    font-size: 16px;
  }

  .hero {
    height: 40vh;
  }

  .header_area nav {
    padding: 10px 16px;
  }

  #mobile-menu {
    gap: 24px;
  }

  .slider_container .content .text {
    padding-right: 16px;
  }

  .slider_container .content .text h1 {
    font-size: 28px;
  }

  .slider_container .content .text a {
    margin-top: 20px;
  }
  .page-header {
    height: 80px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .why_choose_us .header_section {
    margin-bottom: 8px;
  }

  .why_choose_us .left_side li {
    gap: 16px;
    padding: 8px;
  }

  .why_choose_us .left_side img {
    width: 40px;
    height: 42px;
  }
  .why_choose_us .right_side img {max-height: 270px;}

  .why_choose_us .left_side h4 {
    font-size: 18px;
    margin-bottom: 4px;
  }
	.why_choose_us .content {gap: 8px}
  .why_choose_us .left_side p {
    font-size: 14px;
  }

  .why_choose_us .right_side {
    height: 350px;
    align-items: center;
  }

  .why_choose_us .right_side .img-div {
    height: 100%;
  }

  .services {
    padding: 32px 0px;
  }

  .services .container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .service-card {
    height: 400px;
  }

  .project-section .icon-wrapper {
    height: 60px;
    width: 80px;
  }

  .project-section .project-grid {
    grid-template-columns: 1fr;
  }

  .project-item,
  .project-item.col-span-2,
  .project-item.col-span-4 {
    grid-column: span 1;
    height: 300px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-item {
    padding: 24px;
    height: 120px;
  }

  .clients-grid .client-item:nth-child(3n) .border-right {
    display: block;
  }
  .clients-grid .client-item:nth-child(2n) .border-right {
    display: none;
  }

  .clients-grid .client-item .border-bottom {
    display: block !important;
  }

  .clients-grid .client-item:nth-last-child(-n + 3) .border-bottom {
    display: block !important;
  }

  .clients-grid .client-item:last-child .border-bottom {
    display: none !important;
  }

  .contact-section {
    padding: 32px 0;
  }

  .contact-banner {
    margin: 0 20px;
  }

  .contact-overlay {
    padding: 48px 20px;
  }

  .contact-title {
    font-size: 32px;
    line-height: 40px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links-group {
    flex-direction: column;
    gap: 10px;
  }

  .main-footer {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 99;
  }

  .branding-text {
    text-align: center;
  }

  /* ***ABOUT*** */
  .about_hero {
    padding: 32px 0px;
  }

  .about_hero_text_content .part_1 {
    margin: 16px 0px;
  }

  .about_hero .about_hero_img {
    height: 350px;
  }

  .about_hero_text_content .why_choose_us .left_side ul {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section_hero {
    gap: 20px;
    margin-top: 50px;
  }

  .section_hero .image {
    height: 350px;
  }

  .all_project {
    padding: 50px 0px;
  }

  /* ***MAGAZINE*** */
  .magazine {
    padding: 32px 0;
  }

  .magazine_card_container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article .section_hero_text_area {
    margin-bottom: 32px;
  }

  .contact_us_image {
    width: 90%;
  }

  .contact_us_text .title {
    font-size: 36px;
  }

  .contact_us_text .whatsapp h4 {
    font-size: 24px;
  }
}

/**** Entry content ****/
.entry-content img {
  max-width: 100%;
  height: auto;
}
.aligncenter, img.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 20px;
  width: auto;
}
.alignright {
  margin: 10px 0px 35px 30px;
  display: inline;
}
.alignleft {
  margin: 0 35px 10px 0px;
  display: inline;
  width: auto;
}
.alignright { float: right; width: auto; }
.alignleft { float: left; }
.wp-caption {
  border: none;
  text-align: center;
  background: #f5f5f5;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 5px 0 10px 0;
}
.wp-caption img {
  margin: 0;
  padding: 0;
  border: 0;
  margin-bottom: 12px;
}
.wp-caption p.wp-caption-text {
  line-height: 18px;
  padding: 0 15px;
  display: block;
  font-style: italic;
  color: #000000;
  font-size: 12px;
}
input, textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input[placeholder], 
[placeholder], 
*[placeholder] {color: inherit}
*::-webkit-input-placeholder { color:inherit}
*:-moz-placeholder {
    color:inherit ;
    opacity:  1;
}
*::-moz-placeholder {
    color:inherit ;
    opacity:  1;
}
*:-ms-input-placeholder {color:inherit}
/*----------------------*/
/*     Page structure   */
/*----------------------*/
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color:rgba(77, 94, 106, 1);
  font-weight:600;
  padding-bottom:20px;
}
.entry-content h1 {
  font-size:52px;
}
.entry-content h2 {
  font-size:42px;
  line-height: 46px;
}
.entry-content h3 {
  font-size:32px;
}
.entry-content h4 {
  font-size:24px;
}
.entry-content h5 {
  font-size:20px;
}
.entry-content h6 {
  font-size:16px;
}
.entry-content p {
  color:#000;
  font-size:17px;
  line-height:24px;
}
.entry-content ul {
  padding:0 0 20px 0;
}
.entry-content ul li {
  color:#000;
  font-size:15px;
  line-height:24px;
  padding-bottom:8px;
  position: relative;
  padding-left:20px;
  text-decoration:none;
}
.entry-content ul li::before {
  content:'';
  width:7px;
  height:7px;
  background:#ce2831;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position:absolute;
  left:0;
  top:10px;
  z-index:1;
} 
.entry-content ol {
  list-style-type:decimal;
  padding:0 0 20px 20px;
}
.entry-content ol li {
  list-style-type:decimal;
  color:#231f20;
  font-size:17px;
  line-height:24px;
} 
.entry-content a {
  color:#000;
}
.entry-content blockquote {
  color:#000;
  font-size:18px;
  line-height:24px;
  font-weight:600;
} 
.entry-content blockquote p {
  padding-bottom:0;
}
.entry-content table {
    border-collapse: collapse;
  width:100%;
  margin-bottom:25px;
}
.entry-content table, 
.entry-content table th, 
.entry-content table td {
    border: 1px solid #666666;
  color:#231f20;
  font-size:15px;
  line-height:24px;
  text-align:center;
  padding:5px 0;
}
hr {
  border:none;
  background:#dedede;
  height:2px;
  padding:0;
  margin:17px 0 24px 0;
  outline:none;
}
.entry-content input[type='email'],
.entry-content input[type='text'] {
  width:100%;
  max-width:800px;
  background:#fff;
  height:48px;
  font-size:15px;
  color:#231f20;
  line-height:21px;
  border:1px solid #4e4e4e;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius:  5px;
  padding:5px 5px 5px 15px;
  outline:none;
  font-weight:400;
  margin-top:7px;
}
.entry-content textarea {
  width:100%;
  background:#fff;
  max-width:800px;
  height:180px;
  font-size:15px;
  color:#231f20;
  line-height:24px;
  border:1px solid #666666;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius:  5px;
  padding:5px 5px 5px 15px;
  outline:none;
  font-family: "Open Sans Hebrew", sans-serif;
  font-weight:400;
}
.entry-content input[type='submit'] {
  width:180px;
  height:50px;
  outline:none;
  border:none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius:  5px;
  padding:0;
  background:#0a4e5c;
  color:#fff;
  text-align:center; 
  cursor:pointer;
  font-size:16px;
  text-transform:uppercase;
  font-family: "Open Sans Hebrew", sans-serif;
}
.entry-content .submit {
  width:180px;
  padding:15px 0 0 0;
}

.single.entry-content p {padding-bottom: 15px}