



/****header*****/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.top-bar-container{
    width: 100%;
    background: black;
}
.top-bar {            
    color: white;
    display: flex;
    justify-content: right;
    gap: 30px;
    align-items: center;
    padding: 5px 20px;
    font-size: 14px;
    max-width:1320px;
    width:100%;
    margin:0 auto;
}
.top-bar span {
    display: flex;
    align-items: center;
    gap: 10px;
} .top-bar span a {
    display: flex;
    align-items: center;
    
}
.top-bar .closed {
    padding: 2px 5px;
    border-radius: 3px;
}

.header {
    width: 100%;
     /* box-shadow: 0 2px 5px rgba(0,0,0,0.1);  */
     transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
   
}
.header.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%); /* Готуємо до анімації */
    animation: slideDown 0.3s ease forwards;
    background-color:#fff;
    z-index: 99;
}

/* Анімація появи */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:100px;
    background: white;           
    max-width:1320px;
    margin:0 auto;
}
.header-menu{
    display: flex;
    gap:60px;
    width: 75%;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: black;
}
.logo img {
    height: 40px;
    margin-right: 10px;
}
nav.header-nav {
    width: 75%;
    display: flex;
    align-items: center;
    height:100px;
}

nav.header-nav ul li a:hover {
    color:#ff8000;
}
/* Ховаємо підменю за замовчуванням */
.main-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    z-index: 1000;
}

/* Показуємо підменю при наведенні на батьківський пункт */
.main-menu li.menu-item-has-children {
    position: relative;
}


@media (min-width: 900px) {
    .main-menu li.menu-item-has-children:hover > .sub-menu {
        display: block;
    }
}

/* Стилі для пунктів підменю */
.main-menu .sub-menu li {
    display: block;
    white-space: nowrap;
    height:auto;
}

.main-menu .sub-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.main-menu .sub-menu a:hover {
    
    color: #ff8000;
}
nav.header-nav ul{
    display: flex;
    list-style: none;
    margin: 0;
    gap: 40px;
    align-items: center;
    position:relative;
}
nav.header-nav ul li.menu-item-type-custom{
    display: flex;
    list-style: none;
    margin: 0;            
    height: 40px;
    align-items: center;
    position:relative;
}
nav.header-nav ul li a{
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color:#000; 
    transition: all 0.3s ease-in-out;         
}

.quote-button {
    padding: 22px 10px 22px 20px;
    border: 1px solid black;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    background: #ff8000;
    transition: 0.5s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    transform: perspective(80px) rotateY(-10deg);
}
@media (min-width:900px){
    .mobile, .mobile-phone {
        display: none;
    }   
}


@media (max-width:900px){
    .logo a{
        display: flex;
        align-items: center;
    } 
    .top-bar-container,
    .header-nav,
    .quote-button-header {
        display: none !important;
    }
    .logo img {
        height: 30px;
    }
    .header-container {
        padding: 0 15px;
        height: 70px;
        width: 100%;
    }

    .header-menu {
        width: 100%;
        justify-content: space-between;
        gap:0;
    }
    .mobile-phone {
        display: inline-flex;
        align-items: center;
        font-size: 16px;
        gap: 5px;
        color: #000;
    }

    .mobile div {
    display: block;
    position: relative;
    
    height: 50px;
    width: 50px;
    
    z-index: 9999999;
   
    cursor: pointer;
    box-sizing: content-box;
}
.mobile div span {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background-color: #ff8000;
    border-radius: 13px;
    transition-duration: .4s;
}
.mobile div span:nth-child(1) {
    top: 14px;
}
.mobile div span:nth-child(2) {
    top: 23px;
}
.mobile div span:nth-child(3) {
    bottom: 14px;
}
.mobile div.active span:nth-child(1) {
    transform: translate(-15px, 9px) rotate(-45deg);
}
.mobile div.active span:nth-child(2) {
    transition-duration: 0s;
    opacity: 0;
}
.mobile div.active span:nth-child(3) {
    transform: translate(-15px, -9px) rotate(45deg);
}
.mobile nav.header-nav-mobile {
    display: block;
    position: fixed;
    bottom: 16px;
    right: 16px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    z-index: 9999990;
    transition-duration: .4s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mobile nav.header-nav-mobile.open {
    background-color: rgba(0, 0, 0, 1);
    width: 100vw;
    height: 100vh;
    left: 0px;
    top: 0px;
    border-radius: 0;
}
.mobile nav.header-nav-mobile ul {
    display: none;
}
.mobile nav.header-nav-mobile ul.show {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    background:none;
    min-width: 320px;
}
.main-menu.show .sub-menu.open{
    display: block;
    position: relative;
    background-color: inherit;
    margin-top: 10px;
    margin-left: 0;
}
.main-menu.show .sub-menu a {
    color:#fff;
    font-size: 20px;
    padding: 0px 10px;
}
.mobile nav.header-nav-mobile ul li {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: transparent;
    width: 100%;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    flex-direction: column;
}
.mobile ul li:not(:last-child) {
    margin-bottom: 20px;
}
.mobile ul.sub-menu li{
    margin-bottom: 5px;
}
.mobile ul li a {
    font-size: 24px;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #fff;
}
@keyframes fadein {
    0% {
        opacity: 0;
        
    }
    100% {
        opacity: 1;
    }
}


.header-nav-mobile .menu-item-has-children.show > ul {
    display: block;
}
.header-nav-mobile .menu-item-has-children{
    width: 100%;
    position: relative;
}
.header-nav-mobile .menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 15px;    
    right: 0%;
    border: solid #FF8500;
    border-width: 0 2px 2px 0;
    padding: 4px;
    transform: rotate(45deg); /* стрілка вниз */
    transition: transform 0.3s ease;
}

/* Коли підменю відкрите — обертаємо стрілку вгору */
.header-nav-mobile .menu-item-has-children.show::after {
    transform: rotate(-135deg); /* стрілка вгору */
}
}  

@media (max-width:768px){

    .header-container{
        padding:0;
    }
    .logo img {
        height: 22px;
    }
    .mobile-phone {
        font-size: 14px;
    }
}



/******************************************************************/


/******home section******/
.container-home {
    display: flex;
    align-items: center;
    max-width: 1440px;
    margin: 50px auto;
    gap:30px;
}
.content {
    flex: 1;
}
.content h1 {
    font-size: 62px;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight:900;
    line-height:74px;
    color: #000;        
}
.content h1 .highlight {
    color: #03698b            ;
    font-family: "Inter", sans-serif;        
}
.content .home-need {
    font-size: 18px;
    color: #333;
}
.home-need{
    padding:20px 0;
}
.content .highlight-text {
    color: #ff6600;
    font-weight: bold;
}
.rating {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 18px;
}
.rating i {
    color: #ffa500;
    margin-right: 5px;
}
.rating span {
    padding-left: 5px;
}
.reviews {
    display: flex;
    gap: 30px;
    margin: 10px 0 30px;
    height:80px;
}
.reviews img {
    height: 80px;
    width: auto;
}
.image-container {
    flex: 1;
    text-align: right;
}
.image-container img {
    max-width: 100%;
    border-radius: 10px;
}

/************************/




/******quote section******/

.quote-form-section{
    width: 100%;
    padding:105px 0 ;
    background-color: #e7e2dd40;
}
.quote-form-container {
    background-color: #05698B;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1260px;
    margin: auto;
}
.quote-form-top {
    display: flex;
    gap: 20px;
    align-items: center;
}
.quote-form {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    width: 100%;
    height:50px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 5px;
}
.quote-form input {
    flex: 1;
    min-width: 120px;
    padding: 5px 10px;
    border: none;
    border-right: 2px solid  #E2EBF0;
    outline: none;
    border-radius:none;
}

.quote-form input::placeholder {
    text-align: center;}

.quote-form input:last-child {
    border-right: none;
}
.quote-form-footer {
    display: flex;
    width: 65%;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    color: white;
    font-size: 14px;
    line-height:1.2;
}
.quote-form-footer a {
    color: white;
    text-decoration: underline;
}
button.quote-button, .quote-button {
    width: 165px;
    height: 65px;
    border-radius: 15px;
    font-size: 14px;
    border: 1px solid #fff;
    font-weight: 700;
    color: #fff;
    transform: perspective(50px) rotateY(-5deg);
    transition:all 0.5s ease;
}
.quote-button-rite{
   transition:all 0.5s ease;
   border: 1px solid #fff; 
}
.button.quote-button:hover, .quote-button:hover, .quote-button-rite:hover {
 color:#ff8000;
 border: 1px solid #ff8000;
background-color: #fff;
}
.quote-checkbox {
    display: flex;
    align-items: center;
}
.quote-checkbox input {
    margin-right: 20px;
}



/************************/

/******moving services section******/
.moving-service {
    font-family: "Inter", sans-serif;
    max-width: 1440px;
    margin: auto;
    padding: 60px 0 120px;
}
.moving-header {
    font-family: "Inter", sans-serif;
    font-size: 36px;
    font-weight: 800;
    padding-left:120px;
}
.moving-subheader {
    font-size: 14px;
    padding-left:120px;
    font-weight: 700;
}
.moving-menu {
    display: flex;
    width: 90%;
    margin:0 auto;
    gap: 35px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 400;
}
.moving-menu a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.moving-menu a.active {
    color: #ff8000;        
}
.moving-menu a.active svg path{
    stroke: #ff8000;
}
.moving-content {
    display: none;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding:0 35px;
}
.moving-content.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.moving-content img {
    width: 450px;
    height: auto;

}
.moving-text {
    max-width: 60%;
}
.moving-text h3{
    font-size: 24px;
    font-weight:600;
    padding-bottom:20px;
}
.moving-text p {
    padding-bottom:10px;
    line-height: 1.2;
    color: #757575;
}
.moving-text a {
    color: #05698B;
    text-decoration: none;
    font-weight: 600;
    font-size:14px;
}
.moving-content.active {
    display: flex;
}

/************************/


/******features section******/

.features-section{
        background-color: #F8FAFB;
        padding: 45px 0;
}
.container-features {
    max-width: 1320px;
    margin: 0 auto;            
    text-align: center;           
}
.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}
.features {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.feature-box {
    flex: 1;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 20px;
}
.feature-title-content{
    display:flex;
    gap:14px;
    margin-bottom: 10px;
    align-items: center;
}
.feature-icon {
    width: 50px;
    height:50px;            
}
.feature-title {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align:center;
    line-height:1; 
}
.feature-text {
    font-weight: 500;
    font-size: 14px;
    color: #757575;
    font-family: "Inter", sans-serif;
    line-height:1.5;
}

/************************/


/******handle section******/
.handle-section {
    width: 100%;
    padding: 60px 0;
}

.container-handle {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.image-container {
    flex: 1;
    position: relative;
}

.image-container img {
    width: 100%;
    border-radius: 12px;
}

.text-container {
    flex: 1;
}

.text-container h2 {
    font-size: 36px;
    font-weight: 800;
    padding-bottom: 20px;
    font-family: "Inter", sans-serif;
}

.text-container .from-start {
    color: #05698B;
    font-weight: 600;
    padding-bottom: 20px;
}

.collect-text {
    color: #757575;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 10px;
    font-family: "Inter", sans-serif;
}

.read-more {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
    color: #000;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
}

.hidden-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    color:#757575;
    font-family: "Inter", sans-serif;
}

.highlight-text {
    font-weight: 700;
    font-size: 14px;
    color: #05698B;
    display: flex;
    font-family: "Inter", sans-serif;
    padding-top: 20px;
    align-items: center;
}

.highlight-text span {
    padding-right: 20px;
}
.highlight-text span img{ 
    width:auto;
    height:25px;
}
/************************/



/******affordabl section******/
.affordable-moving{
    padding:62px 0;
    width:100%;
}
.quote-form-title{
    max-width:1260px;
    margin:20px auto 0;
}
.quote-form-title h2{
    font-family: Inter;
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    padding-bottom:5px;
}
.quote-form-title p{
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
}
.quote-form-section-two{
    padding-top:20px;
    max-width: 1260px;
    width:100%;
    margin: 0 auto;
}

/************************/
/****** galery******/

.gallery-container {
    max-width: 100%;
    margin: 50px auto;
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}




/************************/
/******rewiew section******/
.reviews-section {
    padding: 100px 0;
}

.reviews-container {
    max-width: 1250px;
    margin: 0 auto;
}
.reviews-container h2{
    font-family: Inter;
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    padding-bottom:5px;
    padding-right:30px;
}
 .reviews-container h3{
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    text-align: right;
    padding-right:30px;
}
.reviews-container h3 span{
    font-family: Inter;
    color:#05698B;
}
.swiper-container-reviews {
    width: 100%;
    max-width: 1250px; 
    padding: 30px 50px 20px; 
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide-reviews {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #00AEEF;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* ВАЖЛИВО: уникнення розширення через padding */
}
.profile-top {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom:20px;
}
.profile-top-name h3{
    margin:0;
    font-family: Inter;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    padding-right: 0;
    text-align: center;
}
.stars {
    color: gold;
    font-size:24px;
}
.profile-top-name {
    text-align: center;
}
.profile-pic {
    font-family: Inter;
    width: 80px;
    height: 80px;
    
    color: white;
    
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 500;
    position: relative;
}
.profile-pic::after{
    position: absolute;
    content: '';
    width: 70px;
    height: 70px;
    background-color: #00AEEF;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.swiper-slide-reviews p{
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0%;

}

.google-reviews {
    width: 100%;
    display: flex;
    justify-content:start;
    padding:10px 0 0;
}

.google-reviews img {
    width: auto;
}
    .swiper-slide-reviews.first-visible {
        transform: perspective(200px) rotateY(4deg);
}

.swiper-slide-reviews.third-visible {
    transform: perspective(200px) rotateY(-4deg);
}
.custom-prev, .custom-next {
    width: 60px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.custom-prev {
    left: -20px; /* Позиція лівої стрілки */
}

.custom-next {
    right: -20px; /* Позиція правої стрілки */
}

/* Стилі для SVG */


.custom-prev:hover svg path,
.custom-next:hover svg path {
    stroke: #000; /* Зміна кольору при наведенні */
}
/************************/

/******faq section******/
.faq-section{
    width: 100%;
    background-color: #F8FAFB;
    padding: 105px 0;
}
 .container-faq {
    max-width: 1220px;
    margin: 0 auto;
}
.section-fac-title {
    font-family: Inter;
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    padding-bottom:5px;
}
.section-subtitle {
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0%;
    padding-bottom:20px;
}
.section-subtitle span{
    color: #FF8F05;
}

.faq-container {
    max-width: 1220px;
    display: flex;
    gap: 60px;
    margin: 0 auto;
}
.faq-item {
    flex: 1;           
    border-radius: 8px;
    text-align: left;
}
.faq-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    height: 200px;
    object-fit: cover;
}
.faq-title-blog {
    font-family: Inter;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 10px;
}
.faq-text {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 10px;
    color: #757575;
}
.faq-link {
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;          
    margin-top: 10px;
    display: flex;
    align-items: center;
    color:#000;
    }
/************************/


/******rate section******/
.our-rite-section{
    width: 100%;
    padding:60px 0;
}
    .container-rate {
    max-width: 1280px;
    margin:0 auto;            
}
.section-title-rite {
    font-family: Inter;
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 10px;
    padding-left:20px;
            }
.section-subtitle-rite {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 40px;
    padding-left:20px;
    color: #757575;
    max-width:60%;
    line-height:1.3;
}
.rates-container {
    display: flex;
    gap: 30px;
}
.rate-card {
    flex: 1;
    background: #F7FAFB;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    
}
.rate-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}
.rate-title {
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}
.rate-text {
    font-family: Inter;
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 400;
    line-height:1.5;
}
.rate-list {
    list-style: none;
    padding: 0;
    margin:0 0 20px 0 !important;
}
.rate-list li {
    font-family: Inter;
    font-size: 16px;
    color: #757575;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    line-height:1.5;
}
.rate-list li::before {
    content: "\2713";
    color: #00b894;
    font-weight: bold;
    margin-right: 8px;
}
.quote-button-rite {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff8000;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    width: 80%;
    margin: 30px auto 0;
    transform: perspective(200px) rotateY(8deg);
}



/************gallery*************/




.swiper {
    width: calc(min(1300px, 90%));
    margin: 0 auto;
    padding-top: 50px;
    min-height: 620px;
    overflow: visible;
  }
  
  @media screen and (min-width: 500px) {
    .swiper {
      display: grid;
    }
  }
  
  .swiper-slidee {
    width: 300px;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: height 0.5s ease-in-out !important;
    overflow: hidden;
    position: relative;
    /* background: url("https://images.unsplash.com/photo-1556206079-747a7a424d3d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=871&q=80") no-repeat 50% 50% / cover; */
  }
  
  .swiper-slidee:nth-of-type(2) {
    background: url("https://images.unsplash.com/photo-1500835556837-99ac94a94552?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=387&q=80") no-repeat 50% 50% / cover;
  }
  
  .swiper-slidee:nth-of-type(3) {
    background: url("https://images.unsplash.com/photo-1528543606781-2f6e6857f318?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=465&q=80") no-repeat 50% 50% / cover;
  }
  
  .swiper-slidee:nth-of-type(4) {
    background: url("https://images.unsplash.com/photo-1504598318550-17eba1008a68?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=386&q=80") no-repeat 50% 50% / cover;
  }
  
  .swiper-slidee:nth-of-type(5) {
    background: url("https://images.unsplash.com/photo-1503220317375-aaad61436b1b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=870&q=80") no-repeat 50% 50% / cover;
  }
  
  .swiper-slidee:nth-of-type(6) {
    background: url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=870&q=80") no-repeat 50% 50% / cover;
  }
  
  .swiper-slidee:nth-of-type(7) {
    background: url("https://images.unsplash.com/photo-1507608616759-54f48f0af0ee?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=387&q=80") no-repeat 50% 50% / cover;
  }
  
  .swiper-slidee.active,
  .swiper-slidee:hover {
    height: 360px;
    overflow: visible;
  }
  
  .swiper-slidee .btn-more {
    cursor: pointer;
    background: #fff;
    display: grid;
    place-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    letter-spacing: 2px;
    font-size: 0.7rem;
    position: absolute;
    right: 15px;
    top: 15px;
    transition: 0.8s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }
  
  .swiper-slidee .btn-more svg {
    color: #111;
    width: 20px;
    height: 20px;
  }
  
  .swiper-content {
    background: #fff;
    color: #111;
    transform: translatey(140px);
    transition: transform 0.7s;
    overflow: hidden;
    visibility: hidden;
    box-shadow: 2px 20px 20px rgba(0, 0, 0, 0.16);
  }
  
  .swiper-content-inner {
    padding: 30px 15px;
  }
  
  .swiper-content span {
    text-transform: uppercase;
    color: #111;
    letter-spacing: 1px;
    font-size: 0.7rem;
    display: block;
    text-align: center;
    margin-bottom: 5px;
  }
  
  .swiper-content hr {
    width: 35px;
    margin: 10px auto;
  }
  
  .swiper-content h2 {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.5px;
  }
  
  .swiper-content p {
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
  }
  
  .swiper-slidee.active .swiper-content,
  .swiper-slidee:hover .swiper-content {
    transform: translatey(137px);
    visibility: visible;
  }
  
  .swiper-slidee:hover .btn-more,
  .swiper-slidee.active .btn-more {
    opacity: 1;
    visibility: visible;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    top: 50%;
  }
  
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 14px;
    color: #fff;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    border: 1px solid #111;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
  }
  
  .swiper-button-prev {
    left: 30px;
  }
  
  .swiper-button-next {
    right: 30px;
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    border: 1px solid #fff;
  }
  
  .swiper-button-next:hover:after,
  .swiper-button-prev:hover:after {
    color: #fff;
  }
  
  .modalDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity: 0;
    transition: opacity 300ms ease-in;
    pointer-events: none;
    display: grid;
    place-items: center;
  }
  
  .modalDialog > div {
    width: 90%;
    position: relative;
    margin: 0 auto;
    padding: 5px 20px 13px 20px;
    background: #fff;
    text-align: center;
    height: 600px;
    overflow: auto;
    border-radius: 25px;
  }
  
  @media screen and (min-width: 600px) {
    .modalDialog > div {
      width: 50%;
    }
  }
  
  .modal-content {
    max-width: 765px;
    margin: 0 auto;
  }
  
  .modal-content h2 {
    font-weight: 700;
    font-size: 2.3rem;
    margin-bottom: 25px;
  }
  
  .modal-content p {
    text-align: left;
    line-height: 1.6;
  }
  
  .modalDialog img {
    width: 100%;
    max-height: 200px;
    aspect-ratio: 3/2;
    object-fit: cover;
    margin: 60px auto 30px auto;
  }
  
  .modalDialog:target {
    opacity: 1;
    pointer-events: auto;
  }
  
  .modalDialog .close {
    padding: 0;
    color: black;
    line-height: 25px;
    position: absolute;
    right: 20px;
    text-align: center;
    top: 20px;
    width: 30px;
    font-size: 2rem;
    text-decoration: none;
    background: none;
    font-weight: bold;
  }
  
  .modalDialog .close:hover {
    color: #ea4436;
  }
  .gallery-containerr{
      position: relative;
      width: 100%;
  padding:60px 0;
  background:#F8FAFB;
  }
  .section{
      position: relative;
      width: 100%;
    margin-inline: auto;
    background: inherit;
    overflow: hidden;
  }
  .galerry-title{
      max-width:1200px;
      margin:0 auto;
      font-family: Inter;
      font-weight: 800;
      font-size: 36px;
      line-height: 100%;
      text-align: left;
      padding-bottom: 5px;
  }
  .swipers-wrapper{
      align-items:flex-start;
  }
  .swiper {
      background: inherit;
  }
  
/************************/
/***************************service page***********************************/
/****** section******/
.container-home {
    display: flex;
    align-items: center;
    max-width: 1440px;
    margin: 50px auto;
    gap:30px;
}
.content {
    flex: 1;
}
.content h1 {
    font-size: 62px;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight:900;
    line-height:74px;
    color: #000;        
}
.content h1 .highlight-services{
    color: #03698b            ;
    font-family: "Inter", sans-serif;        
}
.content .home-need-services {
    font-size: 20px;
    color: #000;padding:20px 0;
}

.content .highlight-text {
    color: #ff6600;
    font-weight: bold;
}
.rating {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 18px;
}
.rating i {
    color: #ffa500;
    margin-right: 5px;
}
.rating span {
    padding-left: 5px;
}
.reviews {
    display: flex;
    gap: 30px;
    margin: 10px 0 30px;
    height:80px;
}
.reviews img {
    height: 80px;
    width: auto;
}
.image-container {
    flex: 1;
    text-align: right;
}
.image-container img {
    max-width: 100%;
    border-radius: 10px;
}
/************************/

/****** office section******/
.moving-services {
    padding: 60px 0 120px;
}
.office-movers-container {
display: flex;
align-items: center;
max-width: 1100px;
gap: 40px;
margin: 0 auto;
}
.office-movers-image-wrapper {
    width:450px;
}
.office-movers-image {
    border-radius: 12px;
}

.office-movers-content {
    max-width: 600px;
}

.office-movers-title {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 36px;
    padding-bottom:20px;
}

.office-movers-subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #05698B;
    padding-bottom:20px;
}

.office-movers-link {
    color: #007bff;
    text-decoration: none;
}

.office-movers-description {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}
.office-movers-read-more {
    display: inline-block;
    margin-top: 15px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}
.office-movers-read-more:hover {
    text-decoration: underline;
}
/************************/


/****** section******/
.office-moving-services {
    padding: 50px 0;
    width:100%;
    background-color: #F8FAFB;
}

.office-moving-services-container {
    display: flex;
    flex-direction:column;
    max-width: 1100px;
    margin:0 auto;
}
.moving-services-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin:0 auto;
    gap: 30px;
    padding-bottom:20px;
}
.office-moving-services-text {
    max-width: 600px;
    
}

.office-moving-services-title {
    font-family: Inter;
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;

}

.office-moving-services-description {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding:15px 0;
    color: #757575;
}
.office-moving-services-description p{
    padding-bottom:5px;
}
.office-moving-services-image {
    display: flex;
    align-items: start;
}

.office-moving-services-photo {
    display: flex;
    justify-content: flex-start;
}

.office-moving-accordion {
    max-width: 650px;
}
.office-moving-accordion-item {
    margin: 5px 0;

}

.office-moving-accordion-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-right: 30px;
    font-family: Inter;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #05698B;
    padding:8px;
    cursor: pointer;
    }

.office-moving-accordion-question::after {
    content: '';
    position: absolute;
    right: 10px;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"%3E%3Cpath d="M7.50002 18.3337H12.5C16.6667 18.3337 18.3334 16.667 18.3334 12.5003V7.50033C18.3334 3.33366 16.6667 1.66699 12.5 1.66699H7.50002C3.33335 1.66699 1.66669 3.33366 1.66669 7.50033V12.5003C1.66669 16.667 3.33335 18.3337 7.50002 18.3337Z" stroke="%2305698B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M7.05811 8.86621L9.99977 11.7995L12.9414 8.86621" stroke="%2305698B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') no-repeat center;
    transition: transform 0.2s ease;
}
.office-moving-accordion-item.open .office-moving-accordion-question {
    color:#ff8000;
}
.office-moving-accordion-item.open .office-moving-accordion-question::after {
    transform: rotate(180deg);
}

.office-moving-accordion-answer {
    display: none;
    padding: 0 0 10px 20px;
    line-height: 1.6;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #757575;
}

.office-moving-accordion-item.open .office-moving-accordion-answer {
    display: block;
}
/************************/
/****** section******/
.moving-service-section {
    width: 100%;
    padding:50px 0 100px;
}
.moving-service-container{
    width:100%;
    max-width:1320px;
    margin:0 auto;
}
.moving-service-title {
    font-family: Inter;
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    padding-left:120px;
    padding-bottom:5px;

}
.moving-service-subtitle {
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    padding-left:120px;
    padding-bottom:30px;
}
.moving-service-subtitle span {
    color: #05698B;
}
.moving-service-oll{
    display:flex;
    flex-direction:column;
    gap:40px;     
}
.moving-service-items{
    display:flex;
    justify-content:center;
    gap:40px; 
}
.moving-service-item{
    width: 300px;
    height: 60px;
    border-radius: 18px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:4px;
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color:#000;
    transition: .5s ease;
}
.moving-service-item-one{
    border: 1px solid #8DAA44;
}
.moving-service-item-one:hover{
    color: #8DAA44;
}
.moving-service-item-two{
    border: 1px solid #FF8500;
}
.moving-service-item-two:hover{
    color: #FF8500;
}
.moving-service-item-three{
    border: 1px solid #A562D3;
}
.moving-service-item-three:hover{
    color:  #A562D3;
}
.moving-service-item-four{
    border: 1px solid #DFC400;
}
.moving-service-item-four:hover{
    color: #DFC400;
}
.moving-service-item-five{
    border: 1px solid #5EDBBE;
}
.moving-service-item-five:hover{
    color: #5EDBBE;
}
.moving-service-item-six{
    border: 1px solid #59D44E;
}
.moving-service-item-six:hover{
    color:  #59D44E;
}
.moving-service-item-seven{
    border: 1px solid #8D4A00;
}
.moving-service-item-seven:hover{
    color: #8D4A00;
}
.moving-service-item-eight{
    border: 1px solid #4B67E7;
}
.moving-service-item-eight:hover{
    color: #4B67E7;
}

/************************/
/****** section******/

/************************/

/****** section******/
.office-moving-faq {
    padding: 40px 0;
    background-color: #f9f9f9;
}
.container-moving-faq{
    max-width: 1200px;
    margin:0 auto;
}
.faq-moving-title {
    font-family: Inter;
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;

}
.faq-subtitle {
    font-family: Inter;
font-weight: 600;
font-size: 20px;
line-height: 100%;
color:#05698B;
padding:20px 0;
}
.faq-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.faq-column {
    width: 48%;
}
.faq-item {
    margin-bottom: 15px;
    cursor: pointer;
}
.faq-item-question {
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-dot {
    width: 10px;
    height: 10px;
    background-color: #0093C9;
    border-radius: 50%;
    border:1px solid #000;
}
.faq-question {
    font-family: Inter;
font-weight: 700;
font-size: 14px;
line-height: 21px;
letter-spacing: 0%;
color:#05698B;

}
.faq-moving-text {
    font-family: Inter;
    font-size: 14px;
    line-height: 1.5;
    margin-left: 22px;
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.open .faq-text {
    max-height: 300px;
}

/************************/

/***********location page***********/
/******home section******/
.container-home {
    display: flex;
    align-items: center;
    max-width: 1440px;
    margin: 50px auto;
    gap:30px;
}
.content {
    flex: 1;
}
.content h1 {
    font-size: 62px;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight:900;
    line-height:74px;
    color: #000;        
}
.content h1 .highlight-services{
    color: #03698b            ;
    font-family: "Inter", sans-serif;        
}
.content .home-need-services {
    font-size: 20px;
    color: #000;padding:20px 0;
}

.content .highlight-text {
    color: #ff6600;
    font-weight: bold;
}
.rating {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 18px;
}
.rating i {
    color: #ffa500;
    margin-right: 5px;
}
.rating span {
    padding-left: 5px;
}
.reviews {
    display: flex;
    gap: 30px;
    margin: 10px 0 30px;
    height:80px;
}
.reviews img {
    height: 80px;
    width: auto;
}
.image-container {
    flex: 1;
    text-align: right;
}
.image-container img {
    max-width: 100%;
    border-radius: 10px;
}
/************************/

/****** section******/
.unique-moving-services-section {
    padding: 50px 0;
    text-align: center;
    }

    .unique-moving-services-container{
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
    }
    .unique-moving-services-title {
        font-family: Inter, sans-serif;
        font-weight: 800;
        font-size: 36px;
        margin-bottom: 10px;
        text-align:left;
    }

    .unique-moving-services-subtitle {
        font-family: Inter, sans-serif;
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 20px;
        color:#000;
        width: 300px;
        text-align:left;
    }

    .unique-moving-services-grid {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        margin-top: 20px;
        width: 100%;
    }

    .unique-moving-service-column {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .unique-moving-service-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: Inter, sans-serif;
        font-weight: 600;
        font-size: 18px;
        text-decoration: none;
        color: #000;
        transition: color 0.3s;
    }

    .unique-moving-service-item:hover {
        color: #FF8500;
    }

    .moving-service-icon {
        display: inline-flex;
        align-items: center;
        margin-right: 8px;
    }
/************************/

/****** section******/
.handle-section{
    width: 100%;
    padding: 100px 0;
}

.container-handle {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.image-container {
    flex: 1;
    position: relative;
}

.image-container img {
    width: 100%;
    border-radius: 12px;
}

.text-container {
    flex: 1;
}

.text-container h2 {
    font-size: 36px;
    font-weight: 800;
    padding-bottom: 20px;
    font-family: "Inter", sans-serif;
}

.text-container .from-start {
    color: #05698B;
    font-weight: 600;
    padding-bottom: 20px;
}

.collect-text {
    color: #757575;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 10px;
    font-family: "Inter", sans-serif;
}

.read-more {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
    color: #000;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
}

.hidden-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    color:#757575;
    font-family: "Inter", sans-serif;
}

.highlight-text {
    font-weight: 700;
    font-size: 14px;
    color: #05698B;
    display: flex;
    font-family: "Inter", sans-serif;
    padding-top: 20px;
    align-items: center;
}

.highlight-text span {
    padding-right: 20px;
}
.highlight-text span img{ 
    width:auto;
    height:25px;
}
/************************/


/*************contact page***************/
.contact-section{
    width: 100%;
    padding:30px 0 0;

 }
 .container-contact{
     max-width: 1200px;
     margin:0 auto;
     display:flex;
     gap:50px;
 }
    
 .contact-left, .contact-right{
     width: 50%;
 }
 .contact-right{
     display:flex;
     flex-direction:column;
     justify-content: center;
     gap:50px;
 }
 .contact-right h2{
     font-family: Inter;
     font-weight: 800;
     font-size: 36px;
     line-height: 100%;
     letter-spacing: 0%;
 }
 .contact-column{
     display:flex;
     flex-direction:column;
     gap:20px;
 }
 .contact-city{
     font-family: Inter;
     font-weight: 800;
     font-size: 20px;
     line-height: 100%;
     letter-spacing: 0%;
 }
 .contact-inform{
     font-family: "Inter", sans-serif;
     font-weight: 500;
     font-size: 14px;
     display:flex;
     gap:10px;
     align-items:center;
     color:#000;
 }
 .contact-inform a{        
     font-family: "Inter", sans-serif;
     color:#000;
 }
 .contact-inform-time{
     display:flex;
     gap:20px; 
     align-items:center;
 }
 .contact-item-time{
     display:flex;
     gap:5px; 
     font-family: "Inter", sans-serif;
     font-weight: 500;
     font-size: 14px;
 }
/********about pega**************/
.about-home-section {
    width: 100%;
    padding: 60px 0;
}

.container-about {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 55px;
}
.about-image-container{
    width: 45%;
    display: flex;
    align-items: center;
}
.about-image-container img{
    width: 90%;
}
.text-container-about{
    width: 50%;
}
.text-container-about h1{
    font-family: Inter;
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%; 
}
.from-start-about p{
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding:5px 0;
}
/*********faq page*********/
.faq-page-section {
    padding: 40px 0 50px;
    background-color: #f9f9f9;
}
.container-moving-faq{
    width: 1200px;
    margin:0 auto;
}
.faq-title {
    font-family: Inter;
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    padding-left:60px;
}
.faq-page-subtitle {
    font-family: Inter;
font-weight: 600;
font-size: 20px;
line-height: 100%;
color:#05698B;
padding:20px 0 40px 30px;
}
.faq-page-subtitle span{
    color:#000;
}
.faq-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.faq-column {
    width: 48%;
}
.faq-item {
    margin-bottom: 15px;
    cursor: pointer;
}
.faq-item-question {
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-dot {
position:relative;
/* width: 30px; */
}
.faq-dot::before{
content:"";
position: absolute;
width: 15px;
    height: 15px;
    background-color: #0093C9;
    border-radius: 50%;
    border:1px solid #000;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}
.faq-question {
    font-family: Inter;
font-weight: 700;
font-size: 14px;
line-height: 21px;
letter-spacing: 0%;
color:#05698B;

}
.faq-moving-text {
    font-family: Inter;
    font-size: 14px;
    line-height: 1.5;
    margin-left: 22px;
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.open .faq-text {
    max-height: 300px;
}
/*****************media******************/

@media (max-width:1440px){
.header-container {
    width: 90%;
}
.container-home{
    width: 95%;
    margin: 0 auto;
}
.content h1 {
    font-size: 60px;
    line-height: 64px;
}

.moving-menu {
    gap: 30px;
}
.moving-menu a{
    font-size: 18px;
    font-weight: 700;
}
.moving-menu a span{
    width: 24px;
}
.moving-menu a span img{
    width: 100%;
    height: auto;
}
}


@media (max-width:1080px){
nav.header-nav ul {
    gap:25px;
}
.content h1 {
    font-size: 52px;
    line-height: 1.2;
}
.reviews img {
    height: 50px;
}



}



@media (max-width:900px){
.container-home {
    padding-top: 40px;
}
.content h1 {
    font-size:44px;
    line-height: 1;
}
.home-need {
    padding: 5px 0;
}
.features {
    flex-direction: column;
}
.feature-box {
width: 90%;
margin: 0 auto;
}
.rates-container {
flex-direction: column;
width: 100%;
margin: 0 auto;
}
.rate-card {
    border-radius: 20px;
}
.moving-menu{
    display: none;
}


/******service page******/
.faq-content {
    flex-direction: column;
}
.container-moving-faq {
    width: 90%;
}
.faq-column{
    width: 100%;
}
.moving-services {
    padding: 20px 0 40px;
}
.office-movers-container {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    gap: 20px;
}
.office-movers-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}
.office-movers-image-wrapper img{
    width: 50%;
}
.office-movers-title {
    padding-bottom: 0;
}
.office-moving-services-container {
    width: 90%;
    margin: 0 auto;
}
.moving-services-container {
    flex-direction: column;
}
.office-moving-services-image {
    width: 100%;
}
.office-moving-services-image img{
    width: 90%;
    margin: 0 auto;
}
.moving-service-section {
    padding: 30px 0 50px;
}
.moving-service-container{
    width: 90%;
    margin: 0 auto;
}
.moving-service-title,
.moving-service-subtitle{
    padding-left:0;
    text-align: center;
}
.moving-service-items {
    flex-direction: column;
    align-items: center;
}
.office-moving-accordion-question{
    font-size: 16px;
}
/*************/
.get_quote.form {
    overflow: auto;
    max-height: 100vh;
    border-radius: 0px;
}

}


@media (max-width:768px){
    .container-home {
        padding-top: 20px;
        flex-direction: column-reverse;
    }
    .content{
     width: 100%;   
    }
    .content h1, .content h1 span {
        font-size: 36px;
        line-height: 1.2;
    }
    .reviews img {
        height: 30px;
    }
    .quote-form-section{
        padding:30px 20px;
    }
    .moving-header, .moving-subheader {
        padding: 0;
    }
    .moving-menu{
        display: none;
    }
    .moving-content.active{
        flex-direction: column;
        padding: 30px 20px;
        background-color: #F8FAFB;
        border-radius: 25px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
        gap: 20px;
    }
    .moving-content img {
        width: 30%;
    }
    .moving-text h3 {
        text-align: center;
        padding-bottom:10px;
    }
    .moving-text {
        max-width: 100%;
    }
    .moving-text p {
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Кількість рядків */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-bottom: 0;
        margin-bottom: 20px;
        
    }
    .moving-service {
        padding: 20px 15px 50px; 
    }
    .moving-text a {
        color: #ff8000;
        font-size: 16px;
    }
    .container-handle{
        flex-direction: column;
    }
    /* .image-container{
        display: none;
    } */
    h2.section-title,
    .text-container h2 {
        line-height: 1.2;
        text-align: left;        
        padding-bottom: 20px;
    }
    h2.section-title{
        width: 90%;
        margin: 0 auto;
    }
    .container-faq{
        width: 90%;
        margin: 0 auto;
    }
    .faq-container {
        flex-direction: column;
        width: 90%;
    }
    .section-subtitle br{
        display: none;
    }
    .faq-item {
        padding: 25px 15px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }
    .faq-link {
        color: #000;
    }
    .container-rate{
        width: 90%;
        margin: 0 auto;
    }
    .container-rate h2,
    .container-rate p{
        padding-left:0;
    }
    .container-rate p{
        max-width: 100%;
    }
    .reviews-container{
        width: 95%;
        margin: 0 auto;
    }
    .reviews-container h2,
    .reviews-container h3{
        text-align: center;
    }

    /************form affordable************/
    .affordable-moving {
        padding: 20px 15px;
    }
    .quote-form-container{
        padding: 30px 15px 20px;
    }
    .quote-form-top {
        flex-direction: column;
        gap: 20px;
        width: 95%;
    }
    .quote-form {
        flex-direction: column;
        height: auto;
        gap: 15px;
        padding: 15px 0 10px;
    }
    .quote-form input {
        border-bottom: 2px solid #E2EBF0;
        min-width: auto;
        border-right: none;
        width: 90%;
        margin: 0 auto;
    }
    .quote-form input:last-of-type {
        border-bottom: 0;
    }
    .date-label {
        position: relative;
        display: inline-block;
        width: 90%;
        margin: 0 auto;
        border-bottom: 2px solid #E2EBF0;
      }
      
      .date-label::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 height=%2220px%22 viewBox=%220 0 448 512%22%3E%3Cpath d=%22M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z%22 fill=%22%231c1c57%22/%3E%3C/svg%3E") no-repeat center;
        background-size: contain;
        pointer-events: none;
      }
      
      .date-label input {
        padding-left: 40px !important;
      }
    button.quote-button, .quote-button {
        transform: perspective(50px) rotateY(-2deg);
        padding: 11px;
        height: 55px;
    }
    .quote-form-footer {
        width: 95%;
    }
    .quote-checkbox p{
        font-size: 12px;
    }
    .quote-form input::placeholder {
        text-align: left;
    }
    /*************************/
    .unique-moving-services-section {
        padding: 20px 0;
    }
    .unique-moving-services-container{
        width: 95%;
        margin: 0 auto;
    }
    .unique-moving-services-title {
        line-height: 1;
    }
    .unique-moving-services-grid {
        flex-wrap: wrap;
        gap: 15px;
    }
    .unique-moving-service-column {
        width: 46%;
        gap: 16px;
    }
    .unique-moving-service-item {
        font-size:14px;
    }

    /************/
    .handle-section {
        padding: 40px 0 20px;
    }

    /****************************************/
    /******contact page*******/
    .contact-section {
        padding: 30px 0;
        width: 95%;
        margin: 0 auto;
    }
    .container-contact {
        flex-direction: column;
        gap: 30px;
    }

    /*******/
    /***********about page**********/
    .about-home-section {
        width: 90%;
        margin: 0 auto;
        padding: 30px 0;
    }
    .container-about {
        flex-direction: column;
        gap: 25px;
    }
    .about-image-container, .text-container-about{
        width: 100%;
    }.text-container-about h1{
        text-align: center;
    }
    .galerry-title {
        width: 100%;
        padding: 0 20px 10px;
    }
    
    /***********footer**********/
        .footer-container {
            padding: 0 10px;
        }
        .footer-container h4 {
            text-align: center;
        }
        .footer-column.footer-column-menu {
            display: flex;
            gap: 5px;
            justify-content: center;
            align-items: center;
            width: 100%;
        }
        .footer-column.footer-column-logo {
            gap: 20px;
            justify-content: center;
            align-items: center;
            width: 100%;
        }
        .footer-column .contact-info-time {
            flex-direction: column;
            gap: 10px;
        }
        .footer-column.footer-column-menu {
            flex-direction: column;
        }
        .footer-column.footer-column-menu a{
            width: 60%;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 30px;
            margin-bottom: 0;
        }
        
        .contact-left, .contact-right {
            width: 100%;
        }
        .contact-left img{
            width: 100%;
        }
        .contact-right {
            gap: 15px;
        }
        .contact-right h2, .contact-city {
            text-align: center;
        }
        .contact-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .contact-inform-time {
            flex-direction: column;
            align-items: flex-start;
            gap: 7px;
        }

    /**************************/



}
@media (max-width:450px){
    .reviews-container h3 {
        padding-right: 0;
    }
    .stars {
        text-align: center;
    }
    .profile-pic {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}
@media (max-width:400px){
    .profile-pic {
        width: 71px;
        height: 50px;}
}
input[type="checkbox"]{
    width: 25px !important;
    height: 15px !important;
    border-radius: 5px !important;
}
input[type="checkbox"]:checked{
    background-color: #ff8000 !important;
}