/* Reset CSS
 * --------------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

table {
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-weight: normal;
    font-style: normal;
}

strong {
    font-weight: bold;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

caption,
th {
    text-align: left;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
    margin: 0;
    padding: 0;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

/* GENERAL CSS
 * --------------------------------------- */

:root {
    --site-width: 1300px;
    --orange: #c85e1c;
    --green: #3c6558;
    --navy: #001f42;
    --ice-blue: #f0f7ff;
    --mint: #dcebe3;
    --beige: #fff5ef;
    --gray: #9c9c9c;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;

}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

img {
    max-width: 100%;
}

/** animated **/

.animated {
    opacity: 0;
}

.animatedParent {
    overflow: hidden;
}

@media (max-width: 590px) {
    .animated {
        /*CSS transitions*/
        -o-transition-property: none !important;
        -moz-transition-property: none !important;
        -ms-transition-property: none !important;
        -webkit-transition-property: none !important;
        transition-property: none !important;
        /*CSS transforms*/
        -o-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -webkit-transform: none !important;
        transform: none !important;
        /*CSS animations*/
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
        opacity: 1;
    }
}

/** no break **/

.nobr,
.nobr-small {
    white-space: nowrap;
}

/* general */

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/ManropeMedium.otf') format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/ManropeBold.otf') format("opentype");
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'Manrope', Arial, sans-serif;
    color: var(--navy);
    text-align: center;
    letter-spacing: 0em;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 2rem;
}


h1,
h2 {
    font-weight: 700;
}

/* colors */
.bg-ice-blue {
    background-color: var(--ice-blue);
}

.bg-mint {
    background-color: var(--mint);
}

.bg-gray {
    background-color: var(--gray);
}

.text-navy {
    color: var(--navy) !important;
}

.text-green {
    color: var(--green) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.text-silver {
    color: var(--silver) !important;
}

/** header **/
header.container-fluid {
    padding: 0;
    transition: all 0.5s ease;
    z-index: 14;
    background: #FFF;
}

header.fixed {
    top: 0;
    position: fixed;
}

header .menu-container {
    min-height: 90px;
}

header.fixed .menu-container {
    min-height: 80px;
}

header .logo-container img {
    max-width: 140px;
    max-height: 100%;
    transition: all 0.5s ease;
}

header.fixed .logo-container img {
    max-width: 110px;
}

header .logo-container a {
    display: inline-block;
    padding: 1%;
    height: 100%;
}

.nav {
    font-weight: 700;
    font-size: 1rem;
}

.nav a {
    letter-spacing: initial;
    text-decoration: none;
}

.nav a.active {
    color: var(--orange) !important;
    border-bottom: 1px solid var(--orange);
}

header .nav-pills .nav-link {
    position: relative;
    margin-right: 10px;
    border-radius: 0px;
    text-transform: none;
}

header .fa-bars {
    font-size: 1.4rem;
}

#mobile-navbar ul li {
    padding: 10px;
    text-align: left;
}

#mobile-navbar ul li a {
    position: relative;
}

#mobile-navbar ul li i {
    float: right;
}

.dropdown-toggle::after {
    content: none;
}

#header-content>div {
    max-height: 100%;
}

/** top nav **/
.top-navigation {
    z-index: 15;
    padding-bottom: 10px;
    min-height: 70px;
}

header.fixed .top-navigation {
    min-height: 60px;
}

.top-navigation .nav-pills .show>.nav-link {
    background-color: inherit;
}

/* site width */
.site-width {
    max-width: var(--site-width) !important;
    margin: 0 auto;
}

.text-underline {
    text-decoration: underline;
}

.bg-pattern {
    background-image: url("../images/pattern.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.full-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    min-height: 700px;
    height: 60vh;
}

#home-banner {
    background-image: linear-gradient(to right, var(--green) 0%, transparent 100%),
        url("../images/home\ page\ image.png");
}

#about-banner {
    background-image: linear-gradient(to right, var(--green) 0%, transparent 100%),
        url("../images/about\ us\ hero\ pic.png");
}

#services-banner {
    background-image: linear-gradient(to right, var(--green) 0%, transparent 100%),
        url("../images/services\ pic\ .png");
}

#careers-banner {
    background-image: url("../images/our\ team\ pic.png");
}

#team-banner {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%),
        url("../images/miami-skyscrapers-with-bridge-sea-day.jpg");
    background-position: center bottom;
}

#faq-banner {
    background-image: url("../images/Faq\ section\ photo.png");
}

#contact-banner {
    height: 40vh;
    min-height: 650px;
}

.bg-corner-icon {
    position: relative;
}

.bg-corner-icon::before {
    content: "";
    display: block;
    background-image: url("../images/white-favicon.png");
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: 1;
}

.bg-corner-icon>p,
.bg-corner-icon>div,
.bg-corner-icon>h3 {
    position: relative;
    z-index: 2;
}

.testimonial-card img {
    width: 55px !important;
}

.team-member .team-text {
    font-size: 1.1rem;
    line-height: 1.6rem;
}

.read-more-btn {
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
}

.read-more-btn:hover {
    text-decoration: underline;
}

h1 {
    font-size: 4rem;
    line-height: 4.5rem;
}

h2 {
    font-size: 3rem;
    line-height: 3.5rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 2rem;
}

.service-card img {
    width: 75px !important;
    max-width: unset;
}

.list-style-disc {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}


.btn {
    border-radius: 25px;
    padding: 10px 30px;
}

.btn-primary {
    background-color: var(--navy);
    border-color: var(--navy);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: var(--green) !important;
    border-color: var(--green) !important;
    box-shadow: none !important;
}

.btn-secondary {
    background-color: var(--green);
    border-color: var(--green);
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
    background-color: var(--gray) !important;
    border-color: var(--gray) !important;
}

.rounded-border {
    border-radius: 25px;
}

.border-navy {
    border: 1px solid var(--navy);
}

.divider {
    border-top: 1px solid var(--gray);
}

.at-your-side {
    background-image: url("../images/footer\ shape.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 50vh;
}

.footer-logo {
    max-width: 150px;
}

.two-col {
    column-count: 2;
}

.list-icon {
    width: 25px;
    margin-right: 10px;
}

.check-list .list-icon {
    margin-top: 3px;
}

.team-member img {
    object-fit: cover;
    width: 180px;
    height: 180px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    border: 6px solid white;
}

.team-member .card {
    margin-top: 120px;
    position: relative;
    margin-bottom: 40px;
    border-radius: 25px;
    ;
    border: 2px solid var(--navy);
    min-height: 550px;
}

.team-member .card-header {
    padding-top: 100px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

#services-slider .service-card {
    min-height: 490px;
}

#services-slider .slick-slide {
    margin: 0 10px;
    /* Adds 10px space to the left and right of each slide */
}

#services-slider .slick-list {
    margin: 0 -10px;
    /* Counteracts the margin on the first/last slides to align with the container */
}

.promise-card {
    min-height: 450px;
}

.slider-arrow {
    position: absolute;
    top: -100px;
    width: 50px;
    z-index: 10;
    cursor: pointer;
}

.slider-arrow:hover {
    transform: scale(1.1);
}

.slider-arrow.custom-prev {
    right: 75px;
}

.slider-arrow.custom-next {
    right: 16px;
}

.image-with-icon::after {
    content: "";
    display: block;
    background-image: url("../images/Logo\ in\ circle\ with\ shadow.png");
    width: 40%;
    height: 40%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.map-container {
    height: 450px;
}

#locations .small {
    line-height: 1.4;
}

#locations {
    position: relative;
}

#locations::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100% + 400px);
    background-color: var(--mint);
    background-image: url("../images/pattern.png");
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

@media (max-width: 1500px) {
    .full-banner {
        min-height: 60vh;
    }

    h1 {
        font-size: 4rem;
        line-height: 4.5rem;
    }

    .at-your-side {
        height: 500px;
    }
}


@media screen and (orientation: portrait) {

    .full-banner {
        min-height: 50vh;
    }
}

@media (max-width: 1200px) {
    h1 {
        font-size: 4rem;
        line-height: 4.5rem;
    }
}


@media (max-width: 1024px) {
    .full-banner {
        min-height: 50vh;
    }


    h1 {
        font-size: 4rem;
        line-height: 4.5rem;
    }

    .team-text {
        font-size: 1rem;
    }
}


@media (max-width: 992px) {
    .full-banner {
        height: 50vh;
        min-height: 300px;
    }

    .full-banner h2 {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }

    body {
        font-size: 1.2rem;
        line-height: 1.7rem;
    }

    #home-banner {
        background-image: url("../images/mobile\ headers\ home.png");
        background-position: center;
    }

    #about-banner {
        background-image: linear-gradient(to right, var(--green) 0%, transparent 100%),
            url("../images/About\ us\ mobile\ header.png");
    }

    #services-banner {
        background-image: linear-gradient(to right, var(--green) 0%, transparent 100%),
            url("../images/Services\ mobile\ header\ –\ 1.png");
    }

    #careers-banner {
        background-image: linear-gradient(to right top, white 0%, transparent 100%), url("../images/Careers\ mobile.png");
    }

    #team-banner {
        height: 50vh;
    }

    #faq-banner {
        background-image: url("../images/Faqs\ mobile\ header.png");
    }

    #faq-banner .btn {
        font-size: 1rem;
        display: block;
        width: 100%;
    }

    .at-your-side {
        height: 500px;
        background-size: contain;
        background-position: bottom;
    }

    .at-your-side h2,
    .at-your-side p {
        color: var(--navy);
    }

    .at-your-side .btn-outline-light {
        color: var(--navy);
        border-color: var(--navy);
    }
}

@media (max-width: 768px) {
    header .logo-container img.small {
        max-width: 140px;
    }

    h2,
    .h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .h3 {
        font-size: 1.3rem;
        line-height: 1.8rem;
    }

    footer img.logo {
        width: 170px;
    }

    .two-col {
        column-count: 1;
    }


    #contact-banner {
        height: auto;
        min-height: auto;
    }

    #services-slider .slick-list {
        margin-bottom: 120px;
    }

    #services-slider .slick-slide {
        min-height: 400px;
    }

    .slider-arrow {
        top: unset;
        bottom: -80px;
    }

    .at-your-side {
        height: 650px;
        background-image: url("../images/mobile\ footer.png");
        background-size: cover;
    }

    .at-your-side .btn{
        width: 100%;
    }
}

@media (max-width: 575px) {
    .full-banner {
        min-height: 35vh;
    }

    h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
}