* {
    text-transform: none;
}

main {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container1 {
    width: 80%;
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-areas: "cover content";
    box-shadow: -2px 0px 33px 0px rgba(0, 0, 0, 0.75);
    border-radius: 10px;
}

.cover1 {
    grid-area: cover;
    height: 60vh;
    background-image: url('../images/home-img.svg');
    background-size: cover;
    background-position: center center;
}

.cover2 {
    grid-area: cover;
    height: 60vh;
    background-image: url('../images/contact-img.svg');
    background-size: cover;
    background-position: center center;
}

.content1 {
    grid-area: content;
    background: #efefef;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    border-radius: 10px;
}

.content-body1 {
    display: flex;
    flex-direction: row;
}

.pages1 {
    width: 20%;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    color: gray;
    position: relative;
    transform: translateY(38px);
}

.pages1 span {
    margin-top: 15px;
}

.black-label1 {
    width: 80%;
    margin-top: 50px;
}

.black-label1 p {
    font-size: 13px;
    color: gray;
    width: 70%;
}

.title1 {
    font-size: 64px;
}

.crt1 {
    color: gray;
    left: 2px;
    border-bottom: 1px solid rgb(177, 177, 177);
}

.active1 {
    color: black;
    position: relative;
    transform: translateX(60px);
}

.active1::before {
    position: absolute;
    content: "";
    display: block;
    width: 67px;
    right: 117%;
    top: 45%;
    background-color: #555;
    height: .2em;
    min-height: 1px;
    z-index: 1;
    margin-top: 40px;
    margin-right: 10px;
}


/* Contact Form Start */

.container2 {
    background: #fff;
    border: none;
    border-radius: 50px;
    box-shadow: 10px 10px 50px grey;
    display: flex;
    justify-content: center;
    align-items: center
}

.box2 {
    margin: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
    background: rgb(202, 236, 252);
    width: 80%;
    /* border: 5px rgb(2, 88, 128) dotted; */
    border-width: 2px;
    border-radius: 50px;
    /* display: flex; */
    /* flex-direction: column;
    align-items: center;
    justify-content: center; */
}

form {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

input,
select {
    outline: none;
    margin: 6px;
    width: 350px;
    height: 30px;
    border: none;
    border-radius: 50px;
    padding-left: 15px;
}

select {
    margin-bottom: 2rem;
}

input:nth-child(5) {
    width: 350px;
    height: 30px;
}

input:nth-child(8) {
    margin-top: 3rem;
    padding: 0;
    width: 150px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: darkblue;
    color: #fff;
    cursor: pointer;
}

.content_1 {
    grid-area: content;
    background: #efefef;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}