﻿html {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    min-height: 100%;
}

p, b, h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0 !important;
}

.primary-color {
    color: #00adee !important;
}

* {
    box-sizing: border-box;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
    
}

@media(max-width: 768px){
    .services_modal{
        max-width:100%;
    }
}


/*Mobile responsive menu bar and button*/
.mobile-menu-btn {
    display: none;
    border: none;
    background-color: transparent;
    position: absolute;
    right: 20px;
    top: 15px;

}

.mobile-menu {
    display: none;
    background-color: #333333;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10;
}

    .mobile-menu a {
        display: block;
        color: white;
        text-decoration: none;
        padding: 20px;
    }

        .mobile-menu a:hover {
            color: #00adee;
        }



/*Back to top*/
#backToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 999; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #00adee; /* Set a background color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 5px; /* Some padding */
    border-radius: 70px; /* Rounded corners */
    font-size: 10px; /* Increase font size */
}

    #backToTopBtn:hover {
        background-color: #3dc1f2; /* Add a dark-grey background on hover */
    }



.header-menu-bg-color {
    background-color: rgba(0,0,0,0.4);
    height: 60px;
    position: relative;
}

.menu-container {
    width: 80%;
    height: 60px;
    margin: 0 auto;
    margin-right: 0px; /*margin-left:175px;*/
    text-align: left; /*right*/
    place-content: center;
    font-size: 13px;

}

.menu-item {
    display: inline-block;
    width: 160px;
    height: 60px;
    line-height: 60px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    text-align: center;
}

    .menu-item:hover {
        color: #00adee;
    }

.menu-logo {
    height: 31px;
    position: absolute;
    left: 100px; /*300px*/
    top:15px;
}


/*Index Page*/
.container-1 {
    background-color: #A2CB1D;
    padding: 10px 20px 20px 20px;
}
    
    .container-1 div {
        background-color: #cdecb0;
        border-radius: 10px;
        padding: 5px 5px 5px 10px;
        box-shadow: 2px 3px 5px gray;
        margin-top: 10px;
    }


/*Services Page*/
.height-div-20px {
    height: 20px;
    display:none;
}

.container-2 {
    height: 200px;
    position: relative;
    background-size: 100%;
    border-radius: 15px;
    transition: 1s;
    color: white;
}

    .container-2::before {
        content: ' ';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 70%;
        background: black;
        background: linear-gradient(90deg, rgba(12,11,48,1) 0%, rgba(12,11,48,0) 85%);
        border-radius: 15px;
    }

    .container-2:hover {
        cursor: pointer;
        background-size:110%;
        transition:2s;
    }

    .container-2 p{
        position:absolute;
        font-size:2vw;
        top:10px;
    }

/*    .container-2 img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        
    }*/

/*.container-2 div {
        display: none;
        position: absolute;*/
/*        top: 15px;
        left: 60px;*/
/*top: 0;
        left: 0;
        font-size: 3vw;
        font-weight: 600;
        color: white;
        
    }*/
.rightContentDiv {
    padding: 40px;
    height: 100%;
}
.gallery {
    padding-top: 10px;
    height: 100%;
    background-color: aquamarine;
}
/*Partnership Page*/
.partnershipBtn:hover {
    border: 1px solid gray;
    border-radius: 20px;
}



/*Contact Page*/
.call-us-div {
    height: 80px;
    width: 100%;
    background-color: #ededee;
    text-align: center;
    padding-top: 30px;
}

.image-container{
    text-align: center;
}



/*Footer*/
.footer-container {
    background-color: rgba(0, 0, 0, 0.9);
}

.footer-column p, .footer-column h6 {
    color: white;
}

.footer-row {
    padding-top: 20px;
    padding-bottom: 50px;
}

.footer-logo {
    height: 50px;
}



@media screen and (max-width: 1200px) {
    .menu-logo {
        left: 20px;
    }

    .menu-container {
        height: 30px;
    }

    .menu-item {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

}

/*Footer Icon*/
.icon {
    color: white;
    font-size: 25px;
    position:absolute;
    
}

/*Footer Icon text*/
.iconText {
    left: 50px;
    position: relative;
    font-size: 12px;
}

.iconText a{
    text-decoration: none;
    color: white;
}

    .iconText a:hover{
        text-decoration: none;
        color: blue;
    }

