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

body {
    background-color: #f6f9fd;
    font-family: Montserrat;
}

.wrapper {
    width: 95%;
    max-width: 1360px;
    margin: auto;
}

/* header */

header {
    margin-top: 24px;
}

.header_container {
    padding: 16px 24px;
    background-color: #ecf1f7;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_container ul {
    display: flex;
    gap: 40px;
}

.header_container ul li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #1c1845;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.header_container ul li a:hover {
    color: #ea7f13;
}

.header_container select {
    padding: 4px 8px;
    background-color: #fff;
    border-radius: 8px;
    border: none;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #0a081f;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.header_container select:hover {
    background-color: #ea7f13;
}

.burger {
    display: none;
}

/* header */

/* main */

/* main_page */

.main_section {
    margin-top: 130px;
}

.main_section_container {
    padding: 80px 0 140px 38px;
    box-sizing: border-box;
    border-radius: 24px;
    background-color: #ecf1f7;
    background-image: url(/wp-content/uploads/2024/07/main_section_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.main_section_info {
    width: 48%;
}

h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 76.8px;
    color: #0a081f;
    text-transform: uppercase;
}

.main_section_info p {
    margin-top: 11px;
    margin-bottom: 32px;
    font-size: 24px;
    font-weight: 400;
    line-height: 33.6px;
}

.main_section_btn {
    display: inline-block;
    padding: 16px 24px;
    background-color: #ea7f13;
    border: 1px solid #ea7f13;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
    color: #0a081f;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.main_section_btn:hover {
    background-color: transparent;
}

.main_section_numbers {
    margin-top: 80px;
    display: flex;
    gap: 32px;
}

.main_section_numbers_box {
    width: 147px;
}

.main_section_numbers_box h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    color: #000;
}

.main_section_numbers_box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    color: #1c1845;
}

.links_to_cities {
    margin-top: 110px;
}

.links_to_cities h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #0a081f;
}

.links_to_cities_container {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
}

.links_to_cities_box {
    padding: 20px;
    border-radius: 24px;
    background-color: #ecf1f7;
    display: flex;
    justify-content: space-between;
    transition: all 0.4s ease-in-out;
}

.links_to_cities_box:hover {
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
}

.links_to_cities_box_description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.links_to_cities_box_description_name h4 {
    font-size: 28px;
    font-weight: 700;
    line-height: 20px;
    color: #0a081f;
}

.links_to_cities_box_description_name p {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #1c1845;
}

.links_to_cities_box_description_link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #ea7f13;
    text-decoration: none;
    position: relative;
}

.links_to_cities_box_description_link:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #ea7f13;
    transition: all 0.5s ease-in;
}

.links_to_cities_box_description_link:hover:after {
    width: 148px;
}

.links_to_cities_box_description_link img {
    transition: all 0.5s ease-in;
}

.links_to_cities_box_description_link:hover img {
    transform: translateX(50px);
    opacity: 0;
}

.about_us {
    margin-top: 120px;
}

.about_us_container {
    display: flex;
    border-radius: 24px;
    background-color: #ecf1f7;
}

.about_us_description {
    padding: 68.5px 40px 0 40px;
}

.about_us_description h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 33.6px;
    color: #0a081f;
}

.about_us_description p {
    margin-top: 24px;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #1c1845;
}

.about_us_link {
    margin-top: 24px;
    padding: 16px 65.5px;
    display: inline-block;
    background-color: #ea7f13;
    border: 1px solid #ea7f13;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
    color: #0a081f;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.about_us_link:hover {
    background-color: transparent;
}

.why_we {
    margin-top: 120px;
}

.why_we h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 43.2px;
    text-align: center;
    text-transform: uppercase;
    color: #0a081f;
}

.why_we_grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
}

.why_we_box {
    padding: 32px 24px;
    background-color: #0a081f;
    border-radius: 24px;
}

.why_we_box h4 {
    margin-top: 24px;
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    color: #e2eef6;
}

.why_we_box p {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
    line-height: 22.4px;
    color: #e2eef6;
}

.why_we_to_contacts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.why_we_to_contacts h5 {
    font-size: 24px;
    font-weight: 500;
    line-height: 33.6px;
    color: #1c1845;
}

.why_we_link {
    width: fit-content;
    padding: 16px 24px;
    border: 1px solid #ea7f13;
    border-radius: 16px;
    background-color: #ea7f13;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
    text-decoration: none;
    color: #0a081f;
    transition: all 0.4s ease-in-out;
}

.why_we_link:hover {
    background-color: transparent;
}

.feedback {
    margin-top: 120px;
}

.feedback_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    padding: 64px 40px;
    border-radius: 24px;
    background-color: #ecf1f7;
}

.feedback_header {
    grid-area: 1 / 1 / 2 / 3;
}

.feedback_header h2 {
    font-size: 64px;
    font-weight: 700;
    line-height: 76.8px;
    text-transform: uppercase;
    color: #0a081f;
}

.feedback_header p {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #1c1845;
}

.feedback_box {
    padding: 24px;
    background-color: #fff;
    border-radius: 24px;
}

.feedback_name {
    font-size: 24px;
    font-weight: 500;
    line-height: 33.6px;
    color: #0a081f;
}

.feedback_txt {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #1c1845;
}

.feedback_rate {
    margin-top: 24px;
}

.faq {
    margin-top: 120px;
}

.faq h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 43.2px;
    text-align: center;
    text-transform: uppercase;
    color: #0a081f;
}

.faq_wrapper {
    width: 65%;
    margin: auto;
}

.faq_container {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq_box {
    padding: 16px 24px;
    border-radius: 24px;
    background-color: #ecf1f7;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.faq_box:hover {
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
}

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

.faq_question_txt {
    display: flex;
    gap: 16px;
}

.faq_question_txt_num,
.faq_question_text {
    font-size: 24px;
    font-weight: 500;
    line-height: 26.88px;
    color: #0a081f;
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #1c1845;
    transition: all 0.4s ease-in-out;
}

.faq_answer ul {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: inside;
}

.faq_answer.active {
    max-height: 200px;
    padding-top: 24px;
    opacity: 1;
}

/* contact_form */

.contact_form {
    margin-top: 120px;
}

.contact_form_container {
    padding: 64px 40px;
    border-radius: 24px;
    background-color: #0a081f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.contact_form_header {
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    color: #e2eef6;
    text-transform: uppercase;
}

.contact_form_txt {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #e2eef6;
}

.contact_form_container form p:nth-child(4) br {
    display: none;
}

.contact_form_container form p:nth-child(4) {
    margin-top: 32px;
    display: flex;
    gap: 24px;
}

.contact_form_container form p:nth-child(4) input {
    width: 280px;
    box-sizing: border-box;
}

.contact_form_container .wpcf7-spinner {
    display: none;
}

.contact_form_name,
.contact_form_phone {
    padding: 16px;
    border: none;
    border-radius: 16px;
    background-color: #fff;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    color: #1c1845;
}

.contact_form_name::placeholder,
.contact_form_phone::placeholder {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    color: #1c1845;
}

.contact_form_submit {
    border: 1px solid #ea7f13;
    border-radius: 16px;
    background-color: #ea7f13;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
    text-align: center;
    color: #0a081f;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.contact_form_submit:hover {
    background-color: transparent;
    color: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    color: #fff;
}

/* contact_form */

/* main_page */

/* rent_warsaw_page */

.main_section_another_bg {
    padding: 80px 0 184px 38px;
    box-sizing: border-box;
    border-radius: 24px;
    background-color: #ecf1f7;
    background-image: url(/wp-content/uploads/2024/07/house_bg.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.main_section_another_bg .main_section_info p {
    margin-bottom: 0;
}

.main_section_info span {
    margin-top: 11px;
    margin-bottom: 32px;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #1c1845;
}

.why_we_city {
    margin-top: 120px;
}

.why_we_city h2 {
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 700;
    line-height: 43.2px;
    text-align: center;
    color: #0a081f;
}

.why_we_city_container {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
}

.why_we_city_box {
    padding: 32px 24px;
    border-radius: 24px;
    box-sizing: border-box;
    background-color: #ecf1f7;
}

.why_we_city_img {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    background-color: #fff;
}

.why_we_city_box h4 {
    margin-top: 24px;
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    color: #0a081f;
}

.why_we_city_box p {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #1c1845;
}

.our_objects {
    margin-top: 120px;
}

.our_objects_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
}

.our_objects_header {
    display: flex;
    align-items: center;
    grid-area: 1 / 1 / 2 / 3;
}

.our_objects_header h2 {
    font-size: 64px;
    font-weight: 700;
    line-height: 76.8px;
    text-transform: uppercase;
    color: #0a081f;
}

.our_objects_box {
    border-radius: 24px;
    background-color: #ecf1f7;
}

.our_objects_box_img {
    width: 100%;
}

.our_objects_box_description {
    padding: 24px;
}

.our_objects_price {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #1c1845;
}

.our_objects_price span {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: -1px;
    color: #ea7f13;
}

.our_objects_name {
    margin-top: 8px;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.01em;
    color: #0a081f;
}

.our_objects_location {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #1c1845;
}

.our_objects_parameters {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.our_objects_parameters span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
    color: #1c1845;
}

.our_objects_btn_more {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}

.our_objects_btn_more .links_to_cities_box_description_link:hover img {
    transform: translateX(0);
}

.why_should_rent {
    margin-top: 120px;
}

.why_should_rent_container {
    display: flex;
    align-items: center;
    background-color: #0a081f;
    border-radius: 24px;
}

.why_should_rent_text {
    padding: 40px;
}

.why_should_rent_text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 50px;
    text-transform: uppercase;
    color: #e2eef6;
}

.why_should_rent_description {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why_should_rent_text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #e2eef6;
}

.why_should_rent_text ul {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why_should_rent_text ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.why_should_rent_txt {
    margin-top: 24px;
    margin-bottom: 24px;
}

.why_should_rent_txt span {
    font-weight: 700;
}

.why_should_rent_btn {
    padding: 15px 24px;
    display: inline-block;
    box-sizing: border-box;
    border: 1px solid #ea7f13;
    border-radius: 16px;
    background-color: #ea7f13;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: #0a081f;
    transition: all 0.4s ease-in-out;
}

.why_should_rent_btn:hover {
    background-color: transparent;
    color: #e2eef6;
}

.cooperation_process {
    margin-top: 120px;
}

.cooperation_process_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 64px;
}

.cooperation_process_header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cooperation_process_header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 43.2px;
    text-transform: uppercase;
    color: #0a081f;
}

.cooperation_process_header img {
    width: 100%;
}

.cooperation_process_grid_item {
    padding: 65px 20px 30px 20px;
    position: relative;
    border-radius: 24px;
    background-color: #ecf1f7;
    box-sizing: border-box;
}

.cooperation_process_grid_item_number {
    width: 87px;
    height: 87px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -38px;
    left: -16px;
    border-radius: 50%;
    background-color: #0a081f;
    font-size: 48px;
    font-weight: 600;
    line-height: 67.2px;
    color: #e2eef6;
}

.cooperation_process_grid_item h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    color: #0a081f;
}

.cooperation_process_grid_item p {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
    color: #1c1845;
}

.cooperation_process_grid_item a {
    font-weight: 700;
    color: #ea7f13;
    text-decoration: none;
}

.cooperation_process_grid_item_img {
    grid-area: 3 / 2 / 4 / 4;
}

.cooperation_process_grid_item_img img {
    width: 100%;
    height: 100%;
}

.why_should_rent.wroclaw_city ul li {
    align-items: center;
}

/* rent_warsaw_page */

/* rent_for_students_page */

.links_to_cities_ps {
    margin-top: 64px;
    font-size: 24px;
    font-weight: 400;
    line-height: 33.6px;
    text-align: center;
    color: #1c1845;
}

.students_page .why_should_rent_text ul li {
    align-items: center;
}

/* rent_for_students_page */

/* about_us_page */

.main_section.about_us_page .main_section_another_bg {
    padding: 80px 0 128px 38px;
    background-position: 100% 30%;
}

.about_us_page .main_section_btn {
    margin-top: 32px;
}

.about_us_page .about_us_description {
    padding: 22px 40px;
}

.excellence {
    margin-top: 120px;
}

.excellence_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px;
    background-color: #0a081f;
}

.excellence_txt {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.excellence_txt h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 33.6px;
    color: #e2eef6;
}

.excellence_txt p {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #e2eef6;
}

.about_us .why_should_rent_container {
    background-color: #ecf1f7;
}

.about_us .why_should_rent_container p {
    color: #1c1845;
}

.about_us .why_should_rent_text ul li {
    align-items: center;
}

.our_mission {
    margin-top: 120px;
}

.our_mission_container {
    padding: 64px 40px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 5.5fr 6.5fr;
    grid-column-gap: 60px;
    background-color: #ecf1f7;
}

.our_mission_container h2 {
    align-self: center;
    font-size: 80px;
    font-weight: 700;
    line-height: 96px;
    text-transform: uppercase;
    color: #0a081f;
}

.our_mission_container p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #1c1845;
}

.career {
    margin-top: 120px;
}

.career_container {
    padding: 64px 40px;
    background-color: #0a081f;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.career_description {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.career_description h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    text-transform: uppercase;
    color: #e2eef6;
}

.career_description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #e2eef6;
}

.career_description ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.career_description ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.career_description h6 {
    font-size: 16px;
    font-weight: 700;
    line-height: 22.4px;
    color: #e2eef6;
}

.career_contacts {
    display: flex;
    gap: 32px;
}

.career_contacts a {
    width: 200px;
    height: 35px;
    border: 1px solid #ea7f13;
    border-radius: 16px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
    color: #ea7f13;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.career_contacts a:hover {
    background-color: #ea7f13;
    color: #1c1845;
}

/* about_us_page */

/* main */

/* footer */

footer {
    margin-top: 120px;
    margin-bottom: 24px;
}

.footer_container {
    padding: 32px;
    border-radius: 24px;
    background-color: #ecf1f7;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.footer_box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer_box a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #0a081f;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.footer_box a:hover {
    color: #ea7f13;
}

.footer_box h5 {
    margin-bottom: 8px;
    font-size: 19.2px;
    font-weight: 700;
    line-height: 23px;
    color: #0a081f;
    text-transform: uppercase;
}

.footer_social_inks {
    margin-top: 20px;
    display: flex;
    gap: 14px;
}

.footer_off {
    display: none;
}

/* footer */

/* media */

@media (max-width: 1280px) {
    .main_section_info {
        width: 55%;
    }
    .about_us_description {
        padding: 40px;
    }
    .feedback_container {
        grid-template-columns: repeat(2, 1fr);
    }
    .feedback_rate {
        display: flex;
        justify-content: flex-end;
    }
    .faq_answer.active {
        max-height: 300px;
    }
    .contact_form_container {
        gap: 20px;
    }
    .contact_form_container form p:nth-child(4) {
        gap: 15px;
    }
    .contact_form_container form p:nth-child(4) input {
        width: 250px;
    }
    .main_section_info span {
        width: 90%;
    }
    .why_should_rent_text h2 {
        line-height: 46px;
    }
    .why_should_rent_description {
        margin-top: 20px;
    }
    .why_should_rent_text p {
        line-height: 20px;
    }
    .why_should_rent_text ul {
        gap: 20px;
    }
    .excellence_txt {
        padding: 30px 40px;
    }
    .excellence_txt {
        gap: 20px;
    }
    .excellence_txt h3 {
        line-height: 30px;
    }
    .excellence_txt p {
        font-size: 18px;
        line-height: 24px;
    }
    .our_mission_container h2 {
        font-size: 70px;
    }
}

@media (max-width: 1024px) {
    .main_section_container {
        padding: 40px;
    }
    .main_section_info {
        width: 70%;
    }
    .main_section_numbers {
        gap: 20px;
    }
    .links_to_cities_container {
        grid-column-gap: 20px;
    }
    .links_to_cities_box {
        padding: 20px;
        flex-direction: column-reverse;
        gap: 20px;
    }
    .links_to_cities_box_description_name h4 {
        font-size: 24px;
        line-height: 24px;
    }
    .links_to_cities_box_description_link {
        margin-top: 20px;
    }
    .about_us_container img {
        display: none;
    }
    .why_we_grid {
        margin-top: 64px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
    .feedback_header h2 {
        font-size: 50px;
    }
    .faq_wrapper {
        width: 95%;
    }
    .faq_answer.active {
        max-height: 400px;
    }
    .contact_form_container {
        padding: 40px;
    }
    .contact_form_container img {
        display: none;
    }
    .contact_form_container form p:nth-child(4) {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-column-gap: 20px;
    }
    .contact_form_container form p:nth-child(4) input {
        width: 100%;
    }
    .main_section_another_bg {
        padding: 40px;
    }
    .main_section_another_bg {
        background-size: 75%;
    }
    .why_we_city_container {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
    .our_objects_container {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
    .mobile_none {
        display: none;
    }
    .cooperation_process_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 20px;
        grid-row-gap: 50px;
    }
    .cooperation_process_grid_item_img {
        display: none;
    }
    .main_section.about_us_page .main_section_another_bg {
        padding: 40px;
        background-position: 100% 100%;
    }
    .excellence_container img {
        display: none;
    }
    .our_mission_container {
        padding: 40px;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 20px;
    }
    .our_mission_container h2 {
        font-size: 50px;
    }
    .our_mission_container p {
        font-size: 16px;
        line-height: 24px;
    }
    .career_container {
        padding: 40px;
        flex-direction: column;
    }
    .career_img {
        width: 100%;
    }
}

@media (max-width: 980px) {
    header {
        margin-top: 0;
        padding: 15px 0;
        background-color: rgba(246, 249, 253, 0);
        backdrop-filter: blur(5px);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 10;
    }
    .header_container {
        padding: 15px;
    }
    .logo img {
        width: 150px;
    }
    .main_menu {
        width: 100%;
        padding: 10px 2.5%;
        background-color: #f6f9fd;
        box-sizing: border-box;
        height: calc(100vh - 100px);
        position: fixed;
        top: -100vh;
        left: 0;
        transition: all 0.5s ease-in-out;
    }
    .main_menu ul {
        width: 100%;
        height: 100%;
        padding: 20px 10px;
        border-radius: 24px;
        background-color: #ecf1f7;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }
    .menu_open {
        top: 100px;
    }
    .burger {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }
    .burger_line1,
    .burger_line2,
    .burger_line3 {
        width: 25px;
        height: 3px;
        position: relative;
        background-color: #0a081f;
        border-radius: 2px;
        transition: all 0.6s ease-in-out;
    }
    .burger_line_on1 {
        transform: rotate(45deg);
        top: 6px;
    }
    .burger_line_on2 {
        opacity: 0;
    }
    .burger_line_on3 {
        transform: rotate(-45deg);
        top: -6px;
    }
    .main_section {
        margin-top: 140px;
    }
    .main_section_container {
        padding: 15px;
        background-size: 0%;
    }
    .main_section_info {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    h1 {
        margin-top: 15px;
        font-size: 34px;
        line-height: 40px;
        text-align: center;
    }
    .main_section_info p {
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }
    .main_section_btn {
        text-align: center;
    }
    .main_section_numbers {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .main_section_numbers_box h4 {
        text-align: center;
    }
    .links_to_cities {
        margin-top: 80px;
    }
    .links_to_cities h2 {
        font-size: 30px;
    }
    .links_to_cities_container {
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
    }
    .links_to_cities_box {
        padding: 20px 10px;
    }
    .links_to_cities_box img {
        width: 100%;
    }
    .links_to_cities_box_description img {
        width: unset;
    }
    .about_us_description {
        padding: 15px;
    }
    .about_us {
        margin-top: 80px;
    }
    .about_us_description h3 {
        font-size: 22px;
        line-height: 26px;
    }
    .about_us_description p {
        margin-top: 20px;
        font-size: 18px;
        line-height: 24px;
    }
    .about_us_link {
        display: block;
        text-align: center;
    }
    .why_we {
        margin-top: 80px;
    }
    .why_we h2 {
        font-size: 30px;
        line-height: 36px;
    }
    .why_we_grid {
        margin-top: 50px;
        grid-template-columns: 1fr;
        grid-row-gap: 15px;
    }
    .why_we_box {
        padding: 15px;
    }
    .why_we_link {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    .feedback {
        margin-top: 80px;
    }
    .feedback_container {
        padding: 10px;
        grid-template-columns: 1fr;
    }
    .feedback_header {
        grid-area: unset;
    }
    .feedback_header h2 {
        margin-top: 20px;
        font-size: 30px;
        line-height: 36px;
        text-align: center;
    }
    .feedback_box {
        padding: 20px 10px;
    }
    .feedback_rate img {
        width: 100%;
    }
    .faq {
        margin-top: 80px;
    }
    .faq h2 {
        font-size: 30px;
        line-height: 36px;
    }
    .faq_container {
        margin-top: 50px;
    }
    .faq_box {
        padding: 15px;
    }
    .faq_question_txt_num,
    .faq_question_text {
        font-size: 20px;
        line-height: 24px;
    }
    .faq_answer {
        font-size: 16px;
        line-height: 24px;
    }
    .faq_answer.active {
        max-height: 450px;
    }
    .contact_form {
        margin-top: 80px;
    }
    .contact_form_container {
        padding: 20px 10px;
    }
    .contact_form_header {
        font-size: 36px;
        line-height: 40px;
        text-align: center;
    }
    .contact_form_container form p:nth-child(4) {
        grid-template-columns: 1fr;
    }
    .contact_form_submit {
        padding: 16px;
    }
    .main_section_another_bg {
        padding: 20px 15px;
    }
    .main_section_info span {
        width: 100%;
        text-align: center;
    }
    .why_we_city {
        margin-top: 80px;
    }
    .why_we_city h2 {
        font-size: 30px;
        line-height: 36px;
    }
    .why_we_city_container {
        margin-top: 50px;
        grid-template-columns: 1fr;
    }
    .why_we_city_box {
        padding: 15px 10px;
    }
    .our_objects {
        margin-top: 80px;
    }
    .our_objects_container {
        grid-template-columns: 1fr;
    }
    .our_objects_header {
        grid-area: unset;
    }
    .our_objects_header h2 {
        font-size: 30px;
        line-height: 36px;
        text-align: center;
    }
    .why_should_rent {
        margin-top: 80px;
    }
    .why_should_rent_text {
        padding: 20px 10px;
    }
    .why_should_rent_text h2 {
        font-size: 30px;
        line-height: 36px;
        text-align: center;
    }
    .why_should_rent_btn {
        display: block;
        text-align: center;
    }
    .cooperation_process {
        margin-top: 80px;
    }
    .cooperation_process_grid {
        grid-template-columns: 1fr;
        grid-row-gap: 40px;
    }
    .cooperation_process_header h2 {
        font-size: 30px;
        line-height: 36px;
        text-align: center;
    }
    .cooperation_process_grid_item {
        padding: 30px 10px;
    }
    .cooperation_process_grid_item_number {
        width: 55px;
        height: 55px;
        top: -30px;
        left: -5px;
        font-size: 30px;
        line-height: 36px;
    }
    .links_to_cities_ps {
        margin-top: 50px;
        font-size: 20px;
        line-height: 26px;
    }
    .main_section.about_us_page .main_section_another_bg {
        padding: 30px 15px;
    }
    .about_us_page .about_us_description {
        padding: 20px 10px;
    }
    .excellence_txt {
        padding: 20px 10px;
    }
    .our_mission {
        margin-top: 80px;
    }
    .our_mission_container {
        padding: 20px;
    }
    .our_mission_container {
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
    }
    .our_mission_container h2 {
        font-size: 34px;
        line-height: 40px;
        text-align: center;
    }
    .career {
        margin-top: 80px;
    }
    .career_container {
        padding: 20px 10px;
    }
    .career_description h2 {
        font-size: 34px;
        line-height: 40px;
        text-align: center;
    }
    .career_contacts {
        flex-direction: column;
        gap: 24px;
    }
    .career_contacts a {
        width: 100%;
        height: 45px;
    }
    footer {
        margin-top: 80px;
    }
    .footer_container {
        padding: 20px 10px;
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
    }
}

/* media */
