.main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main .blur {
    background-image: url("../images/blur.svg");
    width: 50%;
    height: 50%;
    position: absolute;
    z-index: -100;
    top: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.main .content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.main .content .top a {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #C0101D;
}

.main .content .top a::before {
    content: '';
    display: block;
    background-image: url("../images/LeftArrow.svg");
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.main .content .company-information {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    text-align: center;
}

.main .content .company-information h1 {
    margin-bottom: 20px;
}

.main .content .company-information .contacts {
    display: flex;
    justify-content: center;
    /*margin-bottom: 40px;*/
    margin-bottom: 20px;
}

.main .content .company-information .contacts a {
    display: flex;
    align-items: center;
    font-weight: 400;
}

.main .content .company-information .contacts a:not(:last-child) {
    margin-right: 30px;
}

.main .content .company-information .contacts .email::before {
    content: '';
    display: block;
    background-image: url("../images/email.svg");
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.main .content .company-information .contacts .tel::before {
    content: '';
    display: block;
    background-image: url("../images/tel.svg");
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.main .content .company-information .contacts .site {
    color: #2D71A4;
}

.main .content .company-information .text {
    width: 85%;
    margin-bottom: 40px;
}

.main .wrapper {
    width: 90%;
    display: flex;
    justify-content: center;
}

.main .wrapper .link::before {
    content: '';
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 26px;
    height: 26px;
    margin-right: 5px;
}

.main .wrapper .videocall::before {
    background-image: url("../images/Union.svg");
}

.main .wrapper .materials::before {
    background-image: url("../images/materials.svg");
}

.main .wrapper .research::before {
    background-image: url("../images/research.svg");
}

.main .wrapper .link {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    padding: 15px 53px;
    border: 1px solid #2D71A4;
    color: #2D71A4;
    border-radius: 25px;
}

.main .wrapper .link:not(:last-child) {
    margin-right: 20px;
}

.main .model {
    width: 80%;
    /*margin-top: 40px;*/
    margin-top: 0;
}

.main .model img {
    width: 100%;
}

.box-modal .company_materials_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.box-modal .company_materials_item a {
    color: #C0101D;
    text-align: right;
    margin-left: 10px;
}

.box-modal .company_materials_item .icon {
    margin-right: 30px;
}

.box-modal .company_materials_item .links {
    display: flex;
    margin-left: auto;
    margin-right: 0;
}

.box-modal .company_materials_item .links a {
    display: flex;
    align-items: center;
}

.box-modal .company_materials_item .links a:not(:last-child) {
    margin-right: 40px;
}

.box-modal .company_materials_item .links .reviewLink {
    color: #2D71A4;
}

.box-modal .company_materials_item .links .reviewLink::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("../images/show.svg");
    background-size: contain;
    margin-right: 10px;
}

.box-modal .company_materials_item .links .downloadLink {
    color: #C0101D;
}

.box-modal .company_materials_item .links .downloadLink::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("../images/save.svg");
    background-size: contain;
    margin-right: 10px;
}


@media (max-width: 1200px) {
    .main .content .company-information .contacts {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .main .content .company-information .contacts a:not(:last-child) {
        margin-right: 0px;
        margin-bottom: 10px;
    }
}