/* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', sans-serif; }

nav {
    width: 100%;
    height: 10vh;
    position: fixed;
    top: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
}

nav img {
    float: left;
    height: 90%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 7px;
}

nav .myLinks {
    float: right;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 7px;
}

nav .myLinks ul {
    list-style: none;
}

nav .myLinks ul li{
    float: left;
    font-size: 20px;
    padding: 7px 10px;
    color: #000;
}

.myLinksMobile {
    position: fixed;
    top: 10vh;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border-top: 1px solid #111;
    display: none;
}

.myLinksMobile ul {
    list-style: none;
}

.myLinksMobile ul li{
    float: left;
    font-size: 30px;
    text-align: center;
    padding: 7px 10px;
    color: #000;
    width: 100%;
    border-bottom: 1px solid #111;
}

.myLinksMobile ul li:hover{
    background: #fff;
}

nav .burgerButton {
    float: right;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 7px;
    font-size: 3rem;
    display: none;
}

/* Hero/Banner Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bix.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero .hero-content {
    display: table;
}
.hero .hero-content p{
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}
.hero .mybtn {
    text-decoration: none;
    color: #fff;
    background: #2463EC;
    border: 1px solid #2463EC;
    padding: 7px 10px;
    border-radius: 15px;
    font-size: 24px;
    transition: .2s;
    margin-top: 30px;
    transition: .2s;
}

.hero .mybtn:hover {
    background: #fff;
    color: #2463EC;
}

/* Services Grid */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 50px 20px;
    background: #f4f4f4;
}

.service-card {
    overflow-y: auto;
    float: left;
    width: calc(100% - 30px);
    min-height: 50vh;
    margin: 15px;
    padding: 20px;
    background: white;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


.service-card img {
    float: left;
    height: 50vh;
}

.service-card p{
    padding: 20px;
    font-size: 20px;
}

.service-card .cta{
    text-decoration: none;
    color: #fff;
    background: #2463EC;
    border: 1px solid #2463EC;
    padding: 7px 10px;
    border-radius: 15px;
    font-size: 24px;
    transition: .2s;
    margin: 7px auto;
    display:table;
}

.service-card .cta:hover{
    text-decoration: none;
    color: #2463EC;
    background: #fff;
}

.service-card .cta2{
    text-decoration: none;
    color: #fff;
    background: #25D366;
    border: 1px solid #25D366;
    padding: 7px 10px;
    border-radius: 15px;
    font-size: 24px;
    transition: .2s;
    margin: 7px auto;
    display:table;
}

.service-card .cta2:hover{
    text-decoration: none;
    color: #25D366;
    background: #fff;
}

/* Contact Section */
/**
.contact {
    display: flex;
    flex-direction: column;
    padding: 50px 20px;
}
**/

.contact {
    display: table;
    width: 100%;
    background: #ddd;
}

.contact .contact-info {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bix.jpg');
    background-size: cover;
    background-position: center;
    float: left;
    width: 40%;
    height: 70vh;
    text-align: center;
    position: relative;
}
.contact .contact-info .contactBox {
    color: #fff;
    display: table;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.contact .contact-info .contactBox a{
    display: table;
    text-decoration: none;
    color: #fff;
    background: orange;
    padding: 7px 10px;
    margin: 10px auto;
    border-radius: 10px;
}
.contact .map-container{
    float: left;
    width: 60%;
    height: 70vh;
}
iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/**
.btn {
    padding: 10px 20px;
    background: #ff5722;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
**/

@media screen and (max-width: 900px) {
    .service-card img {
        width: 100%;
        height: auto;
    }
    .service-card p{
        width: 100%;
    }
    .contact .contact-info {
        width: 100%;
    }
    .contact .map-container {
        width: 100%;
    }
    nav .myLinks {
        display: none;
    }
    nav .burgerButton {
        display: block;
    }

}