﻿body {
    padding: 0;
    margin: 0;
}

.contact-heading {
    color: #038ed6;
    font-size: 18px;
}

.contact-containt {
    color: #003159;
    font-size: 43px;
    font-weight: bold;
}

.contact-icon-box {
    text-align: center;
    height:400px;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 5px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-box-shadow: 0 20px 60px 0 rgba(40, 93, 251, 0.16);
    box-shadow: 0 20px 60px 0 rgba(40, 93, 251, 0.16);
}

    .contact-icon-box .contact-icon {
        border-right: 5px dashed #038ed6;
        border-bottom: 5px solid #038ed6;
        display: inline-block;
        margin-bottom: 30px;
        padding: 10px;
        border-radius: 50%;
    }

        .contact-icon-box .contact-icon i {
            text-align: center;
            color: #fff;
            display: inline-block;
            border-radius: 50%;
            width: 120px;
            height: 120px;
            line-height: 120px;
            font-size: 50px;
            background: #038ed6;
        }

    .contact-icon-box .contact-body h5 {
        margin-bottom: 10px;
    }

    .contact-icon-box:hover {
        background: #038ed6;
        -webkit-box-shadow: 0 23px 49px 0 #0390d621;
        box-shadow: 0 23px 49px 0 #0390d621;
    }

        .contact-icon-box:hover .contact-icon {
            border-right: 5px dashed #fff;
            border-bottom: 5px solid #fff;
        }

            .contact-icon-box:hover .contact-icon i {
                background: rgba(255, 255, 255, 0.1);
            }

        .contact-icon-box:hover .contact-body h5,
        .contact-icon-box:hover .contact-body p {
            color: #fff;
        }

.form-input {
    width: 100%;
    display: block;
    border-radius: 5px;
    margin-bottom: 9px;
    padding: 18px 25px;
    border: none;
    border-radius: 5px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-box-shadow: 0 20px 60px 0 rgba(40, 93, 251, 0.16);
    box-shadow: 0 20px 60px 0 rgba(40, 93, 251, 0.16);
}

.contact-form-wrap {
    padding: 10px 0;
}

.button {
    all: unset;
    display: flex;
    align-items: center;
    position: relative;
    padding: 5px 30px;
    border: #038ed6 solid 0.15em;
    border-radius: 0.25em;
    color: #038ed6;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: border 300ms, color 300ms;
    user-select: none;
}

    .button p {
        z-index: 1;
        margin: 0 !important;
        padding: 0 !important;
    }

    .button:hover {
        color: #ffffff;
    }

    .button:active {
        border-color: #038ed6;
    }

    .button::after,
    .button::before {
        content: "";
        position: absolute;
        width: 9em;
        aspect-ratio: 1;
        background: #038ed6;
        opacity: 50%;
        border-radius: 50%;
        transition: transform 500ms, background 300ms;
    }

    .button::before {
        left: 0;
        transform: translateX(-8em);
    }

    .button::after {
        right: 0;
        transform: translateX(8em);
    }

    .button:hover:before {
        transform: translateX(-1em);
    }

    .button:hover:after {
        transform: translateX(1em);
    }

    .button:active:before,
    .button:active:after {
        background: #038ed6;
    }
