@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

p {
    margin: 0;
}

/*Header*/

.header {
    width: 100%;
    position: fixed;
    z-index: 5;
    background-color: white;
}

.header_top {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
}

.logo {
    cursor: pointer;
}

.header_top_left {
    display: flex;
    align-items: center;
    gap: 50px;
}

.circle {
    display: flex;
    align-items: center;
    gap: 15px;
}

.circle__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #EAEAEA;
    shape-outside: circle();
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.circle_text__top {
    color: #666;
    font-family: Roboto, sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.circle_text__bottom {
    color: #000;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.header_top_right {
    display: flex;
    gap: 35px;
}

.circle_text__phone {
    color: #252525;
    font-family: Roboto, sans-serif;
    font-size: 22px;
    font-weight: 500;
}

.circle_text__phone:hover {
    color: #484848;
    transition: all 0.3s ease;

}

.rounded-button {
    border-radius: 200px;
    border: 1px solid #FFFFFF;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 30px;
    cursor: pointer;
}

.rounded-button:hover {
    box-shadow: none;
    border: 1px solid #C0C0C0;

}

.rounded-button__text {
    color: #141414;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.header_top__button {
    position: absolute;
    top: 0;
    right: 0;
    background: #FED132;
}

.header_top__button:hover {
    background: #2C2C2C;
    cursor: pointer;
}

.header_top__button:hover .header_top__button__text {
    color: #FED132;
}

.header_top__button:hover .header_top__button__text path {
    fill: #FED132;
}

.header_top__button__text {
    color: #141414;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 42px 30px;
}

.header__line {
    height: 2px;
    background-color: #262626;
}

.header_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-menu ul{
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    color: #000;
    font-family: Roboto, sans-serif;
    font-size: 17px;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #484848;
    transition: all 0.3s ease;

}

 #order, #about-us {
    display: block;
    content: "";
    height: 55px;
    margin: -55px 0 0;
}

#contacts {
    display: block;
    content: "";
    height: 155px;
    margin: -155px 0 0;
}

#service {
    display: block;
    content: "";
    height: 100px;
    margin: -100px 0 0;
}

.flag-icon {
    margin-right: 13px;
}

.burger-icon {
    display: none;
}

.menu {
    width: 100%;
    height: auto;
    max-height: 80vh;
    overflow-y: auto;
    background: #F5F5F5;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
    display: none;
    padding: 20px 40px ;
}

.close_menu {
    position: absolute;
    right: 30px;
}

/*Slider*/

.slider {
    width: 100%;
}

.swiper {
    width: 100%;
    max-height: 1000px;
}

.swiper-slide {
    margin-top: 200px;
}

.slider__image {
    width: 100%;
    height: auto;
}

.slider__text {
    width: 100%;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.slider__title {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 60px;
    font-weight: 800;
    margin-top: 30px;
    margin-bottom: 30px;
}

.slider__text .top-text, .services .top-text{
  text-align: center;
}

.top-text {
    color: #FED132;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.slider__info {
    width: 240px;
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    margin-top: 15px;
}

.slider__line {
    width: 80px;
    height: 3px;
    background: #FFC600;
    border: none;
    margin-top: 5px;
}

.slider__main-text {
    color: #FFF;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 700;
    white-space: pre-wrap;
}

.rounded-button_yellow {
    width: 25%;
    padding: 25px 40px;
    border-radius: 200px;
    background: #FED132;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;

}

.rounded-button_yellow:hover {
    background: #2C2C2C;
    transition: all 0.3s ease;
}

.rounded-button_yellow:hover p {
    color: #FED132;
    transition: all 0.3s ease;
}
.rounded-button_yellow:hover path {
    fill: #FED132;
    transition: all 0.3s ease;
}

.btn-arrow {
    margin-left: 5px;
}

/*Services*/
.services {
    background-color: #F9F9F9;
    padding: 120px 0;

}

.services__info {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.services__text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.services__images {
    width: 50%;
}

.services__images img {
    width: 100%;
}


.title {
    color: #000;
    font-family: Roboto;
    font-size: 40px;
    font-weight: 800;
}

.description p {
    color: #626262;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    line-height:  24px;
}

.services__list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    grid-auto-rows: minmax(0, auto);
    font-family: Roboto;
    font-size: 17px;
    font-weight: 500;
    list-style-type: disc;
    margin-left: 20px;
}

.services__list li {
    break-inside: avoid-column;
    margin-top: 5px;
}

.services__text > .rounded-button_yellow {
    width: 50%;
}


.services__cards {
    margin-top: 110px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    width: 22%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 20px;
    background: #FFF;
    padding: 50px 45px;
}

.card__title {
    color: #000;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 500;
}

.card__text {
    color: #626262;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
}

/*Calculator*/

.calculator {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.calculator__info {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.calculator__form {
    width: 45%;
}

.form {
    max-height: 900px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
    padding: 55px 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form__inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.note {
    color: #0A0A0A;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 500;
}

.form__line {
    position: absolute;
    left: 60px;
}

.form__title {
    width: auto;
    color: #000;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 500;
}

.form__inputs input {
    border-radius: 10px;
    border: 1px solid #DBDBDB;
    background: #FFF;
    padding: 13px;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
}

.inputs__num {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.calendar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #DBDBDB;
    padding: 20px 30px;
    margin-top: 15px;
}

.calendar-container input {
    padding: 8px 12px;
    border: 1px solid #DBDBDB;
    border-radius: 10px;
    background: #FFF;
    margin-top: 5px;
    width: 100%;
}

.calendar {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 500;
}

.calendar__head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.month-year {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 35px);
    gap: 4px;
    text-align: center;
}

.day {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.today {
    background-color: #FED132;
    color: #fff;
}

.arrow {
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}


#timepicker {
    margin-top: 10px;
    text-align: center;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 500;
}

.selected {
    background-color: #FED132;
    color: #fff;
}

.disabled {
    color: #BBB;
}

.price {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
}

.total-price {
    color: #000;
    font-family: Roboto;
    font-size: 26px;
    font-weight: 500;
}

.currency {
    margin-left: 5px;
    color: #000;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 500;
}

/*Excavator*/

.excavator__line {
    max-width: 1200px;
    height: 1px;
    background: #ECECEC;
    margin: 70px auto;
}

.excavator {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 90px;
}

.excavator_right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 45%;
}

.excavator_left {
    width: 45%;
}

.dateb-time div {
    margin-top: 20px;
    font-family: Roboto;
    font-size: 14px;
    width: 100%;
}

.dateb-time ul {
    overflow: auto !important;
    height: 300px;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: #fed132 !important;
}

.selected {
    color: #1a1b1c !important;
}

.nice-select.open .list {
    z-index: 3 !important;
}
/*About us*/

.about-us {
    margin-top: 110px;
    padding: 80px 0;
    background: #F9F9F9;
}

.about-us__info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.about-us__description {
    color: #000;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}

.about-us_left, .about-us_right {
    width: 45%;
}

.about-us_right img {
    width: 100%;
}

/*Footer*/

.footer {
  height: unset;
  background: #bfbfbf;
    padding: 30px 0;
}

.footer__container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.contact-form .rounded-button_yellow {
    width: 80%;
}

.footer_left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 45%;
}

.footer_right {
    width: 45%;
}

.footer__phones {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.footer__phone a {
    color: #000;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 500;
}

.footer__phone__info {
    color: #626262;
    font-family: Roboto;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.vertical-line {
    border-left: 1px solid #D8D8D8;
    height: 40px;
}

.footer__address {
    color: #626262;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 400;
}

.footer__mail {
    color: #626262;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 400;
    text-decoration-line: underline;
}



.fb-icon:hover .fb-icon-circle {
    fill: #4867AA;
    stroke: #fff;
    transition: fill 0.3s ease;
}

.fb-icon:hover .fb-icon-path {
    fill: #fff;
    transition: fill 0.3s ease;
}

.inst-icon:hover .inst-icon-path {
    fill: #fff;
    transition: fill 0.3s ease;
}

.inst-icon:hover .inst-icon-circle {
    fill: url(#paint0_linear_55_22);
    stroke: #fff;

}

.contact-form {
    width: 100%;
    padding: 85px 125px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    width: 300px;
    border-radius: 10px;
    border: 1px solid #DBDBDB;
    background: #FFF;
    padding: 15px 20px;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    resize: none;
}

.copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;

}

.copyright p {
    margin-bottom: 15px;
    color: black;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 300;
}

#myBtnScroll {
    background: url(/images/icons/scrollup.svg) no-repeat;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: 0;
    cursor: pointer;
    width: 49px;
    height: 49px;
}

.cookie {
    background: #FFFFFF;
    width: 100%;
    padding: 40px 15px;
    width: 100%;
    z-index: 10;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.cookie__title {
    color: #282828;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cookie__text {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.cookie__description {
    width: 70%;
    color: #626262;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 400;
}

.accept__buttons {
    display: flex;
    align-items: center;
}

.cookie__accept-btn {
    display: inline-block;
    border-radius: 200px;
    border: none;
    padding: 15px 40px;
    background: #FED132;
    color: #141414;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-right: 20px;
}

.cookie__dont-accept {
    background: #fff;
    border: none;
    color: #141414;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    text-decoration-line: underline;
    cursor: pointer;
}

.popup {
    width: 100%;
    height: 100%;
    z-index: 9999;
    position: absolute;
}

.popup .rounded-button_yellow {
    padding: 13px 75px;
}

.popup__block {
    position: fixed;
    left: 30%;
    top: 10%;
    width: 40%;
    min-height: 20%;
    height: auto;
    padding: 1.5rem;
    z-index: 99999;
    background: #fff;
    border-radius: 1rem;
}

.popup__content {
    width: 100%;
    margin: 0 auto ;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.popup__title {
    text-align: center;
    font-family: Roboto;
    font-size: 21px;
    font-weight: 600;
}

.popup__form {
    width: 100%;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.popup__form input, .popup__form textarea {
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #DBDBDB;
    background: #FFF;
    width: 100%;
}

.popup__form textarea {
    resize: none;
    height: 100px;
}

.close-popup {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-size: 2.5rem;
    cursor: pointer;
}

.popup__shadow {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    z-index: 9999;
    /*display: none;*/
}

