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

*,
*::after,
*::before {
  box-sizing: inherit;
}

input,
textarea {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.2;
  width: 100%;
  background: #2b2b2b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Eurostile-Med', sans-serif;
  padding: 50px 0px;  
}

.container {
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #242424;
  padding: 50px 80px 50px 40px;
  border-radius: 0px;
  border: 1px solid #393939;  
}

.left-side {
  width: 25%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.left-side::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: #575757;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.right-side {
  width: 75%;
  margin-left: 75px;
}

.details {
  margin-bottom: 30px;
  text-align: center;
}

.details i {
  font-size: 18px;
  color: #908ccd;
}

.topic {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 15px;
  color: #fff;
}

.text-one,
.text-two {
  font-size: 14px;
  color: #a0a0a0;
}

.tel-one,
.tel-two {
  font-size: 16px;
  color: #afabec;
}

.topic-text {
  font-size: 30px;
  font-weight: 600;
  color: #afabec;
  margin-bottom: 10px;
}

.right-side p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff;
}

.input-box {
  height: 50px;
  width: 100%;
  margin-bottom: 30px;
}

.input-box input[type="text"],
.input-box textarea {
  height: 100%;
  width: 100%;
  color: #afafb6;
  border-radius: 0px;
  background: #242424;
  padding: 0 20px;
  margin-bottom: 2px;
  border: 1px solid #575757;  
  font-family: 'Eurostile-Med', sans-serif;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #afafb6;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #afafb6;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #afafb6;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #afafb6;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color: #afafb6;
}
::placeholder { /* Most modern browsers support this now. */
   color: #afafb6;
}
.input-box span {
  font-size: 14px;
  color: #696969;
  padding-left: 5px;
  font-family: 'Eurostile-Med', sans-serif;
}
label {
  font-size: 14px;
  color: #696969;
  padding-left: 5px;
  font-family: 'Eurostile-Med', sans-serif;
}
.input-box textarea {
  resize: none;
  padding: 20px;
  font-family: 'Eurostile-Med', sans-serif;  
}

.message-box {
  min-height: 110px;
}

.button {
  display: inline-block;
  display: flex;
  justify-content: center;
}

.button {
  text-align: center;
  display: inline-block;
  padding: 15px 50px;
  border: 1px solid #908ccd;
  cursor: pointer;
  letter-spacing: 0px;
  position:relative;
  overflow:hidden;
  text-transform: none;
  color: #fff;
  font-size: 18px;  
  background: #908ccd;
  font-family: 'Eurostile-Med', sans-serif;
}
.button:before {
  content: "";
  position: absolute;
  height: 150px;
  width: 50px;
  background: #fff;
  left: -55px;
  top: -40px;
  transform: rotate(37deg);
  transition: all .3s;
  opacity: 0.3;
}
.button:hover:before {
  left:95%;
}

.back {
   margin-bottom: 20px; 
}
.back a {
   font-size: 18px;
   color: #fff;
   text-decoration: none;
}
.back i {
   font-size: 18px;
   color: #fff;
   text-decoration: none;
}
.copyright p {
    color: #696969;
    line-height: 16px;
    font-family: 'Eurostile-Reg', sans-serif;
     margin-top: 30px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 800px) {
  .content {
   height: 100%;
   flex-direction: column-reverse;
   padding: 50px 20px 50px 20px;
  }
  .left-side {
   margin-top: 50px;
   flex-direction: row;
   width: 100%;
   justify-content: center;
   flex-wrap: wrap;
  }
  .details {
  margin-bottom: 20px;
}
  .address {
   margin-right: 0px;     
  }
  .phone, .email {
    margin: 20px 20px;  
  }
   .text-one,
   .text-two {
   font-size: 16px;
} 
  .left-side::before {
   display: none;
  }
  .right-side {
   width: 100%;
   margin-left: 0;
  }
  .input-box {
  margin-bottom: 40px;
}
  .message-box {
  min-height: 250px;
}
  .topic-text {
  font-size: 22px;
}
  .button {
   width: 57%;
}
}


