*{
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
html, body{
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Times New Roman', Times, serif;
}
header{
  height: 10vh;
  width: 100vw;
  position: static;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
nav{
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  z-index: 1;
}
.nav_logo{
  position: relative;
  left: 10vw;
  top: 3vh;
  transform: translate(-50%);
  height: 40%;
  width: 10%;
}
.nav_logo img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
header h3{
  width: 50%;
  position: relative;
  left: 40%;
  top: 50%;
  transform: translate(-50%,-50%);
}
header p{
  font-size: 1rem;
}
.menu_toggle{
  display: block;
  cursor: pointer;
  font-size: 1rem;
  padding: 10px;
  width: 5%;
  text-align: right;
  position: relative;
  top: 3vh;
  left: 25vw;
}
.nav_links{
  display: none;
  position: relative;
  top: 5vh;
}
.nav_links.active{
  display: block;  
}
.nav_links ul{
  background-color: rgb(255, 255, 255);
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100vw;
  justify-content: center;
}
.nav_links ul li{
  list-style: none;
  margin: 3px;
  text-align: center;
  color: red;
}
.nav_links ul li a{
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  display: block;
  padding: 0 10px;
  width: 100%;
}
.nav_links ul li a:hover{
  background-color: #555;
  color: white;
}
.home_image{
  width: 90vw;
  height: 40vh;
  position: relative;
  top: 5vh;
  left: 5vw;
}
.home_image img{
  width: 100%;
  height: 100%;
  border-radius: 10%;
}
.home_image div{
  position: absolute;
  opacity: 0;
  animation: fade 20s infinite;
  border-radius: 10px;
}
 .home_image div:nth-child(1) {
      animation-delay: 0s;
    }
  .home_image div:nth-child(2) {
      animation-delay: 4s;
    }
  .home_image div:nth-child(3) {
      animation-delay: 7s;
    }
  .home_image div:nth-child(4) {
      animation-delay: 10s;
    }
  @keyframes fade {
      0% { opacity: 0; }
      8.33% { opacity: 1; }
      33.33% { opacity: 1; }
      41.66% { opacity: 0; }
      100% { opacity: 0; }
    }
.home_p{
  box-shadow: 0px 50px 50px rgba(0, 0, 0, 0.5);
  width: 70vw;
  height: 20vh;
  position: relative;
  left: 50vw;
  top: 0vh;
  transform: translate(-50%);
}

.home_p p{
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 3rem;
  margin-top: 1rem;
}
.home_p button{
  z-index: 10000;
  background-color: rgb(255, 255, 255);
  color: black;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  top: 30%;
  left: 50%;
  transform: translate(-50%,-50%);
  border: 2px solid black;
  padding: 10px;
  transform: translate(-50%, -50%) scale(1); 
  transition: transform 0.5s, background-color 0.5s, color 0.5s, box-shadow 0.5s;
}
.home_p button:hover{
  transform: translate(-50%,-50%) scale(1.2);
  transition: 0.5s;
  background-color: black;
  color: white;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0px 50px 50px rgba(0, 0, 0, 0.5);
}
#about{
  position: relative;
  top: 10vh;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
#about h1{
  width: 100vw; 
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3498db;
  display: inline-block;
}
.founderImage{
width: 12vw;
height: 7vh;
position: relative;
top: 1vh;
left: 1vw;
}
.founderImage img{
  height: 100%;
  width: 100%;
  border-radius: 20%;
}
.about_p{
  position: relative;
  top: 1vh;
  left: 4vw;
  width: 80vw;
  margin: 0 auto;
}
.about_p p{
  font-size: .8rem;
}
.card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}      
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}     
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
}
.mission::before {
  background: #3498db;
}
.vision::before {
  background: #9b59b6;
}
.focus::before {
  background: #2ecc71;
}
h2 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
h2 i {
  margin-right: 10px;
  font-size: 1rem;
}
p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}
ol {
  padding-left: 20px;
}
li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #555;
  padding-left: 5px;
}
li strong {
  color: #2c3e50;
}
.icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.mission .icon-wrapper {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.vision .icon-wrapper {
  background: rgba(155, 89, 182, 0.1);
  color: #9b59b6;
}
.focus .icon-wrapper {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
}
#services{
  position: relative;
  top: 15vh;
}
#services h1{
  width: 100vw; 
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3498db;
  display: inline-block;
  text-align: center;
}
.work1, .work2 {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.work1:hover, .work2:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.work1 img, .work2 img {
  width: 90%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.work-content {
  padding: 25px;
}

.work-content h2 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.work-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  padding: 12px 25px;
  background: #3498db;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}

.read-more:hover {
  background: #2980b9;
  transform: scale(1.2) translate(-50%);
}

.work-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  color: #7f8c8d;
  font-size: 0.9rem;
}

.date, .location {
  display: flex;
  align-items: center;
  gap: 5px;
}

.date i, .location i {
  color: #3498db;
}
.work1::before, .work2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #2ecc71;
}
.work1, .work2 {
  position: relative;
}
@keyframes fadeInUp {
from {
  opacity: 0;
  transform: translateY(20px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}
.work1 {
  animation: fadeInUp 0.6s ease forwards;
}

.work2 {
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}
.work1 img, .work2 img {
  background: linear-gradient(45deg, #3498db, #2ecc71);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}
#gallery{
  position: relative;
  top: 20vh;
}
#gallery h1{
  width: 100vw; 
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3498db;
  display: inline-block;
  text-align: center;
}
.gallery img.prev {
  transform: translateX(-100%) scale(0.8);
  opacity: 0.7;
  z-index: 1;
}
.gallery img.next {
  transform: translateX(100%) scale(0.8);
  opacity: 0.7;
  z-index: 1;
}
.gallery img.current {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.nav-button {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #3498db;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-button:hover {
  background: white;
  transform: translateY(-50%) scale(1.05);
}
#prevBtn {
  left: 15px;
}
#nextBtn {
  right: 15px;
}
.description {
  padding: 20px;
  background: white;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: pre-line;
  text-align: center;
  color: #555;
  position: relative;
  top: 30vh;
}
.gallery-indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative; 
  top: 33vh;
  z-index: 2;
}
.indicator.active {
  background: #3498db;
  transform: scale(1.2);
}
.gallery-title {
  text-align: center;
  font-size: 1rem;
  color: #2c3e50;
  margin-top: 15px;
  font-weight: 600;
  position: relative;
  top: 33vh;
  z-index: 2;
}
.gallery {
  -webkit-overflow-scrolling: touch;
  height: 1vh;
  width: 100vw;
}
.gallery img{
  position:absolute;
  width: 100%;
  height: 100%;
  border-radius: 5%;
  transition: transform 0.8s ease, opacity 12s ease;
}
.nav-button {
  touch-action: manipulation;
}
@keyframes fadeIn {
  from { opacity: 0.6; }
  to { opacity: 1; }
}
.gallery img.current {
  animation: fadeIn 3s ease;
}
.contact {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top: 50vh;
  }
  .upper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  .getInTouch, .social {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
.contact h1{
  width: 100vw; 
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
  padding-bottom: 10px;
  display: inline-block;
  position: relative;
  top: 2vh;
}
.social h1 {
color: #2c3e50;
margin-bottom: 20px;
text-align: center;
font-size: 1.8rem;
}
#contact-form {
 display: flex;
 flex-direction: column;
 gap: 15px;
}

#contact-form input, 
#contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#contact-form input:focus, 
#contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}
#contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

#contact-form button {
    background: #3498db;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
#contact-form button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.social {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.social h1 {
    margin-bottom: 25px;
}
.social ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    list-style: none;
}
.social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #3498db;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.social ul li a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.social ul li:nth-child(1) a:hover { background: #000; }
.social ul li:nth-child(2) a:hover { background: #25D366; }
.social ul li:nth-child(3) a:hover { background: #3b5998; }
.social ul li:nth-child(4) a:hover { background: #FF0000; }
.social ul li:nth-child(5) a:hover { background: #E1306C; }

.social video {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
  
.info-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.column {
 background: white;
 border-radius: 15px;
 padding: 25px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.column h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    font-size: 1.4rem;
}
.column ul {
    list-style: none;
}

.column ul li {
    padding: 1px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    transition: all 0.3s ease;
    cursor: pointer;
}
.column ul li:last-child {
    border-bottom: none;
}
.column ul li:hover {
    color: #3498db;
    padding-left: 10px;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
#contact-form input, 
#contact-form textarea,
#contact-form button {
animation: fadeIn 0.5s ease forwards;
}
#contact-form input:nth-child(1) { animation-delay: 0.1s; }
#contact-form input:nth-child(2) { animation-delay: 0.2s; }
#contact-form input:nth-child(3) { animation-delay: 0.3s; }
#contact-form textarea { animation-delay: 0.4s; }
#contact-form button { animation-delay: 0.5s; }

@media (min-width: 760px) and (max-width: 1024px){
.home_p{
  top: 10vh;
}
.home_p p{
  font-size: 1.2rem;
  font-weight: 900;
}
#about{
  top: 30vh;
}
.about_p p{
  font-size: 1.2rem;
}
#services{
  top: 40vh;
}
#gallery{
  top: 50vh;
}
.description{
  top: 40vh;
}
.indicator{
  top: 40vh;
}
.gallery-title{
  top: 40vh;
}
.gallery img{
  top: 10vh;
  width: 80%;
  height: 40vh;
  left: 10vw;
}
.nav-button{
  top: 30vh;
}
#contact{
  top: 100vh;
}
.info-columns{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: start;
  padding: 25px;
}
.column{
  width: 20vw;
}
}
@media (min-width: 1024px) and (max-width: 1440px){
  .nav_logo{
    height: 50%;
    width: 7%;
  }
  .home_content{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
  }
  .home_image{
    width: 50vw;
  }
  .home_p{
    width: 30vw;
    left: 30vw;
    top: 20vh;
  }
  #about{
    top: 30vh;
  }
  .founderImage{
    height: 15vh;
  }
  .about_p p{
    top: 3vh;
    font-size: 1.2rem;
    font-weight: 900;
  }
  .aboutCard{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    position: relative;
    top: 3vh;
  }
  .aboutCard > div{
    width: 40vw;
  }
  #services{
  top: 40vh;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
  #services > div{
    width: 49vw;
  }
   #gallery{
    top: 50vh;
}
.description{
    top: 40vh;
}
.indicator{
    top: 40vh;
}
.gallery-title{
    top: 40vh;
}
.gallery img{
    top: 10vh;
    width: 60%;
    height: 40vh;
    left: 22vw;
}
.nav-button{
    top: 30vh;
}
 #contact{
    top: 100vh;
}
.info-columns{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: start;
    padding: 25px;
}
.column{
    width: 25vw;
}
}
@media (min-width: 1440px) and (max-width: 1620px){
  .nav_logo{
    height: 50%;
    width: 5%;
  }
  .menu_toggle{
    display: none;
  }
  nav h3{
    font-size: 1.4rem;
    width: 30vw;
    left: 30vw;
  }
  .nav_links{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    width: 50vw;
    height: 10vh;
    position: relative;
    top: 0vh;
    left: 13vw;
  }
  .nav_links ul{
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    width: 100%;
    height: 100%;
    align-items: center;
  }
  .nav_links a:hover{
    transform: scale(1.2);
    padding: 5px;
    border-radius: 20%;
    transition: 0.5s;
    background-color: black;
    color: white;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0px 50px 50px rgba(0, 0, 0, 0.5);
  }
  .nav_links ul li{
    width: 10%;
  }
  .home_content{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
  }
  .home_image{
    width: 50vw;
  }
  .home_p{
    width: 30vw;
    left: 30vw;
    top: 20vh;
  }
  #about{
    top: 30vh;
  }
  #about h1{
   text-transform: uppercase;
   font-size: 2.5rem;
   font-weight: 1000;
   text-align: center;
   align-items: center;
  }
  .founderImage{
      height: 20vh;
      width: 18vw;
      left: 2vw;
  }
  .founderImage img{
    border-radius: 25%;
  }
  .about_p{
    width: 70vw;
    border-right: #43b9d6 5px solid;
    border-left: #43b9d6 5px solid;
    padding-left: 20px;
    border-radius: 10px;
    position: relative;
    top: 5vh;
    left: 0vw;
  }
  .about_p p{
    top: 3vh;
    font-size: 1.2rem;
    font-weight: 900;
  }
  .aboutCard{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    position: relative;
    top: 3vh;
    left: 5vw;
  }
  .aboutCard > div{
      width: 25vw;
      margin: 20px;
  }
  #services{
    top: 40vh;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}
#services h1{
  text-transform: uppercase;
   font-size: 2.5rem;
   font-weight: 1000;
   text-align: center;
   align-items: center;
}
  #services > div{
    width: 30vw;
  }
  #services{
    justify-content: center;
    gap: 7vw;
  }
   #gallery{
    top: 50vh;
}
#gallery h1{
  text-transform: uppercase;
   font-size: 2.5rem;
   font-weight: 1000;
   text-align: center;
   align-items: center;
}
.description{
    top: 40vh;
}
.indicator{
    top: 43vh;
}
.gallery-title{
    top: 44vh;
}
.gallery img{
    top: 10vh;
    width: 50%;
    height: 40vh;
    left: 25vw;
}
.nav-button{
    top: 30vh;
}
 #contact{
  top: 100vh;

}
#contact h1{
 text-transform: uppercase;
 font-size: 2.5rem;
 font-weight: 1000;
 text-align: center;
 align-items: center;
 position: relative;
 left: -3vw;
}
.upper{
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  flex-direction: row;
  align-items: center;
}
.getInTouch , .social{
  width: 40%;
  margin-left: 40px;
}
.info-columns{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: start;
    padding: 25px;
}
.column{
    width: 25%;
    margin-left: 1%;
}

}
@media (min-width: 1620px) and (max-width: 1900px){
    .nav_logo{
      height: 50%;
      width: 5%;
  }
  .menu_toggle{
      display: none;
  }
  nav h3{
      font-size: 1.4rem;
      width: 30vw;
      left: 30vw;
  }
  .nav_links{
      display: flex;
      flex-wrap: wrap;
      align-items: start;
      width: 50vw;
      height: 10vh;
      position: relative;
      top: 0vh;
      left: 13vw;
  }
  .nav_links ul{
      flex-direction: row;
      display: flex;
      flex-wrap: wrap;
      align-items: start;
      width: 100%;
      height: 100%;
      align-items: center;
  }
  .nav_links a:hover{
      transform: scale(1.2);
      padding: 5px;
      border-radius: 20%;
      transition: 0.5s;
      background-color: black;
      color: white;
      cursor: pointer;
      border: 2px solid white;
      box-shadow: 0px 50px 50px rgba(0, 0, 0, 0.5);
  }
  .nav_links ul li{
      width: 10%;
  }
  .home_content{
      display: flex;
      flex-wrap: wrap;
      align-items: start;
  }
  .home_image{
      width: 50vw;
  }
  .home_p{
    width: 30vw;
    left: 30vw;
    top: 20vh;
  }
  #about{
      top: 30vh;
  }
  #about h1{
   text-transform: uppercase;
   font-size: 2.5rem;
   font-weight: 1000;
   text-align: center;
   align-items: center;
  }
  .founderImage{
    height: 20vh;
    width: 15vw;
    left: 4vw;
  }
  .founderImage img{
    border-radius: 30%;
  }
  .about_p{
    width: 70vw;
    border-right: #43b9d6 5px solid;
    border-left: #43b9d6 5px solid;
    padding-left: 20px;
    border-radius: 10px;
    position: relative;
    top: 5vh;
    left: 0vw;
  }
  .about_p p{
    top: 3vh;
    font-size: 1.2rem;
    font-weight: 900;
  }
  .aboutCard{
      display: flex;
      flex-wrap: wrap;
      align-items: start;
      position: relative;
      top: 3vh;
      left: 5vw;
  }
  .aboutCard > div{
      width: 25vw;
      margin: 20px;
  }
  #services{
  top: 40vh;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
#services h1{
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 1000;
  text-align: center;
  align-items: center;
}
#services > div{
  width: 30vw;
}
#services{
  justify-content: center;
  gap: 7vw;
}
 #gallery{
  top: 50vh;
}
#gallery h1{
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 1000;
  text-align: center;
  align-items: center;
}
.description{
  top: 40vh;
}
.indicator{
  top: 43vh;
}
.gallery-title{
  top: 44vh;
}
.gallery img{
  top: 10vh;
  width: 50%;
  height: 40vh;
  left: 27vw;
}
.nav-button{
  top: 30vh;
}
 #contact{
  top: 100vh;

}
#contact h1{
 text-transform: uppercase;
 font-size: 2.5rem;
 font-weight: 1000;
 text-align: center;
 align-items: center;
 position: relative;
 left: -3vw;
}
.upper{
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  flex-direction: row;
  align-items: center;
}
.getInTouch , .social{
  width: 40%;
  margin-left: 40px;
}
.info-columns{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: start;
  padding: 25px;
}
.column{
  width: 25%;
  margin-left: 1%;
}
}
