body {
  background: #fff;
  font-family: Arial, sans-serif;
}
a{
    text-decoration:none !important;
}
.contect-section {
  margin: 80px 0;
}

.contect-footer {
  margin-top: 200px;
}

.contact-box {
  justify-content: center;
  position: relative;
}

.rowbgimg {
  background: url("../images/bgimg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.left-bar {
  width: 180px;
  background: #444;
  border-radius: 16px 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-bar span {
  transform: rotate(-90deg);
  white-space: nowrap;
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 4px;
  background: repeating-linear-gradient(to right, #fff 0 3px, transparent 3px 8px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px white;
}

.frm-cl label {
  font-size: 14px;
}

.form-section {
  padding: 46px 20px 44px 100px;
  min-width: 360px;
  position: relative;
}

.form-control {
  background: transparent;
  border: 1px solid rgb(116, 107, 107);
  font-size: 15px;
  padding: 10px;
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid #961d21;
  background: #faefef;
}

.social-inside {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.social-inside a {
  width: 38px;
  height: 38px;
  background: #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

.social-inside a:hover {
  background: #eee;
  color: #444;
}

.human-img {
  position: absolute;
  right: 18px;
  bottom: -67px;
  width: clamp(120px, 16vw, 220px);
}

.human-img img {
  width: 100%;
  height: auto;
  display: block;
}

.btnn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px;
  height: 60px;
  width: 270px;
  border-radius: 50px;
  background: #444;
  overflow: hidden;
  margin: 0 auto;
}

.btnn .text {
  position: absolute;
  right: 5px;
  height: 50px;
  width: 200px;
  background: #fff;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: transform 0.45s ease;
}

.btnn .icon {
  position: relative;
  left: 2px;
  height: 50px;
  width: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s ease;
}

.btnn:hover .text {
  transform: translateX(-55px);
}

.btnn:hover .icon {
  transform: translateX(205px);
}
.bottom-social-icon{
  display: flex;
  justify-content: center;
  align-items: center;  
}

@media (max-width: 992px) {

  .left-bar {
    width: 100%;
    height: 70px;
    border-radius: 16px 16px 0 0;
  }

  .left-bar span {
    transform: rotate(0);
  }

  .form-section {
    padding: 15px 60px 0px 60px;
  }

  .social-inside {
    position: static;
    flex-direction: row;
    justify-content: center;
    transform: none;
  }

  .human-img {
    position: static;
    margin: 30px auto 0;
    width: 180px;

  }
  .bottom-social-icon{
    padding: 8px 10px;
  }
  .contect-footer{
    margin-top: 150px;
  }
  .left-bar span{
    font-size: 50px;
  }
}

@media(max-width:768px) {

  .contact-box {
    padding: 15px;
  }

  .btnn {
    width: 280px;
    height: 55px;
  }

  .left-bar span {
    font-size: 40px;
  }
  .contect-section{
    margin: 45px 0px;
  }
  .contect-footer{
    margin-top: 100px;
  }
  

}

@media (max-width: 450px) {
  .contact-box {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .form-section {
    padding: 10px 60px 0px 60px;
  }

  .btnn {
    width: 275px;
    margin: 0 auto;
  }

  .social-inside {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .left-bar {
    justify-content: center;
    align-items: center;
  }

  .left-bar span {
    font-size: 30px;
    letter-spacing: 2px;
  }
  .rowbgimg {
    display: flex;
    justify-content: center;
    padding: 0;
  }
  .contect-section{
    margin: 60px 0px;
  }
}