body {
    margin: 0rem;
    padding: 0rem;
    background-color: #99C5B5;
    
}

.logo {
    align-items: center;
    font-size: 25px;
    display: flex;
    justify-content: flex-start;
   
    height: 60px;
    width: 100%;
    background-color: rgb(0, 0, 0);
}
.tagline{
    text-align: center;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: rgb(67, 10, 116);
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.detail{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.details{
    height: 28rem;
    width: 25rem;
    background-color: #AFECE7;
    display: flex;
    flex-direction: column;
    animation: myAnim 2s ease-in 0s 1 normal forwards;
}

@keyframes myAnim {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: translateX(-250px);
	}

	38% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateX(0);
	}

	55% {
		animation-timing-function: ease-in;
		transform: translateX(-68px);
	}

	72% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}

	81% {
		animation-timing-function: ease-in;
		transform: translateX(-28px);
	}

	90% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}

	95% {
		animation-timing-function: ease-in;
		transform: translateX(-8px);
	}

	100% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}
}

.details h2{
    background-color: #5b618a58;
    font-family: sans-serif;
    
}

.details a{
    margin-top: 0.5rem;
    text-decoration: none;
    height: 2.5rem;
    color: #000411;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0rem 2rem 1rem 2rem;
    border-radius: 10px;
    font-weight: 500;
    
}

.details a:hover{
    background-color: rgba(62, 27, 95, 0.186);
}

.details i{
    padding-right: 0.5rem;
}

.outermost-block{
    display: flex;
    justify-content: space-around;
}

.quarey-form{
    height: 28rem;
    width: 25rem;
    background-color: #AFECE7;
    animation: myAnime 2s ease-in 0s 1 normal forwards;
}

@keyframes myAnime {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: translateX(250px);
	}

	38% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateX(0);
	}

	55% {
		animation-timing-function: ease-in;
		transform: translateX(68px);
	}

	72% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}

	81% {
		animation-timing-function: ease-in;
		transform: translateX(32px);
	}

	90% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}

	95% {
		animation-timing-function: ease-in;
		transform: translateX(8px);
	}

	100% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}
}

.quarey-form h2{
    font-family: sans-serif;
    text-align: center;
    background-color: #5b618a58;
    margin-bottom: 4rem;
}

.text{
    margin-bottom: 2.5rem;
    margin-left: 1.2rem;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 15px;
}

.quarey-form input{
    width:60%;
    height: 1.3rem;
    border-radius: 5px;
    border: 1px solid rgb(128, 128, 128);
    background-color: #AFECE7;
    
}

.quarey-form button{
    background-color: #D6D84F;
    color: rgb(0, 0, 0);
    font-family: sans-serif;
    font-weight: 700;
    padding: 0.5rem 2rem 0.5rem 2rem;
    letter-spacing: 2px;
    border: none;
    margin-left: 1.2rem;
    border-radius: 5px;
    opacity: 0.9;
}

.quarey-form button:hover{
    opacity: 1;
}