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

@media (max-width:767px) {
    .display-3 {
        font-size: 2.8rem;
    }
}

a:hover {
    text-decoration: none !important;
}

.text-danger {
    color: #b8336a !important;
}

.text-primary {
    color: #623cea!important;
}

/* - BUTTONS - */
.btn-primary {
    color: #ffffff;
    background-color: #1d1d1d;
    border-color: #623cea;
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #623cea;
    border-color: #623cea;
}

/* - TEXT GRADIENT - */
.text-gradient1 {
    background: linear-gradient(to right, #623cea 0%, #b8336a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient2 {
    background: linear-gradient(to right, #d2c8f9 10%, #623cea 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient3 {
    background: linear-gradient(to right, #f2cfdd 10%, #b8336a 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* - LINK a class TEXT GLOBAL - */
.link1 {
    color: #f8f9fa !important;
}

.link1:hover {
    color: #ffffff !important;
}

/* - BACKGROUND COLOR - */
.bg-dark {
    background-color: #101010 !important;
}

.bg-secondary {
    background-color: #1d1d1d !important;
}

/* - NAVBAR TOP - */
.navbar_top p {
    margin-bottom: 0rem !important;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* - NAVBAR - */
.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px !important;
}

.navbar-nav .active>.nav-link {
    font-weight: 700 !important;
}

.dropdown-item {
    font-size: 10px;
}

.dropdown-menu {
    margin-top: -10px !important;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.border {
    border-bottom: 1px solid rgba(255,255,255,0.5)!important;
}

/* - ???????????????????????????????????????????????????????????? - */
.nav-link2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px !important;
    font-weight: 700;
    color: #000000;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6 !important;
    padding-bottom: 1rem !important;
}

/* - END - ???????????????????????????????????????????????????????????? - */
/* - HEIGHT GLOBAL VH - */
.vh-25min {
    min-height: 25vh;
}

.vh-35min {
    min-height: 35vh;
}

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

.vh-75min {
    min-height: 75vh;
}

.vh-100min {
    min-height: 100vh;
}

/* - PADDING GLOBAL - */
.pt-sm {
    padding-top: 50px;
}

.pb-sm {
    padding-bottom: 50px;
}

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

.pb-md {
    padding-bottom: 100px;
}

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

.pb-lg {
    padding-bottom: 150px;
}

.pt-xl {
    padding-top: 200px;
}

.pb-xl {
    padding-bottom: 200px;
}

@media (max-width:767px) {
    .pt-sm {
        padding-top: 35px;
    }

    .pb-sm {
        padding-bottom: 35px;
    }

    .pt-md {
        padding-top: 70px;
    }

    .pb-md {
        padding-bottom: 70px;
    }

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

    .pb-lg {
        padding-bottom: 100px;
    }

    .pt-xl {
        padding-top: 130px;
    }

    .pb-xl {
        padding-bottom: 130px;
    }
}

/* - MARGIN GLOBAL - */
.mt-sm {
    margin-top: 50px;
}

.mb-sm {
    margin-bottom: 50px;
}

.mt-md {
    margin-top: 100px;
}

.mb-md {
    margin-bottom: 100px;
}

.mt-lg {
    margin-top: 150px;
}

.mb-lg {
    margin-bottom: 150px;
}

.mt-xl {
    margin-top: 200px;
}

.mb-xl {
    margin-bottom: 200px;
}

@media (max-width:767px) {
    .mt-sm {
        margin-top: 35px;
    }

    .mb-sm {
        margin-bottom: 35px;
    }

    .mt-md {
        margin-top: 70px;
    }

    .mb-md {
        margin-bottom: 70px;
    }

    .mt-lg {
        margin-top: 100px;
    }

    .mb-lg {
        margin-bottom: 100px;
    }

    .mt-xl {
        margin-top: 130px;
    }

    .mb-xl {
        margin-bottom: 130px;
    }
}

/* - CENTERED IMAGE - */
.img-centered {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* - LINE IN TEXT FIXED - */
.line_hoverfixed {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.line_hoverfixed::after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0%;
    left: -1rem;
    width: calc(100% + 2rem);
    background: #b8336a;
    z-index: -1;
}

/* - LINE IN TEXT HOVER ANIMATION - */
.line_hover {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.line_hover::before {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0%;
    left: -1rem;
    width: 0.2rem;
    background: #b8336a;
    z-index: -1;
}

.line_hover::after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0%;
    left: -1rem;
    width: calc(100% + 2rem);
    background: #b8336a;
    z-index: -1;
    transform: scaleX(0.000);
    transform-origin: left;
    transition: transform 250ms ease-in;
}

.line_hover:hover::after {
    transform: scaleX(1) !important;
}

/* - IMAGE GRID WITH TEXT ANIMATION - */
/* .bb-imggrid5 {
    overflow: hidden;
}

.bb-imggrid5 .nopadding {
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}

.bb-imggrid5 .max-height {
    height: 35vh;
}

.bb-imggrid5 .hovereffect {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
    background: rgb(255, 255, 255);
}

.bb-imggrid5 .hovereffect .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    padding: 10px;
}

.bb-imggrid5 .hovereffect img {
    display: block;
    position: relative;
    max-width: none;
    width: calc(100% + 20px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    object-fit: cover;
    height: 100%;
}

.bb-imggrid5 .hovereffect:hover img {
    opacity: 0.3;
    filter: alpha(opacity=30);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.bb-imggrid5 .hovereffect h2 {
    color: #000000;
    text-align: center;
    position: relative;
    font-size: 16px;
    overflow: hidden;
    padding: 0em 0;
    padding: 0.5em 0;
    background-color: transparent;
}

.bb-imggrid5 .hovereffect h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    content: '';
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.bb-imggrid5 .hovereffect:hover h2:after {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.bb-imggrid5 .hovereffect .cardlink:link,
.bb-imggrid5 .hovereffect p {
    color: #FF3232 !important;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.bb-imggrid5 .hovereffect:hover .cardlink:link,
.bb-imggrid5 .hovereffect:hover p {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
} */
/* - ACCORDION CARD CUSTOM - */
.card {
    background-color: #101010 !important;
    border: solid #101010;
    border-top: 0px;
    border-right: 0px;
    border-bottom: 1px;
    border-left: 0px;
    border-radius: 0rem !important;
}

.card-header {
    background-color: #101010 !important;
    border-bottom: 1px solid rgba(255,255,255,0.5)!important;
}

.card-body {
    background-color: #101010 !important;
}

.card-header:first-child {
    border-radius: calc(0.0rem - 0px) calc(0.0rem - 0px) 0 0!important;
}

/* - STEPS INTRO TEXT - */
/* .step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 350px;
    font-weight: 900;
    color: rgba(239, 111, 108, 0.2);
}

.step-txt-minus {
    margin-top: -160px;
} */
/* - IMAGE GRID with HOVER ANIMATION - */
.bb-image-grid1 {
    overflow: hidden;
}

.bb-image-grid1 .padding {
    padding: 3px;
    margin: 0px;
    overflow: hidden;
}

/* .bb-image-grid1 .nopadding {
    padding: 0px;
    margin: 0px;
    overflow: hidden;
} */
.bb-image-grid1 .max-height {
    height: 300px;
}

.bb-image-grid1 .hovereffect {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
}

.bb-image-grid1 .hovereffect .overlay {
    position: absolute;
    overflow: hidden;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    border-bottom: 1px solid #FFF;
    border-top: 1px solid #FFF;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(0,1);
    -ms-transform: scale(0,1);
    transform: scale(0,1);
}

.bb-image-grid1 .hovereffect:hover .overlay {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.bb-image-grid1 .hovereffect img {
    display: block;
    position: relative;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.bb-image-grid1 .hovereffect:hover img {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.6" /><feFuncG type="linear" slope="0.6" /><feFuncB type="linear" slope="0.6" /></feComponentTransfer></filter></svg>#filter');
    filter: brightness(0.6);
    -webkit-filter: brightness(0.6);
}

.bb-image-grid1 .hovereffect h2 {
    text-transform: uppercase;
    text-align: center;
    position: relative;
    font-size: 17px;
    background-color: transparent;
    color: #FFF;
    padding: 1em 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0);
    opacity: 0;
}

.bb-image-grid1 .hovereffect a,
.bb-image-grid1 .hovereffect p {
    color: #FFF;
    padding: 1em 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}

.bb-image-grid1 .hovereffect:hover a,
.bb-image-grid1 .hovereffect:hover p,
.bb-image-grid1 .hovereffect:hover h2 {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

/* - SLIDER carousel - */
.carousel-indicators .active {
    background-color: #b8336a!important;
}

/* - MODAL FORM - */
.modal-header {
    border-bottom: none!important;
}

.modal-footer {
    border-top: none!important;
}

.form-control {
    color: #f2f4f3!important;
}

.form-control::placeholder {
    font-size: 0.7rem!important;
    color: rgba(255,255,255,0.7);
}

/* - PROJECT SINGLE STYLE - */
/* - STYLE SECTION - */
.section-ourstyle .circles {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
}

@media (min-width:1200px) {
    .section-ourstyle .image {
        background-image: url('img/bg-circles.jpg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }
}

.project-single .project-single-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100%;
}


