@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

* {
  padding: 0;
  margin: 0;
  text-decoration: none;  
  list-style: none;
  background: none;
  font-family: "Share Tech Mono", monospace;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: auto;
}

.header {
    background: white;
    border: 1px solid #242424;
    padding: 11px 0;
    position: fixed;
    width: 100%;
}

.header__nav {
   display: flex;
   justify-content: space-around;
   align-items: center;
}

.header__list {
    display: flex;
    gap: 80px;
}

.header__link {
    color: #242424;
    font-size: 20px;
}

.header__link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #242424;
    margin-top: 2px;
    transition: 380ms;
}

.header__link:hover::after {
    width: 100%;
}

body {
    background: #FBFBFB;
}

.hero {
    height: 100vh;
    background: url(images/heroBg.png);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.hero__title {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 400px;
    font-size: 80px;
    color: #242424;
    font-weight: 400;
    min-width: 865px;
}

.hero__link {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #242424;
    max-width: 263px;
    padding: 16px 105px;
    font-size: 24px;
    color: #242424;
    transition: .3s;
}

.hero__btn {
    display: flex;
    justify-content: center;
    padding: 16px 105px;
}

.hero__link:hover {
    background: #242424;
    color: white;
    
}

.info__left {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

.container__left {
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.h__left {
    color: #242424;
    font-size: 40px;
    font-weight: 400;
    display: flex;
    margin-bottom: 20px;
    gap: 16px;
}

.h__left::after {
    content: "";
    display: block;
    width: 35%;
    height: 1px;
    background: #242424;
    margin-top: 20px;
}

.p__left {
    color: #242424;
    font-size: 20px;
    font-weight: 400;
    max-width: 451px;  
}

.info__right {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    padding-left: 165px;
    padding-right: 150px;
    padding-bottom: 140px;
}

.container__right {
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.h__right {
    color: #242424;
    font-size: 40px;
    font-weight: 400;
    display: flex;
    margin-bottom: 20px;
    gap: 16px;
}

.h__right::after {
    content: "";
    display: block;
    width: 35%;
    height: 1px;
    background: #242424;
    margin-top: 20px;
}

.p__right    {
    color: #242424;
    font-size: 20px;
    font-weight: 400;
    max-width: 545px; 
    margin-bottom: 20px;
}

.right__link {
    border: 2px solid #242424;
    max-width: 263px;
    padding: 16px 105px;
    font-size: 24px;
    color: #242424;
    transition: .3s;
}

.right__btn {
    display: flex;
    padding: 16px 105px;
}

.right__link:hover {
    background: #242424;
    color: white;
}

.footer {
    display: flex;
    justify-content: space-around;
    border: 1px solid #242424;
    padding-bottom: 40px;
}

h4 {
    font-size: 20px;
    font-weight: 400;
    line-height: 90%;
    margin-top: 40px;
}

.us {
    max-width: 268px;
}

.contact {
    list-style: inside;
}

.follow {
    display: flex;
   gap: 40px;
}


@media (max-width: 1140px) {
    .hero__title {
        font-size: 40px;
    }

    .hero__link {
        padding: 10px 60px;
        margin-bottom: 350px;
        font-size: 20px;
    }

    .p__left {
        max-width: 400px;
    }

    .h__left {
        margin-top: 20px;
    }

    .p__right {
        margin-right: 50px;
    }
}


@media (max-width: 670px) {
    .header__list {
        gap: 40px;
        margin-right: 150px;
        margin-left: 120px;
    }

    .header__icons {
        margin-right: 450px;
    }

    .hero__title {
        margin-left: -90px;
    }

    .info__left {
        display: flex;
        flex-wrap: wrap;
    }

    .info__right {
        display: flex;
        flex-wrap: wrap;
    }

    .rg {
        margin-left: -100px;
    }

    .header__logo {
        margin-left: 10px;
    }
}