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

.container {


    margin: 0 auto;
    width: 100%;
    max-width: 1140px;
}

body {
    font-family: "Inter", sans-serif;
    color: #303030;
}

header {
    background-color: #2965F1;
    padding: 23px 0;
}

header span {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}




.main-section {
    background-color: #fafaff;
    padding: 260px 0;
    /*попробовать испрать позже*/
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-self: center;
    align-items: center;
}

.main-section .wrapper {
    display: flex;
    align-items: center;

}

.text-wrapper {
    max-width: 425px;
}

.main-title {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 20px;
}

.main-text {
    font-weight: 400;
    font-size: 18px;
}

.main-image {
    max-width: 715px;
}

.about-section {
    background-color: #fff;
    padding: 100px 0;
}

.about-section .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap:  60px;

}

select {
    border: 1px solid rgba(48, 48, 48, 0.3);
    border-radius: 5px;
    width: 150px;
    height: 36px;
    padding: 8px 12px;
    font-weight: 400;
    font-size: 16px;
    appearance: none;
    background-image: url("./images/ep_arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right 12px top 50%;

}

.select {
    min-width: 100%;
}

select:hover,
.text-field:hover {
    border: 1px solid #2965F1;

}


.info-wrapper {
    display: flex;

}

.section-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 25px;
}

.frameworks,
.books {
    min-width: 570px;
}

.frameworks-list,
.books-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.frameworks-list {
    font-weight: 400;
    font-size: 16px;
    list-style-image: url(./images/solar_map-arrow-up-bold.svg);
    padding-left: 20px;
}

.skills-block {
    display: flex;
    flex-direction: column-reverse;
}

.skills {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 570px;

}

.books-list {
    font-weight: 400;
    font-size: 16px;
    padding-left: 20px;
    min-width: 570px;
}

.label {
    font-weight: 400;
    font-size: 16px;

}

form {
    margin-bottom: 40px;
    display: flex;
    gap: 10px;
}

.text-field {
    border: 1px solid rgba(48, 48, 48, 0.3);
    border-radius: 5px;
    max-width: 330px;
    width: 100%;
    height: 36px;
    background-color: rgba(255, 255, 255, 0);
    padding: 8px 12px;
    font-weight: 400;
    font-size: 16px;
}

.btn {
    border: none;
    border-radius: 5px;
    width: 125px;
    height: 36px;
    background-color: #2965f1;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.btn:hover {
    background-color: #2965F1E5;

    cursor: pointer;

}

.line {
    margin: 60px 0;
}

table {
    border: 1px solid #95a1bb;
    border-collapse: collapse;
    font-weight: 400;
    font-size: 14px;
    margin: 0 auto;
}

th,
td {
    padding: 12px 15px;
}

footer {
    background-color: rgba(163, 167, 255, 0.3);
    padding: 26px 0;
    text-align: center;
}

.footer-link {
    font-weight: 400;
    font-size: 14px;
    color: #2965f1;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;

}