@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');
/* font-family: "Google Sans", sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');
/* font-family: "Libre Baskerville", serif; */

/* Color Codes
dark blue - #2257AF, rgb(34, 87, 175)
light light blue - #F2FBFD, rgb(242, 251, 253)
light blue - #54C6C5, rgb(84, 198, 197)
purple - #5B77C4, rgb(91, 119, 196) */

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
}
body
{
    background: white;
}

/* CSS Rules for JS Features */
/* Change header color on scroll */
.header.header-scrolled
{
    background-color: rgba(242, 251, 253, 0.95);
}

/* CSS Rules for header */
.header
{
    border: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 10px 5% 10px 10%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    z-index: 2;
    transition: all .5s ease-in-out;
}
.header .logo
{
    border: transparent;
    width: 10%;
}
.header .logo img
{
    border: transparent;
    width: 100%;
    display: grid;
    margin: auto;
}
.header .navlinks
{
    border: transparent;
    width: 40%;
    margin: 0 10%;
    padding: 0 1%;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.header .navlinks a
{
    border: transparent;
    margin: 0 1%;
    color: black;
    font-size: 18px;
    font-weight: 450;
    transition: all .5s ease-in-out;
}
.header .navlinks a:hover
{
    text-decoration: overline;
}
.header .navlinks .vertical-lines
{
    width: 3px;
    height: max-content;
    background-color: #54C6C5;
    color: transparent;
}
.header .navlinks a.color-active
{
    text-decoration: overline;
    color: #2257AF;
    transition: all .5s ease-in-out;
}
.header .nav-contact-btn
{
    color: #2257AF;
    font-weight: 700;
    border: inset 3px #2257AF;
    border-radius: 5px;
    display: grid;
    width: fit-content;
    padding: 1%;
    transition: all .5s ease-in-out;
}
.header .nav-contact-btn:hover
{
    background-color: #2257AF;
    color: #ffffff;
}
@media screen and (max-width: 600px)
{
    .header
    {
        min-width: 0;
        flex-direction: column;
        padding: 10px 0;
    }
    .header .logo
    {
        width: 25%;
        margin: 5% auto 3%;
    }
    .header .logo img
    {
        display: grid;
        width: 100%;
    }
    .header .navlinks
    {
        margin: auto;
        width: 75%;
    }
    .header .navlinks a
    {
        font-weight: 400;
        margin: 5px 0;
    }
    .header .nav-contact-btn
    {
        display: none;
    }
}

/* CSS Rules for Cover & Hero Image */
.cover
{
    border: transparent;
    width: 100%;
    margin: auto;
    padding: 5% 10%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0.55)), url(/images/Habtec_International_Limited_Landing_Page.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .5s ease-in-out;
}
.cover .cover-txt
{
    border: transparent;
    width: fit-content;
    margin: 32% auto 0;
}
.cover .cover-txt h1
{
    border: transparent;
    width: fit-content;
    margin: auto;
    display: grid;
    font-size: 40px;
    letter-spacing: 10px;
    background-image: linear-gradient(to right, #54C6C5 0%, #54C6C5 50%, #F2FBFD 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.cover .cover-txt p
{
    border: transparent;
    width: 65%;
    display: grid;
    font-size: 15px;
    text-align: center;
    margin: 1.5% auto 0;
    color: white;
    font-family: "Libre Baskerville", serif;
}
.cover .cover-txt .cover-btn
{
    color: #54C6C5;
    text-align: center;
    font-weight: 800;
    border: transparent;
    width: fit-content;
    display: grid;
    position: relative;
    margin: auto;
    padding: 1% 0;
    animation: downarrow 1.5s infinite;
    transition: all .5s ease-in-out;
}
.cover .cover-txt .cover-btn img
{
    width: 8%;
    margin: auto;
}
@keyframes downarrow
{
    0%
    {
        top: 0;      
    }
    50%
    {
        top: 5px;
    }
    100%
    {
        top: 0;
    }
}
@media screen and (max-width: 600px)
{
    .cover
    {
        min-width: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0.8)), url(/images/Habtec_International_Limited_Landing_Page.jpg);
        padding: 5% 2%;
        overflow: hidden;
    }
    .cover .cover-txt
    {
        margin: 95% auto 10%;
        text-align: center;
    }
    .cover .cover-txt h1
    {
        margin: 0 auto 5%;
        width: 100%;
        font-size: 50px;
        letter-spacing: 0;
    }
    .cover .cover-txt p
    {
        width: 85%;
        font-size: 12px;
        letter-spacing: 1px;
        text-align: center justify;
    }
    .cover .cover-txt .cover-btn
    {
        margin: 5% auto 0;
    }
}

/* CSS Rules for VMV Section */
.VMV
{
    border: transparent;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: top center;
    transition: all .5 ease-in-out;
}
.VMV .VMV-txt
{
    border: transparent;
    width: 50%;
    padding: 2% 4%;
}
.VMV .VMV-txt .vision, .VMV .VMV-txt .mission, .VMV .VMV-txt .values
{
    border: transparent;
}
.VMV .VMV-txt .values ul
{
    border: transparent;
    margin: 0 0 0 5%;
    list-style-image: url(/images/Habtec_Right_Arrow.png);
}
.VMV .VMV-txt .vision h2, .VMV .VMV-txt .mission h2, .VMV .VMV-txt .values h2
{
    color: #54C6C5;
    font-size: 35px;
    margin: 5% 0 1%;
}
.VMV .VMV-txt .vision p, .VMV .VMV-txt .mission p, .VMV .VMV-txt .values p
{
    text-align: justify;
    padding-bottom: 2%;
}
.VMV .about-us-txt
{
    border: transparent;
    width: 50%;
    padding: 10% 3%;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.55)), url(/images/Habtec_-_Engine_Room_\(Photo_by_Derwin_Edwards\).jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.VMV .about-us-txt h2
{
    color: #54C6C5;
    font-size: 35px;
    width: 100%;
    margin: 0 auto 5%;
}
.VMV .about-us-txt p
{
    border: transparent;
    width: 100%;
    background-image: linear-gradient(to bottom, #ffffff 0%, #ffffff 65%, #000000 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.VMV .about-us-txt .about-us-btn
{
    border: inset 4px #F2FBFD;
    border-radius: 5px;
    color: #F2FBFD;
    padding: 2%;
    font-weight: 500;
    display: grid;
    width: fit-content;
    margin: 5% auto 0;
    transition: all .5s ease-in-out;
}
.VMV .about-us-txt .about-us-btn:hover
{
    background-color: #F2FBFD;
    color: #000000;
}
@media screen and (max-width: 600px)
{
    .VMV
    {
        min-width: 0;
        flex-direction: column;
    }
    .VMV .VMV-txt
    {
        width: 100%;
        padding: 7%;
    }
    .VMV .VMV-txt .values ul
    {
        margin: 0 0 0 10%;
    }
    .VMV .VMV-txt .vision h2, .VMV .VMV-txt .mission h2, .VMV .VMV-txt .values h2
    {
        text-align: center;
        font-size: 30px;
        margin: 15% auto 5%;
    }
    .VMV .about-us-txt
    {
        padding: 25% 3%;
        width: 100%;
        background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.55)), url(/images/Habtec_-_Engine_Room_\(Photo_by_Derwin_Edwards\).jpg);
    }
    .VMV .about-us-txt h2
    {
        margin: 0 auto 10%;
    }
    .VMV .about-us-txt .about-us-btn
    {
        margin: 10% auto 0;
    }
}

/* CSS Rules for Services */
.services
{
    border: transparent;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.services .services-img
{
    border: transparent;
    width: 50%;
    padding: 10% 3%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.55)), url(/images/Habtec_International_services.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.services .services-img p
{
    width: 100%;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
}
.services .services-img .reach-btn
{
    border: inset 4px #F2FBFD;
    border-radius: 5px;
    color: #F2FBFD;
    padding: 2%;
    font-weight: 500;
    display: grid;
    width: fit-content;
    margin: 5% auto 0;
    transition: all .5s ease-in-out;
}
.services .services-img .reach-btn:hover
{
    background-color: #F2FBFD;
    color: #000000;
}
.services .services-txt
{
    border: transparent;
    width: 50%;
    padding: 5% 4%;
}
.services .services-txt h2
{
    color: #54C6C5;
    font-size: 35px;
    margin: 5% 0 1%;
}
.services .services-txt p
{
    text-align: justify;
    padding-bottom: 2%;
}
.services .services-txt ul
{
    border: transparent;
    margin: 0 0 0 5%;
    list-style-image: url(/images/Habtec_Right_Arrow.png);
}
@media screen and (max-width: 600px)
{
    .services
    {
        min-width: 0;
        flex-direction: column-reverse;
    }
    .services .services-img
    {
        padding: 30% 3%;
        width: 100%;
    }
    .services .services-txt
    {
        width: 100%;
        padding: 7% 7% 15%;
    }
    .services .services-txt h2
    {
        text-align: center;
        font-size: 30px;
        margin: 15% auto 5%;
    }
}

/* CSS Rules for OEM Section */
.OEM
{
    border: transparent;
    width: 100%;
    transition: all .5s ease-in-out;
}
.OEM h2
{
    border: transparent;
    width: fit-content;
    color: #54C6C5;
    font-size: 35px;
    margin: 7% auto 1%;
    text-align: center;
}
.OEM .OEM-div
{
    border: transparent;
    width: 100%;
    padding: 0 0 0 15%;
    margin: auto;
    overflow: hidden;
    position: relative;
    display: inline-block;
}
.OEM .OEM-div img
{
    width: 150%;
    display: block;
    position: relative;
    animation: company-animate 25s infinite;
}
@keyframes company-animate
{
    0%
    {
        left: 0;
    }
    50%
    {
        left: -65%;
    }
    100%
    {
        left: 0;
    }
}
.OEM .OEM-div::after
{
    content: ""; 
    position: absolute; 
    inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */ 
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 15%,rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}
@media screen and (max-width: 600px)
{
    .OEM
    {
        min-width: 0;
    }
    .OEM h2
    {
        font-size: 25px;
        width: 70%;
        margin: 15% auto 5%;
    }
    .OEM .OEM-div img
    {
        width: 500%;
        animation: company-animate 70s infinite;
    }
    @keyframes company-animate
    {
        0%
        {
            left: 0;
        }
        50%
        {
            left: -420%;
        }
        100%
        {
            left: 0;
        }
    }
}

/* CSS Rules for Clients Section */
.clients
{
    border: transparent;
    width: 100%;
    transition: all .5s ease-in-out;
}
.clients h2
{
    border: transparent;
    width: fit-content;
    color: #54C6C5;
    font-size: 35px;
    margin: 7% auto 1%;
    text-align: center;
}
.clients .clients-div
{
    border: transparent;
    width: 50%;
    padding: 0 0 0 4%;
    margin: auto;
    overflow: hidden;
    position: relative;
    display: block;
}
.clients .clients-div img
{
    width: 100%;
    display: block;
    position: relative;
    animation: clients-animate 25s infinite;
}
@keyframes clients-animate
{
    0%
    {
        left: 0;
    }
    50%
    {
        left: -10%;
    }
    100%
    {
        left: 0;
    }
}
.clients .clients-div::after
{
    content: ""; 
    position: absolute; 
    inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */ 
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 15%,rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}
@media screen and (max-width: 600px)
{
    .clients
    {
        min-width: 0;
    }
    .clients h2
    {
        font-size: 25px;
        width: 70%;
        margin: 15% auto 5%;
    }
    .clients .clients-div
    {
        width: 60%;
    }
    .clients .clients-div img
    {
        width: 200%;
        animation: clients-animate 40s infinite;
    }
    @keyframes clients-animate
    {
        0%
        {
            left: 0;
        }
        50%
        {
            left: -120%;
        }
        100%
        {
            left: 0;
        }
    }
}

/* CSS Rules for Footer Section */
.footer
{
    border: transparent;
    border-radius: 15px 15px 0 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(/images/Habtec_Footer_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 100%;
    margin: 10% auto 0;
    padding: 5% 2% 2%;
    display: flex;
    justify-content: space-evenly;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.footer .more-info
{
    border: transparent;
    width: 30%;
}
.footer .more-info .footer-logo
{
    width: 50%;
}
.footer .more-info .more-info-txt
{
    border: transparent;
    width: 100%;
    margin: 7% auto 0;
}
.footer .more-info .more-info-txt .more-info-txt-div
{
    border: transparent;
    width: 100%;
    padding: 2%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.footer .more-info .more-info-txt .more-info-txt-div img
{
    width: 7%;
    margin-right: 5%;
}
.footer .more-info .more-info-txt .more-info-txt-div h4
{
    color: #54C6C5;
    text-align: left;
    width: 93%;
}
.footer .map
{
    border: transparent;
    border-radius: 10px;
    overflow: hidden;
    width: 40%;
}
.footer .map iframe
{
    width: 100%;
    height: 100%;
}
.footer .trademark
{
    border: transparent;
    padding: 0.5%;
    width: 20%;
    align-self: flex-end;
}
.footer .trademark .enclosure
{
    border: transparent;
    width: 60%;
    padding: 5% 0;
    margin: auto;
    display: grid;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.footer .trademark .enclosure:hover
{
    cursor: pointer;
    img
    {
        width: 30%;
        animation: scale 3s infinite;
    }
    h4,h3
    {
        bottom: 0;
    }
}
@keyframes scale
{
    0%
    {
        transform: scale(1.0);
    }
    50%
    {
        transform: scale(1.1);
    }
    100%
    {
        transform: scale(1.0);
    }
}
.footer .trademark .enclosure img
{
    width: 50%;
    margin: auto;
    transition: all .5s ease-in-out;
}
.footer .trademark .enclosure h4
{
    color: #54C6C5;
    text-align: center;
    position: relative;
    bottom: -100px;
    font-size: small;
    transition: all .5s ease-in-out;
}
.footer .trademark .enclosure h3
{
    text-align: center;
    background-image: linear-gradient(to right, #54C6C5 0%, #ffffff 80%,#ffffff 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    position: relative;
    bottom: -100px;
    font-size: medium;
    transition: all .5s ease-in-out;
}
@media screen and (max-width: 600px)
{
    .footer
    {
        min-width: 0;
        flex-direction: column;
    }
    .footer .more-info
    {
        display: grid;
        width: 90%;
        margin: auto;
    }
    .footer .more-info .footer-logo
    {
        display: grid;
        margin: 5% auto 3%;
    }
    .footer .more-info .more-info-txt .more-info-txt-div
    {
        justify-content: space-evenly;
        align-items: top center;
    }
    .footer .more-info .more-info-txt .more-info-txt-div img
    {
        width: 10%;
        margin-left: 5%;
    }
    .footer .more-info .more-info-txt .more-info-txt-div h4
    {
        font-size: 15px;
        width: 90%;
    }
    .footer .map
    {
        width: 90%;
        height: 30vh;
        margin: 5% auto 0;
    }
    .footer .trademark
    {
        width: 50%;
        margin: 3% auto 0;
    }
}

/* CSS Rules for Copyright Section */
.copyright
{
    border: transparent;
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(/images/Habtec_Footer_bg.jpg);
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    padding: 0.5% 0;
    transition: all .5s ease-in-out;
}
.copyright h4
{
    border: transparent;
    width: fit-content;
    margin: auto;
    background-image: linear-gradient(to right, #54C6C5 0%, #54C6C5 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
@media screen and (max-width: 600px)
{
    .copyright
    {
        min-width: 0;
        padding: 2% 10% 5%;
    }
    .copyright h4
    {
        font-size: 12px;
        text-align: center;
    }
}

/* CSS Rules for About Us Page */
.about-cover
{
    border: transparent;
    width: 100%;
    margin: auto;
    padding: 5% 10%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0.55)), url(/images/Habtec_International_Limited_Landing_Page.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .5s ease-in-out;
}
.about-cover .about-cover-txt
{
    border: transparent;
    width: fit-content;
    margin: 15% auto 0;
}
.about-cover .about-cover-txt h2
{
    border: transparent;
    width: fit-content;
    margin: auto;
    display: grid;
    font-size: 40px;
    letter-spacing: 10px;
    background-image: linear-gradient(to right, #54C6C5 0%, #54C6C5 50%, #F2FBFD 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;   
}
@media screen and (max-width: 600px)
{
    .about-cover
    {
        min-width: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0.8)), url(/images/Habtec_International_Limited_Landing_Page.jpg);
        padding: 5% 2%;
        overflow: hidden;
    }
    .about-cover .about-cover-txt
    {
        margin: 90% auto 10%;
        text-align: center;
    }
    .about-cover .about-cover-txt h2
    {
        margin: 0 auto 5%;
        width: 100%;
        font-size: 35px;
        letter-spacing: 0;
    }
}

/* CSS Rules for About Pg Section */
.about-pg
{
    border: transparent;
    width: 100%;
    transition: all .5s ease-in-out;
}
.about-pg .about-pg-txt
{
    border-top: inset 5px #54C6C5;
    width: 70%;
    margin: 4% auto 0;
    padding: 1% 1% 0;
}
.about-pg .about-pg-txt p
{
    text-align: justify;
}
.about-pg .about-pg-SH
{
    border: transparent;
    width: 100%;
    margin: 5% auto 0;
    display: flex;
    justify-content: space-around;
    align-items: top center;
}
.about-pg .about-pg-SH .about-pg-SH-1
{
    border: transparent;
    width: 50%;
}
.about-pg .about-pg-SH .about-pg-SH-1 h2, .about-pg .about-pg-SH .about-pg-SH-2 h2
{
    color: #54C6C5;
    font-size: 30px;
    text-align: center;
    margin: 5% 0 3%;
}
.about-pg .about-pg-SH .about-pg-SH-1 img
{
    width: 100%;
}
.about-pg .about-pg-SH .about-pg-SH-2
{
    border: transparent;
    width: 50%;
    text-align: center;
    padding: 10% 3%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.55)), url(/images/Habtec_HR.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.about-pg .about-pg-SH .about-pg-SH-2 p
{
    color: #ffffff;
    margin-top: 10%;
}
@media screen and (max-width: 600px)
{
    .about-pg
    {
        min-width: 0;
    }
    .about-pg .about-pg-txt
    {
        margin: 10% auto 0;
    }
    .about-pg .about-pg-SH
    {
        flex-direction: column-reverse;
        margin: 7% auto 5%;
    }
    .about-pg .about-pg-SH .about-pg-SH-1
    {
        width: 100%;
        margin: 5% auto 5%;
    }
    .about-pg .about-pg-SH .about-pg-SH-2
    {
        width: 100%;
        margin: auto;
    }
}

/* CSS Rules for Contact Us Page */
.contact-cover
{
    border: transparent;
    width: 100%;
    margin: auto;
    padding: 5% 10%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0.55)), url(/images/Habtec_Contact_Us.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .5s ease-in-out;
}
.contact-cover .contact-cover-txt
{
    border: transparent;
    width: fit-content;
    margin: 15% auto 0;
}
.contact-cover .contact-cover-txt h2
{
    border: transparent;
    width: fit-content;
    margin: auto;
    display: grid;
    font-size: 40px;
    letter-spacing: 10px;
    background-image: linear-gradient(to right, #54C6C5 0%, #54C6C5 50%, #F2FBFD 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;   
}
@media screen and (max-width: 600px)
{
    .contact-cover
    {
        min-width: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0.8)), url(/images/Habtec_Contact_Us.jpg);
        padding: 5% 2%;
        overflow: hidden;
    }
    .contact-cover .contact-cover-txt
    {
        margin: 90% auto 10%;
        text-align: center;
    }
    .contact-cover .contact-cover-txt h2
    {
        margin: 0 auto 5%;
        width: 100%;
        font-size: 35px;
        letter-spacing: 0;
    }
}

/* CSS Rules for Contact Info Section */
.heading-title
{
    border: transparent;
    margin: 5% auto 1%;
    padding: 0 15%;
}
.heading-title h1
{
    font-size: 50px;
    color: #54C6C5;
    text-align: center;
    transition: all .5s ease-in-out;
    animation: flash 2s infinite;
}
@keyframes flash
{
    0%
    {
        text-shadow: none;
    }
    50%
    {
        text-shadow: 5px 5px 15px;
    }
    100%
    {
        text-shadow: none;
    }
}
.contact-info
{
    border: transparent;
    width: 100%;
    transition: all .5s ease-in-out;
}
.contact-info form
{
    border: transparent;
    background-image: url(/Images/CT-Hero-2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    width: 60%;
    padding: 5% 4% 3%;
    margin: auto;
    display: grid;
}
.contact-info input[type=text]
{
    border: 3px inset #54C6C5;
    border-radius: 5px;
    width: 100%;
    padding: 1%;
    margin: 1% 0;
}
.contact-info textarea
{
    border: 3px inset #54C6C5;
    border-radius: 5px;
    width: 100%;
    padding: 1%;
    margin: 1% 0;
}
.contact-info input[type=submit]
{
    border: 3px outset #54C6C5;
    background: none;
    border-radius: 5px;
    margin: auto;
    padding: 2% 5%;
    font-size: 15px;
    color: #54C6C5;
    font-weight: 600;
    transition: all .5s ease-in-out;
}
.contact-info input[type=submit]:hover
{
    background: #54C6C5;
    color: white;
    cursor: pointer;
}
@media screen and (max-width: 600px)
{
    .heading-title
    {
        min-width: 0;
    }
    .heading-title h1
    {
        font-size: 30px;
    }
    .contact-info
    {
        min-width: 0;
    }
    .contact-info form
    {
        width: 90%;
        padding: 10% 5% 5%;
    }
    .contact-info input[type=text]
    {
        padding: 1% 2%;
    }
    .contact-info textarea
    {
        padding: 1% 2%;
    }
}