@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --lightblue: #299379;
    --darkblue: #17254d;
    --black: #000;
    --white: #fff;
    --lightgrey: #e5e5e5;
    --darkgrey: #202020;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.Normal {
    line-height: 1.5;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 16px !important;
}

p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--blue);
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: var(--black);
}

a:visited {
    color: var(--blue);
}

a:visited:hover {
    text-decoration: none;
    color: var(--black);
}

.bi {
    font-size: 1.5em;
    padding: 0 10px;
    vertical-align: middle;
}

/*------------------------------------------------*/
/* HEADER */
/*------------------------------------------------*/

#TopHeader {
    background-color: var(--lightgrey);
}

/*------------------------------------------------*/
/* NAVBAR */
/*------------------------------------------------*/


.navbar {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    border-top: 1px solid var(--black);
    padding: 0;
    z-index: 100;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.bg-dark {
    background-color: var(--lightgrey) !important;
}

.nav-link {
    font-size: 16px;
    display: inline-block;
    color: var(--black) !important;
    text-decoration: none;
    line-height: 40px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border-top: 5px solid transparent;
}

.nav-link:hover {
    text-decoration: none;
    color: var(--darkblue) !important;
    border-top: 5px solid var(--darkblue);
}

.nav-link:visited {
    color: var(--black);
    border-top: 5px solid transparent;
}

.nav-link:visited:hover {
    text-decoration: none;
    color: var(--darkblue) !important;
    border-top: 5px solid var(--darkblue);
}
.active .nav-link {
    border-top: 5px solid var(--darkblue);
}

.navbar-toggler {
    margin: 10px;
}

/*------------------------------------------------*/
/* HERO */
/*------------------------------------------------*/

.hero-bg {
    object-fit: cover;
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
}

.PageType_Home .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('/Portals/163/tcc2.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
}

.PageType_Normal .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('/Portals/163/tcc5.png');
    background-size: cover;
    background-position: 50% 20%;
    height: 500px;
}

/* about us */

.Id3565 .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('/Portals/163/tcc4.png');
    background-size: cover;
    background-position: 50% 10%;
}

/* pricing */

.Id3566 .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('/Portals/163/tcc5.png');
    background-size: cover;
    background-position: 50% 20%;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98%;
}

.hero-text h1,
.hero-text h2,
.hero-text h3,
.hero-text h4,
.hero-text p,
.hero-text .bi {
    color: var(--white) !important;
}

.hero-text h1 {
    font-size: 6rem;
     text-transform: uppercase;
}

/*------------------------------------------------*/
/* MAIN CONTENT */
/*------------------------------------------------*/

#MainContent {
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

/*.PageType_Home #MainContent {
    padding-top: 0;
    padding-bottom: 0;
}*/

#MainContent li {
    margin: .5rem 0;
    list-style: disc;
}

.black-border {
    border: 1px solid #000;
    padding: 0 1rem;
}

.blue-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: var(--lightblue);
    color: var(--white) !important;
    text-shadow: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.blue-button:hover {
    background-color: var(--darkblue);
    color: var(--white) !important;
    text-decoration: none;
}

.white-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: transparent;
    color: var(--white) !important;
    border: 2px solid var(--white);
    text-shadow: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.white-button:hover {
    background-color: var(--white);
    color: var(--black) !important;
    text-decoration: none;
}

/* home page buttons */

.zoom-button {
    cursor: pointer;
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.zoom-button img {
    width: 100%;
    transition: transform .5s ease;
}

.zoom-button:hover img {
    transform: scale(1.3);
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.text-overlay h2 {
    text-shadow: 2px 2px 4px rgba(0,0,0,.5);
    color: #fff;
}

.text-overlay a {
    color: #fff !important;
    text-decoration: none;
}

/*------------------------------------------------*/
/* FOOTER */
/*------------------------------------------------*/

footer {
    background-color: var(--lightgrey);
    padding-top: 2%;
    padding-bottom: 2%;
}

footer a {
    color: var(--lightblue);
    text-decoration: none;
}

footer a:hover {
    text-decoration: none;
    color: var(--white);
}

footer a:visited {
    color: var(--lightblue);
}

footer a:visited:hover {
    text-decoration: none;
    color: var(--white);
}

/*------------------------------------------------*/
/* MEDIA QUERIES */
/*------------------------------------------------*/

@media screen and (min-width: 992px) {
    .dropdown-menu {
        border-radius: 0;
    }
}

@media screen and (max-width: 991px) {
    .nav-item {
        margin: 0;
        text-align: center;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .hero-text {
        top: 40%;
    }

    .Page-Home .hero-text {
        top: 65%;
    }
}

@media screen and (max-width: 767px) {

    .hero-text {
        top: 60%;
        width: 98%;
    }

    .Page-Home .hero-text {
        top: 70%;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}
