@font-face {
    font-family: 'title';
    font-style: normal;
    font-weight: normal;
    src: url('title.otf') format('opentype');
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FAFBF3;
    color: #2F2F2F;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
}

.mobile-menu,
.mobile-dropdown {
    display: none;
}

.hero {
    position: relative;
    padding: 75px 73px 0;
    background-color: #FAFBF3;
}

.hero__background {
    position: absolute;
    top: 15px;
    left: 40px;
    right: 40px;
    height: 1000px;
    background: url('img/hero-bg.png') center/cover no-repeat;
    border-radius: 32px;
    overflow: hidden;
}

.hidden {
  visibility: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 1.28%,
        rgba(6, 9, 4, 0.2) 49.16%,
        rgba(11, 18, 8, 0.5) 100%
    );
}

.hero__wrapper {
    position: relative;
    z-index: 5;
    height: 1000px;
    display: flex;
    flex-direction: column;
}

.header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

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

.logo__image {
    width: 210px;
    height: 71px;
}

.header__nav {
    backdrop-filter: blur(16.3px);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 64px;
    padding: 15px 30px;
}

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

.nav__link {
    font-size: 18px;
    font-weight: 600;
    color: #EDEDED;
    line-height: 1.22;
    transition: opacity 0.3s ease;
}

.nav__link:hover {
    opacity: 0.8;
}

.header__contact-btn,
.footer__contact-btn {
    background: #FAFBF3;
    backdrop-filter: blur(8.9px);
    border-radius: 64px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #3E3E3E;
    line-height: 1.22;
    transition: transform 0.3s ease;
}

.header__contact-btn:hover,
.footer__contact-btn:hover {
    transform: translateY(-2px);
}

.hero__title {
    position: absolute;
    bottom: 163px;
    left: 0;
    font-family: 'title', sans-serif;
    font-size: 76px;
    font-weight: 500;
    color: #EDEDED;
    line-height: 1.27em;
}

.hero__info {
    position: absolute;
    bottom: 60px;
    right: -35px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 24px;
    font-weight: 400;
    padding: 30px 20px 20px 35px;
    border-radius: 32px 0 32px 0;
    background-color: #FAFBF3;
}

.services,
.projects,
.about {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}



.section-title {
    font-family: 'title', serif;
    font-size: 48px;
    font-weight: 500;
    color: #2F2F2F;
    line-height: 1.27;
}

.section-arrows {
    display: flex;
    gap: 16px;
}

.arrow-btn {
    width: 42px;
    height: 42px;
    background: #78866B;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.arrow-btn:hover {
    background: #3a5a50;
}

.arrow-btn:disabled {
    cursor: not-allowed;
}

.arrow-btn:disabled:hover {
    background: #78866B;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 400px 400px;
    gap: 32px;
}

.services__slider {
    overflow: hidden;
    position: relative;
}

.services__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.services__slide {
    min-width: 100%;
    flex-shrink: 0;
}

.service-card {
    position: relative;
    border-radius: 32px;
}

#first_card {
    grid-row: 1 / 3;
}

.service-card__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 32px;
}

.service-card__image--1 {
    background-image: url('img/service-1.png');
    height: 832px;
}

.service-card__image--2 {
    background-image: url('img/service-2.png');
    height: 400px;
}

.service-card__image--3 {
    background-image: url('img/service-3.png');
    height: 400px;
}

.service-card__image--4 {
    background-image: url('img/service-4.png');
    height: 832px;
}

.service-card__image--5 {
    background-image: url('img/service-5.png');
    height: 832px;
}

.service-card__image--6 {
    background-image: url('img/service-6.png');
    height: 832px;
}

.service-card__image--7 {
    background-image: url('img/service-7.png');
    height: 832px;
}

.service-card__content {
    font-style: 'Montserrat', sans-serif;
    position: absolute;
    bottom: -1px;
    left: -1px;
    color: #000000;
    background: #FAFBF3;
    border-radius: 0 32px 0 32px;
    padding: 20px 15px 10px 15px;
}

#building_section .service-card__content {
    bottom: -1px;
    right: -1px;
    left: auto;
    border-radius: 32px 0 32px 0;
}

.service-card__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.22;
    margin-bottom: 14px;
}

.service-card__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    max-width: 423px;
    min-width: 348px;
}

.projects__slider {
    overflow: hidden;
    position: relative;
}

.projects__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.projects__slide {
    min-width: 100%;
    flex-shrink: 0;
}

.project-card {
    position: relative;
    height: 850px;
    border-radius: 32px;
    overflow: hidden;
}

.project-card__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.project-card__image--1 {
    background-image: url('img/project-1.png');
}

.project-card__image--2 {
    background-image: url('img/project-2.png');
}

.project-card__image--3 {
    background-image: url('img/project-3.png');
}

.project-card__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 1.28%,
        rgba(6, 9, 4, 0.2) 49.16%,
        rgba(11, 18, 8, 0.5) 100%
    );
    filter: blur(1px);
}

.project-card__title {
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-family: 'title', serif;
    font-size: 64px;
    font-weight: 500;
    color: #EDEDED;
    line-height: 1.27;
    text-transform: uppercase;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.project-card__details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 1.28%,
        rgba(6, 9, 4, 0.5) 49.16%,
        rgba(11, 18, 8, 0.8) 100%
    );
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    z-index: 3;
}

.project-card:hover .project-card__details {
    opacity: 1;
    visibility: visible;
}

.project-card:hover .project-card__image {
    transform: scale(1.05);
}

.project-card:hover .project-card__title {
    opacity: 0;
}

.project-card__details-content {
    width: 100%;
    max-width: 1660px;
}

.project-card__details-title {
    font-family: 'title', serif;
    font-size: 64px;
    font-weight: 500;
    color: #EDEDED;
    line-height: 1.27;
    margin-bottom: 60px;
}

.project-card__details-info {
    display: flex;
    gap: 88px;
    color: #FAFBF3;
}

.project-card__details-column {
    flex: 1;
}

.project-card__details-column p {
    font-size: 22px;
    line-height: 1.22;
    margin-bottom: 20px;
}

.project-card__details-column p strong {
    display: block;
    margin-bottom: 10px;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
    margin-bottom: 150px;
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.about__subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.22;
    color: #000000;
}

.about__description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.22;
    color: #000000;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.contact-form__input {
    background: #78866B;
    border: none;
    border-radius: 46px;
    padding: 16px 36px;
    font-size: 20px;
    font-weight: 500;
    color: #FAFBF3;
    line-height: 1.22;
}

.contact-form__input::placeholder {
    color: #FAFBF3;
}

.contact-form__submit {
    background: #012F22;
    border: 2px solid #78866B;
    border-radius: 60px;
    padding: 16px 36px;
    margin-top: auto;
    font-size: 20px;
    font-weight: 600;
    color: #78866B;
    background: #FAFBF3;
    line-height: 1.22;
    transition: all 0.3s ease;
}

.contact-form__submit:hover {
    background: #78866B;
    color: #FAFBF3;
}

.social {
    display: flex;
    gap: 33px;
}

.social__link {
    transition: transform 0.3s ease;
}
.social__link img{
    width: 100px;
}

.social__link:hover {
    transform: scale(1.1);
}

.footer {
    background: #78866B;
    padding: 46px 0;
}

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

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

.footer__location {
    font-size: 24px;
    font-weight: 600;
    color: #FAFBF3;
    line-height: 1.22;
}

.footer__logo .logo__image {
    width: 175px;
    height: 59px;
}

@media (max-width: 1440px) {
    .hero__info {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 1024px;
        padding: 0 40px;
    }

    .hero {
        padding: 3px 40px 0;
    }

    .hero__background {
        height: 625px;
        top: 15px;
        left: 40px;
        right: 40px;
        border-radius: 32px;
    }

    .hero__wrapper {
        height: 637.5px;
    }

    .header {
        margin-top: 53px;
        height: 50px;
        padding: 0 15px;
    }

    .header__logo .logo__image {
        width: 130px;
        height: 38px;
    }

    .header__nav {
        padding: 12.5px 25px;
        border-radius: 40px;
        backdrop-filter: blur(10.2px);
    }

    .nav__list {
        gap: 20px;
    }

    .nav__link {
        font-size: 12.5px;
    }

    .header__contact-btn {
        padding: 12.5px 25px;
        font-size: 12.5px;
        border-radius: 40px;
        backdrop-filter: blur(5.6px);
    }
    
    .hero__title {
        bottom: 10px;
        left: 17px;
        font-size: 50px;
        line-height: 1.27em;
    }

    .hero__info {
        bottom: 0;
        right: 0;
        padding: 20px 25px;
        width: 373px;
        gap: 9px;
        font-size: 15px;
    }

    .hero__subtitle {
        font-size: 15px;
        line-height: 1.22;
        color: #271906;
    }

    .hero__description {
        font-size: 15px;
        font-weight: 400;
        line-height: 1.22;
        color: #222B0A;
    }

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

    .services, .projects, .about {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .arrow-btn {
        width: 26px;
        height: 26px;
        border-radius: 10px;
        padding: 7.5px 10.625px;
    }
    
    .services__grid {
        gap: 20px;
        grid-template-rows: 250px 250px;
    }

    .service-card {
        border-radius: 32px;
    }

    .service-card__image,
    .service-card__image--2,
    .service-card__image--3 {
        height: 250px;
    }

    .service-card__image--1,
    .service-card__image--4,
    .service-card__image--5,
    .service-card__image--6,
    .service-card__image--7 {
        height: 520px;
    }

    .service-card__title {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.22;
    }

    .service-card__text {
        font-size: 10px;
        line-height: 1.22;
        min-width: auto;
        max-width: 250px;
        min-width: 200px;
    }
    
    .service-card__content {
        padding: 15px;
    }
    
    .project-card {
        height: 531px;
    }

    .project-card__title {
        font-size: 40px;
        left: 23px;
        bottom: 40px;
    }

    .project-card__details-title {
        font-size: 40px;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .project-card__details-column {
        margin-bottom: 30px;
    }

    .project-card__details-column p {
        font-size: 14px;
    }

    .about__content {
        gap: 60px;
    }

    .about__subtitle {
        font-size: 15px;
    }

    .about__description {
        font-size: 12.5px;
    }

    .contact-form__input {
        padding: 10px 22.5px;
        font-size: 12.5px;
        border-radius: 28.75px;
    }

    .contact-form__submit {
        padding: 10px 22.5px;
        font-size: 12.5px;
        border-radius: 37.5px;
    }

    .social__link img {
        width: 80px;
        height: 80px;
    }

    .footer {
        padding: 29px 0;
    }

    .footer__logo .logo__image {
        width: 130px;
        height: 41px;
    }

    .footer__location {
        font-size: 15px;
    }

    .footer__contact-btn {
        padding: 12.5px 25px;
        font-size: 12.5px;
        border-radius: 40px;
    }

    .social {
        margin-bottom: 48px;
    }

    .social img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 960px) {
    .container {
        max-width: 960px;
        padding: 0 40px;
    }

    .hero {
        padding: 3px 40px 0;
    }

    .hero__background {
        height: 625px;
        top: 15px;
        left: 40px;
        right: 40px;
        border-radius: 20px;
    }

    .hero__wrapper {
        height: 637.5px;
    }

    .header {
        margin-top: 53px;
        height: 50px;
    }

    .header__logo .logo__image {
        width: 106px;
        height: 35px;
    }

    .header__nav {
        padding: 12.5px 25px;
    }

    .nav__list {
        gap: 20px;
    }

    .nav__link {
        font-size: 12.5px;
    }

    .header__contact-btn {
        padding: 12.5px 25px;
        font-size: 12.5px;
    }

    .hero__title {
        bottom: 10px;
        left: 17px;
        font-size: calc(1rem + 1.5vw);
    }

    .hero__info {
        bottom: 0;
        right: 0;
        width: fit-content;
        font-size: 13px;
        border-radius: 20px 0 20px 0;
        padding-right: 3px;
    }

    .hero__subtitle {
        font-size: 10px;
        width: fit-content;
    }

    .hero__description {
        font-size: 10px;
        width: fit-content;
    }

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

    .services, .projects, .about {
        padding-top: 50px;
        padding-bottom: 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .services__slider {
        overflow: hidden;
        position: relative;
        width: 100%;
    }
    
    .services__track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%;
    }
    
    .services__slide {
        min-width: 100%;
        flex-shrink: 0;
        box-sizing: border-box;
        padding: 0;
    }

    .services__grid {
        display: block;
    }

    .service-card {
        width: 100%;
        margin: 0 auto;
        border-radius: 20px;
    }

    .service-card__content,
    #building_section .service-card__content {
        bottom: -1px;
        right: auto;
        left: 0;
        border-radius: 0 20px 0 20px;
    }

    .service-card__image,
    .service-card__image--1,
    .service-card__image--2,
    .service-card__image--3,
    .service-card__image--4,
    .service-card__image--5,
    .service-card__image--6,
    .service-card__image--7 {
        height: 520px;
        border-radius: 20px;
    }

    .service-card__title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .service-card__text {
        font-size: 12px;
        min-width: 300px;
    }

    .project-card {
        height: 531px;
        border-radius: 20px;
    }

    .project-card__title {
        font-size: 40px;
        left: 23px;
        bottom: 40px;
    }

    .project-card__details-title {
        font-size: 40px;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .project-card__details-column {
        margin-bottom: 30px;
    }

    .project-card__details-column p {
        font-size: 14px;
    }

    .about__content {
        gap: 60px;
    }

    .about__subtitle {
        font-size: 15px;
    }

    .about__description {
        font-size: 12.5px;
    }

    .about__content {
        margin-bottom: 60px;
    }

    .social {
        margin-bottom: 88px;
    }

    .contact-form__input {
        padding: 10px 22.5px;
        font-size: 12.5px;
        border-radius: 28.75px;
    }

    .contact-form__submit {
        padding: 10px 22.5px;
        font-size: 12.5px;
        border-radius: 37.5px;
    }

    .social__link img {
        width: 40px;
        height: 40px;
    }

    .footer {
        padding: 29px 0;
    }

    .footer__logo .logo__image {
        width: 130px;
        height: 41px;
    }

    .footer__location {
        font-size: 15px;
    }

    .footer__contact-btn {
        padding: 12.5px 25px;
        font-size: 12.5px;
        border-radius: 40px;
    }
    
    .social {
        margin-bottom: 48px;
    }
    
    .social img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 770px) {
    .project-card__details-title {
        font-size: 28px;
        /* margin-bottom: 10px; */
    }

    .project-card__details-column p {
        font-size: 12px;
        /* margin-bottom: 8px; */
    }
}

@media (max-width: 640px) {
    .container {
        max-width: 640px;
        padding: 0 27px;
    }

    .hero {
        padding: 3px 27px 0;
    }

    .hero__background {
        height: 625px;
        top: 15px;
        left: 27px;
        right: 27px;
        border-radius: 20px;
    }

    .hero__wrapper {
        height: 637.5px;
    }

    .header {
        margin-top: 53px;
        height: 50px;
        position: relative;
    }

    .header__logo .logo__image {
        width: 88px;
        height: 27px;
    }

    .header__nav,
    .header__contact-btn {
        display: none;
    }

    .mobile-menu {
        display: flex;
        gap: 15px;
    }

    .mobile-menu__button {
        border: none;
        background: transparent;
        color: #EDEDED;
        padding: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu__icon--burger {
        display: flex;
        gap: 4.5px;
        width: 23px;
    }

    .mobile-dropdown {
        position: absolute;
        top: 15px;
        right: 90px;
        backdrop-filter: blur(16.3px);
        background: rgba(255, 255, 255, 0.3);
        border-radius: 40px;
        padding: 5px 23px;
        font-size: 10px;
        display: none;
        z-index: 100;
    }

    #phone-dropdown {
        right: 70px;
        background: none;
        backdrop-filter: none;
    }

    .mobile-dropdown--visible {
        display: block;
    }

    .mobile-dropdown__nav-list {
        display: flex;
        gap: 15px;
    }

    .mobile-dropdown__nav-link {
        font-weight: 600;
        color: #EDEDED;
    }

    .mobile-dropdown__contact-btn {
        background: #FAFBF3;
        border-radius: 40px;
        padding: 5px 23px;
        right: 0;
        font-size: 10px;
        font-weight: 600;
        color: #3E3E3E;
        text-align: center;
    }

    .hero__title {
        bottom: 13px;
        left: 13px;
        font-size: 32px;
    }

    .hero__info {
        bottom: 0;
        right: 0;
        width: 224px;
        font-size: 10px;
        border-radius: 20px 0 20px 0;
        padding: 15px;
        gap: 10px;
    }

    .hero__subtitle {
        font-size: 10px;
    }

    .hero__description {
        font-size: 10px;
    }

    .section-title {
        font-size: 20px;
    }

    .services, .projects, .about {
        padding-top: 35px;
        padding-bottom: 0;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .arrow-btn {
        width: 26px;
        height: 26px;
        border-radius: 10px;
    }

    .service-card__image,
    .service-card__image--1,
    .service-card__image--2,
    .service-card__image--3,
    .service-card__image--4,
    .service-card__image--5,
    .service-card__image--6,
    .service-card__image--7 {
        height: 313px;
    }

    .service-card__title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .service-card__text {
        font-size: 10px;
        min-width: auto;
        max-width: 210px;
    }

    .project-card {
        height: 531px;
    }

    .project-card__title {
        font-size: 40px;
        width: 445px;
        left: 11px;
        bottom: 40px;
    }

    .project-card__details-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .project-card__details-column p {
        font-size: 10px;
        margin-bottom: 10px;
    }

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

    .about__subtitle {
        font-size: 15px;
    }

    .about__description {
        font-size: 12.5px;
    }

    .contact-form__input {
        padding: 10px 22.5px;
        font-size: 12.5px;
        border-radius: 28.75px;
    }

    .contact-form__submit {
        padding: 10px 22.5px;
        font-size: 12.5px;
        border-radius: 37.5px;
    }

    .social {
        margin-top: 16px;
        margin-bottom: 88px;
    }

    .social img {
        width: 50px;
        height: 50px;
    }

    .footer {
        padding: 29px 0;
    }

    .footer__logo .logo__image {
        width: 96px;
        height: 34px;
    }

    .footer__location {
        font-size: 10px;
    }

    .footer__contact-btn {
        padding: 12.5px 25px;
        font-size: 10px;
        border-radius: 40px;
    }
}

@media (max-width: 460px) {
    .container {
        max-width: 440px;
        padding: 0 20px;
    }
    
    .hero {
        padding: 3px 20px 0;
    }
    
    .hero__background {
        height: 450px;
        top: 15px;
        left: 20px;
        right: 20px;
        border-radius: 20px;
    }
    
    .hero__wrapper {
        height: 450px;
    }
    
    .header {
        margin-top: 53px;
        height: 50px;
    }
    
    .header__logo .logo__image {
        width: 88px;
        height: 27px;
    }
    
    .hero__title {
        bottom: 180px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 24px;
        text-align: center;
        width: 100%;
        white-space: nowrap;
    }
    
    .hero__title br {
        display: none;
    }
    
    .hero__info {
        bottom: -15px;
        right: 0;
        width: 224px;
        font-size: 8px;
        border-radius: 20px 0 20px 0;
        padding: 15px;
        gap: 10px;
    }
    
    .hero__subtitle {
        font-size: 8px;
    }
    
    .hero__description {
        font-size: 8px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .services, .projects, .about {
        padding-top: 26px;
        padding-bottom: 0;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .arrow-btn {
        width: 26px;
        height: 26px;
        border-radius: 10px;
    }
    
    .service-card__image,
    .service-card__image--1,
    .service-card__image--2,
    .service-card__image--3,
    .service-card__image--4,
    .service-card__image--5,
    .service-card__image--6,
    .service-card__image--7 {
        height: 183px;
    }
    
    .service-card__title {
        font-size: 8px;
        margin-bottom: 6px;
    }
    
    .service-card__text {
        font-size: 6px;
        min-width: auto;
        max-width: 210px;
    }
    
    .project-card {
        height: 365px;
    }
    
    .project-card__title {
        font-size: 18px;
        width: 240px;
        left: 11px;
        bottom: 40px;
    }

    .project-card__details-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .project-card__details-column p {
        font-size: 6px;
        margin-bottom: 8px;
    }
    
    .about__content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .about__subtitle {
        font-size: 12px;
    }
    
    .about__description {
        font-size: 10px;
    }
    
    .contact-form__input {
        padding: 7px 22.5px;
        font-size: 10px;
        border-radius: 28.75px;
    }
    
    .contact-form__submit {
        padding: 10px 22.5px;
        font-size: 10px;
        border-radius: 37.5px;
    }

    .social {
        margin-top: 16px;
        margin-bottom: 35px;
    }
    
    .social img {
        width: 50px;
        height: 50px;
    }
    
    .footer {
        padding: 29px 0;
    }
    
    .footer__logo .logo__image {
        width: 44px;
        height: 15px;
    }
    
    .footer__location {
        font-size: 8px;
    }
    
    .footer__contact-btn {
        padding: 4px 8px;
        font-size: 8px;
        border-radius: 40px;
    }
    
    .mobile-dropdown {
        padding: 5px 23px;
        font-size: 10px;
    }
    
    .mobile-dropdown__nav-link {
        font-size: 10px;
    }
    
    .mobile-dropdown__contact-btn {
        padding: 5px 23px;
        font-size: 10px;
    }
}
