
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    outline: none;
    border: none;
    background: none;
    font-family: "Share Tech Mono";
}

.container {
    max-width: 1095px;
    width: 100%;
    margin: 0 auto;
}

.header {
    background: #FFFFFF;
    padding: 14px 0;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__list {
    display: flex;
    gap: 80px;
}

.header__lang {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    padding: 4px 4px 3px 4px;
    border: 1px solid #000000;
}

.header__link {
    font-weight: 400;
    font-size: 20px;
    color: #242424;
}

.header__link::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background: #242424;
    margin-top: 5px;
}

.header__link:hover::after {
    width: 100%;
    transition: .4s;
}

.main {
    background: #FBFBFB;
}

.banner {
    height: 100vh;
    background-image: url(images/banner.png);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main h1 {
    font-weight: 400;
    font-size: 80px;
    line-height: 100%;
    color: #242424;
    margin-bottom: 40px;
}

.btn {
    padding: 16px 105px;
    font-weight: 400px;
    font-size: 24px;
    color: #242424;
    border: 2px solid #242424
}

.btn:hover {
    color: green ;
    transition: .4s;
    border-color: green;
}

.about {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    gap: 20px;
}

.h2 {
    font-weight: 400;
    font-size: 40px;
}

.about p {
    font-weight: 400;
    font-size: 20px;
    margin-top: 20px;
    max-width: 451px;
    height: 322px;
    line-height: 100%;
}



.left {
    align-items: center;
}

.h2::after {
    content: " ";
    background: #242424;
    width: 168px;
    height: 2px;
}

.catalog__left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.catalog__left p {
    margin-top: 20px;
    font-weight: 400;
    font-size: 20px;
    max-width: 545px;
    height: 230px;
}

.catalog__left a{
    font-weight: 400;
    font-size: 24px;
    color: #242424;
    border: 2px solid #242424;
    display: block;
    padding: 16px 105px;
    margin-top: 20px;
}

.catalog {
    display: flex;
    margin-bottom: 140px;
    margin-top: 40px;
}

.footer {
    border: 1px solid #242424;
    padding: 40px 0;
}

.footer__content {
    display: flex;
    justify-content: space-between;
}

.footer__content p {
    max-width: 268.54925537109375px;
    height: 92px;
}

.footer__content h3 {
    height: 18px;
    font-weight: 400;
    font-size: 20px;
    line-height: 90%;
    margin-bottom: 20px;
}

.footer__content a{
    color: #242424;
    font-weight: 400px;
    font-size: 16px;
}

.social {
    display: block;
    max-width: 168px;
    height: 66px;
}

.icons {
    justify-content: space-between;
}

