@font-face {
    font-family: "wiguru";
    src: url("fonts/wes.ttf") format("truetype");
}

body {
    font-family: "wiguru", sans-serif;
    background: #f6f6f6;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

header {
    height: 70px;
    z-index: 1;
}

footer {
    width: 100%;
    background-color: rgb(0 0 0 / 24%);
    z-index: 1;
}

p, li, h1, h2, h3, a, span, li {
    font-family: "wiguru", sans-serif;
    color: #3c3c3c;
}

p, a, span, li {
    font-size: 30px;
}

h1 {
    font-size: 65px;
}

h2 {
    font-size: 35px;
    text-align: center;
    padding-top: 50px;
}

h3 {
    font-size: 30px;
    text-align: center;
    padding-top: 50px;
}

a {
    text-decoration: none;
}

.max-width {
    max-width: 1200px;
    margin: 0 auto;
}

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

.background-white {
    width: 100%;
    border-top: 1px solid #c3c1c1;
}

.logo-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 190px 0;
    background: center no-repeat url(img/handshake.jpg);
    background-size: cover;
}

.contacts a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.contacts p {
    margin: 15px 0;
}

.auroralex {
    margin-top: 50px;
    margin-bottom: 0;
    color: #efebeb;
}

.auroralex-organization {
    margin: 0;
    padding-top: 0;
    color: #efebeb;
}

.document {
    width: 270px;
    border-radius: 5px;
}

.document-flex {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contacts {
    display: flex;
    justify-content: center;
}

.contacts p:hover {
    text-decoration-line: underline;
    color: black;
}

.contacts-img {
    width: 35px;
}

.company-contacts {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 0 110px;
}

.our-services {
    background-color: rgb(0 0 0 / 8%);
    border-radius: 50px;
    color: #BABBBD;
    padding: 2px 40px;
    margin: 20px 0;
}

.header-service {
    justify-content: space-between;
    display: flex;
    align-items: center;
    gap: 30px;
    cursor: pointer;
    width: 750px;
}

.header-service h3 {
    padding-top: 0;
}

.expand-img {
    width: 20px;
    height: 10px;
    margin-left: 20px;
    transform: rotate(0deg);
    transition: 300ms;
}

[data-accordion] [data-accordion-icon] {
    transform: rotate(0deg);
}

[data-accordion] [data-accordion-panel] {
    display: none;
    width: 750px;
}

[data-accordion][data-open] [data-accordion-icon] {
    transform: rotate(180deg);
}

[data-accordion][data-open] [data-accordion-panel] {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1000px) {

    p, li, h1, h2, h3, a, span, li {
        padding: 0 15px;
    }

    h1 {
        font-size: 60px;
    }

    iframe {
        margin-bottom: 50px;
    }

    .auroralex {
        margin-top: 100px;
    }

    .document-link {
        display: flex;
        justify-content: center;
    }

    .document-flex {
        flex-direction: column;
    }

    .document {
        width: 80%;
    }

    .logo-info {
        text-align: center;
        gap: 20px;
    }

    .contacts a p {
        text-align: left;
        margin: 12px 0;
        padding: 0;
    }

    .contacts {
        justify-content: flex-start;
    }

    .company-contacts {
        flex-direction: column;
    }

    .company-contacts {
        padding: 0;
    }

    .our-services {
        border-radius: 30px;
        padding: 0;
        margin: 15px;
    }

    .header-service {
        width: 90%;
    }

    .header-service h3 {
        text-align: left;
    }

    [data-accordion] [data-accordion-panel] {
        width: 90%;
    }


}

