body {
  background: rgba(0, 0, 0, 0.9);
  margin: 0;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.title {
  color: white;
}

.text {
  color: white;
}

.showcase::after {
  content: '';
  height: 100vh;
  width: 100%;
  background-image: url(owc-tech2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  transition: all 1000ms;
}

.showcase:hover::after {
  filter: blur(0px);
  -webkit-filter: blur(0px);
}

.showcase:hover .content {
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

.content {
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 50%;
  margin-top: 105px;
  margin-left: -145px;
  width: 300px;
  height: 350px;
  text-align: center;
  transition: all 1000ms;
}

.content .logo {
  height: 180px;
  width: 180px;
}

.content .title {
  font-size: 2.2rem;
  margin-top: 1rem;
}

.content .text {
  line-height: 1.7;
  margin-top: 1rem;
}

.container {
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  padding: 4rem 1rem;
}

.grid-3 {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.center {
  text-align: center;
  margin: auto;
}

#wrapper {
  width: 100%;
  height: 100%;
  border: 1px solid black;
  position: relative;
}

#wrapper:after {
  display: block;
  content: " ";
  height: 0;
  clear: both;
}

.block {
  position: relative;
  float: left;
  vertical-align: top;
  width: 900px;
  text-align: left;
  min-height: 200px;
  padding-left: 20px;
  z-index: 2;
}


.bg-light {
  background: #f4f4f4;
  color: #333;
}

.bg-dark {
  background: #333;
  color: #f4f4f4;
}

/* Custom CSS styles for WhatsApp Button */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: 10px 20px;
  background: #4CAF50;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.whatsapp-link svg {
  fill: #fff;
  width: 18px;
  height: 18px;
}

.whatsapp-link:hover {
  color: #f4f4f4;
  background-color: #45a049
}

/* Custom CSS styles for WhatsApp Form */
.waform-bunghuda .form-container {
  width: 85%
}

.form-container .formC:nth-child(1) {
  display: block
}

.formC .Fcontrol {
  position: relative;
  display: block;
  margin: 0;
  padding: 0
}

.formC .Fcontrol input:focus, .formC .Fcontrol textarea:focus {
  border-color: #efefef
}

.Fcontrol .cSubject, .Fcontrol input[type=text], .Fcontrol input[type=email], .Fcontrol textarea {
  width: 100%;
  height: auto;
  padding: .375rem 2.25rem .375rem .75rem;
  padding-top: 1.625rem;
  border-radius: 5px;
  margin-bottom: 15px;
  border: 1px solid #cdcdcd;
  background: #f4f4f4
}

.Fcontrol textarea {
  height: 150px
}

.Fcontrol .subjectC, .nameC, .emailC, .messageC {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: auto;
  padding: 1rem .75rem;
  transform: scale(.85) translateY(-.5rem) translateX(.15rem);
  transform-origin: 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  white-space: nowrap;
  color: rgba(33, 37, 41, .65);
  transition: .1s ease
}

.Fcontrol .cSubject {
  display: block;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") no-repeat right .75rem center/16px 12px;
  border: 1px solid #cdcdcd;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #f4f4f4
}

/* Validation */
.valid[data-text]:before {
  position: absolute;
  bottom: 100%;
  left: 12px;
  content: '';
  border: 8px solid;
  border-color: transparent transparent #ffd91a transparent;
  top: calc(100% - 21px)
}

.valid[data-text]:after, .valid[data-text]:before {
  opacity: 1;
  transition: opacity .2s ease;
  pointer-events: none;
  z-index: 3
}

.valid[data-text]:after {
  content: attr(data-text);
  position: absolute;
  background: #ffd91a;
  left: 0;
  top: calc(100% - 5px);
  font-size: 12px;
  padding: 0 5px;
  box-shadow: 0 5px 10px rgb(0 0 0 / 8%)
}

.show#cName~.valid:after, .show#cEmail~.valid:after, .show#cMessage~.valid:after, .show#cName~.valid[data-text]:before, .show#cEmail~.valid[data-text]:before, .show#cMessage~.valid[data-text]:before, .none#cName~.valid:after, .none#cEmail~.valid:after, .none#cMessage~.valid:after, .none#cName~.valid[data-text]:before, .none#cEmail~.valid[data-text]:before, .none#cMessage~.valid[data-text]:before {
  opacity: 0
}

.Fcontrol input:focus~.nameC, .Fcontrol input:focus~.emailC, .Fcontrol textarea:focus~.messageC {
  top: -5px
}

/* Remove IE arrow */
select:focus {
  outline: none
}

select::-ms-expand {
  display: none
}

@media screen and (max-width: 620px) {
  .formC:nth-child(1) {
    display: block;
    gap: 0rem;
    padding: 0;
    margin: 0
  }
}
}

footer {
  padding: 2.2rem;
}

footer p {
  margin: 0;
}

.media-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.media-icons a {
  position: relative;
  color: white;
  font-size: 25px;
  transition: 0.3s;
  transition-property: transform;
}

.media-icons a:not(:last-child) {
  margin-right: 60px;
}

.media-icons a:hover {
  transform: scale(1.5);
}

/* Small Screens */
@media (max-width: 560px) {
  .showcase::after {
    height: 50vh;
  }

  .content {
    top: 5%;
    margin-top: 5px;
  }

  .content .logo {
    height: 140px;
    width: 140px;
  }

  .content .text {
    display: none;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .services div {
    border-bottom: #333 dashed 1px;
    padding: 1.2rem 1rem;
  }
}

/* Landscape */
@media (max-height: 500px) {

  .content .title,
  .content .text {
    display: none;
  }

  .content {
    top: 0;
  }
}
