/* Hero Banner
============*/
#contact-us .hero-banner .container {
    
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100%;
}
#contact-us .hero-banner .banner-wrap {
    height: 600px;
    position: relative;
}
#contact-us .hero-banner .banner-wrap a {
    border: 4px solid var(--color-blue);
    background-color: var(--color-blue);
    border-radius: 50px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    left: 55px;
    bottom: 55px;
    height: 65px;
    width: 300px;
    transition: all .25s;
    text-transform: uppercase;
}
#contact-us .hero-banner .banner-wrap a:hover {
    color: var(--color-white);
    background-color: var(--color-orange);
}
#contact-us .hero-banner .content-wrap h1 {
    font-size: 56px;
    font-weight: 800;
}
#contact-us .hero-banner .content-wrap p.top {
    margin-bottom: 70px;
}
#contact-us .hero-banner .content-wrap p {
    line-height: 28px;
    width: 400px;
}

/* Form Message
=============*/
#contact-us .send-message {
    border-bottom: 1px solid var(--color-blue);
    padding-bottom: 80px;
}
#contact-us .send-message .content-wrap {
    margin: auto;
    max-width: 820px;
}
#contact-us .send-message .content-wrap h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
}
#contact-us .send-message .form-wrap {
    display: grid;
}
#contact-us .send-message .form-wrap input {
    border-radius: 5px;
    border: 1px solid var(--color-blue);
    font-size: 20px;
    height: 60px;
    padding: 15px 25px;
    transition: all .25s;
}
#contact-us .send-message .form-wrap input:focus {
    border: 1px solid var(--color-orange);
}
#contact-us .send-message .form-wrap input:not(:last-child) {
    margin-bottom: 15px;
}
#contact-us .send-message .form-action-wrap {
    display: flex;
    column-gap: 25px;
}
#contact-us .send-message .form-action-wrap button {
    border: unset;
    background-color: var(--color-blue);
    border-radius: 6px;
    color: var(--color-white);
    font-size: 24px;
    font-weight: 700;
    transition: all .25s;
    height: 78px;
    width: 100%;
}
#contact-us .send-message .form-action-wrap button:hover {
    background-color: var(--color-orange);
}
#contact-us label.error {
    display: none !important;
}
#contact-us .send-message .message-done {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 35px;
    font-size: 22px;
    color: var(--color-blue);
}
#contact-us .send-message .message-done::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 20px;
    background-image: url(../icons/info-done.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Other Ways
===========*/
#contact-us .other-ways h2 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px
}
#contact-us .other-ways .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
#contact-us .other-ways li {
    background-image: url('../icons/phone-one.png');
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 35px;
}
#contact-us .other-ways li:not(:last-child) {
	margin-bottom: 10px;
}
#contact-us .other-ways .data {
    color: var(--color-orange);
    font-size: 18px;
    margin: 0;
}

/* Desktop
========*/
@media(max-width: 1720px) and (max-width: 1440px) {
    #contact-us .hero-banner .banner-wrap {
        height: 450px;
    }
    #contact-us .hero-banner .banner-wrap a {
        font-size: 18px;
        bottom: 40px;
        height: 50px;
        left: 40px;
        width: 220px;
    }
}

/* Laptop
=======*/
@media(max-width: 1280px) {}

/* iPad Pro
=======*/
@media (max-width: 1024px) {
    #contact-us .hero-banner .banner-wrap {
        height: 260px;
    }
    #contact-us .hero-banner .banner-wrap a {
        bottom: 30px;
        font-size: 16px;
        height: 45px;
        width: 180px;
    }
}

/* iPad
=====*/
@media(max-width: 768px) {
    /* Hero Banner */
    #contact-us .hero-banner .banner-wrap {
        height: 240px;
    }
    #contact-us .hero-banner .banner-wrap a {
        font-size: 12px;
        height: 35px;
        width: 135px;
        left: 20px;
        bottom: 20px;
    }

    /* Send Message */
    #contact-us .send-message .content-wrap {
        margin: auto;
        max-width: 700px;
    }
    #contact-us .hero-banner .content-wrap p.top {
        margin-bottom: 50px;
    }
    
    /* Contact */
    #contact-us .other-ways .col-12 {
        display: grid;
        justify-items: center;
    }
    #contact-us .other-ways .col-12:not(:last-child) {
        margin-bottom: 30px;
    }
}

/* Mobile
=======*/
@media(max-width: 576px) {
    /* Hero Banner */
    #contact-us .hero-banner .banner-wrap {
        display: grid;
        align-items: end;
        justify-items: center;
        height: 240px;
    }
    #contact-us .hero-banner .content-wrap h1 {
        font-size: 35px;
        width: 90%;
    }
    #contact-us .hero-banner .content-wrap p.top {
        margin-bottom: 35px;
    }
    #contact-us .hero-banner .content-wrap p {
        width: 90%;
    }
    #contact-us .hero-banner .banner-wrap a {
        border: 2px solid var(--color-blue);
        background-color: var(--color-blue);
        color: var(--color-white);
        position: unset;
        margin-bottom: 15px;
        font-size: 14px;
        height: 35px;
        width: 165px;
		display: none;
    }

    /* Send Message */
    #contact-us .send-message {
        padding-bottom: 20px;
    }
    #contact-us .send-message .content-wrap h2 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    #contact-us .send-message .form-wrap input {
        font-size: 16px;
        height: 50px;
        padding: 15px;
    }
    #contact-us .send-message .form-wrap {
        margin: auto;
        max-width: 100%;
        padding: 15px;
    }
    #contact-us .other-ways .content-wrap .contact-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }
    #contact-us .other-ways .content-wrap ul li {
        font-size: 16px;
        text-align: center;
        margin-bottom: 0;
    }
    #contact-us .other-ways .content-wrap ul:not(:last-child) {
        margin-bottom: 15px;
    }
    #contact-us .send-message .form-action-wrap {
        display: unset;
    }
    #contact-us .send-message .form-action-wrap button {
        font-size: 16px;
        height: 50px;
        margin-top: 15px;
    }

    /* Other ways */
    #contact-us .other-ways h2 {
        font-size: 16px;
        margin-bottom: 25px;
    }
    #contact-us .other-ways li {
        padding-left: 30px;
        background-size: 20px;
    }
	#contact-us .other-ways li:not(:last-child) {
		margin-bottom: 5px;
	}
    #contact-us .other-ways .title {
        margin-bottom: 5px;
    }
    #contact-us .other-ways .data {
        font-size: 14px;
    }
    #contact-us .other-ways .col-12:not(:last-child) {
        margin-bottom: 15px;
    }
}