.firstDiv {
    background-image: url('../Assets/Images/image-contact-1.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 250px;
    padding-bottom: 105px;
}

.firstDiv .headFirst {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.name {
    color: white;
    font-family: "EYExtraBold";
    font-size: 84px;
    line-height: 100.8px;
    text-transform: uppercase;
}

.personName {
    font-size: 24px;
    line-height: 28.8px;
    font-family: "EYExtraLight";
    color: white;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.personName::before,
.personName::after {
    display: inline-block;
    content: "";
    border-top: 1px solid white;
    width: 104px;
    margin: 0 1rem;
    transform: translateY(-8px);
}

.description {
    color: white;
    font-family: "EYExtraLight";
    font-size: 24px;
    line-height: 28.8px;
    text-align: center;
    margin-bottom: 64px;
}

.contactInfo {
    margin-bottom: 40px;
}

.contactInfo.last {
    margin-bottom: 0px;
}

.contactInfo i {
    color: #89BE6F;
    margin-right: 24px;
}

.contactInfo p {
    font-size: 18px;
    line-height: 21.6px;
    font-family: "EYExtraLight";
    color: white;
    text-transform: uppercase;
}

.contactInfo h1 {
    font-size: 24px;
    line-height: 28.8px;
    font-family: "EYExtraBold";
    color: white;
}

.contactInfo img {
    margin-right: 10px;
    width: 30px;
}

.newContactForm {
    background-color: white;
    border-radius: 0px;
    padding: 34px;
}

.newContactForm label {
    font-size: 14px;
    line-height: 16.8px;
    font-family: "EYExtraLight";
    color: black;
}

.newContactForm input,
.newContactForm input:hover,
.newContactForm input:focus,
.newContactForm textarea,
.newContactForm textarea:hover,
.newContactForm textarea:focus {
    font-size: 16px;
    line-height: 19.2px;
    font-family: "EYExtraLight";
    color: black;
    background-color: #F5F7FA;
    border: 1px solid #E1E6ED;
    border-radius: 0px;
    padding: 14px;
    outline: none;
}

.newContactForm select,
.newContactForm select:hover,
.newContactForm select:focus {
    font-size: 16px;
    line-height: 19.2px;
    font-family: "EYExtraLight";
    color: black;
    background-color: #F5F7FA;
    border: 1px solid #E1E6ED;
    border-radius: 0px;
    padding: 14px;
    width: 100%;
    outline: none;
    appearance: none;
    background-image: url('../Assets/Images/arrow-down.svg');
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 1rem auto;
    /* margin-bottom: 0px; */
}


.newContactForm .sendBTN {
    color: white;
    font-family: "EYLight";
    font-size: 16px;
    line-height: 19.2px;
    margin-top: 20px;
    text-transform: uppercase;
    padding: 14px 24px;
    background-color: #226200;
    border: none;
    border-radius: 0px;
}

.mapContent img:first-child {
    width: 100%;
    object-fit: cover;
}

.mapContent i {
    color: #226200;
    margin-right: 10px;
}


.mapContent .iconmap {
    color: #226200;
    margin-right: 10px;
    z-index: 2;
    position: relative;
    margin: 0px;
}

.mapContent p {
    font-size: 18px;
    line-height: 21.6px;
    font-family: "EYExtraLight";
    color: #737373;
    text-transform: uppercase;
    /* margin-bottom: 0px; */
}

.mapContent h1 {
    font-size: 24px;
    line-height: 28.8px;
    font-family: "EYExtraBold";
    color: black;
    /* margin-bottom: 0px; */
}

.addressText {
    margin-right: 100px;
    margin-left: 44px;
}

.pulseLogo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulseContainer {
    width: 84px;
    height: 84px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.pulse {
    width: 84px;
    height: 84px;
    background: -webkit-linear-gradient(to right, rgba(137, 190, 111, 0.7), rgba(137, 190, 111, 0.2));
    background: linear-gradient(to right, rgba(137, 190, 111, 1), rgba(137, 190, 111, 1));
    /* background: linear-gradient(to right, #fcbb04, #fffc00); */
    border-radius: 60px;
    display: inline;
    position: absolute;
}

.pulse-fade {
    animation: pulse-fade 2s infinite;
}


@keyframes pulse-fade {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

@media (max-width: 480px) {
    .firstDiv {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 20%;
        /* height: 750px; */
        /* margin-top: 25px; */
        padding-top: 150px;
        padding-bottom: 80px;
    }

    .name {
        font-size: 38px;
        line-height: 45px;
        text-align: center;
    }

    .personName {
        font-size: 14px;
        line-height: 14px;
        text-align: center;
    }

    .personName::before,
    .personName::after {
        /* width: 20px; */
        width: 0px;
        transform: translateY(-5px);
    }

    .description {
        font-size: 16px;
        line-height: 26px;
    }

    .contactInfo.last {
        margin-bottom: 40px;
    }

    .contactInfo p {
        font-size: 16px;
        line-height: 12px;
    }

    .contactInfo h1 {
        font-size: 20px;
        line-height: 22px;
    }

    .addressText {
        /* margin-right: 100px;
        margin-left: 44px; */
        margin: 30px 20px;
    }

    .mapContent .row{
        width: 100%;
    }

    .mapContent .row .col-xl-6{
      padding-right: 0px;
    }

    .mapContent p{
        font-size: 16px;
        margin-bottom: 10px;
    }

    .mapContent h1{
        font-size: 16px;
        line-height: 25px;
    }

    .mapContent img:first-child{
        width: 102%;
    }
}