/* GLOBALS */
    * {
        padding: 0; 
        margin: 0;
        box-sizing: border-box;
        font-family: 'Roboto', sans-serif;
    }
    a {
        font-style: none;
        text-decoration: none;
        color: #2F34E6;
    }
    h1, h2, h3, h4, h5, h6 {
        overflow-wrap: normal;
        display:inline;
    }
    ul {
        list-style-type: none;
    }
    textarea {
        resize: none;
    }

    .centerflex {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 5px;
    }

    .niceimg {
        margin: 10px;
        margin-top: 0px;
        width: 80%;
        height: 400px;
        border-radius: 15px;
        object-fit: cover;
        box-shadow: 5px 5px 5px rgba(47, 52, 230,0.5);
    }

/* END OF GLOBALS */
/* HEADER CODE */
    .header-box {
        width: 100%;
        position: relative;
        background-color: rgba(233,233,233);
        min-height: fit-content;
        height: fit-content;
    }
    .upperheadercontainer {
        display: flex;
        width: 100%;
        height: fit-content;
        justify-content: center;
    }
    .upperheader {
        width: 100%;
        max-width: 1200px;
        height: 100%;
        min-height: fit-content;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 50px 20px 50px;
    }
    .upperheader .left-logo {
        background-image: url("images/logo.png");
        background-repeat: no-repeat;
        background-size: contain;
        width: 250px;
        height: 50px;
        cursor: pointer;
    }
    .upperheader .right-buttons {
        width: 200px;
        min-width: fit-content;
        height: 50px;
        display: flex;
        align-items: center;
        padding: 10px;
    }
    .upperheader .right-buttons .booknow {
        background-color: #26077F;
        height: 35px;
        width: 100%;
        min-width: 150px;
        color: white;
        white-space: nowrap;
        font-size: 110%;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        justify-content: center;
        justify-items: center;
        align-items: center;
        letter-spacing: 1px;

        border-radius: 10px;
        box-shadow: black 2px 2px 2px;
      
    }
    .upperheader .right-buttons .contact-us {
        width: 60%;
        height: 60px;
        margin-left: 20px;
        background-color: #9326FC;
        cursor: pointer;

    }
    .lowerheader {
        height: fit-content;
        min-height: fit-content;
        padding-top: 5px;
        padding-bottom: 5px;
        width: 100%;
        background-color: rgb(232,232,232);
        display: flex;
        align-items: center;
        font-size: 1rem;
    }
    .lowerheader .buttonbox {
        display: flex;
        justify-content: center;
        width: 90%;
        margin-left: 3vw;
        flex-wrap: wrap;
    }
    .lowerheader .buttonbox li {
        position: relative;
        margin: 5px 0px 5px 0px;
        padding: 2px 20px 2px 10px;
        background-color: transparent;
        border: none;
        font-weight: bolder;
        letter-spacing: 0.8px;
        cursor: pointer;
        border-bottom: solid 2px transparent;
        padding-bottom: 5px;
        transition: all 0.3s;
    }
    .lowerheader .buttonbox li:hover > ul {
        display: block;
    }
    .lowerheader .buttonbox li ul { 
        z-index: 2;
        width: 100%;
        left: 0;
        position: absolute;
        background-color: rgb(232,232,232);
        padding: 5px;
        margin-top: 7px;
        display: none;
    }
    .lowerheader .buttonbox li ul li {
        padding-top: 10px;
        padding-bottom: 10px;
        margin-top: 0px;
        line-height: 20px;
        border-radius: 3px;
    }
    .lowerheader .buttonbox li a {
        color: inherit;
        text-decoration: none;
    }
    .lowerheader .buttonbox li:hover {
        border-color: #2F34E6;
    }
    .lowerheader .buttonbox li .fa-solid {
        padding-left:8px;
    }
/* END OF HEADER */

.outercontainer {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* START OF site-container */

.site-container {
    width: 100%;
    max-width: 1200px;
    height: fit-content;
    box-shadow: black 2px 0px 5px;
}

.aerial-imagebox {
    background-image: url("images/aerialfitting.png") !important;
}

.network-imagebox {
    background-image: url("images/networkcables.png") !important;
}

.cctvfitting-imagebox {
    background-image: url("images/cctvfitting.png") !important;
}
.tvfitting-imagebox {
    background-image: url("images/manfittingtv.png") !important;
}
.remotes-imagebox {
    background-image: url("images/tvremote1.png") !important;
}
.repairs-imagebox {
    background-image: url("images/aerialrepair.png") !important;
    background-position-y: 70% !important;
}
.smarttvfitting-imagebox {
    background-image: url("images/smarttvfitting.png") !important;
}
.imagebox {
    width: 100%;
    height: 50vh;
    min-height: 280px;
    max-height: 400px;
    background-image: url("images/home1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 50%;
    background-position-y: 30%;
}

.leftrightsplit {
    background-color: rgba(233,233,233);
    display:grid;
    grid-template-columns: 50% 50%;
    /* border-bottom: 2px solid black; */
}



.lefttext {
    padding: 10px;
    position: relative;
}

.righttext {
    position: relative;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.righttext .imgbutton {
    width: 25%;
    height: 170px;
    border: 2px solid #2F34E6;
    background-color: rgba(255,255,255,0.6);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: 5px 5px 5px rgba(47, 52, 230,0.2);
}

a.imgbutton {
    color: inherit;
}

.righttext .imgbutton img {
    height: 50%;
    margin-top: 15%;
}

.righttext .imgbutton h3 {
    width: 100%;
    text-align: center;
}

.whitefont {
    color: white;
}
/* END OF site-container */

/* START OF FORUM1 */

.largequote .mailforum1 {
    border: none;
    border-top: 2px solid #3D3D3D;
}

.mailforum1 {
    background-color: white;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: fit-content;
    display: inline-block;
    padding: 10px;
    border-radius: 1px;
    border: 2px solid #3D3D3D;

}

.mailforum1 div {
    width: 100%;
    text-align: center;
    display: inline-block;
    letter-spacing: 1px;
    margin-top: 10px;
}
.mailforum1 label {
    display: inline-block;
    width: 80%;
    margin-left: 10%;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.mailforum1 input,
.mailforum1 textarea {
    display: inline-block;
    width: 80%;
    margin-left: 10%;
    margin-bottom: 10px;
    padding: 3px;
}
.mailforum1 textarea{
    height: 150px;
}

.mailforum1 button {
    width: 60%;
    margin-bottom: 10px;
    margin-left: 20%;
    font-size: 25px;
}

/* END OF FORUM1 */


.fullbarcolor {
    width: 100%;
    height: 160px;
    min-height: fit-content;
}
.nobold {
    font-style: none;
    font-weight: 300;
}
.whitebg {
    background: white;
}
.lightgreybg {
    background-color: rgb(232,232,232);
}
.darkgreybg {
    background-color: rgb(47, 47, 47);
    color: white;
}
span.blueline {
    margin-left: calc(50% - 15px);
    margin-bottom: 15px;
    margin-top: 15px;
    display:block;
    width: 30px;
    height: 2px;
    background-color: #2F34E6;
}
.fa-check-square {
    font-size: 120%;
    margin: 0px 5px 0px 55px;
}

.gridcolums6040 {
    grid-template-columns: 60% 40%;
}
.gridcolums7030 {
    grid-template-columns: 70% 30%;
}

.padding10 {
    padding: 10px;
}

.padding20 {
    padding: 20px;
}
.padding50 {
    padding: 50px;
}


.blackfont {
    color: black;
}
.fontsize120 {
    font-size: 120%;
}

.bluegradient {
    background: rgb(101,157,255);
    background: linear-gradient(131deg, rgba(101,157,255,1) 0%, rgba(47,135,230,1) 16%, rgba(47,52,230,1) 100%);
    color: black;
}


/* Selections box */
.selectionsbox {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.selectionsbox a {
    color: inherit;
}

.selectionsbox .selection {
    width: 300px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 15px;
    text-align: center;
}
.selection img {
    width: 80%;
    height: 180px;
    margin-top: 5%; 
    border-radius: 15px;
    box-shadow: #2F34E6 1px 1px 1px;
}

.selection h3 {
    padding-top: 10px;
}

#Email {
    display: none;
}


/* Mail Response CSS */

    .statusMsg {
        width: 90%;
        margin-left: 5%;
        border-radius: 10px;
        background-color: green;
        padding: 5px;
        text-align: center;
        font-size: 120%;
        display: none;
    }
    .statusMsg.error {
        background-color: rgba(255,65,65,0.8);
        color: black;
        border: dashed 1px red;
        display: block;
    }
    .statusMsg.success {
        background-color: rgba(128,255,128,0.8);
        color: black;
        border: dashed 1px green;
        display: block;
    }

/* End of Mail Response CSS */