@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.hero {
    background-color: black;
    color: white;

}

.logo {
    /* border: 3px solid red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 120px;
    background-color: black;
    position: sticky;
    top: 0;
    z-index: 500;
}

.logo .logoImg {
    width: 300px;
}

.logo .logoImg img {
    width: 100%;
}

.requestMoreBtn button {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 700;
    border: 4px solid #15FF00;
    border-radius: 31px;
    padding: 20px 40px;
    background: transparent;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.requestMoreBtn button::after {
    content: "";
    display: block;
    background-color: #15FF00;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    z-index: -1;
    transition: 0.3s;
}


.requestMoreBtn button:hover::after {
    width: 100%;

}

.requestMoreBtn button:hover {
    border: 4px solid white;
    color: black;
}




/* ***************** Hero Section ********************** */

.hero .heroSection {
    /* border: 3px solid rgb(0, 55, 255); */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

.dogImageSection {
    /* border: 3px solid rgb(255, 0, 0); */
    width: 20%;
    overflow: hidden;
}

.dogImageSection img {
    width: 100%;
    position: relative;
    bottom: -13px;
}

.formSection {

    width: 74%;
    margin: auto;
}

.formSection form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 65px;
}

.namePhone,
.addressBreed {
    display: flex;
    flex-direction: row;
    gap: 70px;
    width: 100%;
}

.formSection .inputBox {
    width: 100%;
}

.formSection label {
    font-size: 40px;
    font-weight: 600;
    cursor: pointer;
}

.formSection input {
    font-size: 20px;
    font-weight: 400;
    padding: 16px 30px;
    background: transparent;
    border: 2px solid #15FF00;
    border-radius: 11px;
    outline: none;
    color: white;
    width: 100%;
}

.formSection button {
    background-color: #15FF00;
    color: white;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 15px;
    border: none;
    outline: none;
    cursor: pointer;
}

.formSection button {
    font-size: 20px !important;
    padding: 20px 45px !important;

}

.formSection button:hover {
    box-shadow: 2px 2px 5px whitesmoke;
    transition: 0.3s;
    color: black;
}

/* **********contact us********************** */

.contactUs {
    /* border: 2px solid red; */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 120px
}

.contactUs .fa-phone-volume {
    color: #15FF00;
    font-size: 50px;
    transform: rotate(10deg);
}

.contactUs .mobileno {
    margin: 7px 20px;
    text-transform: uppercase;
}

.contactUs .mobileno p {
    color: #15FF00;
}