*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
body {
    font-family: 'Inter', sans-serif;
    --color1: #FFF ;
    --color2: #181818 ;
    word-break: keep-all;
    background: #111827;
}
a {
    text-decoration: none;
}
p {
    color: #838b97;
    letter-spacing: -0.01em;
    &.subtitlu {
        color: #9ca3af;
        font-size: 20px;
        margin-bottom: 50px;
    }
}
h2 {
    color: #e5e7eb;
    text-align: center;
    font-size: 48px;
    margin-bottom: 15px;
    @media (max-width: 768px) {
        font-size: 30px;
    }
}
section {
    padding: 100px 0;
    box-sizing: border-box;
    position: relative;
    @media (max-width: 768px) {
        padding: 50px 0;
    }
}
.bg {
    position: absolute;
    top: 0;
    box-sizing: border-box;
}
.pt-0 {
    padding-top: 0!important;
}
.pb-0 {
    padding-bottom: 0!important;
}
.mt-0 {
    margin-top: 0!important;
}
.mb-0 {
    margin-bottom: 0!important;
}
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
    border-bottom: 1px solid #1e293b;
}
.nav-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(17, 24, 39, 0.8);  
    padding: 12px 25px;


}
.logo img {width: 150px;}
.menu {display: flex;}
.menu li {padding-left: 30px; list-style-type: none;}
.menu li a {
    display: inline-block;
    text-decoration: none;
    color: var(--color1);
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}
.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color1);
    transition: 0.15s ease-in-out;
}
.menu li a:hover:after {width: 100%;}
.open-menu , .close-menu {
    position: absolute;
    color: var(--color1);
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}
.open-menu {
    top: 35px;
    right: 35px;
    transform: translateY(-50%);
}
.close-menu {
    top: 22px;
    right: 35px;
}
#check {display: none;}
@media(max-width: 767px){
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        background-color: rgba(17, 24, 39, 0.9);  
        transition: all 0.25s ease-in-out;
        border-left: 1px solid #1e293b;
    }
    .menu li {margin-top: 40px;padding-left: 0;}
    .menu li a {padding: 10px;}
    .open-menu , .close-menu {display: block; width: 25px;}
    #check:checked ~ .menu {right: 0;}
}

.continut {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    @media (min-width: 768px) { 
        max-width: 720px;
    }
    @media (min-width: 992px) {
        max-width: 960px;
    }
    @media (min-width: 1200px) {
        max-width: 1140px;
    }
    @media (min-width: 1400px) {
        max-width: 1320px;
    }
}
.intro-small {
    margin-top: 50px;
}
#intro {
    display: flex;
    flex-direction: column;
    min-height: 800px;
    justify-content: center;
    align-items: center;
    background: url(images/intro-bg.webp) no-repeat bottom;
    background-size: cover;
    @media (max-width: 768px) {
        background: url(images/intro-bg-mobile.webp) no-repeat bottom;
    }
    .continut {
        color: #000;
        max-width: 1320px;
        h1 {
            font-size: 56px;
            margin-bottom: 30px;
            max-width: 600px;
            font-weight: 700;
            letter-spacing: -0.8px;
            @media (max-width: 768px) {
                font-size: 35px;
                text-align: center;
            }
        }
        h2 {
            margin-bottom: 30px;
            max-width: 600px;
            text-align: left;
            color: #000;
            font-size: 30px;
            @media (max-width: 768px) {
                font-size: 19px;
                text-align: center;
            }
        }
        p {
            max-width: 600px;
            text-align: left;
        }
    }
}
#servicii {
    p {
        text-align: center;
        @media (max-width: 768px) {
            line-height: 27px;
        }
    }
    .coloane {
        display: flex;
        margin-top: 30px;
        margin-bottom: 30px;
        @media (max-width: 768px) {
            flex-direction: column;
        }
    }
    ul {
        margin-left: 5%;
        @media (max-width: 768px) {
            margin-left: 0;
        }
        li {
            color: #e5e7eb;
            list-style-type: none;
            padding-left: 70px;
            position: relative;
            margin-bottom: 30px;
            font-weight: 700;
            line-height: 24px;
            font-size: 24px;
            @media (max-width: 768px) {
                line-height: 32px;
            }
            &::before {
                content: ' ';
                background: url(images/checkbox.svg) no-repeat center;
                width: 45px;
                height: 24px;
                position: absolute;
                left: 0;
            }
        }
        p {
            text-align: left;
            font-size: 18px;
            font-weight: 400;
            line-height: 27px;
            margin-top: 15px;
            letter-spacing: -0.18px
        }
    }
    .coloane-4 {
        display: flex;
        margin-top: 50px;
        justify-content: space-between;
        margin-bottom: 100px;
        @media (max-width: 768px) {
            flex-wrap: wrap;
            div {
                width: 50%;
                margin-bottom: 30px;
                p {
                    font-size: 14px;
                }
            }
        }
        img {
            max-width: 200px;
            display: block;
            min-height: 185px;
            margin: 0 auto;
        }
        p {
            margin-top: 20px;
        }
    }
}
#scule {
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
    background: #18212f;
    .continut {
        text-align: center;
         .coloane-4 {
            display: flex;
            margin-top: 50px;
            justify-content: space-between;
            margin-bottom: 50px;
            @media (max-width: 768px) {
            flex-wrap: wrap;
            margin-bottom: 0;
            div {
                width: 50%;
                margin-bottom: 30px;
                img {
                    width: 90%;
                }
                p {
                    font-size: 14px;
                }
            }
        }
            img {
                max-width: 250px;
                display: block;
                margin: 0 auto;
            }
            p {
                margin-top: 20px;
            }
        }
    }
}
#configurator {
    .continut {
        text-align: center;
        .coloane-4 {
            display: flex;
            margin-top: 50px;
            justify-content: space-between;
            margin-bottom: 100px;
            @media (max-width: 768px) {
                flex-wrap: wrap;
                div {
                    width: 100%;
                    margin-bottom: 30px;
                }
            }
            .col-md-4 {
                 @media (max-width: 768px) {
                .label {
                    width: 40.3333333333%;
                    text-align: left;
                }
                .result {
                    width: 59.6666666667%;
                    margin-bottom: 15px;
                }
            }
            }
            select {
                font-size: 14px;
                letter-spacing: 0;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                border-radius: 5px;
                width: 100%;
                margin: 0 15px;
                border: none !important;
                padding: 10px 15px;
                height: 50px;
                margin-bottom: 20px;
            }
            .price {
                color: #fff;
                font-weight: 700;
                font-size: 30px;
            }
        }
    }
    .tuning-values {
        margin-top:50px;
    }
    h5 {
        color: #fff;
        text-align: left;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
    }
    .tuning-values h5 {
        width:100%
    }
    .tuning-values .row {
        width:100%
    }
    .result {
        margin-bottom: 15px;
    }
    .tuning-values .label {
        float:left;
        width:40.3333333333%;
        margin-top:22px;
        font-weight: 400;
        color: #fff;
    }
    .tuning-values .result {
        float:left;
        border:1px solid #dcdcdc;
        width:59.6666666667%;
        -webkit-box-sizing :border-box;
        box-sizing:border-box;
        border-radius:5px;
        font-size:32px;
        padding:0 16px;
        line-height:1.8;
        font-weight: 700;
        background:#fff
    }
    .tuning-values .result.stage {
        color:#BA0000
    }
    .tuning-values .result.difference {
        border:1px solid #677294;
        background:#fff;
        color:#009100
    }
    .tuning-values .result span {
        font-size:20px
    }
    .tuning-values .row.values {
        margin: 0 15px 30px;
    }
}
#por-que-elegirnos {
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
    background: #18212f;
    img {
        display: block;
        margin: 30px auto 0;
    }
    .doua-coloane{ 
        display: flex;
        margin-top: 50px;
        @media (max-width: 768px) {
            flex-direction: column;
        }
        .col {
            width: 50%;
            text-align: left;
            @media (max-width: 768px) {
                width: 100%;
            }
            li {
                color: #e5e7eb;
                list-style-type: none;
                position: relative;
                margin-bottom: 50px;
                font-weight: 700;
                line-height: 24px;
                font-size: 24px;
            }
            p {
               text-align: left;
                font-size: 18px;
                font-weight: 400;
                line-height: 27px;
                margin-top: 15px;
                letter-spacing: -0.18px;
            }
            &:first-of-type {
                margin-right: 50px;
            }
        }
    }
    img {
        width: 100%;
        /* max-width: 650px; */
        height: auto;
    }
    ul {
        display: inline-block;
        li {
            list-style-type: none;
            position: relative;
            margin-bottom: 15px;
            font-weight: 700;
            text-align: left;
            line-height: 27px;
        }
        
    }
}
#acoperire {
    margin-left: 15px;
    margin-right: 15px;
    background: #efefef;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-align: center;
    h2 {
        margin-bottom: 25px;
    }
    .doua-coloane{ 
        display: flex;
        margin-top: 50px;
        @media (max-width: 768px) {
            flex-direction: column;
        }
        .col {
            width: 50%;
            text-align: left;
            @media (max-width: 768px) {
                width: 100%;
            }
            h2 {
                text-align: left;
                @media (max-width: 768px) {
                    text-align: center;
                }
            }
        }
    }
    img {
        width: 100%;
        max-width: 650px;
        height: auto;
    }
    ul {
        display: inline-block;
        li {
            list-style-type: none;
            padding-left: 30px;
            position: relative;
            margin-bottom: 15px;
            font-weight: 700;
            text-align: left;
            line-height: 27px;
            &::before {
                content: ' ';
                background: url(images/checkbox.svg) no-repeat center;
                width: 24px;
                height: 24px;
                position: absolute;
                left: 0;
            }
        }
        
    }
}
#preguntas-frecuentes {
    h2 {
        text-align: center;
        margin-bottom: 50px;
    }
    h3 {
        font-size: 20px;
        color: #e2e8f0;
        margin-bottom: 10px;
    }

    .pregunta {
        padding: 20px;
        margin-bottom: 25px;
        /* border: 1px solid #efefef */
    }
    .pregunta:nth-child(odd) {
        background: #172135;
        }
    .pregunta:nth-child(even) {
        background: #1e293b;
    }
}
#contact {
    margin-left: 15px;
    margin-right: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-align: center;
    h2 {
        margin-bottom: 25px;
    }
    .telefon {
        margin-bottom: 20px;
    }
    .mare {
        font-size: 20px;
    }
    a {
        color: #fff;
    }
}
.suna {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1;
    background: #25d366;
    height: 50px;
    width: 50px;
    padding: 10px;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    @media(max-width: 768px) {
        right: 15px;
        bottom: 15px;
        width: 44px;
        height: 44px;
    }
    img {
        width: 30px;
        height: 30px;
        margin-right: 25px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        @media(max-width: 768px) {
            width: 26px;
            height: 26px;
        }
    }
    p {
        display: flex;
        flex-direction: column;
        color: #fff;
        text-align: left;
        font-size: 13px;
        font-weight: 400;
        span {
            font-size: 20px;
            font-weight: 700;
        }
    }
}
footer {
    border-top: 1px solid #1e293b;
    text-align: center;
    font-size: 13px;
    padding: 15px 15px 0;
    margin-bottom: 15px;
    p {
        color: #838b97
    }
}
.mj-20 {
    margin-bottom: 20px;
}
.mj-30px {
    margin-bottom: 30px;
}
.dropdown {
    cursor: pointer;
    margin-left: 30px;
    border-left: 1px solid #404B5D;
    position: relative;
    @media(max-width: 768px) {
        border-left: none!important;
        margin-top: 30px!important;
        margin-left: -10px!important;   
    }
    img {
        max-width: 24px;
        margin-right: 10px;
    }
    
}
.btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.btn {
    color: #fff;
    cursor: pointer;
}

.caret:before {
    content: '\25BC';
    margin-left: 5px;
    color: #fff;
    font-size: 8px;
}

.dropdown-menu {
    display: none;
    a::after {
        display: none!important;
    }
}

#cb:checked ~ .dropdown-menu {
   display: block;
}

#cb {
    visibility: hidden;    
}

#cb:checked ~ .btn {
    color: #fff;
    background: none!important;
    border: none!important;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    max-width: 32px;
    list-style: none;
    left: 0;
    margin: 0;
    padding: 0;
}

.dropdown-menu li {
    padding: 5px 0px;
    @media(max-width: 768px) {
        margin-top: 0!important;
        a {
            padding-left: 18px;
        }
    }
}

.dropdown-menu a {
    display: block;
    width: 100%;
    padding: 0 18px;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background: 0 0;
    border: 0;
    text-decoration: none;   
}

.dropdown-menu li:hover {
    text-decoration: none;
}

.mouse_scroll {
	display: block;
	width: 24px;
	height: 100px;
	margin-top: 30px;
    @media (max-width: 768px) { 
        margin-left: auto;
        margin-right: auto;
        .m_scroll_arrows {
            display: none;
        }
    }
}


.m_scroll_arrows
{
  display: block;
  width: 5px;
  height: 5px;
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);
   
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  margin: 0 0 3px 4px;
  
  width: 16px;
  height: 16px;
}


.unu
{
  margin-top: 1px;
}

.unu, .doi, .trei
{
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    animation: mouse-scroll 1s infinite;
  
}

.unu
{
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
  
  animation-direction: alternate;
  animation-delay: alternate;
}

.doi
{
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
  
  animation-delay: .2s;
  animation-direction: alternate;
  
  margin-top: -6px;
}

.trei
{
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate;
  
  animation-delay: .3s;
  animation-direction: alternate;
  
  
  margin-top: -6px;
}

.mouse {
  height: 42px;
  width: 24px;
  border-radius: 14px;
  transform: none;
  border: 2px solid #000000;
  top: 170px;
}

.wheel {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: #000000;
  position: relative;
  
  height: 4px;
  width: 4px;
  border: 2px solid #000000;
  -webkit-border-radius: 8px;
          border-radius: 8px;
}

.wheel {
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  -moz-animation: mouse-wheel 0.6s linear infinite;
  animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel{
   0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-moz-keyframes mouse-wheel {
  0% { top: 1px; }
  25% { top: 3px; }
  50% { top: 5px;}
  75% { top: 3px;}
  100% { top: 1px;}
}
@-o-keyframes mouse-wheel {

   0% { top: 1px; }
  25% { top: 3px; }
  50% { top: 5px;}
  75% { top: 3px;}
  100% { top: 1px;}
}
@keyframes mouse-wheel {

   0% { top: 1px; }
  25% { top: 3px; }
  50% { top: 5px;}
  75% { top: 3px;}
  100% { top: 1px;}
}

@-webkit-keyframes mouse-scroll {

  0%   { opacity: 0;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
