.download-btn a {
    width: 100%;
    max-width: 200px;
}

.form-div {
    padding: 2.5rem 1.5rem;
    box-shadow: 0 5px 22px #12155225;
}

form .inputField,
form .textArea {
    width: 100%;
    padding: 0.6rem 0.5rem 0.6rem 2.5rem;
    border: 1px solid var(--light-color);
}

form .inputField:focus-visible,
form .textArea:focus-visible {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color);
}

form .inputField:focus-visible~svg path,
form .textArea:focus-visible~svg path {
    fill: var(--primary-color);
    fill-opacity: 1;
}

form .form-group {
    position: relative;
}

form .form-group img,
form .form-group svg {
    position: absolute;
    top: 1.225rem;
    left: 1.425rem;
    max-width: 1.25rem;
    max-height: 1.25rem;
}

@media screen and (min-width: 576px) {
    .form-div form {
        max-width: 85%;
    }
}

@media screen and (min-width: 1200px) {
    .form-div form {
        max-width: 75%;
    }
}

form .inputField.error,
form .requiredField.error {
    border-color: #e70000;
    box-shadow: 0 0 3px #e70000;
}

form .inputField.error~svg path,
form .requiredField.error~svg path {
    fill: #e70000;
    fill-opacity: 1;
}

span.error-msg {
    color: #e70000;
    font-weight: 500;
    font-size: 0.825rem;
    padding-left: 0.5rem;
    padding-top: 0.125rem;
    letter-spacing: 0.04rem;
}

.response {
    display: none;
    position: fixed;
    z-index: 9999;
    bottom: 2rem;
    left: 2rem;
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
}

.response.success {
    background-color: rgba(75, 181, 67, 0.8509803922);
    box-shadow: 2px 2px 10px -2px #4bb543;
}

.response.error {
    background-color: rgba(255, 51, 51, 0.8509803922);
    box-shadow: 2px 2px 10px -2px #ff3333;
}

.response p {
    color: white;
    font-size: 14px;
    letter-spacing: 0.05rem;
    line-height: 1.4;
    padding: 0.4rem 1rem;
}

.response .strip {
    position: relative;
    height: 0.25rem;
    background-color: white;
    animation: increaseWidth 5s infinite;
    -webkit-animation: increaseWidth 5s infinite;
}

@keyframes increaseWidth {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.contact-details svg,
.contact-details img {
    max-width: 22%;
    margin-bottom: 1rem;
}

.contact-details svg circle {
    fill: var(--secondary-color);
}

.contact-details p span {
    font-size: 1.15em;
    font-weight: 600;
    font-family: var(--roboto-condensed);
}

@media screen and (max-width: 767px) {

    .contact-details svg,
    .contact-details img {
        max-width: 80px;
    }
}