﻿#contactModal {
    z-index: 2100 !important;
}

#contact-link-container {
    display: flex;
    justify-content: space-around;
}

    #contact-link-container p {
        font-weight: 600;
        text-align: center;
        margin-bottom: 10px;
    }

    #contact-link-container .background {
        border-radius: 5px;
        background-color: #d3d3d34f;
        border-radius: 10px;
        width: 300px;
        text-align: center;
    }

    #contact-link-container .contact-icon {
        font-size: 50px;
        margin: 20px;
        color: black;
    }

    #contact-link-container .btn-primary {
        font-style: normal;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

#contactModal .telephoneText {
    text-align: center;
    margin-top: 20px;
}

@media (max-width : 1052px) {
    #contact-link-container .background {
        width: 250px;
    }
}

@media (max-width : 990px) {
    #contact-link-container .background {
        width: 200px;
    }
}

/*
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) and (orientation: portrait) {
    #contact-link-container {
        flex-direction: column !important;
        align-items: center !important;
    }

        #contact-link-container p {
            margin-top: 10px;
        }
}

/*
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) and (orientation: landscape) {
    #contact-link-container {
        flex-direction: column !important;
        align-items: center !important;
    }

        #contact-link-container p {
            margin-top: 10px;
        }
}
