.main_hero_container {
    max-width: 1760px;
    width: 100%;
    min-height: 800px;
    border-radius: 20px;
    background-color: antiquewhite;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    background: url("/img/main_hero.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 1760px) {
    .main_hero_container {
        border-radius: 0;
    }
}

.main_hero_text {
    max-width: 960px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 960px) {
    .main_hero_text {
        padding: 0 15px;
    }
}

span.hero_first_line {
    font-weight: 300;
    font-size: 48px;
    line-height: 140%;
}

span.hero_second_line {
    font-weight: 700;
    font-size: 48px;
    line-height: 140%;
}

span.hero_third_line {
    font-weight: 500;
    font-size: 20px;
    line-height: 180%;
    margin-top: 36px;
    color: rgba(0, 0, 0, 0.6);
}

button.hero_button {
    margin-top: 100px;
    width: 200px;
    height: 60px;
    border-radius: 8px;
    background: rgba(23, 73, 157, 1);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

.hero_button:hover {
    background: rgba(23, 73, 157, 0.8);
    transition: 0.3s;
    scale: 1.05;
}

@media screen and (max-width: 640px) {

    .main_hero_container {
        /*min-height: 660px;*/
    }

    span.hero_first_line {
        font-size: 40px;
    }

    span.hero_second_line {
        font-size: 40px;
    }

    button.hero_button {
        align-self: center;
        margin-top: 80px;
    }
}

.main_container {
    width: 100%;
    max-width: 960px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 960px) {
    .main_container {
        padding: 0 15px;
    }
}

span.main_title {
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 52px;
}

span.main_title.white {
    color: rgba(255, 255, 255, 1);
    margin-top: 160px;
}

span.main_description {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.5);
}

span.main_description.white {
    color: rgba(255, 255, 255, 1);
}

@media screen and (max-width: 640px) {
    span.main_description {
        font-size: 14px;
    }

    .service_card_wrapper {
        flex-direction: column;
        align-items: center;
    }
}

a.main_button {
    font-weight: 700;
    font-size: 18px;
    margin-top: 27px;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    color: rgba(23, 73, 157, 1);
    margin-bottom: 100px;
    width: fit-content;
}

a.main_button.white {
    color: rgba(255, 255, 255, 1);
    margin-bottom: 60px;
}

a.main_button:hover {
    text-decoration-thickness: 2px;
    scale: 1.05;
}

.service_card_wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 100px;
}

.service_card {
    width: 300px;
    height: 360px;
    border-radius: 10px;
    box-shadow: 20px 20px 100px 0px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.service_card img {
    width: 90px;
    margin-bottom: 46px;
}

span.service_card_title {
    font-weight: 600;
    font-size: 36px;
}

span.service_card_description {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    margin-top: 34px;
}

@media screen and (max-width: 840px) {
    span.service_card_title {
        font-size: 24px;
    }

    span.service_card_description {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {

    span.service_card_title {
        font-size: 36px;
    }

    span.service_card_description {
        font-size: 18px;
    }

    .service_card {
        align-items: center;
        text-align: center;
    }
}

.main_section.service {
    background: url("/img/bg_main_service.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 1030px) {
    .main_section.service {
        background-size: cover;
    }
}

.main_section.technology {
    background: url("/img/bg_main_technology.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.technology_card_wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 200px;
}

.technology_card {
    width: 100%;
    min-height: 480px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 20px 20px 100px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: row;
    padding: 40px;
}

span.technology_card_number {
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    margin-top: 20px;
    color: rgba(76, 159, 216, 1);
    width: 159px;
}

.technology_card_content_wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 720px;
}

.technology_card_content_wrapper img {
    width: 360px;
    /*height: 400px;*/
}

.technology_card_content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

span.technology_card_title {
    font-weight: 600;
    font-size: 40px;
}

.technology_card_content img {
    width: 40px !important;
    height: 6px !important;
}

span.technology_card_description {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
}

@media screen and (max-width: 840px) {
    .technology_card_content_wrapper img {
        width: 50%;
    }

    span.technology_card_title {
        font-size: 34px;
    }

    span.technology_card_description {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .technology_card {
        padding: 30px;
        flex-direction: column;
        gap: 24px;
    }

    span.technology_card_number {
        margin-top: revert;
        font-size: 20px;
    }

    .technology_card_content_wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .technology_card_content_wrapper img {
        width: 100%;
    }

    .technology_card_content {
        gap: 20px;
    }

    .technology_card_content_wrapper.right {
        flex-direction: column-reverse;
    }
}

.service_card.award {
    padding: 0;
    height: 320px;
}

img.award_img {
    width: 100%;
    height: 50%;
    object-fit: contain;
    margin: 0;
}

.award_text_wrapper {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    height: 50%;
    justify-content: center;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

span.award_description {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
}

span.award_title {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
}

.award .service_card_wrapper {
    margin-bottom: 30px;
}

.main_container.award {
    margin-top: 100px;
    margin-bottom: 160px;
}

.main_section.award {
    background: url("/img/bg_award.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*@media screen and (max-width: 1030px) {*/
/*    .main_section.service {*/
/*        background-size: cover;*/
/*    }*/
/*}*/