* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: black;
  -webkit-font-smoothing: antialiased;
  font-family: "Montserrat", sans-serif;
}

hr {
  border: 3px solid #3A7CA5;
  width: 50px;
  border-radius: 5px;
  z-index: 2;
}

section {
  /* height: 100vh; */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

.container {
  height: 100vh;
  width: 100%;
  overflow-y: scroll;
  position: relative;
}

.menu {
  z-index: 3;
  width: 100%;
  height: 60px;
  background: white;
  position: fixed;
  top: 0px;
}



@media only screen and (max-width: 800px) {
  
  .menu__links {
    visibility: hidden;
    width: 0px;
  }
  .menu__sm-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 60px;
    width: 100vw;
    padding-right: 50px;
    background: white;
    font-weight: 600;
    z-index: 3;
  }

  .menu__sm-links {
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    list-style: none;
  }

  .menu__sm-link-item {
    display: list-item;
    padding: 10px 0px;
    transition-duration: 0.3s;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 2px;
    font-size: 0.9rem;
    float: right;
  }

  .menu__burger {
    float: right;
  }

  .hamburger {
    display: block;
    font-size: 1.5rem;
  }

  #hamburger {
    display: none;
  }

  #hamlinks {
    display: none;
  }
  #hamnav input:checked ~ #hamlinks {
    display: flex;
  }
}

.menu__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  z-index: 3;
  width: 100vw;
  height: 60px;
  background: white;
  position: fixed;
  top: 0px;
  font-weight: 600;
}

.menu__lg-content {
  padding-right: 50px;
}

@media only screen and (min-width: 801px) {
  .menu__links {
    display: flex;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    list-style: none;
  }

  .menu__link-item {
    display: list-item;
    padding: 10px 20px;
    transition-duration: 0.3s;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 2px;
    font-size: 0.9rem;
  }

  .menu__link-item:hover {
    background: #3A7CA5;
    color: white;
  }
  .hamburger {
    display: none;
  }
  #hamburger {
    display: none;
  }
  .menu__sm-content {
    display: none;
  }
}

.logo{
  position: absolute;
  top: 20px;
  left: 15vw;
  width: 80px;
  z-index: 4;
}

.page1 {
  display: flex;
  height: 100vh;
  width: 100%;
  position: relative;
}

@media only screen and (max-width: 800px) {  
  .page1__image {
    display: flex;
    background-image: url("./images/art3.jpg");
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    background-size: 130% auto;
    background-position: 0% 0%;
    opacity: 0.4;
    z-index: 1;
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
  }

  .page1__text-body {
    font-size: calc(16px + 0.5vw);
    font-weight: 400;
    color: rgb(0, 0, 0);
    width: 70vw;
    margin-bottom: 1.5rem
  }

  .services__image {
    display: flex;
    background-image: url("./images/services-bkgd-mobile.jpg");
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    background-size: 125% auto;
    background-position: center top;
    opacity: 0.3;
    z-index: 1;
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
  }

  .about__image {
    display: flex;
    background-image: url("./images/large-white-picture.jpg");    
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 160% auto;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
  }
  
  .page-bodytext__container{
    overflow: hidden;
    background-size: auto 110%;
    background-repeat: no-repeat;
    background-position: center;
    align-items: center;
    margin-top: 20px;
    padding: 10px 35px 10px 35px;
    font-weight: 600;
    z-index: 2;
  }
  
}

@media only screen and (min-width: 801px) {


  .page1__image {
    display: flex;
    background-image: url("images/art-gallery.jpg");
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    background-size: 180% auto;
    background-size: cover;
    background-position: 0% 75%;
    opacity: 0.2;
    z-index: 1;
    position: relative;
    top: 0px;
    height: 100%;
    width: 100%;
    min-height: 100%;
  }

  .services__image {
    display: flex;
    background-image: url("./images/room-with-white-paintings.jpg");
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 130% auto;
    background-size: cover;
    background-position: 0% 0%;
    opacity: 0.4;
    z-index: 1;
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
  }

  .about__image {
    display: flex;
    background-image: url("./images/art2.jpg");    
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    opacity: 0.2;
    z-index: 1;
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
  }

  .page1__text-body {
    font-size: calc(16px + 0.5vw);
    font-weight: 400;
    margin-left: 5px;
    color: rgb(0, 0, 0);
    width: 45vw;
    margin-bottom: 1.5rem
  }

  .page-bodytext__container{
    background-size: cover;
    align-items: center;
    overflow: hidden;
    background-size: auto 110%;
    background-repeat: no-repeat;
    background-position: center;
    align-items: center;
    border-radius: 10px;
    height: 570px;
    width: min(70vw,1000px);
    margin-top: 20px;
    padding: 50px 60px 40px 60px;
    font-weight: 600;
  }
}

.page1__text {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: left;
  height: 100%;
  width: 100%;
  padding: 20vh 15vw;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: 0px;
}

.page1__text-heading {
  color: rgb(29, 29, 29);
  font-size: calc(30px + 4vw);
  font-weight: 700;
  line-height: 1.2;
}

.page1__text-subheading {
  color: rgb(29, 29, 29);
  font-size: calc(24px + 3vw);
  padding-bottom: 10px;
  line-height: 1.2;
}


.button {
  width: 200px;
  height: 40px;
  border-radius: 5px;
  background: black;
  color: white;
  border: none;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
}

.page-container {
  display: flex;
  flex-direction: column;
  background: rgb(240, 240, 240);
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  width: 100%;
  min-height: 100vh;
  padding: 60px 0px 30px 0px;
  position: relative;
}

.page-heading {
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  padding-top: 15px;
  z-index: 2;
}

.page-subheading {
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 2;
}

.page-bodytext {
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  padding: 15px;
  border-radius: 10px;
}

.page__text-body {
  font-size: 1.2rem;
  font-size: calc(16px + 0.5vw);
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 15px;
  text-align: left;
}



.about {
  background: rgb(240, 240, 240);
}

.services__heading {
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.services__sub-heading {
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  padding-top: 15px;
}

.contact {
  background: rgb(240, 240, 240);
}

.contact__details{
  padding: 5px 5px;
  color: #3A7CA5;
  font-weight: 400;
  font-size: 12pt;
  vertical-align: middle;
  line-height: 50px;
}

.contact__details a{
  color: #3A7CA5;
  text-decoration: none;
}

.contact__address{
  color: black;
  font-weight: 400;
  font-size: 12pt;
  vertical-align: middle;
  padding-left: 35px;
  padding-bottom: 20px;
}

.social-icon {
  width: 30px;
  padding-right: 10px;
  vertical-align: middle;
}
