@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;600;800&display=swap");
header {
  height: 10vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  max-width: 1400px;
  margin: auto;
}

nav {
  width: 85%;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  text-transform: uppercase;
  height: 10vh;
  top: 0;
  left: 7.5%;
  right: 7.5%;
  z-index: 1000;
}

#logo {
  flex: 4 1 20rem;
  opacity: 0;
}

.nav-links {
  flex: 1 1 20rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

header.sticky {
  background-color: rgba(39, 39, 39, 0.86);
  transition: 0.5s;
  border-bottom: 1px solid rgb(12, 12, 12);
  height: 10vh;
}

header.sticky #logo {
  opacity: 1;
  border-left: 2px solid red;
  padding: 0 10px;
}

@media screen and (max-width: 5000px) {
  #logo {
    font-size: 2rem;
  }
  .burger {
    position: relative;
    display: block;
    cursor: pointer;
    z-index: 1000;
  }
  .burger span {
    padding: 0.27rem 2.5rem;
    background-color: rgba(255, 255, 255, 0.87);
    margin: 0.8rem 0rem;
    display: block;
    transition: all 0.5s ease;
  }
  .nav-links {
    background-color: rgba(39, 39, 39, 0.86);
    width: 71%;
    height: 100vh;
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0 100%, 27% 50%, 0% 0%);
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-right: 7.5%;
    top: 0;
    left: 100%;
    transition: transform 0.5s ease;
    z-index: 100;
  }
  .nav-links li {
    padding-top: 5rem;
  }
  .nav-links a {
    font-size: 2rem;
    border-bottom: 1px solid red;
    padding-bottom: 0.3rem;
  }
  .nav-links a:hover {
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  }
  .nav-open {
    transform: translateX(-100%);
  }
  .nav-close {
    transform: translateX(100%);
  }
  .toggle .line1 {
    transform: rotateZ(405deg) translateY(300%);
  }
  .toggle .line2 {
    opacity: 0;
  }
  .toggle .line3 {
    transform: rotateZ(-405deg) translateY(-300%);
  }
}
@media screen and (max-width: 790px) {
  nav {
    width: 90%;
    left: 5%;
    right: 5%;
  }
  .burger span {
    padding: 0.25rem 2rem;
    margin: 0.6rem 0rem;
  }
  .nav-links {
    clip-path: polygon(100% 0.4%, 100% 0, 100% 100%, 0% 100%);
    width: 99.7%;
  }
}
@media screen and (max-width: 500px) {
  header.sticky {
    height: 8.5vh;
  }
  nav {
    width: 95%;
    left: 2.5%;
    right: 2.5%;
    height: 8.5vh;
  }
}
.hero {
  height: 100vh;
  width: 85%;
  margin: auto;
}

.hero__overlay-left-1 {
  background-color: rgb(255, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 48.2%;
  height: 100vh;
  clip-path: polygon(60% 0%, 100% 50%, 60% 100%, 0% 100%, 0 51%, 0% 0%);
  z-index: -101;
  position: absolute;
}

.hero__overlay-left {
  background-color: rgb(39, 39, 39);
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 100vh;
  clip-path: polygon(60% 0%, 100% 50%, 60% 100%, 0% 100%, 0 51%, 0% 0%);
  z-index: -100;
  position: absolute;
}

.hero__text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: no-wrap;
  height: 100vh;
  position: relative;
}

.hero__text-left {
  flex: 1 1 38rem;
  width: 46%;
  padding-right: 3rem;
}
.hero__text-left h2 {
  font-weight: 400;
  font-size: 1.8rem;
}

.hero__text-right {
  flex: 1 1 38rem;
  text-align: right;
  padding-left: 1rem;
}
.hero__text-right p {
  font-size: 3.4rem;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
}
.hero__text-right p span {
  text-transform: uppercase;
  font-size: 4rem;
}

.hero-p-btn {
  position: absolute;
  right: 0%;
  bottom: 7.5%;
}

.right-btn {
  border: none;
}
.right-btn a {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding-top: 1rem;
}
.right-btn a:hover {
  color: rgba(255, 255, 255, 0.87);
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
  .hero__text-right p {
    font-size: 3rem;
  }
}
@media screen and (max-width: 790px) {
  .hero {
    width: 95%;
  }
  .hero__overlay-left-1 {
    display: none;
  }
  .hero__overlay-left {
    clip-path: polygon(0 0, 100% 0, 50% 50%, 0% 100%);
    width: 100%;
  }
  .hero__text {
    flex-wrap: wrap;
  }
  .hero__text-left {
    align-self: flex-end;
    padding-bottom: 1.3rem;
  }
  .hero__text-left h1 {
    font-size: 3rem;
  }
  .hero__text-left h2 {
    font-size: 1.8rem;
  }
  .hero__text-right {
    padding-left: 0rem;
    align-self: flex-start;
    text-align: left;
    border-top: 1px solid rgb(255, 0, 0);
    padding-top: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .hero__text-left h1 {
    font-size: 2.2rem;
  }
  .hero__text-left h2 {
    font-size: 1.4rem;
  }
  .hero__text-right p {
    font-size: 2.2rem;
    font-weight: 400;
  }
  .hero-p-btn {
    bottom: 5%;
    bottom: 10%;
  }
  .right-btn a {
    font-size: 1.6rem;
    padding-top: 0.5rem;
  }
}
#works {
  min-height: 100vh;
}

#about {
  min-height: 100vh;
  width: 85%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
#about h4 {
  text-transform: uppercase;
  font-size: 4rem;
  padding: 1rem 1rem 1rem 0;
}
#about p {
  font-size: 2rem;
}
#about p a {
  font-size: 2rem;
  border-bottom: 1px solid red;
}

.about__about-me-benefits {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.about__about-me-benefits-1,
.about__about-me-benefits-2 {
  background-color: rgb(39, 39, 39);
  margin: 0 1rem;
  padding: 2rem;
}
.about__about-me-benefits-1 h3,
.about__about-me-benefits-2 h3 {
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.87);
}

.middle {
  margin: 1rem 0;
}

@media screen and (max-width: 790px) {
  #about {
    width: 90%;
  }
  #about h4 {
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 760px) {
  #about h4 {
    font-size: 3rem;
  }
  #about p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  #about h4 {
    padding: 6rem 0 1rem 0;
  }
  #about p {
    font-size: 1.6rem;
  }
  #about p a {
    font-size: 1.6rem;
    border-bottom: 1px solid red;
  }
  #about .about__about-me-benefits {
    padding-bottom: 3rem;
  }
  #about .about__about-me-benefits-1,
  #about .about__about-me-benefits-2 {
    margin: 2.5px 0;
    width: 100%;
  }
  #about .about__about-me-benefits-1 h3,
  #about .about__about-me-benefits-2 h3 {
    padding: 0;
    font-size: 2.2rem;
  }
}
#contact {
  min-height: 100vh;
  position: relative;
  border-top: 1px solid rgb(248, 248, 255);
}

.contact {
  max-width: 85%;
  margin: 1rem auto;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.contact h5 {
  font-size: 4rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 1rem 0;
}

.contact__container {
  max-width: 1100px;
  margin: auto;
}

input,
textarea {
  width: 100%;
  text-align: center;
}

button {
  width: 100%;
  font-size: 4rem;
  font-weight: 800;
  background: rgb(12, 12, 12);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 1rem 0 1rem 0;
  padding: 1rem;
  cursor: pointer;
}
button:hover {
  color: rgb(248, 248, 255);
}

@media screen and (max-width: 500px) {
  .contact h5 {
    font-size: 3rem;
  }
  .contact button {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.footer-bkgd-1,
.footer-bkgd-2 {
  background-color: rgb(39, 39, 39);
}

.footer-top,
.footer-bottom {
  width: 85%;
  margin: 0 auto;
  text-align: center;
}

.footer-top {
  margin-bottom: 2px;
  padding: 3rem 1rem;
}
.footer-top h6 {
  font-size: 3.4rem;
  text-transform: uppercase;
  padding-top: 2rem;
}
.footer-top p {
  font-size: 1.8rem;
}
.footer-top .footer-p {
  margin: 0;
}
.footer-top .phone {
  letter-spacing: 1px;
}
.footer-top .phone span {
  color: red;
  font-size: 10px;
}

.footer-bottom {
  margin-top: 2px;
  padding: 0 1rem;
}
.footer-bottom .address {
  font-size: 1.6rem;
  padding-top: 2rem;
}
.footer-bottom .copyright {
  font-size: 1.2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.footer-bottom .copyright span {
  color: red;
}
.footer-bottom .copyright a {
  font-size: 1.2rem;
}

@media screen and (max-width: 500px) {
  .footer-top > .footer-p {
    font-size: 1.2rem;
  }
  .footer-bottom > .address {
    font-size: 1.4rem;
  }
}
.footer-dark {
  background-color: rgb(39, 39, 39);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.footer-bkgd-1-dark,
.footer-bkgd-2-dark {
  background-color: rgb(12, 12, 12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  background-color: rgb(12, 12, 12);
  color: rgba(255, 255, 255, 0.87);
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Poppins", sans-serif;
  max-width: 1400px;
  margin: auto;
}

h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
}

h2 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: 3.2rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
}

h4 {
  font-size: 2.8rem;
}

h5 {
  font-size: 2.3rem;
}

h6 {
  font-size: 2rem;
}

li,
label,
input,
a,
textarea,
button,
p {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.8rem;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.87);
}
a:hover {
  color: rgba(255, 255, 255, 0.6);
}

textarea {
  font-family: "Poppins", sans-serif;
}

input,
textarea {
  border: none;
  border-radius: 1px;
  background: rgb(248, 248, 255);
  font-size: 1.8rem;
  padding: 1rem 1rem;
  margin: 3px 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.4px;
}

button {
  border: 1px solid rgba(255, 255, 255, 0.87);
  border-radius: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  grid-auto-flow: dense;
  grid-gap: 8px;
}

.grid__text {
  background-color: rgb(39, 39, 39);
  display: grid;
}
.grid__text h3 {
  align-self: center;
  justify-self: center;
  text-align: center;
  border-left: 2px solid red;
  padding: 0 10px;
}
.grid__text h3 a {
  font-size: 3.2rem;
  color: rgba(255, 255, 255, 0.87);
}
.grid__text h3 a:hover {
  color: rgb(255, 255, 255);
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.grid img:hover {
  transform: scale(1.05);
}

.img {
  overflow: hidden;
}

.span-row-2 {
  grid-row: span 2;
}

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

@media screen and (max-width: 1600px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 760px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
  }
  .grid__text {
    padding: 6rem 0;
  }
}
.photos__hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)), url("./images/photography/sunrise-1600x976.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.coming-soon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  font-size: 8rem;
}

@media screen and (max-width: 760px) {
  .coming-soon {
    font-size: 4rem;
  }
}
#photos__logo {
  flex: 4 1 20rem;
  border-left: 2px solid red;
  padding: 0 10px;
}

.photos__nav-links {
  flex: 1 1 20rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

header.sticky {
  background-color: rgba(39, 39, 39, 0.86);
  transition: 0.5s;
  border-bottom: 1px solid rgb(12, 12, 12);
}

@media screen and (max-width: 5000px) {
  #photos__logo {
    font-size: 2rem;
  }
  .photos__nav-links {
    background-color: rgba(39, 39, 39, 0.86);
    width: 50%;
    height: 100vh;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-right: 7.5%;
    top: 0;
    left: 100%;
    transition: transform 1s ease;
    z-index: 100;
    border-left: 3px solid rgb(12, 12, 12);
  }
  .photos__nav-links li {
    padding-top: 5rem;
  }
  .photos__nav-links a {
    font-size: 2rem;
    border-right: 2px solid red;
    padding: 0 10px;
  }
  .photos__nav-links a:hover {
    color: rgba(255, 255, 255, 0.6);
    border-right: 2px solid rgba(255, 255, 255, 0.6);
  }
}
@media screen and (max-width: 790px) {
  .photos__nav-links {
    width: 60%;
  }
}
.social-media__hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), url("../images/photography/dumka-lake-1600x1200.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.center-symbol {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.5);
}
.center-symbol h4 {
  font-size: 7rem;
}
.center-symbol span {
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 800;
}

.social-media__bottom-text__bkgd {
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0));
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  width: 60%;
}

.social-media__bottom-text {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-size: 2rem;
  text-align: center;
  padding: 2rem 1rem;
  letter-spacing: 1px;
}
.social-media__bottom-text span {
  color: red;
}

@media screen and (max-width: 760px) {
  .center-symbol h4 {
    font-size: 4rem;
  }
  .center-symbol span {
    font-size: 3rem;
  }
  .social-media__bottom-text__bkgd {
    width: 80%;
    bottom: 2.5%;
  }
}
@media screen and (max-width: 475px) {
  .social-media__bottom-text__bkgd {
    width: 90%;
  }
  .social-media__bottom-text {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 352px) {
  .social-media__bottom-text__bkgd {
    width: 100%;
  }
  .social-media__bottom-text {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
}
.social-media__header {
  top: 2.5%;
}

#social-media__logo > a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 10px;
  visibility: hidden;
}

.social-media__burger {
  position: absolute;
  top: 2.5%;
  left: 50%;
  padding: 0;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1000;
}

.social-media__burger span {
  padding: 0.4rem 3.2rem;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0.5rem 0rem;
  display: block;
}

@media screen and (max-width: 5000px) {
  #social-media__logo {
    font-size: 2rem;
  }
}
.thank-you-p {
  padding-bottom: 2rem;
}

.thank-you-para {
  font-size: 2rem;
  font-weight: 400;
}
.thank-you-para span {
  text-transform: uppercase;
  font-weight: 600;
}

.thank-you-a {
  padding: 1rem 0;
  text-transform: uppercase;
  border-top: 1px solid white;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.6);
}
.thank-you-a:hover {
  color: rgb(248, 248, 255);
}

.section__terms {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 4rem 0;
}

.terms {
  width: 65%;
  margin: auto;
}

.terms__h3 {
  text-align: center;
  padding-top: 2.4rem;
  padding-bottom: 0.8rem;
}

.terms__para {
  font-size: 1.6rem;
  line-height: 1.4;
}

.bullet {
  font-size: 1.4rem;
  list-style-type: square;
  margin-left: 2rem;
}

@media screen and (max-width: 800px) {
  .terms__h3 {
    font-size: 2.6rem;
    padding-bottom: 0.5rem;
  }
  .terms {
    width: 95%;
  }
}/*# sourceMappingURL=main.css.map */