*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
.desc{
    font-size: 15px;
}
.desc .txt{
    padding:20px;
    padding-top: 25px;
}
.desc .txt a{
    color: rgb(220, 220, 220);
}
.desc .txt a:hover {
    /*color: #000000;*/
    color: whitesmoke;
  }
.desc p{
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
}
.desc h1{
    font-size: 16px;
    padding-top:20px;
    padding-bottom:20px;
    letter-spacing: 2px;
    font-style: oblique;
}
.desc h4{
    height: 1px;
    background: #3b3b3b;
    width: 30%;
    margin: auto;
}
.desc h2{
    font-size: 15px;
    font-weight: normal;
    padding: 5px;
    color: #c7ae7c;
}
.subs{
    background-color: #c5c5c5;
    border-radius: 0px 0px 10px 10px;

}
.subs img{
    overflow: hidden;
    border-radius: 0px 0px 15px 15px;
    width: auto;
    margin:auto;
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 50vh;
  
}
.title{
    padding-top: 20px;
    letter-spacing: 4px;
    font-weight: 800;
}
.top{
    background-color: rgb(38,31,34,0.4);
    border-radius: 10px 10px 0px 0px;
    /*box-shadow: 0px 15px 50px 20px rgba(137,112,124) inset;*/
}
.button {
    background-color: #ffb6239f;
    border: 1px solid #dddddd;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px 5px 5px 5px;
  }
.message{
    height:20vh;
}
.ctc-wrap{
    padding-top: 12vh;
    padding-bottom: 5vh;
    width: 80%;
    height: 100%;
    min-height: 85vh;
    /*background-color: #a7a7a7;*/
    /*background-color: rgb(171, 154, 162);*/
	background-color: rgb(165, 165, 165);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.ctc-in{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 25px;
}
.ctc-in form{
    padding-top: 30px;
}
.ctc-in:nth-child(1){
    flex: 35%;
    max-width: 80%;
    margin:auto;
    /*border-left: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;*/
    border: 1px solid #dddddd;
    background-color: rgb(197, 197, 197);
    /*border-radius: 10px 0px 0px 10px;*/
    border-radius: 15px;
}
.ctc-in:nth-child(2){
    border-right: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    flex: 55%;
    background-color: rgb(197, 197, 197);
    border-radius: 0px 10px 10px 0px;
}
@media only screen and (max-width: 1625px){
    .ctc-in:nth-child(1){
        max-width: 90%;
        /*border-radius: 10px 10px 0px 0px;
        border-left: 1px solid #dddddd;
        border-top: 1px solid #dddddd;
        border-bottom: none;
        border-right: 1px solid #dddddd;*/
    }
    .ctc-in:nth-child(2){
        /*border-radius: 0px 0px 10px 10px;
        border-left: 1px solid #dddddd;
        border-top: none;
        border-bottom: 1px solid #dddddd;
        border-right: 1px solid #dddddd;*/
    } 
}
@media only screen and (max-width: 1150px){
    .ctc-wrap{
        width:90%
    }
    .ctc-in:nth-child(1){
        max-width: 100%;
        /*border-radius: 10px 10px 0px 0px;*/
    }
    .ctc-in:nth-child(2){
        border-radius: 0px 0px 10px 10px;
    }  
}
@media only screen and (max-width: 650px){
    .ctc-in:nth-child(1){
        flex: 100%;
    }
    .ctc-in:nth-child(2){
        flex: 50%;
    }  
    .message{
        height:200px;
    }
    .ctc-in form{
        padding-top: 10px;
    }
    .ctc-wrap{
        width: 95%;
    }
    .subs img{
        max-width: 100%;
    }
}
input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    background-color: rgb(220,220,220);
  }
  input[type=submit]:hover {
    background-color: #ffb423;
  }