@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Quicksand:wght@300..700&family=Rubik:ital,wght@0,300..900;1,300..900&family=Share+Tech+Mono&display=swap');

*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    background: none;
    border: none;
    outline: none;
    font-family: Rubik;
}

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

.header {
    background: #3e8989e8;
    padding: 35px;
    position: fixed;
    width: 100%;
    backdrop-filter: blur(5px);
}

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

.header-nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-nav__list a {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.header-nav__list a::after {
    content: "";
    display: block;
    width: 0%;   
    height: 3px; 
    background: #ffffff;
    transition: 0.3s;
    margin-top: 5px;
}

.header-nav__list a:hover::after {
    width: 100%;
}

.header-nav__search form {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-nav__search input {
    background: #ffffff;
    padding: 8px 20px;
    border-radius: 20px 0 0 20px;
    color: #898989;
    font-weight: 400;
    font-size: 16px;
}

.header-nav__search button {
    background: #3e8989e8;
    padding: 9px 14px;
    border-radius: 0 20px 20px 0;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
}

.hero {
    background-image: url(Images/hero.png);
    height: 100vh;
    background-size: cover;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero__title {
    margin-top: 20px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 80px;
}

.hero__subtitle {
    margin-top: 50px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 40px;
}

.hero__link {
    margin-top: 50px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 18px;
    padding: 14px 78px;
    background: #B4436C;
    border-radius: 30px;
    transition: 0.2s;
}

.hero__link:hover {
    background: #FFFFFF;
    color: #B4436C;
}

.info {
    margin-top: 80px;
    margin-bottom: 97px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.title {
    display: flex;
    justify-content: center;
    color: #3e8989e8;
    font-weight: 600;
    font-size: 40px;
}

.info__about {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.info__about p {
    width: 545px;
    margin-top: 9px;
    font-weight: 400;
    font-size: 18px;
}

.good-cards {
    margin-top: 53px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.good-cards__link {
    display: block;
    width: 263px;
}

.good-cards__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.good-cards__img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 263px;
    height: 300px;
    background-color: #EFEFEF;
}

.good-cards__img img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.good-cards__btn h3 {
    color: #000000;
    font-size: 24px;
    font-weight: 600;
    transition: 0.2s;
}

.good-cards__btn:hover h3 {
    color: #B4436C;
}

.contacts {
    margin-top: 100px;
}

.contacts h2 {
    color: #3e8989e8;
    font-weight: 600;
    font-size: 40px;
}

.contacts-info {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    font-size: 20px;
}

.contacts-info p {
    width: 555px;
}

.contacts-info__links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacts-info__links a {
    color: #000000;
}

.footer {
    margin-top: 104px;
    background: #3e8989e8;
    padding: 35px;
    width: 100%;
    backdrop-filter: blur(5px);
}





.footer-nav {
    display: flex;
    justify-content: space-between;
    justify-content: center;
}

.footer-nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-nav__list a {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

