/* Importing Google font - Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

.containers{
  width: 95%;
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
  margin-left:40px;
  margin-bottom: 20px;;
}
.containers .contents{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.containers .contents .left-side{
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.contents .left-side::before{
  content: '';
  position: absolute;
  height: 90%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background:#0E162D;
}
.contents .left-side .details{
  margin: 14px;
  text-align: center;
}
.contents .left-side .details i{
  font-size: 30px;
  color:  #0E162D;
  margin-bottom: 10px;
}
.contents .left-side .details .topic{
  font-size: 18px;
  font-weight: 500;
}
.contents .left-side .details .text-one,
.contents .left-side .details .text-two{
  font-size: 14px;
  color:#0E162D;
}
.containers .contents .right-sides{
  width: 75%;
  margin-left: 75px;
}
.contents .right-sides .topic-text{
  font-size: 23px;
  font-weight: 600;
  color:  #0E162D;
}
.right-sides .input-box{
  height: 50px;
  width: 100%;
  margin: 12px 0;
}
.right-sides .input-box input,
.right-sides .input-box textarea{
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}
.right-sides .message-box{
  min-height: 110px;
}
.right-sides .input-box textarea{
  padding-top: 6px;
}
.right-sides .button{
  display: inline-block;
  margin-top: 12px;
}
.right-sides .button button{
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #CF1E25;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button button:hover{
  background: #CF1E25 !important;
}


@media (max-width: 950px) {
  .containers{
    width: 90%;
    padding: 30px 40px 40px 35px ;
  }
  .containers .contents .right-sides{
   width: 75%;
   margin-left: 55px;
}
}
@media (max-width: 820px) {
  .containers{
    margin: 40px 0;
    height: 100%;
  }
  .containers .contents{
    flex-direction: column-reverse;
  }
 .containers .contents .left-side{
   width: 100%;
   flex-direction: row;
   margin-top: 40px;
   justify-content: center;
   flex-wrap: wrap;
 }
 .containers .contents .left-side::before{
   display: none;
 }
 .containers .contents .right-sides{
   width: 100%;
   margin-left: 0;
 }
}