*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-repeat: repeat;
  margin: 0;
  padding: 0;
  background-repeat: repeat;
  background-size: cover;
}
.main_container{
  background-image: url('../img/main-bg.png');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  height: 100vh;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 70px 70px 0px 70px;
}
.header .logo_left{
  width: 200px;
  object-fit: cover;
}
.header .logo_right{
  width: 80px;
  object-fit: cover;
}

.header .logo_left img{
  width: 100%;
}
.header .logo_right img{
  width: 100%;
}
.content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.content .content_left{
  width: 50%;
    margin: 0 auto;
    padding: 50px;
}
.content .content_left .one_house_onec_hance{
  width: 100%;
  max-width:60%;
  margin: 0 auto;
}
.content .content_right{
  width: 50%;
    margin: 0 auto;
    padding: 100px;
}

.content .content_left img{
  width: 100%;
}
.content .content_right h1{
  text-align: center;
  margin-bottom: 40px;
}
.content .content_right h1 .text-1, .text-2{
  display: none;
  color: #9e222a;
}
.content .content_right .heading-phone{
  display: none;
}
.content .content_right .formBlock{
  width: 50%;
  margin: 0 auto;
}
.content .content_right .formBlock input[type="text"], .formBlock input[type="email"]{
  display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    border: 0px;
}
.content .content_right .formBlock button {
  width: 100%;
  background: #ffdc00;
  color: #333;
  border: none;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 25px;
}
.content .content_right .formBlock input[type="checkbox"]+label {
  display: inline-block;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}
.main_container{
  position: relative;
}
.main_container .footer{
  
  position: absolute;
  bottom: 20px;
  left: 40px;
}
.main_container .footer p{
  font-size: 12px;
  font-weight: bold;
  word-spacing: 5px;
}
@media(max-width:768px){
  
.main_container{
  background-image: url('../img/mobile-bg.png');
}
  .header {
    padding: 30px 20px;
}
.header .logo_left {
  width: 75px;
}
.header .logo_right {
  width: 30px;
}
  .content {
    flex-direction: column-reverse;
}
.content .content_right .heading-phone{
  display: block;
}

.content .content_right .heading-desktop{
  display: none;
}
.content .content_right h1 .text-1{
  display: block;
}
.content .content_right h1 .text-1{
  display: block;
  color: #9e222a;
  font-size: 30px;
}

.content .content_right h1 .text-2{
  font-size: 16px;
  color: #333333;
}
.content .content_right h1{
  font-size: 16px;
  color: #333333;
}
  .content .content_left{
    width: 100%;
    padding: 0px;
  }
  .content .content_right{
    width: 100%;
    padding: 20px;
  }
  .content .content_right .formBlock{
    width: 100%;
  }
  .content .content_right .formBlock .submit-btn{
    text-align: center;
  }
  .content .content_right .formBlock button {
    background: #9e222a;
        color: #fff;
        max-width: 125px;
        text-align: center;
  }
  .main_container .footer {
    left: unset;
    text-align: center;
}
}