@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;500&display=swap');

:root {
    --dark: #212121;
    --blue-dark: #1B232E;
    --soft-blue-dark: #222A35;
    --muted: #7E7E7E;
    --white: #ffffff;
    --soft-white: #F5F5F5;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-32 {
    font-size: 32px;
}

.fs-48 {
    font-size: 48px;
}

.text-dark {
    color: var(--dark);
}

.text-white {
    color: var(--white);
}

.text-white-50 {
    color: var(--white);
    opacity: .8;
}

.text-muted {
    color: var(--muted);
}

.bg-blue-dark {
    background: var(--blue-dark);
}

.bg-soft-blue-dark {
    background: var(--soft-blue-dark);
}

.btn {
    font-weight: 500;
    font-size: 16px;
}

.fw-semibold {
    font-weight: 600;
}

.fw-black {
    font-weight: 900;
}

.mb-min-10 {
    margin-bottom: -70px;
}

.navbar-custom {
    background: var(--blue-dark);
}

.navbar-brand img {
    width: 50px;
}

.navbar-custom .nav-item a.nav-link {
    color: var(--white);
}

.navbar-custom .nav-item {
    padding-left: 20px;
}

.navbar-custom .nav-item a:hover.nav-link {
    opacity: 0.7;
}

.hero {
    background: url('../img/bg-hero.png');
    height: 100dvh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.hero .content {
    color: var(--white);
    width: 30%;
    text-align: center;
}

.hero .photo {
    width: 90px;
}

.icon-hero {
    left: 5% !important;
}

.icon-hero a:hover {
    opacity: 0.7;
}

.hero-porto {
    background: url('../img/bg-porto.png');
    height: 100dvh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.hero-contact {
    background: url('../img/bg-contact.png');
    height: 100dvh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.hero-about {
    background: url('../img/bg-about.png');
    height: 100dvh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.arrow-scrolling {
    right: 5% !important;
    text-align: end;
}

/* animation bounce */
.bounce {
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
    }
}

@-o-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -o-transform: translateY(0);
    }

    40% {
        -o-transform: translateY(-30px);
    }

    60% {
        -o-transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}


.section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-150 {
    padding-top: 150px;
}

.max-width-100 {
    max-width: 100%;
    overflow-y: hidden;
}

a.text-dark:hover {
    opacity: 0.7;
}

a.text-white:hover {
    opacity: 0.7;
}

.slide-porto-arrow .fa-angle-right {
    font-size: 1.8rem;
    padding-left: 1px;
}

.slide-porto-arrow i {
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.slide-porto-arrow i {
    position: relative;
    margin: 10px 20px 10px 0;
    cursor: pointer;
}

.slide-company-arrow .fa-angle-right {
    font-size: 1.8rem;
    padding-left: 1px;
}

.slide-company-arrow i {
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.slide-company-arrow i {
    position: relative;
    margin: 10px 20px 10px 0;
    cursor: pointer;
}

.slick-next,
.slick-prev {
    background: var(--white);
    border-radius: 30px;
    width: 40px;
    text-align: center;
    color: var(--blue-dark);
    line-height: 40px;
    height: 40px;
    z-index: 9;
}

.slick-next,
.slick-prev {
    position: absolute;
    top: 35%;
    font-size: 1.8rem;
}

.slick-next {
    right: 0;
}

.slick-next,
.slick-prev {
    position: absolute;
    top: 135%;
    font-size: 1rem;
}

.slick-disabled {
    opacity: .2;
    transition: all .2s ease-in-out;
}

.experience {
    background: linear-gradient(180deg, var(--soft-blue-dark) 75%, var(--white) 25%);
}

.box-company {
    background: var(--white);
    box-shadow: 0px 4px 10px rgba(154, 154, 154, 0.25);
}

.img-porto {
    width: 100%;
    aspect-ratio: 290 / 170;
    object-fit: cover;
    margin-bottom: 12px;
    transition: all .2s ease-in-out;
}

.img-porto:hover {
    box-shadow: 0px 8px 14px rgba(0, 0, 0, 0.2);
}

.navbar-toggler:focus {
    box-shadow: none;
}

footer {
    background: var(--blue-dark);
    padding: 30px 0;
}

.bottom-footer {
    background: var(--soft-blue-dark);
    padding: 10px 0;
    text-align: center;
    color: var(--white);
    font-size: 14px;
}

.offcanvas-bottom {
    position: absolute;
    z-index: 999;
    bottom: 0;
    left: 0;
    width: 100%;
}

.nav-pills {
    background: var(--soft-white);
    border-radius: 4px;
    overflow: hidden;
}

.nav-pills .nav-link {
    background: var(--soft-white);
    color: var(--dark);
    border-radius: 0px;
    text-align: center;
    transition: all .2s ease-in-out;
    /* margin-bottom: 14px; */
    font-size: 14px;
}

.nav-pills .nav-link:hover {
    background: var(--blue-dark);
    color: var(--white);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    border-radius: 0px;
    background: var(--blue-dark);
    color: var(--white);
    text-align: center;
}

.item-porto .img-porto {
    border-radius: 4px;
}

.item-porto a:hover {
    opacity: 1;
}

.form-control:focus {
    border-color: var(--blue-dark);
    outline: 0;
    box-shadow: none;
}

.input-group:focus-within .input-group-text {
    border-color: var(--blue-dark);
}

.count-item {
    border-bottom: 4px solid var(--white);
}

.porto {
    padding-top: 70px;
    background: url('../img/bg-hero.png');
    overflow: unset;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.bg-video {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: auto;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.video-product {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%
}

/* loader */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000;
}

.overlay .overlayDoor:before,
.overlay .overlayDoor:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: var(--blue-dark);
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
    transition-delay: 0.8s;
}

.overlay .overlayDoor:before {
    left: 0;
}

.overlay .overlayDoor:after {
    right: 0;
}

.overlay.loaded .overlayDoor:before {
    left: -50%;
}

.overlay.loaded .overlayDoor:after {
    right: -50%;
}

.overlay.loaded .overlayContent {
    opacity: 0;
    margin-top: -15px;
}

.overlay .overlayContent {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.overlay .overlayContent .caption {
    display: block;
    width: 100%;
    text-align: center;
    margin: 50px auto 0;
    cursor: pointer;
    color: #fff;
    font-weight: 400;
    padding: 12px 0;
    border-radius: 3px;
    transition: 0.2s ease;
}

.loader {
    width: 128px;
    height: 128px;
    border: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    position: relative;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .inner {
    width: 64px;
    height: 64px;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    border-radius: 50%;
    -webkit-animation: spinInner 1s linear infinite;
    animation: spinInner 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}

@keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}

/* end loader */

.scrollup {
    width: 40px;
    height: 40px;
    opacity: 0.8;
    position: fixed;
    bottom: 50px;
    right: 18px;
    display: none;
    text-indent: -9999px;
    background: url('http://seenual.com/wp-content/uploads/2016/03/icon_top.png') no-repeat;
}

@media (max-width: 768px) {
    .hero .content {
        width: 90%;
    }

    .hero-porto .row {
        padding-top: 55% !important;
    }

    .hero-about .row {
        padding-top: 30% !important;
    }

    .hero-contact .row {
        padding-top: 30% !important;
    }

    .hero-contact {
        background-position: 70% 50%;
    }

    .mb-min-10 {
        margin-bottom: 0;
        width: 100% !important;
    }

    .slide-company-arrow {
        display: none !important;
    }

    .slide-porto-arrow {
        display: none !important;
    }

    .navbar-custom .nav-item {
        padding-left: 0;
        font-size: 18px;
        text-align: center;
    }

    .navbar-nav {
        margin-top: 50px;
    }

    .count-item {
        text-align: center;
    }

    .count-item h2 {
        font-size: 42px;
    }

    .count-item p {
        font-size: 14px;
    }

    .up-size {
        font-size: 52px;
    }
}