.smart-phone-wrapper {
  margin: 30px;
}

.smartphone {
  position: relative;
  width: 392px;
  height: 762px;
  margin: auto;
  border: 16px black solid;
  border-top-width: 60px;
  border-bottom-width: 60px;
  border-radius: 36px;
}

.smartphone .content {
  width: 360px;
  height: 640px;
  background: white;
}

.smartphone:before {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 10px;
}

.smartphone:after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 50%;
  bottom: -65px;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 50%;
}

.large-screen-wrapper {
  margin: 30px;
}

.large-screen {
  position: relative;
  width: 1057px;
  height: 888px;
  margin: auto;
  border: 16px black solid;
  border-top-width: 60px;
  border-bottom-width: 60px;
  border-radius: 36px;
}

.large-screen .content {
  width: 1024px;
  height: 768px;
  background: white;
}

.large-screen:before {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 10px;
}

.large-screen:after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 50%;
  bottom: -65px;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 50%;
}

.call-to-action,
.contact-email {
  color: #51b065;
}

.embed-in-small-screen {
  height: 768px;
}

@media only screen and (max-width: 767px) {
  .big-screen-demos {
    display: none;
  }
}

@media only screen and (min-width: 767px) {
  .small-screen-demos {
    display: none;
  }
}

.contact-section {
  width: 100%;
  margin: auto;
  overflow: auto;
  display: flex;
}

.section-title {
  display: block;
  flex: 1;
  margin: 0;
}

.contact-email {
  word-wrap: break-word;
  display: block;
  flex: 1;
  margin: 0;
}

/* New Hover & Transition Effects */
.hover-zoom {
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.hover-zoom:hover {
  transform: scale(1.05);
}

.transition-up {
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.transition-up:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}
