* {
    margin: 0;
    padding: 0;
    border: 0;
}

html {
    position: relative;
    min-height: 100%;
    padding-bottom: 250px;
}

body {
    background-color: black;
    text-align: center;
    color: white;
}

.navbar-toggler {
    border-width: 5px;
    background-color: #333333;
}

.nav-item {
    padding-left: 5px;
    padding-right: 5px;
}

header {
    text-align: center;
    margin: 10px 0px 5px 0px;
}

h1 {
    color: white;
}

title {
    font-size: smaller;
}

a{
    color:#2bceff;
}

p {
    font-size: large;
    line-height: 1.8;
}

.main {
    margin-bottom: 8%;
}

.text-blue {
    color: #2bceff;
}

/* Styling related to cards */
.card {
    color: #3d3d3db9;
    font-size: 110%;
    margin-bottom: 2%;
}

.card-title {
    color: #2bceff;
    font-weight: bold;
}

.image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    background: black;
    overflow: hidden;
    margin-bottom: 3%;
}

.call {
    color: #2bceff;
    font-size: 200%;
}

.before-after-text {
    padding-top: 1%;
    padding-bottom: 1%;
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    .card {
        max-width: 1280px;
        margin: auto;
        margin-bottom: 3%;
    }
    .center {
        margin: auto;
        width: 60%;
        padding: 10px;
    }
    .centered-top {
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 400%;
    }
    .centered_title {
        position: absolute;
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 200%;
    }
    .call {
        color: #2bceff;
        font-size: 4rem;
    }
    .before-after-text {
        padding-top: 2%;
        padding-left: 2%;
        padding-right: 2%;
    }
}

/* large devices (desktops, 1280px and up) */
@media only screen and (min-width: 1280px) {
    .card {
        max-width: 1280px;
        margin: auto;
        margin-bottom: 3%;
    }
    .center {
        margin: auto;
        width: 60%;
        padding: 10px;
    }
    .centered-top {
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 800%;
    }
    .centered_title {
        position: absolute;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 300%;
    }
    .before-after-text {
        padding-top: 5%;
    }
}

/* styling for footer */
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.btn {
    height: auto;
    width: 180px;
    font-size: 1.8rem;
}

.contact {
    list-style-type: none;
    padding:10px 0px 10px 0px;
    margin: 0; 
}

.address {
    margin-bottom: 0;
}

.cp {
    text-align: center;
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 5px;
}

.social-link {
    height: 70px;
    width: 70px;
}

/* styling for accordion */
.accordion-button {
    font-weight: bolder;
}

.accordion-item {
    font-size: 2rem;
    margin-bottom: 2%;
}

.accordion-button:not(.collapsed) {
    background-color: #2bceff;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}



