@media screen and (min-width: 1366px) {
  header .nav-bar .logo {
    width: 15%;
  }
  main .landing-page {
    width: 96%;
    margin: 0 auto;
    align-items: start;
    /* margin-top: 10%; */
  }
  main .landing-page .textContainer {
    display: flex;
    justify-content: start;
    align-items: start;
    height: 50vh;
    text-align: start;
    margin-top: 5%;
  }
  main .landing-page .ImgContainer {
    display: flex;
    justify-content: center;
    padding: 10px;
    padding: 10px;
  }
  main .landing-page .ImgContainer img {
    width: 500px;
    height: 500px;
  }
  .hamburger {
    display: none;
  }
  header .nav-bar .nav-links {
    display: flex;
  }

  /* ABOUT CONTAINER */
  #about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    width: 10%;
    margin: 0 auto;
    align-items: center;
  }
  #about .textContainer {
    display: flex;
    justify-content: start;
    align-items: start;
    text-align: start;
  }
  #about .ImgContainer {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    z-index: 0;
    /* background-color: aquamarine; */
  }
  #about .ImgContainer img {
    width: 500px;
    height: 500px;
  }

  /* SERVICE CONTAINER */
  #service .services {
    width: 100%;
    display: grid;
    grid-column-gap: 0%;
    grid-template-columns: repeat(3, 1fr);
  }
  #service .services .service {
    width: 350px;
    min-height: 300px;
  }
  #service .serviceContainer .subHeader {
    margin-top: 4%;
  }
  #service .serviceContainer h2 {
    margin-bottom: 1%;
  }
  /* PROOF */

  #proof .proofContainer .ImgContainer {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 10px;
    width: 38vw;
    height: 80vh;
    object-fit: contain;
    /* background-color: aquamarine; */
  }
  #proof .proofContainer .ImgContainer .img-wrapper {
    width: 400px;
    height: 400px;
  }
  #proof .proofContainer .ImgContainer .img-wrapper::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 10;
  }
  #proof .proofContainer .textContainer {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 60vw;
    text-align: start;
  }

  /* TESTOMONY SECTION */

  #testimony .testimonyContainer .subHeader {
    margin-top: 1%;
  }

  /* CONTACT SECTION */

  #contact .contactContainer .map {
    width: 600px;
    height: 400px;
    margin-top: 5%;
    object-fit: cover;
    position: relative;
  }

  #contact .contactContainer .map iframe {
    width: 600px;
    height: 400px;
  }

  /* FOOTER SECTION */
  #footer .footerContainer .links {
    width: 98%;
    min-height: 30vh;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    place-self: center;
    margin-top: 5%;
  }
  #footer .footerContainer .links .companyInfo .company .info {
    padding-bottom: 2%;
  }
}
