/*
Theme Name: Thorsten Child
Theme URI: https://thorsten.qodeinteractive.com
Description: A child theme of Thorsten
Author: Edge Themes
Author URI: https://qodeinteractive.com
Version: 1.0.0
Text Domain: thorsten
Template: thorsten
*/

.form-slide{
	 display: grid;
    gap: 0px; /* Adjust the gap between items as needed */
    grid-template-columns: repeat(2, 1fr); /* 4 columns by default */
}
.form-img{
	width: 100%
}
.form-img img{
	width: 100%
}
.form-details{
	width: 100%;
	background: #e9f6ff;
	margin-top: -50px;
	border-bottom: 50px solid #fff;
	padding: 0px 40px 40px 40px;
}
.form-details h2{
    font-weight: 700;
        color: #1d2f1a;

}


.form-details .form-content{
    margin-top: 60PX
}

.form-details .form-content span{
    letter-spacing: 5px;
    font-size: 13px;
        color: #1d2f1a; 
	text-transform: uppercase
    
}
.form-details .form-content p{
    font-size: 18px;
      color: #1d2f1a;
}


.buttonsradio{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
  text-align: center;
}



.buttonsradio input[type="radio"] {
  opacity: 0.01;
  z-index: 100;
}

.buttonsradio input[type="radio"]:checked+label,
.Checked+label {
 background: #ffc000;
  color: #1d2f1a;
}

.buttonsradio label {
  padding: 15px 5px;
  border: 0px solid #CCC;
  background: #1d2f1a;
  color: #fff;
  cursor: pointer;
  z-index: 90;
  /*width: 150px*/
}

.buttonsradio label:hover {
  background: #ffc000;
  color: #1d2f1a;
}

.form-details .icons{
  text-align: right;
    position: relative;
    bottom: 0;
    right: 0;
	 margin-top: 40px;
}

.form-details .icons i{
      color: #1d2f1a;
      cursor: pointer;
      padding: 5px;
      font-size: 20px
}

.form-details .icons i:hover{
      color: #ffc000;
}

@media (max-width:962px){
   .form-details .icons{
    position: relative;
    bottom: 0px;
    right: 0px;
} 
}

@media (max-width:768px){
    .form-slide{
	 display: grid;
    gap: 0px; /* Adjust the gap between items as needed */
    grid-template-columns: repeat(1, 1fr); /* 4 columns by default */
}
.form-details{

	margin-top: 0px;
	border-bottom: 0px solid #fff;
	padding: 0px 40px 40px 40px;
}
   .form-details .icons{
    margin-top: 40px;
} 
}