@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Slab', serif;
}

a {
    text-decoration: none;
    font-family: 'Roboto Slab', serif;
}

a:hover {
    color: #e0ae77;
}

p {
    font-size: 14px;
    line-height: 1.75;
    font-family: 'Open Sans', sans-serif;
    color: #222;
}

.rounded {
    border-radius: 8px !important;
}

.btn-whatsapp {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #04D960;
    color: #FFF;
    font-size: 30px;
    border-radius: 50px;
    position: fixed;
    z-index: 9999;
    bottom: 20px;
    right: 20px;
    transition: .4s;
}

.btn-whatsapp ion-icon {
    font-size: 30px;
}

.btn-whatsapp:hover {
    color: #FFF;
    background-color: #02ce5a;
    box-shadow: 0 4px 16px -4 rgba(0,0,0,0.7);
}

.btn {
    padding: 10px 24px;
    font-weight: 700;
    color: #fff;
    border-radius: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.btn span {
    font-weight: 700;
    letter-spacing: .5px;
}

.btn ion-icon {
    margin: -16px 0 -16px 16px;
    font-size: 17px;
}

.btn.btn-primary {
    background: #38444f;
    border-color: #38444f;
    color: #fff;
    font-weight: 600;
    padding: 16px 24px;
}

.btn.btn-primary ion-icon {
    color: #e0ae77;
}

.btn.btn-primary:hover {
    background: #2c363f;
    border-color: #2c363f;
    color: #fff;
}

.btn.btn-primary-outline {
    background: transparent;
    border-color: #38444f;
    color: #38444f;
    font-weight: 600;
    padding: 16px 24px;
}

.btn.btn-primary-outline:hover {
    background: #2c363f;
    border-color: #2c363f;
    color: #fff;
}

.rotate {
    animation-name: rotate;
    animation-iteration-count: infinite;
    animation-duration: 1s;
    animation-timing-function: linear;
}

@keyframes rotate {
    0% {transform: rotateZ(0deg)}
    50% {transform: rotateZ(180deg)}
    100% {transform: rotateZ(360deg)}
}

/* header */

header {
    width: 100%;
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    top: 0;
    left: 0;
}

header .header-top {
    background: #38444f;
    padding: 10px 0;
}

header .header-top .content {
    padding: 0;
}

header .header-top .content a.link {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
}

header .header-top .content a.link ion-icon {
    color: #e0ae77;
    margin-right: 10px;
    font-size: 16px;
}

header .header-top .content .social {
    display: flex;
    align-items: center;
}

header .header-top .content .social a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 4px;
    padding: 4px 8px;
    color: #fff;
    transition: all .2s;
}

header .header-top .content .social a:hover {
    color: #e0ae77;
}

header .logo {
    display: block;
}

header .logo img {
    height: 60px;
}

header .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

header .content nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

header .content nav ul li a {
    padding: 10px 24px;
    line-height: 1;
    margin-left: 8px;
    color: #38444f;
    text-decoration: none;
    transition: all .2s;
}

header .content nav ul li a:hover {
    color: #e0ae77;
}

header .content nav ul li a.btn {
    background: #38444f;
    border-color: #38444f;
    color: #fff;
    font-weight: 600;
    padding: 16px 24px;
}

/* main */

section.home {
    padding: calc(200px + 98px) 0 calc(64px + 200px);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

section.home .content {
    padding: 48px 32px 48px 0;
    background: rgba(255, 255, 255, 0.8);
}

section.home .content h1 {
    font-size: 40px;
    color: #38444f;
    padding: 0 0 0 56px;
    border-left: 7px solid #e0ae77;
}

section.home .content h1 span {
    color: #e0ae77;
}

section.home .content p {
    font-size: 20px;
    margin: 16px 0 0;
    line-height: 1.5;
    color: #2f343b;
    padding: 0 0 0 56px;
}

section.home .content .btn {
    margin: 0 0 -110px 56px;
}

/* main */

section.section-default {
    padding: 64px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

section.section-default.overlay {
    position: relative;
}

section.section-default.overlay::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #38444f;
    opacity: .8;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

section.section-default.overlay .container {
    position: relative;
    z-index: 1;
}

section.section-default form .form-control {
    background: #cacaca;
    border: 1px solid #cacaca;
    font-size: 14px;
    color: #14161a;
    border-radius: 0;
    min-height: 56px;
    padding: 8px 24px;
}

section.section-default form .form-control:focus {
    background: #fff;
    border-color: #e0ae77;
    box-shadow: none;
}

div.section-title h2 {
    font-size: 48px;
    font-weight: 600;
    color: #38444f;
    margin: 0;
    position: relative;
}

div.section-title h2::before {
    content: '';
    width: 35px;
    height: 6px;
    border-radius: 4px;
    background: #e0ae77;
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
}

div.section-title.text-center h2::before {
    content: '';
    width: 35px;
    height: 6px;
    border-radius: 4px;
    background: #e0ae77;
    position: absolute;
    top: calc(100% + 24px);
    left: 50%;
    transform: translateX(-50%)
}

div.section-title h3 {
    font-size: 40px;
    font-weight: 600;
    color: #38444f;
    margin: 0;
    position: relative;
}

div.section-title h3::before {
    content: '';
    width: 35px;
    height: 6px;
    border-radius: 4px;
    background: #e0ae77;
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
}

div.section-title.text-center h3::before {
    content: '';
    width: 35px;
    height: 6px;
    border-radius: 4px;
    background: #e0ae77;
    position: absolute;
    top: calc(100% + 24px);
    left: 50%;
    transform: translateX(-50%)
}

.item-service {
    background: #fff;
    height: 100%;
    border-top: 4px solid #38444f;
    padding: 24px;
    display: flex;
    transition: all .4s;
}

.item-service ion-icon {
    min-width: 56px;
    font-size: 56px;
    margin-right: 24px;
    color: #e0ae77;
}

.item-service h5 {
    margin: 12px 0 16px;
    color: #38444f;
    font-size: 18px;
}

.item-service p {
    color: #888;
    line-height: 24px;
    margin: 0;
}

.item-service:hover {
    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 20%);
    border-color: #e0ae77;
}

.item-count {
    display: flex;
    align-items: center;
    padding: 24px;
}

.item-count ion-icon {
    font-size: 48px;
    margin-right: 24px;
    color: #e0ae77;
}

/* footer */

footer {
    padding: 64px 0;
    background: #38444f;
}

footer .logo {
    margin-bottom: 48px;
}

footer .logo img {
    height: 70px;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 8px;
}

footer h5 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 24px;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.75;
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
}

footer ul.social {
    display: flex;
}

footer ul.social li a {
    color: #fff;
    background: #e0ae77;
    border-radius: 100px;
    padding: 8px;
    margin-right: 8px;
}

footer .copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 36px;
    margin-top: 36px;
    border-top: 1px solid #c8d3de;
}

footer .copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.bg-light {
    background: #eeeff1 !important;
}

.toggler-menu {
    border: none;
    background: none;
    font-size: 24px;
    color: #38444f;
    cursor: pointer;
}

@media (max-width: 991px) {

    .menu-mobile {
        position: fixed;
        top: 0;
        left: -100vw;
        padding: 36px;
        background: #fff;
        box-shadow: 4px 0 8px 0 rgb(4 13 20 / 6%);
        width: 100%;
        max-width: 300px;
        min-height: 100vh;
        transition: all .4s;
        z-index: 10;
    }

    .menu-mobile.animated {
        left: 0;
    }

    .menu-mobile ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .menu-mobile ul li a {
        display: flex;
        margin-bottom: 36px;
        color: #090a0d;
        transition: .2s;
        text-decoration: none;
    }

    .menu-mobile ul li a:hover {
        color: #e0ae77;
    }

    section.home h1 {
        font-size: 46px;
    }

    div.section-title h2 {
        font-size: 30px;
    }

    section.home {
        padding: calc(160px + 98px) 0 calc(64px + 100px);
        min-height: 100vh;
    }

    section.home .content h1 {
        padding: 0 0 0 32px;
    }

    section.home .content p {
        padding: 0 0 0 32px;
    }

    section.home .content .btn {
        margin: 0 0 -110px 32px;
    }

}

@media (max-width: 540px) {

    .menu-mobile {
        max-width: 70%;
    }

}