
* {
    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;
   
    z-index: 1;
}

header {
    padding: 10px 0; 
}

.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;
}

/* main */


.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cards-holder > .a-href {
 margin-bottom: 30px;
}

/* CARDS */ 

.card {
    background-color: #d6d4d4;
    width: 270px;
    height: 300%;
    position: relative;
    margin-left: 35px;
}

.a-href {
    /* cursor: pointer; */
    text-decoration: none;
    transition:  opacity 0.2s ease-in;
    display: inline-block;
}

.a-href:hover {
    opacity: 0.9;
}

.card__badges {
    position: absolute;
    top: 10px;
    left: 15px;
    right: 15px;
    display: flex;
}

.card__badges > * + * {
    margin-left: 10px;
}

.card__badge--class {
 background-color: #ffcf26;
}

.card__badge--credit {
 background-color: #11be75;
}

.card__badge {
    display: inline-block;
    /* background-color: #ffcf26; */
    border-radius: 4px;
    height: 22px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 22px;
    color: black;
}


.card__content {
    padding: 15px 15px 20px;
}
.card__title {
    margin: 0;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: black;
}
.card__term {
    font-size: 14px;
    margin-bottom: 10px;
    color: black;
    line-height: 1,14;
}
.card__metro {
    font-size: 14px;
    margin-bottom: 10px;
    color: black;
    line-height: 1,14;
}


.card__adress {
    font-size: 14px;
    line-height: 1,14;
    color: #777;
}


/* footer */


footer {
    background-color: #0f2f3f;
    color: white;
    padding: 30px;
    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;
}
