@font-face {
  font-family: tenor;
  src: url(./fonts/ElMessiri-Regular.ttf);
}
@font-face {
  font-family: josefin;
  font-weight: bold;
  src: url(./fonts/PlayfairDisplay-Black.ttf);
}
@font-face {
  font-family: heebo;
  src: url(./fonts/Heebo-ExtraLight.ttf);
}
@font-face {
  font-family: heebo-reg;
  src: url(./fonts/Heebo-Regular.ttf);
}
@font-face {
  font-family: heebo-bold;
  src: url(./fonts/Heebo-Bold.ttf);
}
:root {
  --red: #151515;
}
*, *::after, *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
}
body{
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px; 
  background: #fafafa;
}
.font-heebo {
  font-family: 'heebo', sans-serif;
}
.font-heebo-reg {
  font-family: 'heebo-reg', sans-serif;
}
.font-heebo-bold {
  font-family: 'heebo-bold';
}
.font-tenor{
  font-family: 'tenor';
}
.font-josefin{
  font-family: 'josefin';
}
/*-------------------*/
/* Hero Section */
/*-------------------*/
.hero{
  width: 100%;
  min-height: 1200px;
  position: relative;
  overflow: hidden;
  /* background-image: url('./images/heroBG2.jpg');
  background-size: cover;
  background-position: top, center;
  background-repeat: no-repeat; */
  z-index: 0;
}
.hero::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.1);
  z-index: -1;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  position: absolute;
}
.photographer {
  position: absolute;
  bottom: 20%;
  right: 5%;
  line-height: 1.2em;
  font-size: 14px;
  font-family: 'tenor';
}
.photographer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
header{
  width: 100%;
  height: 200px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.header-container{
  width: 90%;
  height: 100%;
  max-width: 1500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}
.logo-container{
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-container img{
  width: 100%;
  height: 100%;
}
.top-nav{
  width: 450px;
  height: 100%;
  position: relative;
}
.top-nav ul{
  font-size: 24px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
}
.top-nav ul {
  justify-content: space-between;
}
.top-nav ul li a{
  color: #fff;
  text-decoration: none;
  transition: text-decoration 0.3s;
  position: relative;
}
.top-nav ul li a::after{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.top-nav ul li a:hover::after{
  transform: scaleX(1);
}
.lang-div {
  color: #fff;
  position: absolute;
  top: 2em;
  right: 0;
  font-family: 'tenor';
  opacity: 0.8;
}
.lang-div a {
  color: #fff;
  text-decoration: none;
}
.lang-div a:visited {
  color: #fff;
}
.eng, .heb {
  margin-right: 0.5em;
}
.heb {
  position: relative;
}
.heb::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
.hero-outer-div{
  width: 90%;
  height: 450px;
  max-width: 1500px;
  margin: 0 auto;
  margin-top: 3em;
}
.hero-container{
  width: 700px;
  height: 100%;
  display: flex;
  max-width: 1500px;
  flex-direction: column;
  justify-content: space-between;
  gap: 2em;
}
.text-logo-container{
  width: 60%;
  height: auto;
}
.text-logo-container img{
  width: 100%;
  height: 100%;
  max-width: 400px;
}
.h2-container{
  width: 100%;
  opacity: 0;
  height: auto;
  transform: translateX(20%);
  padding-bottom: 0.5em;
  animation: slide-in-right 1s ease-out forwards 1s;
}
@keyframes slide-in-right {
  
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.h2-container h2{
  font-size: 45px;
  color: #fff;
  line-height: 1.2em;
  letter-spacing: 1px;
}
.hero-btn-container {
  width: 80%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
 .btn {
  width: 180px;
  height: 60px;
  border-radius: 500px;
  border: none;
  background-color: #fff;
  color: #000;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  padding-top: 2px;
}
.btn::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 70px;
  border: 2px solid rgba(255, 255, 255, 1);
  top: -5px;
  left: -5px;
  border-radius: 500px;
  /* border-color: #EFCB4A; */
  /* border-color: var(--red); */
}
 .btn:hover {
  /* background-color: #EFCB4A; */
  background-color: var(--red);
  color: #fff;
}
/*-------------------*/
/* Section About */
/*-------------------*/
.sec-about{
  width: 100%;
  height: auto;
  min-height: 250px;
  background-color: #010101;
  color: #fff;
  padding-right: 0.5em;
}
.about-container{
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  max-width: 1700px;
  padding-bottom: 1em;
}
.about-text-container{
  width: 40%;
  height: auto;
  max-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
  line-height: 1.5em;
  position: relative;
}
.h2-about{
  font-size: 150px;
  color: #ffffff;
  line-height: 1.4em;
  letter-spacing: 0px;
  position: absolute;
  opacity: 0;
  top: -165px;
  transition: opacity 0.7s ease-in-out;
}
.h2-about.observed{
  /* transform: translateY(-202px); */
  opacity: 1;
}
.about-text-container p {
  width: 25ch;
  font-size: clamp(1em,2vw,2em);
  color: #fff;
  line-height: 1.8em;
  margin-top: 1.2em;
  text-align: center;
  font-family: 'heebo';
  z-index: 1;
}
.about-text-container .btn {
  font-family: 'tenor';
}
.about-img-container {
  width: 40vw;
  height: 40vw;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-top: -200px;
  z-index: 1;
  max-width: 750px;
  max-height: 750px;
  /* border: 7px solid #efcb4a74; */
  border: 7px solid #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;

}
.about-img-container picture {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img-container img{
  width: 95%;
  height: 95%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
}

/*-------------------*/
/* Expanding Cards */
/*-------------------*/
.sec {
  background-color: #333;
  width: 100%;
  min-height: 1000px;
  display: flex;
  justify-content: center;
  position: relative;
  background-image: url('./images/sec2BG.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.h2-services {
  font-size: 150px;
  color: rgb(250, 250, 250);
  line-height: 1.4em;
  letter-spacing: 0px;
  position: absolute;
  top: 0.4em;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}
.h2-services.observed {
  opacity: 1;
}
.cards-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10em;
  padding-left: 2em;
  padding-right: 2em;
}
.card-container {
  width: 300px;
  height: 300px;
  border: 2px solid rgba(204, 204, 204, 0.892);
  border-radius: 10px;
  text-align: center;
  transition: height 0.5s, border-color 0.5s;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  
}
.card-wrapper {
  width: 300px;
  height: 600px;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  position: relative;
}
.card {
  background-color: rgba(255, 255, 255, 0.482);
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  margin: 0 auto;
  max-width: 250px;
  padding: 20px;
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1.5em;
  cursor: pointer;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  
}
.card:hover {
  background-blend-mode:overlay;
}
.card.expand {
  background-blend-mode:overlay;
}
.card-container.expand {
  height: 600px;
  /* border-color:  #efcb4aa1; */
  border-color: var(--red);
}
.card1 {
  background-image: url("./images/YardenOded.jpg");
}
.card2 {
  background-image: url("./images/card2BG.jpg");
}
.card3 {
  background-image: url("./images/card3BG.jpg");
}

.arrow {
  width: 35px;
  height: 35px;
  pointer-events: none;
  transform: rotate(90deg);
  transition: transform 0.5s, fillter 0.5s;
  
}
.arrow.rotate {
  transform: rotate(270deg);
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card-text {
  line-height: 1.8em;
  width: 83%;
  height: 240px;
  font-size: 18px;
  margin: 0 auto;
  display: grid;
  /* place-items: center; */
  text-align: center;
  color: #fff;
  margin-top: 1.2em;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 22px 10px rgba(0, 0, 0, 0.708);
  border-radius: 5px;
  font-family: 'tenor';
}
.under {
  min-width: 230px;
  min-height: 100px;
  color: #fff;
  position: absolute;
  top: 20.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 16px;
  transition: transform 0.5s, color 0.5s;
  cursor: pointer;
  text-align: center;
  letter-spacing: 1px;
}
.under h2 {
  pointer-events: none;
}

.under.slide {
  transform: translateY(-200px);
  color: rgb(28, 28, 28);
 
}
/*-------------------*/
/* Section Testimonials */
/*-------------------*/
.sec-testimonial {
  width: 100%;
  min-height: 950px;
  background-color: #f5f5f5;
  color: #fff;
  position: relative;
}
.test-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1em;
  padding-top: 3em;
  padding-bottom: 3em;
}
.h2-test {
  font-size: 100px;
  /* white-space: nowrap; */
  color: rgb(23, 23, 23);
  text-align: center;
  line-height: 1.1em;
  letter-spacing: 0px;
  margin-bottom: 0.3em;
}
.arrow-img-container {
  width: 60%;
  max-width: 800px;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.arrow-img-container > img {
  width: 40px;
}
.arrow-right {
  cursor: pointer;
}
.arrow-left {
  cursor: pointer;
  transform: rotate(180deg);
}
.test-img-container {
  border-radius: 50%;
  width: 170px;
  height: 170px;
  border: 1px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  /* overflow: hidden; */
  position: relative;
}
.test-img-container::after {
  content: "";
  display: block;
  width: 0;
  height: 25px;
  border-right: black solid 1px;
  position: absolute;
  top: 169px;
 
}
.test-img-container img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(100%);
  transition: opacity 0.2s;
}
.test-img-container img.fade-out {
  /* animation: fadeIn 1s; */
  opacity: 0;
}
.test-img-container img.fade-in {
  /* animation: fadeIn 1s; */
  opacity: 1;
}
.test-text {
  color: #333;
  width: 70%;
  max-width: 850px;
  /* height: auto; */
  text-align: center;
  font-size: 22px;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 3em;
  position: relative;
  transition: opacity 0.2s;
}
.test-text.fade-out {
  /* animation: fadeOut 1s forwards; */
  opacity: 0;
}
.test-text.fade-in {
  /* animation: fadeIn 1s forwards; */
  opacity: 1;
}
.test-name-date-div {
  width: 40%;
  position: relative;
}
.test-name {
  width: 100%;
  color: #333;
  font-size: 22px;
  font-size: 1.35em;
  text-align: center;
  transition: opacity 0.3s;
  position: relative;
}
.test-name-date-div::before {
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  background-color: #333;
  position: absolute;
  bottom: 5em;
  left: 50%;
  transform: translateX(-50%);
}
.test-name-date-div::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 600px;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: 5em;
  left: 50%;
  transform: translateX(-50%);
}
.test-name.fade-out {
  /* animation: fadeOut 1s forwards; */
  opacity: 0;
}
.test-name.fade-in {
  /* animation: fadeIn 1s forwards; */
  opacity: 1;
}
.test-date {
  color: rgb(120, 120, 120);
  font-size: 15px;
  text-align: center;
  margin-top: 0.5em;
  transition: opacity 0.3s;
}
.test-date.fade-out {
  /* animation: fadeOut 1s forwards; */
  opacity: 0;
}
.test-date.fade-in {
  /* animation: fadeIn 1s forwards; */
  opacity: 1;
}
/* testimonial read more light box */
.test-read-more-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(11, 11, 11, 0.8);
  /* display: none; */
  opacity: 0;
  transition: none;
  pointer-events: none;
}
.test-read-more-container.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333;
  font-family: 'heebo';
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.5s;
}
.read-more-head {
  width: 100%;
  height: 180px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.read-more-head-inner-div {
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.read-more-head-inner-div .read-more-name {
  color: #fff;
  font-size: 1.75em;
  font-family: 'heebo';
  text-align: center;
  position: absolute;
  top: 20%;
  left: 25%;
}
.read-more-head-inner-div .test-img-container {
  width: 130px;
  height: 130px;
  border-color: white;
}
.read-more-head-inner-div .test-img-container::after {
  border-bottom: 1px solid white;
  width: 60vw;
  max-width: 720px;
  height: 3px;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
}
.read-more-head-inner-div .test-date {
  color: white;
  font-size: 1.2em;
  margin-top: 2.5em;
  margin-right: 5vw;
}
.read-more-inner-div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(247, 247, 247);
  padding-bottom: 3em;
}
.close-x {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 35px;
  right: 35px;
  background-color: white;
}
.read-more-text {
  width: 80%;
  max-width: 1100px;
  height: auto;
  text-align: center;
  font-size: 20px;
  margin-top: 2em;
  margin-bottom: 1em;
  position: relative;
  
}
.read-more-inner-div button {
  color: #fff;
  background-color: rgb(31, 31, 31);
  transform: scale(0.9);
  transition: background-color 0.3s;
}

.read-more-link {
  font-size: 0.7em;
  color: rgba(51, 51, 51, 0.803);
  text-decoration: none;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
  
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*-------------------*/
/* Section Gallery */
/*-------------------*/
.sec-gal{
  width: 100%;
  height: 800px;
  background-color: #fafafa;
  color: #fff;
  /* background-image: url("./images/sec-gal-bg.jpg");
  background-size: cover;
  background-position:left, center;
  background-repeat: no-repeat; */
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
}
.sec-gal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 0;
}
.gal-bg-img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: 10% 50%;
  z-index: 0;
  position: absolute;
}
.sec-gal-container {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  margin-bottom: 7em;
  margin-right: 7%;
}
.sec-gal-container .text-btn-container {
  text-align: center;
}
.sec-gal-container p {
  width: 520px;
  font-size: 40px;
  line-height: 1.4em;
  margin-bottom: 1em;
  text-align: center;
  font-family: 'josefin';
  opacity: 0;
  transform: translateX(-20%);
  transition: opacity 1s, transform 1s;
}
.sec-gal-container.observed p {
  opacity: 1;
  transform: translateX(0);
}
/*-------------------*/
/* Let's Talk Section */
/*-------------------*/
.lets-talk-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  gap: 2.5em;
  padding-top: 5em;
  padding-bottom: 4em;
  z-index: 1;
}

.lets-talk-container h2 {
  width: 100%;
  font-size: 45px;
  text-align: center;
  letter-spacing: 0px;
  font-family: 'josefin';
  position: relative;
}
.lets-talk-container h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 38%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.585);
  z-index: 0;
}
.lets-talk-container h2::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 38%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.585);
  z-index: 0;
}
.lets-talk-container button {
  color: #fff;
  background-color: rgb(31, 31, 31);
  /* transform: scale(0.9); */
  transition: color 0.5s, background-color 0.5s;
}
.lets-talk-container button:hover {
  color: rgb(0, 0, 0);
  background-color: #fff;
}
.lets-talk-container button::after {
  border-color: rgb(31, 31, 31);
}
/*-------------------*/
/* Instagram Section */
/*-------------------*/
.instagram-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-block: 2em;
  position: relative;
}
.instagram-div h2 {
  width: 100%;
  font-size: 45px;
  text-align: center;
  letter-spacing: 0px;
  font-family: 'josefin';
  position: relative;
  margin-bottom: 0.6em;
}
.instagram-div h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 33%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.585);
  z-index: 0;
}
.instagram-div h2::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 33%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.585);
  z-index: 0;
}
.instagram-div img {
  width: 400px;
  transition: transform 250ms; 
}
.instagram-div img:hover {
  transform: scale(1.03);
}
/*-------------------*/
/* Footer */
/*-------------------*/
footer {
  width: 100%;
  height: 200px;
  background-color: #fafafa;
  color: #333;
  padding: 3em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 14px;
  gap: 1em;
}
.footer-container {
  width: 90%;
  height: auto;
  display: flex;
  max-width: 1500px;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1em;
  position: relative;
 
}
.social-container {
  width: 30%;
  max-width: 280px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.social-container img {
  width: 35px;
  height: 35px;
  margin-bottom: 5px;
}
.logo-footer-div {
  width: 110px;
}
.logo-footer-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.logo-footer-small {
  width: 40px;
  height: 40px;
  display: none;
  
}
.bottom-nav {
  width: 40%;
  height: auto;
  display: flex;
  align-items: center;
  padding-top: 1.2em;
  
}
.bottom-nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
  
  
}
.bottom-nav ul a {
  color: #333;
  font-size: 18px;
  text-decoration: none;

}
.to-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6em;
  min-width: 75px;
  font-family: tenor;
}
.to-top img {
  width: 25px;
  height: 25px;
  transform: rotate(-90deg);
}
.to-top-link {
  text-decoration: none;
  color: #333;
}
.site-credit {
  width: 90%;
  max-width: 1500px;
  height: auto;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 14px;
  font-family: 'tenor';
  color: rgba(51, 51, 51, 0.5);
  padding-top: 2em;
}
.site-credit a {
  color: rgba(51, 51, 51, 0.5);
  text-decoration: none;
}

/*-------------------*/
/* Media Query */
/*-------------------*/
@media screen and (max-width: 1000px) {
  .hero {
    height: 100vh;
    min-height: 1200px;
  }
  .about-text-container {
    gap: 2em;
  }
  .about-text-container p {
    text-align: center;
  }
  .h2-about {
    font-size: 100px;
    top: -109px;
  }
  .about-img-container {
    margin-top: -100px;
  }
  .sec-about .btn {
    width: 110px;
    height: 40px;
    font-size: 15px;
  }
  .sec-about .btn::after {
    width: 120px;
    height: 50px;
    border-width: 2px;
  }
  .sec {
    height: 2070px;
  }
  .cards-container {
   flex-direction: column;
   height: 1900px;
   padding-bottom: 2em;
   margin-top: 15em;
  }
  .h2-services{
    top: 1em;
    font-size: 100px;
  }
  .lets-talk-container h2::before {
    width: 30%;
  }
  .lets-talk-container h2::after {
    width: 30%;
  }
  .instagram-div h2::before {
    width: 20%;
  }
  .instagram-div h2::after {
    width: 20%;
  }
  /* Footer */
  .social-container img {
    width: 25px;
    height: 25px;
    margin-top: 7px;
  }
  .logo-footer-div {
    width: 100px;
   
  }
  .logo-footer-div img {
    width: 100%;
    height: 100%;
    margin-top: 0;
  }
}
@media screen and (max-width: 700px) {
  .btn {
    width: 110px;
    height: 40px;
    font-size: 15px;
    
  }
  .btn::after {
    width: 120px;
    height: 50px;
    border-width: 2px;
  }
  header {
    height: 120px;
  }
  .logo-container {
    width: 70px;
    height: 70px;
  }
  .logo-container img {
    width: 70px;
    height: 70px;
  }
  .hero {
    min-height: 650px;
  }
  .header-container {
    width: 95%;
  }
  .top-nav {
    width: 70%;
  }
  .top-nav ul a {
    font-size: 18px;
  }
  .lang-div {
    top: 1em;
    font-size: 0.9em;
  }
  .hero-container {
    margin-left: 0;
    width: 100%;
    margin-top: 0;
    height: auto;
    gap: 1.5em;
  }
  .h2-container h2{
    font-size: 6vw;
  }
  .h2-about {
    font-size: 80px;
    top: -87px;
  }
  .about-img-container {
    border-width: 3px;
  }
  .about-text-container  {
    gap:1em;
  }
  .h2-services {
    font-size: 80px;
    top: 0.7em;
  }
  .cards-container {
    margin-top: 10em;
  }
  /* Section Testimonial */
  .sec-testimonial {
    min-height: 900px;
  }
  .h2-test {
    font-size: 80px;
  }
  .test-container {
    font-size: 0.5em;
  }
  .test-text {
    font-size: 20px;
    margin-bottom: 2em;
  }
  .test-name-date-div::before {
    bottom: 7em;
  }
  .test-name-date-div::after {
    bottom: 7em;
  }
  .test-name {
    font-size: 2.3em;
  }
  .test-date {
    font-size: 12px;
    margin-top: 0;
  }
  .test-read-more-container p {
    font-size: 16px;
    column-count: auto;
    text-align: center;
  }
  .read-more-head-inner-div .test-date {
    font-size: 14px;
  }
  .read-more-head-inner-div .test-img-container {
    width: 100px;
    height: 100px;
  }
  .read-more-head-inner-div .read-more-name {
    font-size: 1.5em;
    top: 25%;
    left: 5em;
    
  }
  .close-x {
    width: 20px;
    height: 20px;
    top: 30px;
    right: 30px;
  }
  .site-credit {
    padding-top: 1em;
  }
  /*-------------------*/
  /* Section Gallery < 700px */
  /*-------------------*/
  .sec-gal {
    height: 600px;
  }
  .sec-gal-container {
    align-items: center;
  }
  .sec-gal-container p {
    font-size: 1.6em;
    width: 330px;
  }
  /* Section Let's Talk */
  .lets-talk-container {
    padding-top: 3em;
    padding-bottom: 2em;
    gap: 2em;
  }.lets-talk-container h2 {
    font-size: 30px;
  }
  .lets-talk-container h2::before {
    width: 25%;
  }
  .lets-talk-container h2::after {
    width: 25%;
  }
  .instagram-div h2 {
    font-size: 30px;
  }
  .instagram-div img {
    width: 300px;
    justify-self: center;
    align-self: center;
  }
  /*-------------------*/
  /* Footer  */
  /*-------------------*/
  footer {
    padding: 0em 0;
    justify-content: space-around;
    height: 150px;
    margin-top: 50px;
    margin-bottom: 1em;
  }
  .footer-container {
    gap: 0.5em;
  }
  
  .bottom-nav ul {
    align-items: center;
    flex-direction: column;
   
  }
  .bottom-nav ul a {
    font-size: 14px;
  }
  .social-container{
    width: auto;
    gap: 0.5em;
  }
  
  .to-top {
    font-size: 0.85em;
    min-width: 60px;
    margin-bottom: 2px;
  }
}
@media screen and (max-width: 550px) {
  
  .hero-bg-img {
    object-position: 65% 50%;
  }
  header {
    height: 120px;
  }
  .top-nav {
    margin-right: 0.5em;
  }
  .top-nav ul a {
    font-size: 16px;
  }
  .logo-container img {
    width: 50px;
    height: 50px;
  }
  /* .lang-div {
    font-size: 0.8em;
  } */
  .hero-container {
    align-items: center;
  }
  .text-logo-container {
    width: 80%;
  }
  .h2-container {
    text-align: center;
  }
  .h2-container h2 {
    font-size: 22px;
    white-space: nowrap;
  }
  .hero-btn-container {
    justify-content: center;
  }
  .h2-container {
    width: 100%;
  }
  /* Section About */
  .about-container {
    flex-direction: column;
    align-items: center;
    
  }.sec-about {
    padding: 0;
  }
  .about-img-container {
    width: 60vw;
    height: 60vw;
  }
  .h2-about {
    font-size: 70px;
    position: relative;
    top:0;
  }
  .about-text-container {
    width: 100%;
    z-index: 1;

  }
  .about-text-container p {
    font-size: 18px;
    margin-top: -1em;
  }
  /* Section Services */
  /* .sec {
    height: auto;
  } */
  .h2-services {
    font-size: 70px;
  }
  /* Section Testimonials */
  .h2-test {
    font-size: 50px;
    letter-spacing: 2px;
    line-height: 1em;
    margin-top: 0.5em;
  }
  .arrow-img-container {
    width: 80%;
    height: auto;
  }
  .arrow-img-container > img {
    width: 40px;
    height: auto;
  }
  .test-img-container {
    width: 140px;
    height: 140px;
  }
  .test-img-container::after {
    top: 139px;
  }
  .test-text{ 
    width: 80%;
    font-size: 18px;
  }
  .read-more-head {
    height: 130px;
  }
  .read-more-head-inner-div .read-more-name {
    font-size: 1.2em;
    left: 6em;
  }
  .read-more-head-inner-div .test-img-container::after {
    width: 55vw;
  }
  .close-x {
    top: 15px;
    right: 15px;
  }
  /* Section Gallery */
  .sec-gal {
    background-position: 20% center;
    justify-content: center;
  }
  .sec-gal-container {
    margin-right: 0;
  }
  .sec-gal-container p {
    font-size: 22px;
    white-space: nowrap;
    width: 100%;
  }
  /* Footer */
  .footer-container {
    width: 85%;
  }
  .logo-footer {
    display: none;
  }
  .logo-footer-div {
    width: 35px;
    height: 35px;
    margin-bottom: 7px;
  }
  .logo-footer-div .logo-footer-small {
    display: block;
    width: 35px;
    height: 35px;
  }
  .bottom-nav {
    margin-right: 35px;
  }
  .site-credit p {
    width: 12ch;
    font-size: 0.85em;
  }
  .site-credit p:nth-child(2) {
    width: 10ch;
  }

}