body{
    margin: 0;
    background-color: white;
    height: 100vh;
    /* cursor: none; */
    overflow-x: hidden;
}
.name {
  font-family: "Lobster", cursive;
}
.text {
    font-family: Roboto, sans-serif;
    color: black;
}
span {
    padding-left: 1.5rem;
}
.big-heading {
    font-family: "Lobster", cursive;
    color: black;
}
.title {
    color: white; 
    font-family: Roboto, sans-serif;
}
form {
    display: inline;
}
/* .cursor {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 0;
    background-image: url("../images/camera.png");
    z-index: 999;
    position: absolute;
    transition-duration: 100ms;
    transition-timing-function: ease-out;
    animation: cursorAnim .5s infinite alternate;
    pointer-events: none;
}

.cursor::after {
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    border: 8px solid #7579E7;
    border-radius: 50%;
    opacity: .6;
    animation: cursorAnim2 .5s infinite alternate;

}

@keyframes cursorAnim {
    from {
        transform: scale(1);;
    }
    to {
        transform: scale(.7);
    }
}

@keyframes cursorAnim2 {
    from {
        transform: scale(1);;
    }
    to {
        transform: scale(.4);
    }
} */

a {
    /* cursor: none; */
    color: black;
}
.cover-button {
    margin: 0 10rem;
}
/* Navigation Bar */
.navbar {
   width: 100%;
   position: fixed;
   top: 0;
   transition: top 0.3s;
}
.navbar-brand {
    font-size: 2.5rem;
    font-weight: bold;
    padding-left: 2rem;
}
.navbar-nav {
    margin-left: auto;
}
.nav-link {
    font-size: 1.5rem;
}
.nav-item {
    padding: 0 1rem;
}
/* Cover */
#cover {
    background: url("../images/IMG01A.jpeg") fixed center no-repeat;
    background-size: cover;
    padding: 40rem 0 30rem 0;
    max-width: 100%;
    height: auto;
}
/* Photo */
#photo {
    background: url("../images/IMG02A.jpeg") fixed center no-repeat;
    background-size: cover;
    padding: 20rem 0;
    max-width: 100%;
    height: auto;
}
/* White */
#white {
    text-align: center;
}
.white-title {
    padding-top: 5rem;
}
.collage {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 7rem 0;
}
.portrait {
    height: 90%;
    width: 90%;
    padding: 0;
}
.landscape {
    width: 90%;
    height: 90%;
}
/* Tangy */
#tangy {
    background: url("../images/IMG.jpg") fixed center no-repeat;
    background-size: cover;
    padding: 20rem 0;
    max-width: 100%;
    height: auto;
}
.throw {
    text-align: center;
    padding: 4rem;
}
/* .btn {
    cursor: none;
} */
/* Testimonials */
#testimonials {
    text-align: center;
    padding: 7% 4%;
}
.testimonials {
    padding: 4%;
}
/* Footer */
#footer {
    text-align: center;
    padding: 4% 1%;
}

/* ----- Photos ------- */
.container {
    padding: 15px;
    display: flex;
}
#title {
    padding-top: 15rem;
}
/* Columns */
.left-column {
    width: 65%;
    height: 30rem;
    position: relative;
  }
   
  .right-column {
    width: 35%;
  }
/* Left Column */
.left-column img {
    position: absolute;
    opacity: 0;
    transition: all 0.3s ease;
}
   
  .left-column img.active {
    opacity: 1;
}
/* Collection Description */
.product-description {
    border-bottom: 1px solid #E1E8EE;
    margin-bottom: 20px;
}
  .product-description span {
    font-size: 12px;
    color: #358ED7;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}
  .product-description h1 {
    font-weight: 300;
    font-size: 52px;
    color: #43484D;
    letter-spacing: -2px;
}
  .product-description p {
    font-size: 16px;
    font-weight: 300;
    color: #86939E;
    line-height: 24px;
}
/* Cable Configuration */
.cable-choose {
    margin-bottom: 20px;
}
   
.cable-choose button {
    border: 2px solid #E1E8EE;
    border-radius: 6px;
    padding: 13px 20px;
    font-size: 14px;
    color: #5E6977;
    background-color: #fff;
    cursor: pointer;
    transition: all .5s;
}
   
.cable-choose button:hover,
.cable-choose button:active,
.cable-choose button:focus {
    border: 2px solid #86939E;
    outline: none;
}
   
.cable-config {
    border-bottom: 1px solid #E1E8EE;
    margin-bottom: 20px;
}
   
.cable-config a {
    color: #358ED7;
    text-decoration: none;
    font-size: 12px;
    position: relative;
    margin: 10px 0;
    display: inline-block;
}
.cable-config a:before {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 2px solid rgba(53, 142, 215, 0.5);
    display: inline-block;
    text-align: center;
    line-height: 16px;
    opacity: 0.5;
    margin-right: 5px;
}
/* Responsive */
@media (max-width: 940px) {
    .container {
      flex-direction: column;
      margin-top: 60px;
    }
   
    .left-column,
    .right-column {
      width: 100%;
    }
   
    .left-column img {
      width: 300px;
      right: 0;
      top: -65px;
      left: initial;
    }
  }
   
  @media (max-width: 535px) {
    .left-column img {
      width: 220px;
      top: -85px;
    }
  }
/* Contact */
.contact-row {
    padding: 1rem 0;
}
.contact-photo {
    position: relative;
    width: 50%;
    height: auto;
}