@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html,
body {
  overflow-x: hidden; /* Prevent scroll on narrow devices */
  font-family: 'Roboto', sans-serif;
}

/* Colors

#fba22b
#882f8e
#1bab9a
#f0542b
#ec2f67

/* end Colors

/* Buttons */

.btn-primary {
    background-color: #882f8e;
    border-color: #882f8e;
    padding: 10px 25px;
}

.btn-primary:hover {
    background-color: #632268;
    border-color: #632268;
}

.btn-success {
    background-color: #1bab9a;
    border-color: #1bab9a;
    padding: 10px 25px;
}

.btn-warning {
    background-color: #fba22b;
    border-color: #fba22b;
    padding: 10px 25px;
}

.img-thumbnail {
    margin-bottom: 20px
}

/* Header */

header {
  position: relative;
  margin-top: 20px;
  z-index: 1;
}

.header_left, .header_right {
    display: flex;
    align-items: center;
}

.header_right {
    justify-content: right;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo img {
  width: auto;
  max-height: 120px;
}

.request_offer_top {
    margin-right: 20px;
    position: relative;
}

.request_offer_top a {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 3px;
    padding: 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .5s ease;
    position: relative;
    display: inline-block;
}

.request_offer_top a:before, .request_offer_top a:after {
    content: "";
    position: absolute;
    width: 15%;
    height: 1px;
    background-color: #fff;
    transition: all .5s ease;
}

.request_offer_top a:before {
    top: 0;
    left: 0%;
    transform: translateX(-50%);
}

.request_offer_top a:after {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.request_offer_top a:hover:before, .request_offer_top a:hover:after {
    width: 100%;
    left: 0;
    transform: none;
}

.header_call a {
    color: #fba22b;
    border: 1px solid #fba22b;
    font-size: 1.7rem;
    padding: 10px;
}

.header_call a:hover {
    color: #f0542b;
    border: 1px solid #f0542b;
}

.social_media_top a {
    color: #fff;
    font-size: 1.7rem;
    padding: 10px;
    margin: 5px;
}

.social_media_top a:hover {
    color: #fba22b;
}

/* Nav top */

.nav_top i {
    color: #fba22b;
    font-size: 2rem;
    padding: 10px;
    margin: 5px;
}

.nav_top i:hover {
    color: #1bab9a;
}

.nav_top_content {
    background-color: #111;
    color: #fff;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    padding: 0px;
    overflow-x: hidden;
    transition: width 0.5s ease, visibility 0s 0.5s, opacity 0.5s ease;
    visibility: hidden;
    opacity: 0;
}

.nav_top_content.open {
    width: 100%;
    visibility: visible;
    opacity: 1;
    transition: width 0.5s ease, opacity 0.5s ease;
}

.menu_block {
    padding: 0;
    z-index: 0;
    height: 100vh;
}

.menu_nav {
    padding: 50px 35px;
    text-align: center;
}

.menu_nav_social {
    text-align: center;
    padding: 0px 35px;
}

.menu_nav_social i {
    color: #fba22b;
    font-size: 1.5rem;
    margin: 20px 10px;
}

.menu_nav_social i:hover {
    color: #fff;
}

.logo_nav_top_content {
    text-align: center;
}

.nav_top_content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#close-icon {
    position: absolute;
    right: 1.5%;
    top: 3%;
    z-index: 101;
}

#close-icon i {
    font-size: 2.5rem;
    color: #fba22b;
}

#close-icon i:hover {
    color: #fff;
}

/* Menu */

.container.menu {
  padding: 0;
}

#closeNavbar {
    background-color: transparent;
    border: 0;
    color: #fff;
    display: none;
    font-size: 1.5rem;
    right: 15px;
    top: 10px;
    position: absolute;
    z-index: 999;
  }

.menu figure {
  margin: 0;
}

.navbar-brand {
  margin: 0;
}

a.nav-link {
    color: #ec2f67;
    font-size: 1.5rem;
    font-weight: 500;
}

a.nav-link:hover {
  color: #fff;
}

.navbar-nav.me-auto.mb-2.mb-lg-0 {
  margin-left: 50px;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav-scroller .nav-link {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .875rem;
}

/* Offcanvas nav */

@media (max-width: 991.98px) {
  .offcanvas-collapse {
    background-color: #0e111e;
    bottom: 0;
    left: 100%;
    overflow-y: auto;
    padding: 25px 1rem;
    position: fixed;
    text-align: center;
    top: 0px; /* Height of navbar */
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 9999;
  }
  .offcanvas-collapse.open {
    visibility: visible;
    transform: translateX(-100%);
  }

}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  color: rgba(255, 255, 255, .75);
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav-underline .nav-link {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .875rem;
  color: #6c757d;
}

.nav-underline .nav-link:hover {
  color: #007bff;
}

.nav-underline .active {
  font-weight: 500;
  color: #343a40;
}


/* Slider */

#slider {
    position: relative;
    margin-top: -15%;
    z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.47);
}

#slider img {
    max-height: 700px;
}

.slider_content {
  margin-bottom: 8%;
}

.slider_content span {
  font-size: 2.7rem;
}

.slider_left {
  text-align: left;
}

.slider_center {
  text-align: center;
}

.slider_right {
  text-align: right;
}

/* Swipper */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .swiper-slide {
        width: 25%;
    }
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sections */

#despre, #beneficii, #galerie {
    margin: 120px 0px;
}

#despre h1 {
    color: #111;
    font-size: 2rem;
}

#despre .btn-primary i {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

#despre .btn-primary:hover i {
    padding-left: 15px;
}

.despre_content h2 {
    color: #882f8e;
    font-size: 1.5rem;
}

span.despre_content  {
    color: #111;
    font-style: italic;
}

.despre_content h3 {
    color: #111;
    font-size: 1.3rem;
}

#cere-oferta {
    background-color: #f1f1f1;
    padding: 80px 0px;
    margin-top: 120px;
}

#beneficii span {
    color: #fba22b;
    font-size: 1.3rem;
}

#beneficii h4 {
    color: #3F497F;
    font-size: 2.5rem;
}

#beneficii .btn-primary i {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

#beneficii .btn-primary:hover i {
    padding-left: 15px;
}

.why_us {
    margin-bottom: 5px;
}

.why_us i {
    color: #ec2f67;
    float: left;
    font-size: 2.5rem;
    margin: 10px 15px 10px 0;
    min-height: 60px;
}

.why_us span {
    font-weight: 600;
}

#statistics {
    background-color: #882f8e;
    color: #F8F5E4;
    font-size: 0.9rem;
    padding: 55px 0px;
    text-align: center;
}

span.statistic_title  {
    color: #F8F5E4;
    display: block;
    font-size: 1.5rem;
}

#statistics i {
    color: #F7C04A;
    font-size: 2.8rem;
    margin-bottom: 30px;
}

span.counter {
    font-size: 2rem;
}

/* Breadcrumb */

.breadcrumb {
    background: url(../images/breadcrumb.webp);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-attachment: scroll;
    background-size: auto auto;
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-attachment: scroll;
    background-size: auto auto;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #F8F5E4;
    margin-top: -13%;
    margin-bottom: 50px;
    padding: 175px 0px;
    text-align: center;
}

.breadcrumb ol, li {
    display: inline-block;
}

.breadcrumb h1 {
    color: #F7C04A;
    margin: 30px 0px
}

.breadcrumb a {
    color: #F7C04A;
    text-decoration: none;
}

/* Page content */

.page_content {
    margin-bottom: 50px;
}

.page_content img {
    float: left;
    margin: 0px 15px 15px 0px;
    max-width: 450px;
    height: 100%;
    object-fit: cover;
}

.page_content .btn-warning i {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.page_content .btn-warning:hover i {
    padding-left: 15px;
}

.page_content a {
    text-decoration: none;
}

.page_content h4 {
    font-size: 1.35rem;
}

.page_content li {
    display: block;
    margin: 15px 0px;
}

h2.page_title {
    font-weight: 700;
    margin: 40px 0;
    text-align: center;
    text-transform: uppercase;
}

/* Contact */

.social_contact a {
    color: #3F497F;
    text-decoration: none;
}

.social_contact a:hover {
    color: #539165;
}

/* Contact form */

.contact_form h5 {
    font-size: 1.75rem;
    margin-bottom: 30px;
}

.contact_form input, textarea.form-control {
    background-color: #F8F5E4;
}

.contact_form .form-label {
    color: #3F497F;
    font-weight: 600;
}

button.btn.btn-primary.btn-lg.send_email {
    background-color: #3F497F;
    border-color: #ccb97e;
    color: #F8F5E4;
}

button.btn.btn-primary.btn-lg.send_email:hover {
    background-color: #ccb97e;
    color: #F8F5E4;
}

/* Titles  */

.title_block {
  text-align: center;
  margin-bottom: 50px;
}

.title_block span {
    color: #fba22b;
    font-size: 1.2rem;
}

.title_block h5 {
    font-size: 2rem;
}

/* Card */

.card {
  margin-bottom: 35px;
}

.card:hover {
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.08);
}

.card-title a {
  color: #3F497F;
  text-decoration: none;
}

.card-title h3 {
    font-size: 1.55rem;
}

.card-date {
    background-color: #3F497F;
    color: #F8F5E4;
    font-size: 1.2rem;
    padding: 10px;
    position: absolute;
}

/* Call to action */

#cta {
  background: url(../images/cta.webp);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-size: auto auto;
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-size: auto auto;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #F8F5E4;
  min-height: 350px;
  padding: 90px 0px 0px 0px;
  text-align: center;
}

#cta h3 {
    color: #F7C04A;
    font-size: 2.5rem;
}

/* Back to top */

.back-to-top {
    color: #e7e5e6;
    cursor: pointer;
    background-color: #221f1e;
    border-radius: 50%;
    bottom: 20px;
    display: none;
    line-height: 40px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 40px;
    height: 40px;
    z-index: 9999;
}

.back-to-top:hover {
    background-color: #F7C04A;
    color: #F8F5E4;
}

.back-to-top.show {
    display: block;
}

/* Cookies */

.cookie-consent-bar {
    background-color: #882f8e;
    bottom: 0;
    color: #fff;
    display: block;
    left: 0;
    padding: 20px 0px 0px 0px;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

.cookie-consent-bar a {
    color: #F7C04A;
}

button.btn.btn-primary.send {
    background-color: #fff;
    border-color: #3F497F;
    color: #3F497F;
}

/* Bara de scroll */
::-webkit-scrollbar {
    width: 10px;
    /* Lățimea barei de scroll */
}

/* Fundalul barei de scroll */
::-webkit-scrollbar-track {
    background-color: #1bab9a;
}

/* Stilul manerului (thumb) barei de scroll */
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
    background-color: #882f8e;
}

/* Photo gallery */

.filter-button {
    background-color: #539165;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
}

.gallery-item {
    display: none;
    transition: opacity 0.3s ease;
}

.show {
    display: block;
}

/* Footer */

footer {
    background-color: #093631;
    color: #ffff;
}

footer a {
    color: #F7C04A;
    text-decoration: none;
}

summary {
    display: list-item;
    cursor: pointer;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

summary::marker {
    color: #F7C04A;
}

#footer {
    padding: 80px 0px;
}

.logo_footer {
    text-align: center;
}

figure.logo_footer {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.logo_footer img {
    max-width: 150px;
    height: auto;
}

#footer h6 {
    color: #F7C04A;
    font-size: 1.4rem;
    margin-bottom: 25px;
}

#footer h6::after {
    background-color: #F7C04A;
    content: "";
    display: block;
    margin: 10px 0;
    position: relative;
    width: 20%;
    height: 1px;
}

.social_media_footer a {
    color: #F8F5E4;
    text-decoration: none;
}

.social_media_footer a:hover {
    color: #539165;
}

.social_media_footer a:hover i{
    color: #F8F5E4;
}

.social_media_footer i {
    color: #539165;
}

.copyright {
    background-color: #F6F1E9;
    color: #4F200D;
    padding: 30px 0px 20px;
}

.development {
    text-align: right;
}

/* Media Query */

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        min-width: 400px;
    }

    .dropdown-menu.show {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu.show a {
        color: #111;
        text-decoration: none;
    }
}

@media (max-width: 768px) {
    header {
        margin-top: 10px;
    }
    .page_content, .slider_content, #footer, .card, #despre, #beneficii, .copyright, .development {
        text-align: center;
    }
    .navbar-nav.me-auto.mb-2.mb-lg-0 {
        margin-left: 0px;
    }
    span.navbar-toggler-icon {
        left: 20px;
        position: absolute;
        top: 20px;
    }
    .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
        color: #F7C04A;
    }
    .nav-link:focus, .nav-link:hover {
        color: #F7C04A;
    }
    .navbar-nav .dropdown-menu {
        background-color: #fff;
        text-align: center;
        width: 100%;
    }
    .navbar-nav .dropdown-menu a {
        color: #111;
        text-decoration: none;
    }
    .offcanvas-collapse a {
        color: #F8F5E4;
    }
    .menu_block, .request_offer_top, .social_media_top {
        display: none;
    }
    .development {
        margin: 15px 0px;
    }
    #slider, .breadcrumb {
        margin-top: 0;
    }
    #slider img {
        max-height: 450px;
        object-fit: cover;
    }
    .slider_content {
        margin-bottom: 0%;
    }
    #slider p {
        font-size: 17px;
    }
    .slider_content span {
        color: #F7C04A;
        font-size: 1.3rem;
    }
    #cta h3 {
        font-size: 1.8rem;
    }
    .breadcrumb {
        background-size: contain;
        padding: 30px 0px;
    }
    .contact_form {
        margin-top: 50px;
    }
    .btn-primary {
        padding: 10px;
        margin-bottom: 30px;
    }
    #featured, #despre, #beneficii, #articles {
        margin: 10px 0px;
        padding: 20px 0px;
    }
    .featured {
        margin: 7px 5px;
        width: 97%;
    }
    .card-img, .card-img-bottom, .card-img-top {
        width: 100%;
        height: auto;
    }
    #despre h1, #articles h4 {
        margin-top: 20px;
    }
    .page_content img {
        float: none;
        max-width: 100%;
    }
    .why_us i {
        float: none;
    }
    .row.mt-3.gallery {
        margin: 0;
    }
    #closeNavbar {
        display: block;
    }
    #footer h6::after {
        margin: 15px auto 0px auto;
    }
}
