/* 
    font-family: "Roboto", sans-serif;
*/

/* header */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background-image: url(./../img/balgo__main.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-color: #0b1d26;
    z-index: 1;
}

header {
    padding: 10px 0; 
    padding-bottom: 450px;
}

.All_menu {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.All_menu {
    margin-bottom: 200px;
}

.All_menu .logo h1 {
    margin: 20px; 
    font-size: 24px;
    color: #333;
}

.All_menu .menu ul {
    list-style-type: none; 
    padding: 0;
    margin: 0;
    display: flex;
}

.All_menu .menu li {
    margin-right: 20px;
}

.All_menu .menu a {
    text-decoration: none; 
    color: #333; 
    font-weight: 500; 
    font-size: 21px;
    margin-right: 15px;
}

.menu a:hover {
    text-decoration: underline;
    color: #0b1d26;
}

/* title - 2 */

.hero {
    display: block;
max-width: 980px;
padding-left: 15px;
padding-right: 15px;
margin-left: auto;
margin-right: auto;
text-decoration: none;
transition: transform 1s ease;
}

.hero:hover {
    transform: translateY(-5%);
}

.hero-category {
    margin-bottom: 32px;
    position: relative;
  font-weight: 800;
  font-size: 18px;
  padding-left: 104px;
  line-height: 1.222;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: black;
}

.hero-category::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 72px;
    height: 2px;
    background-color: #fbd784;
}

.hero-title {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.136;
    text-transform: uppercase;
    color: black;
}

.hero-scroll {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.222;
    color: black;
    padding-right: 32px;
}

.hero-scroll::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 24px;
    transform: translateY(-50%);
    background-image: url(./../img/arrow_down.svg);
}

/* main */

.container {
    min-width: 1492px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}


.article {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 200px;
}

.article:nth-child(even) {
    flex-direction: row-reverse;
}

.article-text {
    padding-left: 150px;
    /* padding-top: 141px; */
    max-width: 782px;
    position: relative;
    color: white;
}

.article-text::before {
    position: absolute;
    top: -70px;
    left: 70px;
    content: attr(data-number);
    width: 240px;
    height: 240px;
    display: block;

    font-weight: 300;
    font-size: 150px;
    line-height: 1;
    opacity: 0.1;
    color: #fff;
}

.article-text p {
 font-weight: 500;
 font-size: 18px;
 line-height: 1.78;
 margin-bottom: 27px;
}

.article-subtitle {
    margin-bottom: 32px;
    position: relative;
  font-weight: 800;
  font-size: 18px;
  padding-left: 96px;
  line-height: 1.222;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: black;
}

.article-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 72px;
    height: 2px;
    background-color: #fbd784;
}

.article-title {
    max-width: 555px;
    margin-bottom: 27px;
    font-weight: 500;
    font-size: 64px;
    line-height: 1.2;
}

.article-read-more a {
    text-decoration: none;
    color: #fbd784;
}

.article-read-more {
    position: relative;
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.222;
    color: white;
    padding-right: 32px;
}

.article-read-more::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 24px;
    height: 16px;
    transform: translateY(-50%);
    background-image: url(./../img/read_more.svg);
}

/* footer */

footer {
    background-color: #0f2f3f;
    color: white;
    padding: 20px;
    text-align: center;
}

.contact-info {
    margin-bottom: 20px;
}


.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.sitemap a {
    color: #fbd784;
    text-decoration: none;
}

.sitemap a:hover {
    text-decoration: underline;
}


/*  */

