:root {
    --orange:#f5914f;
    --white:#fff;
    --black:#000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--white);
}

a, a:visited {
    text-decoration: none;
    color: var(--white);
}

a:hover {
    color: var(--orange);
}

.welcome__page {
    background-image: url("../img/cover.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

._container {
    margin: 0 auto;
}

.header {
    padding: 50px 10px;
}

.header__container {
    padding: 0px 50px;
}

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

.menu__list {
    padding: 0 50px;
    font-size: 25px;
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 20px;
    text-align: center;
}

.menu__item a{
    transition: color 0.2s ease;
}

.menu__item a:hover {
    color: var(--orange);
}

.menu__list-socials {
    display: flex;
    gap: 20px;
}

.menu__list-socials a:hover svg {
    fill: var(--orange);
}

.page__container {
    max-width: 1000px;
}

.page__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding:80px 10px;
    text-align: center;
}

.page__title {
    font-weight: 700;
    font-size: 70px;
    text-decoration: underline;
    text-decoration-color: var(--orange);
    text-underline-position: under;
    text-decoration-thickness:3px;
}

.page__subtitle-info {
    font-size: 30px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding: 30px 5px;
    text-align: center;
}

.page__button {
    padding: 30px 0;
}

.page__arrow-scroller {
    padding: 25px 0px 40px;
}

.arrow-scroller {
    fill: var(--white);
    animation: floatUpDown 2s ease-in-out infinite;
}

.btn__action--orange {
    padding: 20px 80px;
    font-weight: 700;
    font-size: 20px;
    background-color: var(--orange);
    border-radius: 5px;
}

.btn__action--orange:hover {
    background-color: #f5774f;
    color: #fff;
}

.footer {
    color: var(--black);
}

.footer__container {
    max-width: 600px;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 150px 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-size: 30px;
}

.footer__contacts {
    font-weight: 700;
    font-size: 40px;
}

.footer__contacts a {
    color: #000;
}

.footer__contacts a:hover {
    color: var(--orange);
}

.header__logo {
    fill: var(--white);
}

.footer__logo {
    fill: var(--orange);
}

@keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
  }

.heading--center {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.no-center {
    text-align: left;
}

.no-center p {
    margin-bottom: 15px;
    text-indent: 25px;
    line-height: 1.5;
}

.no-center ul {
    padding-left: 15px;
    margin-left: 15px;
}

.no-center ul li {
    margin-bottom: 15px;
    list-style-type: disc;
}

.inner__title {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.inner__subtitle {
    font-size: 18px;
    text-decoration: none;
    text-align: center;
}