/*
Theme Name: PersonalSite
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

h3 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

h4 {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

p {
    line-height: 1.75;
    margin: 0 0 20px 0;
}

a {
    text-decoration: none;
}

header {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 0 100px;
}

.nav_container {
    width: 100%;
    max-width: 1200px;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
}

.nav_container_logo {
    width: 80px;
    height: 80px;
}

.nav_container_navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: flex-start;
    position: fixed;
    width: 100%;
    overflow: hidden;
    height: 0px;
    top: 100px;
    left: 0;
    background: #fff;
    transition: 0.5s;
}

.active_menu {
    height: calc(100vh - 100px);
}

.block_body {
    overflow: hidden;
}

.nav_container_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 125px;
    height: 50px;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid #131434;
    border-radius: 3px;
    color: #131434;
    background: #FCFCFC;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 50%);
    transition: 0.5s;
}

.nav_container_button::after {
    content: 'Меню';
}

.nav_container_button:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.active_button{
    transform: scale(1.1);
}

.active_button::after {
    content: 'Закрити';
}

.navigation_block {
    min-width: 320px;
    padding: 20px 40px;
}

.navigation_block_links {
    list-style: none;
}

.navigation_block_links li {
    margin: 0 0 20px 0;
}

.navigation_block_links li a {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #131434;
    transition: 0.5s;
}

.navigation_block_links li a:hover {
    transform: scale(1.1);
}

main {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.header_block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 40px 100px;
    background: linear-gradient(138deg, rgba(16,19,83,1) 0%, rgba(7,14,23,1) 77%, rgba(38,41,113,1) 100%);
}

.header_block_container {
    width: 100%;
    max-width: 1200px;
    height: auto;    
}

.header_block_container_content {
    width: 100%;
    max-width: 956px;
    color: #fff;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 40px 100px;
}

.container:nth-child(odd) {
    background: #F1F2FF;
}

.content_block {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
}

.text_content {
    align-items: flex-start;
}

.contact_block {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 -5px;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
}

.contact_items {
    width: calc((100% - 40px) / 3);
    height: auto;
    padding: 30px;
    margin: 0 10px 10px 0;
    border: 0.5px solid #e5e5e5;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.contact_item_header {
    margin: 0 0 20px 0;
}

.contact_item_number b a {
    color: #131434;
}

.contact_map {
    width: 100%;
    height: 600px;
    border: 0.5px solid #e5e5e5;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.content_block_button {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 25px;
    color: #fff;
    background: #101353;
    border-radius: 3px;
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
    transition: 0.5s;
}

.content_block_button:hover {
    transform: scale(1.1);
}

.content_block_text {
    width: 100%;
    height: auto;
}

.table {
    width: 100%;
    height: auto;
    overflow: auto;
}

table {
    width: 100%;
    height: auto;
    border-collapse: collapse;
}

thead {
    background: linear-gradient(138deg, rgba(16,19,83,1) 0%, rgba(7,14,23,1) 77%, rgba(38,41,113,1) 100%);
    color: #fff;
}

th,
td {
    padding: 10px 15px;
    min-width: 200px;
}

th {
    text-align: left;
}

td {
    border: 1px solid #ddd;
}

.jobs_cards_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.jobs_cards {
    width: calc((100% - 20px) / 2);
    height: auto;
    padding: 30px;
    margin: 0 0 20px 0;
    border: 0.5px solid #e5e5e5;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.jobs_cards_list {
    list-style: none;
    margin: 0 0 20px 0;
}

.content_block_text ul {
    list-style-type: disc;
    list-style-position: inside;
    margin: 0 0 20px 0;
}

.content_block_text ul li {
    margin-bottom: 10px;
}

.jobs_cards_list li {
    margin-bottom: 10px;
}

.jobs_cards_skills {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 20px 0;
}

.jobs_cards_skills_item {
    display: inline-block;
    font-weight: 700;
    padding: 10px 25px;
    margin: 0 10px 10px 0;
    background: #f1f1f1;
    border: 0.5px solid #e5e5e5;
    border-radius: 3px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);    
}

.right {
    justify-content: flex-end;
}

.half {
    width: 60%;
    height: auto;
}

footer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-height: 350px;
    background: linear-gradient(138deg, rgba(16,19,83,1) 0%, rgba(7,14,23,1) 77%, rgba(38,41,113,1) 100%);
    padding: 40px 100px;
}


  


.footer_content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    height: auto;
    color: #fff;
    font-weight: 700;
}

.footer_content_block {
    display: flex;
    flex-direction: column;
    width: calc((100% - 40px) / 3);
}

.footer_content_block2 {
  margin-right: 30px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  flex-direction: row;
}

.footer_logo {
    width: 80px;
    height: 80px;
    margin: 0 0 20px 0;
}

.footer_content_header_logo {
    width: 75%;
    font-size: 20px;
}

.footer_content_header_links {
    font-size: 20px;
    margin: 0 0 20px 0;
}

.footer_content_links {
    list-style: none;
}

.footer_content_links li {
    padding: 0 0 20px 0;
}

.footer_content_links li a {
    display: inline-block;
    color: #fff;
    transition: 0.5s;
}

.footer_content_links li a:hover {
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    header {
        padding: 0 50px;
    }
    .header_block,
    .container,
    footer {
        padding: 40px 50px;
    }

    .half {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .jobs_cards {
        width: 100%;
    }
}

@media (max-width: 800px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    .nav_container_button {
        font-size: 15px;
        width: 100px;
        height: 40px;
    }
    .content_block_button {
        font-size: 15px;
        padding: 13px 21px;
    }
    .contact_items {
        width: calc((100% - 40px) / 2);
    }
    .contact_map {
        height: 400px;
    }
    .footer_content {
        flex-wrap: wrap;
    }
    .footer_content_block {
        width: calc((100% - 40px) / 2);
        margin: 0 0 40px 0;
    }
}

@media (max-width: 640px) {
    header {
        padding: 0 20px;
    }
    .header_block,
    .container,
    footer {
        padding: 40px 20px;
    }
    .contact_items {
        width: 100%;
    }
    .contact_map {
        height: 300px;
    }
    .footer_content_block {
        width: 100%;
        margin: 0 0 40px 0;
    }

}