@font-face {
    font-family: TT Interphases;
    src: url(../fonts/tt-interphases-pro-mono-regular.ttf);
}

div,
p,
input,
button,
form,
span,
a,
ul,
li {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
    margin: 0;
}

body,
a,
button {
    background-color: #000;
    color: #fff;
    font-family: TT Interphases;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

h1 {
    font-weight: normal;
    font-size: 28px;
}

ul,
p {
    font-size: 20px;
}

.intro {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content:center;
    max-width: 1335px;
    margin: 0 auto;
    gap: 80px;
    padding: 0 40px;
}

.left-column,
.right-column {
    max-height: inherit;
}

.left-column {
    width: auto;
    max-width: 600px;
}

.right-column {
    min-width: 670px;
    display: flex;
    flex-direction: column;
    /* gap: 30px; */
}

.photo {
    width: 100%;
    max-height: 100vh;
    min-height: 700px;
    display: block;
}

.switcher-desktop,
.switcher-mobile {
    font-size: 20px;
    background: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: fit-content;
    height: 45px;
    overflow: hidden;
    margin: 80px 0 0 auto;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;


}

.switcher-desktop:focus-within,
.switcher-mobile:focus-within {
    overflow: visible;
    background: none;
}

.switcher-desktop:active,
.switcher-mobile:active {
    overflow: visible;
    background: none;
}

.lang {
    width: fit-content;
    padding: 8px;
}

.lang:nth-child(1) {
    border: 1px solid #fff;
    background: url('../img/arrow-down.svg') no-repeat right 10px center;
    padding-right: 30px;

}

.lang:nth-child(2) {
    width: 100%;
    text-align: center;
    border: solid #fff;
    border-width: 1px 0 1px 0;
}

.switcher-mobile {
    display: none;
}

.information,
.contacts-social {
    display: flex;
    flex-direction: column;
    margin: auto 0;
    gap: 72px;

}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contacts div {
    padding-left: 56px;
    height: 25px;
}

.phone {
    background: url('../img/phone.svg') no-repeat left center / contain;
}

.email {
    background: url('../img/email.svg') no-repeat left center / contain;
}

.social {
    display: flex;
    gap: 40px;

}

.social div {
    height: 80px;
    width: 80px;
}

.telegram {
    background: url('../img/telegram.svg') no-repeat center / contain;
}

.whats-app {
    background: url('../img/whats-app.svg') no-repeat center / contain;
}

.instagram {
    background: url('../img/instagram.svg') no-repeat center / contain;
}


@media (max-width: 1250px) {

    h1 {
        font-weight: normal;
        font-size: 20px;
    }

    ul,
    p {
        font-size: 16px;
    }


    .intro {
        flex-direction: column;
        max-width: 576px;
        gap: 56px;
    }

    .left-column {
        height: 720px;
    }

    .right-column {
        min-width: 576px;
    }

    .photo {
        height: inherit;
        width: auto;
        margin: 0 auto;
    }

    .information {
        flex-wrap: wrap;
    }

    .contacts-social {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 52px;

    }

    .contacts div {
        height: 25px;
    }

    .social {
        gap: 24px;
    }

    .social div {
        width: 40px;
        height: 40px;
    }

    .switcher-desktop {
        display: none;
    }

    .switcher-mobile {
        display: flex;
        position: absolute;
        margin: 0;
        right: 24px;
        top: 56px;
    }
}


@media (max-width: 660px) {

    h1 {
        font-size: 18px;
    }

    ul,
    p {
        font-size: 14px;
    }


    .intro {
        gap: 40px;
    }

    .photo {
        min-height: auto;
        height: 400px;
    }

    .left-column{
        max-height: fit-content;
    }

    .right-column {
        min-width: 320px;
    }

    .information {
        flex-wrap: wrap;
        gap: 24px;
    }

    .contacts-social {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 24px;
        padding-bottom: 32px;

    }

    .contacts div {
        height: 18px;
    }

    .social div {
        width: 32px;
        height: 32px;
    }



    .switcher-mobile {
        display: flex;
        position: absolute;
        margin: 0;
        right: 16px;
        top: 32px;
        font-size: 12px;
    }

    .lang:nth-child(1) {
        border: 1px solid #fff;
        background: url('../img/arrow-down.svg') no-repeat right 8px center;
        padding-right: 24px;


    }