﻿:root {
    --primary-color-1: #317E90;
    --primary-color-1h: #3590a5;
    --primary-color-2: #42b1cb;
    --dark-color: #014b5c;
    --light-color: #98d5e4;
}

* {
    font-family: "Poppins";
    transition: all 0.5s ease;
}

body {
    margin-top: 15px;
    color: #535353;
}

a {
    color: var(--primary-color-1);
    text-decoration: none;
    cursor: pointer;
}

    a:hover {
        color: var(--primary-color-1h);
        text-decoration: 1px dotted underline;
    }

.text-primary {
    color: var(--primary-color-1) !important;
}

.header-tel {
    font-size: 14pt;
    font-weight: bold;
    padding-top: 50px;
}

    .header-tel i {
        margin-right: 15px;
        color: var(--primary-color-1);
    }

.header-button {
    padding-top: 35px;
}

.header-logo img {
    max-height: 125px;
}

.btn {
    padding: 15px 40px;
    border-radius: 0;
    border: 0;
}

    .btn:hover, .btn:focus, .btn:active, .btn:focus:focus {
        transform: translateY(-1px);
        box-shadow: none;
    }

.btn-primary {
    background-color: var(--primary-color-1);
    background: linear-gradient(0deg,var(--primary-color-1) 60%,var(--primary-color-2) 100%);
    border: solid 1px var(--primary-color-1) inset;
    color: #fff;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus {
        background-color: var(--primary-color-1h);
        background: linear-gradient(0deg,var(--primary-color-1h) 60%,var(--primary-color-2) 100%);
        border: solid 1px var(--primary-color-1) inset;
    }

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: unset;
    height: auto;
    z-index: 3;
    background-color: #fff;
}

.header-tiny {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: unset;
    height: auto;
    z-index: 3;
    background-color: #fff;
    padding: 15px 10px 10px 10px;
    border-bottom: solid 1px var(--primary-color-1);
}

    .header-tiny i {
        color: var(--primary-color-1);
    }

    .header-tiny a {
        text-decoration: none;
        cursor: pointer;
        color: var(--primary-color-1h);
    }

        .header-tiny a:hover {
            text-decoration: none;
            cursor: pointer;
            color: var(--primary-color-1);
        }

.logo {
    margin-top: 15px;
    height: 140px;
}

.menu-container {
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
}

.menu {
    background-color: var(--primary-color-1);
    background: linear-gradient(0deg,var(--primary-color-1) 0%,var(--primary-color-2) 100%);
    border-top: solid 1px var(--primary-color-1);
    overflow: hidden;
    position: relative;
}

.menu-tiny {
    color: var(--primary-color-1);
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 100;
}

.menu-tiny-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    border-bottom: solid 1px #000;
}

    .menu-tiny-menu .menu-tiny {
        color: #fff;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 3;
    }

    .menu-tiny-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu-tiny-menu li {
        padding: 0;
        margin: 0;
    }

        .menu-tiny-menu li a {
            display: block;
            text-align: center;
            font-size: 11pt;
            background-color: var(--primary-color-1);
            padding: 15px 10px;
            color: #fff;
            text-decoration: none;
        }

            .menu-tiny-menu li a:hover, .menu-tiny-menu li a:focus, .menu-tiny-menu li a:active, .menu-tiny-menu li a:active:focus {
                background-color: var(--primary-color-1h);
            }


.menu-flex-container {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .menu-flex-container li:not(:last-of-type) a {
        border-right: solid 1px var(--dark-color);
    }

    .menu-flex-container li:not(:first-of-type) a {
        border-left: solid 1px var(--light-color);
    }

    .menu-flex-container li {
        flex: 3;
        padding: 0;
        margin: 0;
    }

        .menu-flex-container li a {
            display: block;
            text-align: center;
            font-size: 11pt;
            background-color: var(--primary-color-1);
            background: linear-gradient(0deg,var(--primary-color-1) 0%,var(--primary-color-2) 100%);
            padding: 15px 10px;
            color: #fff;
            text-decoration: none;
        }

            .menu-flex-container li a:hover, .menu-flex-container li a:focus, .menu-flex-container li a:active, .menu-flex-container li a:active:focus {
                background-color: var(--primary-color-1);
                background: linear-gradient(0deg,var(--primary-color-1h) 0%,var(--primary-color-2) 100%);
            }

.sub-menu {
    border: solid 1px var(--dark-color);
    background: #fff;
    overflow: hidden;
    z-index: 4;
    position: fixed;
}

    .sub-menu ul {
        list-style: none;
        padding:0;
        margin:0;
    }

    .sub-menu li a {
        padding: 10px 10px;
        background-color: var(--primary-color-1);
        background: linear-gradient(0deg,var(--primary-color-1) 0%,var(--primary-color-2) 100%);
        text-align:center;
        display:block;
        color:#fff;
    }

    .sub-menu li:not(:last-of-type) a {
        border-bottom: solid 1px var(--dark-color);
    }

    .sub-menu li:not(:first-of-type) a {
        border-top: solid 1px var(--light-color);
    }

    .sub-menu li a:hover, .sub-menu li a:focus, .sub-menu li a:active, .sub-menu li a:active:focus {
        background-color: var(--primary-color-1);
        background: linear-gradient(0deg,var(--primary-color-1h) 0%,var(--primary-color-2) 100%);
    }

.page-header {
    background-position-x: center;
    background-position-y: center;
    height: 300px;
    position: relative;
    margin-bottom: 3rem;
}

.page-header-dimmer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.4);
    z-index: 1;
}

.page-header-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    color: #fff;
    padding-top: 80px;
    font-size: 15pt;
    text-align: center;
}

    .page-header-content h1 {
        margin-bottom: 25px;
        text-align: center;
    }

.content {
    min-height: 1000px;
    padding-top: 190px;
}

.form-group.row {
    margin-bottom: .5em;
}

.input-group-text {
    height: 100%;
}

.team img {
    border-radius: 5px;
    padding: 5px;
    background-color: #fff;
    border: solid 1px silver;
    width: 100%;
}

#slider .slide {
    height: 400px;
    overflow-y: hidden;
    position: relative;
}

#slider .slide-dimmer {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(0, 0, 0,.5);
    z-index: 1;
}

#slider .slide-img {
    background-position-x: center;
    background-position-y: center;
    display: block;
    height: 100%;
}

#slider .slide-title {
    font-size: 40pt;
    line-height: 41pt;
    margin-bottom: 15px;
    display: block;
}

#slider .carousel-caption {
    text-align: left;
    z-index: 1;
    top: 15%;
    bottom: unset;
    font-size: 17pt;
}

#slider .carousel-indicators {
    display: block;
}

.reviews {
    background-color: #3590a5;
    padding-top: 30px;
}

    .reviews a {
        color: #fff;
    }

        .reviews a:hover {
            color: #fff;
        }

    .reviews h2 {
        color: #fff;
        text-align: center;
        margin-bottom: 0;
    }

#reviews .review-content {
    text-align: center;
    font-size: 18pt;
    background-color: #3590a5;
    padding: 15px 60px 100px 60px;
    color: #fff;
    height: 340px;
}

#reviews .carousel-control-next, #reviews .carousel-control-prev {
    width: 40px;
}

#reviews .fa-quote-left {
    margin-left: -21px;
    margin-top: -10px;
}

#reviews .fa-quote-right {
    margin-right: -21px;
    margin-top: 10px;
}

.review-item {
    padding-bottom: 50px;
    font-size: 14pt;
    border-radius: 50px 0 50px 0;
}

    .review-item p {
        font-weight: 300;
    }

    .review-item span {
        font-size: 12pt;
    }

.guides {
    text-align: center;
}

    .guides dashes {
        background-image: url(/Media/bg-dash.png);
        background-position: center center;
        background-repeat: repeat-y;
        display: block;
    }

    .guides div {
        border: 5px solid var(--primary-color-1);
        border-radius: 30px;
        padding: 30px;
        margin: 0 100px 50px 100px;
        background-color: #fff;
    }

        .guides div:hover {
            border: 5px solid var(--primary-color-1h);
            transform: translateY(-4px);
        }

            .guides div:hover img {
                transform: rotate(4deg);
            }

            .guides div:hover h4 {
                font-size: 1.6rem;
            }

    .guides h2 {
        margin-bottom: 30px;
    }

    .guides h3 {
        background-color: var(--primary-color-1);
        border: solid 1px var(--primary-color-2);
        color: #fff;
        padding: 15px;
        border-radius: 15px;
        max-width: 350px;
        margin: 15px auto 30px auto;
    }

    .guides img {
        max-width: 250px;
        display: inline-block;
    }

        .guides img:first-of-type {
            background-color: #fff;
        }

    .guides p {
        margin-bottom: 15px;
        max-width: 300px;
        margin: 15px auto;
    }

.footer {
    padding-top: 50px;
    color: #fff;
}

    .footer a {
        color: #fff;
    }

.footer-1 {
    background-color: var(--primary-color-1);
    background: linear-gradient(0deg,var(--primary-color-1) 0%,var(--primary-color-2) 100%);
}

.footer-2 {
    background-color: rgba(0,0,0,1);
}

.footer-3 {
    background-color: rgba(32,32,32,1);
}

    .footer-3 img {
        height: 100px;
    }

.footer-button {
    display: inline-block;
    padding: 5px 60px;
    background-color: #fff;
    color: #317E90 !important;
    text-decoration: none;
    font-size: 18pt;
}

    .footer-button span {
        font-size: 10pt;
    }

    .footer-button hr {
        padding: 0;
        margin: 5px 0;
        background-color: #317E90;
        height: 1px;
    }

    .footer-button:hover {
        transform: translateY(-5px);
    }

.bp-y-top {
    background-position-y: top;
}

.bp-y-center {
    background-position-y: center;
}

.bp-y-bottom {
    background-position-y: bottom;
}

.dim-1 {
    background: rgb(0, 0, 0,.1) !important;
}

.dim-2 {
    background: rgb(0, 0, 0,.2) !important;
}

.dim-3 {
    background: rgb(0, 0, 0,.3) !important;
}

.dim-4 {
    background: rgb(0, 0, 0,.4) !important;
}

.dim-5 {
    background: rgb(0, 0, 0,.5) !important;
}

.dim-6 {
    background: rgb(0, 0, 0,.6) !important;
}

.dim-7 {
    background: rgb(0, 0, 0,.7) !important;
}

.dim-8 {
    background: rgb(0, 0, 0,.8) !important;
}

.dim-9 {
    background: rgb(0, 0, 0,.9) !important;
}

@media(max-width:1199px) {

    .menu-flex-container li a {
        font-size: 10pt;
        padding: 15px 5px;
    }

    .menu .container {
        max-width: none;
    }

    #slider .slide-title {
        font-size: 30pt;
        line-height: 31pt;
        margin-bottom: 10px;
    }

    #slider .carousel-caption {
        top: 10%;
        font-size: 14pt;
    }

    #reviews p {
        font-size: 16pt;
    }

    .guides div {
        padding: 30px;
        margin: 0 50px 50px 50px;
    }
}

@media(max-width:991px) {
    #reviews p {
        font-size: 14pt;
    }
}

@media(max-width:767px) {

    .menu-flex-container li a {
        font-size: 10pt;
        padding: 15px 5px;
    }

    .menu .container {
        max-width: none;
    }

    .header-logo img {
        max-height: 100px;
    }

    #slider .slide-title {
        font-size: 25pt;
        line-height: 26pt;
        margin-bottom: 10px;
    }

    #slider .carousel-caption {
        top: 5%;
        font-size: 14pt;
        display: block !important;
    }

    #reviews p {
        font-size: 12pt;
        height: 350px;
    }
}

@media(max-width:575px) {

    .logo {
        margin-top: 15px;
        height: auto;
    }

    .header-tel {
        padding-top: 15px;
    }

    .menu-flex-container li {
        flex: 1;
    }

    .team img {
        max-width: 250px;
        margin-bottom: 15px;
    }

    .team .row:not(:last-of-type) {
        padding-bottom: 20px;
    }

    .team .row:not(:last-of-type) {
        border-bottom: solid 1px silver;
    }

    #slider .slide-title {
        font-size: 20pt;
        line-height: 22pt;
        margin-bottom: 10px;
    }

    #slider .carousel-caption {
        top: 2%;
        font-size: 11pt;
        display: block !important;
    }

    #reviews p {
        font-size: 11pt;
        height: 500px;
    }
}

@media(max-width:440px) {
    .header-tiny h3 {
        font-size: 12pt;
    }

    .header-tiny i {
        font-size: 12pt;
    }

    .header-tiny a {
        font-size: 12pt;
    }

    .footer-button {
        font-size: 12pt;
    }
}
