body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gotham Pro', sans-serif;
}

body.show-popup {
    overflow: hidden;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

/* .popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 40px;
} */


/* .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    display: none;
} */


.popup.show-popup {
    display: flex;
}


.popup .popup-quote,
.popup .popup-application,
.popup .popup-request {
    display: none;
}

.popup.show-popup .popup-quote.show-popup,
.popup.show-popup .popup-application.show-popup,
.popup.show-popup .popup-request.show-popup {
    display: block;
}

.popup .site-paragraph {
    margin-bottom: 20px;
    text-align: center;
}

.modal-dialog {
    max-width: 900px;
    width: 100%;
    padding: 30px;
}

.modal-dialog.modal-sm {
    max-width: 600px;
}

.popup-request {
    max-width: 700px;
    text-align: center;
}

.modal form p {
    border: 1px solid #DADAE5;
    padding: 20px;
    text-align: left;
    color: #7a7a80;
}

.modal label {
    color: #474751;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    /* margin-bottom: 10px; */
    width: 100%;
}

.modal input {
    width: 100%;
    height: 40px;
    border: 1px solid #DADAE5;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #474751;
    margin-bottom: 12px;
}

.modal input::placeholder {
    color: #7A7A80;
}

.modal .month::after {
    right: 3%;
}

.modal .modal-button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    background-color: #96231E;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 20px;
    transition: 0.3s;
}

.modal .uploader {
    display: flex;
    align-items: center;
    height: 40px;
    width: 100%;
    border: none;
    gap: 10px;
}

.modal .uploader span {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}

.modal .uploader button {
    padding: 6px 12px;
    background-color: #F4F4F7;
    color: #96231e;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    height: 40px;
    min-width: max-content;
}

.modal-my-confirm {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-my-confirm img {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}



.container {
    width: 100%;
    max-width: 1360px;
    padding: 0 20px;
    margin: 0 auto;
}

.site-title {
    color: #474751;
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    text-align: center;
    margin-bottom: 52px;
    position: relative;
}

section.section-contact {
    margin: 0 12px;
}

.site-paragraph {
    color: #7a7a80;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.site-title::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 6px;
    background: #96231E;
    border-radius: 6px 0px 6px 0px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.header {
    padding: 20px 0;
    position: relative;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    height: 64px;
}

.header-logo img {
    height: 100%;
}

.header-menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.header-menu a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 13px;
    color: #474751;
    transform: 0.3s;
}

.header-menu a:hover,
.header-menu a.active {
    color: #96231E;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions a {
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    transform: 0.3s;
    background-color: #96231E;
    padding: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.header-actions a:hover {
    background-color: #96241ed9;
}

.header-lang {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgb(244, 244, 247);
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    transform: 0.3s;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
}

.header-lang:hover {
    color: #96231E;
}

.header-lang:hover .header-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}


.header-lang span {
    text-transform: uppercase;
    color: #46467D;
}

.header-lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    height: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transform: translate(0, 10px);
    z-index: 5;
}

.header-lang-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.header-lang-dropdown a {
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    transform: 0.3s;
    height: 40px;
    text-align: center;
}

.header-lang-dropdown a:hover {
    color: #fff;
    background-color: #92514e;
}

.header-lang-dropdown li {
    width: 100%;
}

.header-burger {
    display: none;
    border: none;
    outline: none;
    padding: 0;
}

.header-mobile {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transform: translate(-100%, 0);
    flex-direction: column;
    gap: 20px;
}

.header-mobile.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

.header-mobile-modal {
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    overflow-y: auto;
    width: 90%;
    max-width: max-content;
}

.header-mobile-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.header-mobile-modal-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.header-mobile-modal-menu a {
    text-decoration: none;
    color: #46467D;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
}

.header-mobile-modal-menu a:hover {
    color: #92514e;
}



/* main */

.section-slider-item {
    min-height: calc(100vh - 104px);
    background: var(--bg-image-url) no-repeat center center / cover;
    display: flex !important;
    align-items: center;
    color: #fff;
}

.section-slider-item span {
    width: 50%;
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: 400;
    line-height: 66px;
}

.section-slider-item h1 {
    width: 50%;
    color: rgb(255, 255, 255);
    font-size: 60px;
    font-weight: 700;
    line-height: 70px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.section-slider-item-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-slider-item-btns button {
    min-width: 200px;
    font-size: 14px;
    font-weight: 400;
    line-height: 50px;
    text-transform: uppercase;
    transform: 0.3s;
    height: 50px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    transition: 0.3s;
}

.section-slider-item-btns .btnRequest {
    display: none;
}

.section-slider-item-btns button:hover {
    background-color: #fff;
    color: #92514e;
    border: 1px solid #fff;
}

.section-slider {
    position: relative;
}

.section-slider-form {
    max-width: 50%;
    position: absolute;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
    background: #ffffff;
    padding: 25px 40px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    width: 570px;
    z-index: 5;

}

.section-slider-form h2 {
    color: #474751;
    font-size: 34px;
    font-weight: 400;
    line-height: 50px;
    text-align: center;
    margin-bottom: 24px;
    position: relative;

}

.section-slider-form h2::after {
    position: absolute;
    content: '';
    width: 150px;
    height: 6px;
    bottom: -8px;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 6px 0px 6px 0px;
    background: #96231e;
}

.section-slider-form input {
    width: 100%;
    height: 44px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.section-slider-form button {
    min-width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 50px;
    text-transform: uppercase;
    transform: 0.3s;
    height: 50px;
    text-align: center;
    background-color: #96231E;
    color: #fff;
    border: none;
    outline: none;
}

.section-slider-form p {
    color: #7a7a80;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    margin-bottom: 24px;
}

.section-slider-form form p {
    border: 1px solid #DADAE5;
    padding: 20px;
    text-align: left;
}

.month,
.time {
    position: relative;
}

.month::after {
    position: absolute;
    content: url(../image/svg/calendar.svg);
    top: 0;
    width: 18px;
    height: 20px;
    right: 10%;
    top: 20%;
}

.time::after {
    position: absolute;
    content: url(../image/svg/clock.svg);
    top: 0;
    width: 18px;
    height: 20px;
    right: 10%;
    top: 20%;
}

/* slick-prev slick-arrow */

.section-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    height: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 0;
    width: 70px;
    transform: scale(0.7);
}

.section-slider .slick-prev {
    background: url(../image/svg/slider-arrow.svg) no-repeat;
    left: 20px;
}

.section-slider .slick-next {
    background: url(../image/svg/slider-arrow.svg) no-repeat;
    right: 20px;
    transform: rotate(180deg) scale(0.7);
}

.section-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    list-style: none;
    padding-left: 0;
}

.section-slider .slick-dots button {
    font-size: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    outline: none;
    background-color: #ffffff50;
    cursor: pointer;
}

.section-slider .slick-dots .slick-active button {
    background-color: #ffffff;
}

.section-about {
    padding: 80px 0;
}

.section-about .row {
    align-items: center;
}

.section-about p {
    margin-bottom: 30px;
}

.section-about a {
    border: 1px solid #46467D;
    padding: 14px 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #46467D;
}

.section-about-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.section-service {
    padding: 65px 0 90px 0;
    background-color: #EDEDF2;
}

.section-service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    text-decoration: none;
    padding: 30px;
    gap: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.section-service-item-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #46467d33;
}

.section-service-item h3 {
    color: #474751;
}

.section-service-item-link {
    height: 44px;
    border: 1px solid #46467D;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    color: #46467D;
}

.section-choose {
    padding: 70px 0;
}

.section-choose-item {
    text-align: center;
    margin-bottom: 38px;
}

.section-choose-item h4 {
    color: #474751;
    font-size: 22px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
    margin-bottom: 40px;
}

.section-choose-item h4::after {
    position: absolute;
    content: '';
    width: 200px;
    height: 1px;
    background-color: #46467D;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
}

.section-contact-image {
    background: url('../image/form.jpeg') no-repeat center center / cover;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 80px;
}

.section-contact-form {
    width: 100%;
    max-width: 580px;
}

.section-contact-form h2 {
    color: #fff;
    text-align: left;
}

.section-contact-form h2::after {
    background-color: #fff;
    left: 0;
    transform: translateX(0);
}

.section-contact-form form {
    display: flex;
    flex-direction: column;
}

.section-contact-form form input {
    height: 50px;
    margin-bottom: 20px;
    border: 1px solid #DADAE5;
    outline: none;
    background-color: transparent;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
}

.section-contact-form form input::placeholder {
    color: #B5B5C1;
}

.section-contact-form form button {
    height: 50px;
    border: none;
    outline: none;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #46467D;
    background-color: #fff;
    display: inline;
    width: max-content;
    min-width: 180px;
    text-transform: uppercase;
    transition: 0.3s;
}

.section-contact-form form button:hover {
    background-color: #46467D;
    color: #fff;
}

.section-contact-map {
    width: 100%;
    height: 100%;
}

.section-contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 450px;
}

.section-contact .col-12,
.section-contact .col-md-6 {
    padding: 0;
}

.footer {
    background-color: #2A2A51;
    color: #fff;
}

.footer-top {
    padding: 70px 0;
}

.footer-top h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 28px;
    position: relative;
}

.footer-top h2::after {
    position: absolute;
    content: '';
    width: 150px;
    height: 2px;
    background: #96231E;
    left: 0;
    bottom: -10px;
    background-color: #ffffff40;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-menu li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    color: #fff;
    opacity: 0.6;
    text-decoration: none;
    transition: 0.3s;
}

.footer-menu li a:hover {
    opacity: 1;
}

.footer-contact,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 16px;
    color: #aaaab9;
    display: flex;
    align-items: center;
}

.footer-contact li a {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #fff;
    margin-left: 8px;
    text-decoration: none;
}

.footer-contact li ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li ul li {
    margin-bottom: 0;
}

.footer-contact li ul li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}

.footer-contact li ul li a:hover {
    background-color: #96231E;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid hsla(0, 0%, 100%, 0.3);
}

.footer-bottom span,
.footer-bottom a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #aaaab9;
    text-decoration: none;
}

.footer-bottom a {
    font-weight: 600;
}

/* page */

.page-breadcrumb {
    padding: 80px 0;
    background-color: #F4F4F7;
    color: #474751;
    margin-bottom: 70px;
}

.page-breadcrumb h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    text-align: center;
}

.page-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-breadcrumb ul li a {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    color: #474751;
}

.page-breadcrumb ul li:last-child a {
    color: #96231E;
}

.page-body {
    margin-bottom: 70px;
}

.page-body .page-content {
    margin-bottom: 70px;
}

.page-body .site-title {
    font-size: 40px;
}

.page-body .site-title.left {
    text-align: left;
}

.page-body .site-title.left::after {
    left: 0;
    transform: translate(0, 0);
}

.page-body .section-choose-item {
    text-align: left;

}

.page-body .section-choose-item h4::after {
    left: 0;
    transform: translate(0, 0);
}

.page-service-item {
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 50px;
    margin-bottom: 30px;
    text-decoration: none;
}

.page-service-item h3 {
    color: rgb(71, 71, 81);
    font-size: 22px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 10px;
}

.page-service-item p {
    color: rgb(122, 122, 128);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.page-service-item-icon {
    min-width: 120px;
    min-height: 120px;
    max-width: 120px;
    max-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #46467d33;
}

.page-verification-item {
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
    background: rgb(255, 255, 255);
    padding: 50px;
    height: 100%;
}

.page-verification-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.page-verification-item-body {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-verification-item-body li a {
    text-decoration: none;
    color: #474751;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.page-verification-footer {
    padding: 65px 0 80px 0;
    background-color: #46467D;
    text-align: center;
    color: #fff;
}

.page-verification-footer h3 {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    text-align: center;
    margin-bottom: 5px;
}

.page-verification-footer p {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
}

.page-verification-footer a {
    height: 50px;
    padding: 16px 30px;
    color: rgb(150, 35, 30);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #fff;
}

.page-contact-item {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.page-contact-item h2 {
    color: rgb(71, 71, 81);
    font-size: 22px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
    margin-bottom: 32px;
}

.page-contact-item h2::after {
    position: absolute;
    content: '';
    width: 150px;
    height: 2px;
    background: #46467d65;
    left: 0;
    bottom: -10px;
}

.page-contact-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
}

.page-contact-item ul li {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #46467D;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-contact-item ul li a {
    color: #7A7A80;
    font-weight: 400;
    text-decoration: none;
}

.page-feedback-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-feedback-wrapper .site-paragraph {
    text-align: center;
    margin-bottom: 30px;
}

.page-feedback-wrapper label {
    color: rgb(71, 71, 81);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 10px;
    width: 100%;
}

.page-feedback-wrapper label input {
    width: 100%;
    height: 44px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.page-feedback-wrapper .month::after {
    right: 3%;
}

.page-feedback-wrapper button {
    min-width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 50px;
    text-transform: uppercase;
    transform: 0.3s;
    background: #96231e;
    border: none;
    outline: none;
    color: #fff;
    display: inline;
    width: max-content;
    min-width: 180px;
    text-align: center;
}

.page-feedback-wrapper button:hover {
    background-color: #96241ed9;
}



@media (max-width:1200px) {

    .header-wrapper .header-menu,
    .header-wrapper .header-lang,
    .section-slider-form {
        display: none;
    }

    .header-wrapper .header-burger,
    .section-slider-item-btns .btnRequest {
        display: block;
    }
}

@media (max-width:991px) {

    .section-slider-item h1 {
        width: 80%;
        font-size: 60px;
    }

    .section-about-image {
        margin-top: 30px;
    }

    .section-slider-item-btns {
        flex-wrap: wrap;
    }
}

@media (max-width:768px) {

    .section-slider-item h1 {
        width: 90%;
        font-size: 44px;
        line-height: 50px;
    }

    .section-slider-item span {
        width: auto;
        display: block;
        font-size: 26px;
    }

    .section-about-image {
        margin-top: 30px;
    }

    .section-slider-item-btns {
        flex-wrap: wrap;
    }

    .site-title {
        font-size: 30px;
    }

    .site-title::after {
        width: 100px;
    }

    .section-contact-image {
        padding: 40px;
    }

    .page-breadcrumb {
        padding: 60px 0;
        margin-bottom: 50px;
    }
}

@media (max-width:540px) {

    .section-slider-item span,
    .section-slider-item h1 {
        width: 100%;
        text-align: center;
    }

    .section-slider-item-btns {
        justify-content: center;
    }

    .section-slider-item h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .section-slider-item span {
        font-size: 20px;
    }

    .section-slider-item-btns button {
        line-height: 40px;
        height: 40px;
    }

    .page-breadcrumb {
        padding: 40px 0;
        margin-bottom: 40px;
    }

    .page-breadcrumb h1 {
        font-size: 30px;
    }

    .page-body .site-title {
        font-size: 30px;
    }

    .page-service-item {
        padding: 26px;
    }

    .page-contact-item ul,
    .page-contact-item ul li {
        flex-wrap: wrap;
    }

    .page-contact-item ul {
        gap: 14px;
    }
}

@media (max-height: 750px) {
    .section-slider-form {
        padding: 20px;
        transform: translateY(-50%) scale(0.8);
        left: 54%;
    }
}

@media (max-height: 600px) {
    .section-slider-form {
        padding: 20px;
        transform: translateY(-50%) scale(0.75);
        left: 54%;
    }
}
